CharacterMovementComponent: simulated proxy can go into falling due to linear velocity quantization when using custom gravity

UE - Gameplay - Components - Mar 8, 2024

The character movement component in  void UCharacterMovementComponent::SimulateMovement(float DeltaSeconds) evaluates whether to find the floor when simulating the movement of the simulated proxy ...

USkeletalMeshComponent::HandleExistingParallelClothSimulation() calling WaitUntilTaskCompletes can trigger arbitrary task that modifies currently iterated UWorld::ComponentsThatNeedPreEndOfFrameSync

UE - Gameplay - Components - Feb 23, 2024

Context ActorComponents can schedule an end-of-frame update for themselves by calling UWorld::MarkActorComponentForNeededEndOfFrameUpdate. The UWorld will iterate all those actor components once pe ...

CharacterMovementComponent: make crouching behavior compatible with custom gravity direction

UE - Gameplay - Components - Feb 20, 2024

CharacterMovementComponent has recently received support for custom gravity directions. Crouch logic needs to be updated to account for custom directions. Currently, crouching logic in CMC assumes Z ...

USplineComponent::GetSplinePointAt() returns FSplinePoint with incorrect Type

UE - Gameplay - Components - Feb 15, 2024

USplineComponent::GetSplinePointAt() returns an FSplinePoint with the ESplinePointType 'CurveCustomTangent' rather than the type from the setup.Expected: It should return the correct type. ...

5.3 crashes when loading a map with an actor that had the class of one of its components changed

UE - Gameplay - Components - Feb 1, 2024

Create a blueprint based on actor, give it a SceneComponent named ExampleComp (BP_TestActor) - this should be the blueprints only componentCreate a new level (TestMap), place an instance of the bluepr ...

Keep Simulation Changes does not work for Actors that have replaced root component

UE - Gameplay - Components - Jan 31, 2024

RelativeLocation and RelativeRotation in the root component are collected in UActorComponent::AllUCSModifiedProperties, so copying simulation result is skipped in EditorUtilities::CopyActorPropertie ...

Map actor reconstruction does not reattach external non-root components

UE - Gameplay - Components - Jan 17, 2024

For two map placed actors, if one actor B's non root component is attached to another actor A, the attachment is not retained when actor A reruns its construction script, such as when moving actor A ...

Actor attached to child actor fails to serialize as part of map

UE - Gameplay - Components - Nov 3, 2023

Attaching other actors to a child actor (actor spawned by ChildActorComponent) fails to serialize correctly as part of the map. The attached actor loads as detached and resets its position back to w ...

Unable to access inherited component using Subobject Data Subsystem

UE - Gameplay - Components - Oct 3, 2023

When using the Subobject Data Subsystem (Engine\Source\Editor\SubobjectDataInterface\Public\SubobjectDataSubsystem.h), we often have to work with an instance of FSubobjectData (Engine\Source\Editor\ ...

Property window doesn't not propagate changes consistently with WithIdenticalViaEquality

UE - Gameplay - Components - Sep 29, 2023

Download and unzip attached project.Run editor.Select actor.Select BP_MyComponent in Outliner.Change "Some String" to any value. Observe that value resets to the default.Change "Category" to any value ...