Gameplay Effects with instant duration fail to be predicted if a duration magnitude was previously set

UE - Gameplay - Gameplay Ability System - Aug 4, 2023

The Duration Magnitude property is not zeroed out if a Gameplay Effect's duration policy is changed from HasDuration to Instant. As a result, UAbilitySystemComponent::ApplyGameplayEffectSpecToSelf e ...

A static mesh far from the origin appears to wobble in PIE

UE - Rendering Architecture - Aug 3, 2023

It seems that the numbers are rounded in VertexFactoryCommon shader. The cube consists of vertices that are very far from the origin and are placed on the screen by placing them at coordinates that ...

ImageSize in Image widget is not set when setting a texture as a brush

UE - Editor - UI Systems - UMG - Aug 1, 2023

Since FDeprecateSlateVector2D has been implemented in 5.2, the following function calls will always fail. Therefore, the ImageSize is not updated. This problem does not occur in 5.1.   void SBrus ...

BoneList and BoneFilterActionOption in LOD0 of LODSettings are displayed after editing other LOD level

UE - Anim - Runtime - Jul 31, 2023

BoneList and BoneFilterActionOption in LOD0 of LODSettings are filters by the following code. void FSkeletalMeshLODSettingsDetails::CustomizeDetails(IDetailLayoutBuilder& LayoutBuilder) { ... st ...

Blueprint debugger: variable getter node displays wrong object's value

UE - Gameplay - Blueprint Runtime - Jul 28, 2023

After triggering a breakpoint in blueprint, variable getter nodes can display the value of a different object than the node's target. For example: if an actor class has a value MyBool and the bluepr ...

Python does not always copy struct properties when there are differences

UE - Editor - Workflow Systems - Jul 28, 2023

I noticed that some struct are not always copied in python. For example, FBox is not copied if !a_src.IsValid and !a_dst.IsValid even if Min and Max are different. Another example is FJsonObjectWrap ...

Logging out and then logging in as a new user results in slate creating multiple Slate User IDs

UE - Gameplay - Input - Jul 28, 2023

I believe this is happening because when you change your logged in user, the Slate Application will automatically create a new second slate user with an ID of 2. This is bad because the Slate App is ...

Inaccurate motion vectors when using different position binding in renderer

UE - Niagara - Jul 27, 2023

Even though the particles are not moving, and the velocity is zero, the output motion vectors are non-zero. This seems to only happen if using two sources of particle positions.  ...

BP property initialization fast path does not handle non-instanced properties assigned to default subobjects correctly

UE - Gameplay - Blueprint - Jul 27, 2023

Non-instanced object ref properties are incorrectly being skipped at property initialization time when Blueprint class instances are spawned with the fast property initialization path enabled. This ...