GameFrameworkComponentManager crashes when modifying init state callbacks during state change

UE - Gameplay - Feb 28, 2024

The GameFrameworkComponentManager has a system for registering callbacks to execute in response to event changes. This ends up calling UGameFrameworkComponentManager::CallFeatureStateDelegates which ...

Can't inherit from ALight without a linker error

UE - Gameplay - Feb 22, 2024

This is a regression from 5.3. It should be possible to inherit from ALight outside of the engine module without any sort of errors. Case: [Link Removed] ...

Gameplay Ability System Attribute Modifiers with a duration (including infinite) do not respect tag requirements

UE - Gameplay - Feb 21, 2024

When using infinite or duration-based effects, required and ignored tags will have no effect on attribute modifiers. This appears to be caused by OnAttributeAggregatorDirty (GameplayEffect.cpp:2917) ...

MoviePlayer loading screen with FLoadingScreenAttributes::bAllowEngineTick results in high DeltaSeconds tick post-playback

UE - Gameplay - Feb 16, 2024

IGameMoviePlayer playback of a movie during loading screen lets you set bAllowEngineTick  = true as a parameter. This will make FDefaultGameMoviePlayer manually tick the engine: if (GEngine && bAll ...

Networked Root Motion Sources can experience desynchronisation that is not present in animation root motion under forced adjustment

UE - Gameplay - Feb 13, 2024

In a networked environment with high packet loss (or high forced adjustment factor), motion applied using Root Motion Sources can desynchronise under conditions that animation root motion does not. ...

GameplayEffects: Inherited UAssetTags and UTargetTags do not update their referenced tags correctly with inheritance

UE - Gameplay - Jan 25, 2024

When inherited, it is reasonable to expect the tags added by the parent to be reflected in the children. If the parent is editted after the children, however, tags that are added or deleted are not ...

Setting GDelayTrimMemoryDuringMapLoadMode = 2 causes crash on same map reload

UE - Gameplay - Jan 8, 2024

GDelayTrimMemoryDuringMapLoadMode is a CVar that controls whether a garbage collection should take place during map change after unloading the previous map and before loading the new one. By default ...

Ensure in GatherSubobjectData

UE - Gameplay - Nov 27, 2023

An ensure in GatherSubobjectData is being hit under certain inheritance conditions. This appears to be similar and potentially related to [Link Removed] and the fix at CL 16377852. Stepping through ...

FPropertySoftPath::Resolve doesn't resolve c-array elements properly

UE - Gameplay - Nov 20, 2023

a fix was proposed in the UDN but it needs to be tested and revised ...

Ledge Movement Stuck (CheckLedgeDirection is always returning true)

UE - Gameplay - Nov 20, 2023

The issue appears to that CheckLedgeDirection almost always returns true, which returns the leftward side step. This is correct for the leftward direction, but is not valid for the rightward directi ...