Getting the Outer (GetOuter()) inside AssetUserData::PostEditChangeOwner added to an instanced actor in a level returns the Outer marked with "Trash"

UE - Gameplay - Nov 20, 2024

When you call GetOuter() inside AssetUserData::PostEditChangeOwner, the Outer that is returned, is marked as "Trash". This is because the object is constructed again when an AssetUserData is added. ...

Gameplay Tags with the string "None" as any of its hierarchical node identifiers behave incorrectly (because of an incomplete generated FGameplayTagContainer::ParentTags array)

UE - Gameplay - Nov 19, 2024

Currently, using the string "None" as a hierarchical node identifier inside a Gameplay Tag (for example "A.B.C.None.D.E.F") is not disallowed by the engine, but results in some incorrect behaviors. ...

GameFeature Plugins do not chunk as expected when using PrimaryAssetLabels

UE - Gameplay - Sep 23, 2024

There is some unexpected behaviour around GameFeature Plugins (GFPs) when packaging with chunking enabled most noticeable when using PrimaryAssetLabels (PALs). Firstly, PrimaryAssetLabels do not ap ...

Modifying FSuggestProjectileVelocityParameters::ResponseParam.CollisionResponse modifies FCollisionResponseParams::DefaultResponseParam

UE - Gameplay - Sep 17, 2024

FSuggestProjectileVelocityParameters was introduced in 5.4 and has a FCollisionResponseParams member that's initialized as a mutable reference to FCollisionResponseParams::DefaultResponseParam. str ...

Native gameplay tags in plugins are cleared when reading config files

UE - Gameplay - Aug 14, 2024

When references to Gameplay Tags are loaded, it checks to see if they are already registered. If they are not already registered, it will notice it is invalid and may print a warning depending on th ...

Crash when a subsystem calls GetSubsystemArray() on its owner while engine code is iterating on subsystems also obtained through GetSubsystemArray()

UE - Gameplay - Aug 6, 2024

In some occasions, engine code iterates over a certain subsystem type by calling FSubsystemCollection::GetSubsystemArray() and then calling some method on all subsystems of the returned array. This ...

Visual Logger bForceUniqueNames does not result in unique names (regression)

UE - Gameplay - Jul 25, 2024

Just a regression introduced with the VisLogger changes. ...

Regression - Inherited component properties on actor instances of derived blueprints are silently reset to defaults when the blueprint is compiled, causing data loss

UE - Gameplay - Jul 19, 2024

In certain circumstances, when a derived blueprint is compiled, all properties from its inherited components can be silently reset to defaults on instances placed on the current level. This results ...

Natively declared Gameplay Tags aren't counted by Reference Viewer when set default by ctor

UE - Gameplay - Jul 11, 2024

Similar to Issue 199247 ([Link Removed]), Natively declared Gameplay Tags aren't counted by Reference Viewer when used in a variable set in a C++ ctor. ...

CharacterMovementComponent - Jump incorrectly simulated when moving against a wall, resulting in an apex height lower than expected and framerate-dependent

UE - Gameplay - Jun 17, 2024

The CharacterMovementComponent simulates the position of a jumping/falling character inside function UCharacterMovementComponent::PhysFalling() [CharacterMovementComponent.cpp:4381]. On the main cod ...