Typo: Top Down Sample Template has two folders for lighting. One is spelt "lightting"

Docs - Samples - Apr 23, 2020

Typo of lighting exists in the Top Down Template map.  ...

EditorOnly Actor-subclass blueprints cause SavePackage warning "A dependency '%s' of '%s' was filtered, but is mandatory"

UE - Gameplay - Blueprint - Apr 20, 2020

https://udn.unrealengine.com/questions/570767/filtering-bug-with-iseditoronlyactor.html On a a blueprint that inherits from an actor class such as FunctionalActor, the user can mark Actor::bIsEdito ...

Rare assertion comes up when cooking if sequencer camera track has only additive transform track

UE - Anim - Sequencer - Mar 2, 2020

If a camera track has only additive transform track, some functions return uninitialized F3DTransformTrackToken made by default constructor. It causes a rare assertion. Please take a look at F3DTra ...

Wake/Sleep events are not properly handled with Welding

UE - Simulation - Physics - Nov 25, 2019

Wake/Sleep events are not generated for components set to generate wake events after having a component not set to generate wake events welded to them. Wake/Sleep events are also not dispatched for ...

SetHitResultFromShapeAndFaceIndex crash

UE - Simulation - Physics - Nov 15, 2019

SetHitResultFromShapeAndFaceIndex calls  if(PxMaterial* PxMat = PShape->getMaterialFromInternalFaceIndex(FaceIndex)) { OutResult.PhysMaterial = FPhysxUserData::Get<UPhysicalMaterial>(PxMat->userD ...

Curves in compressed additive animations interpolate incorrectly when two keys in a row have the same value

OLD - Anim - Oct 16, 2019

Curves compressed from additive animations will not interpolate correctly if they have two keys in a row with the same value. The second key will be ignored, leading to the curve interpolating earli ...

Copy Procedural Mesh from Static Mesh Component does not work correctly when the order of material slots is different

UE - Graphics Features - Oct 15, 2019

This issue occurs when the section and material slot order do not match In this sample project:[Link Removed] According to a report from the licensee, the order of Sections seems incorrect.[Link R ...

Sorting a Blueprint variable into a subcategory separates variables into separate category structures

UE - Gameplay - Blueprint - Oct 14, 2019

Within the Blueprint Editor, it is possible to create subcategories for variables to be sorted into. Doing so separates variables not nested into subcategories out into standalone, top-level structu ...

UCharacterMovementComponent OldVelocity is pre-additive while Velocity is post-additive

UE - Gameplay - Player Movement - Oct 10, 2019

In UCharacterMovementComponent code such as PhysFalling, RestorePreAdditiveRootMotionVelocity is called before FVector OldVelocity = Velocity; leaving OldVelocity in a pre-additive state making furt ...

GetClassDefaults node retains 'hidden' references to original default.

UE - Gameplay - Blueprint - Oct 9, 2019

Need to add calls to Super::PinConnectionListChanged() and Super::PinDefaultValueChanged() in K2Node_GetClassDefaults.cpp. ...