Fix deadlock when skeletal mesh component is shown in the detail panel with physics body section category open and the skeletalmesh is re-importing or doing any other asyc task that need the game th ...
If you import a model containing multiple mesh using the same bones but with different bind pose, the time zero skin result will be wrong. ...
LevelSequenceEditor has input priority over the Level viewport and other editor modules even though the Level viewport has been the last one selected. An example would be a cut operation. If you ha ...
There are options on both landscapes and HLOD layers that when enabled, performs the culling of invisible HLOD vertices (parts of HLOD meshes ending up below the terrain). The option works fine w ...
A character standing in a base will match its velocity to the base's velocity. If that character jumps into another base its velocity will be added to the new base's velocity and the character will ...
In some situations, it can be useful to have a replicated editor-only C++ property (For example, the user that reported this issue was attempting to replicate settings to the client for game designe ...
The call to UpdateInstanceTransform within UInstancedStaticMeshComponent::UpdateInstanceTransformById(..) sends bTeleport in place of bMarkRenderStateDirty that was added as part of Unreal Engine 5. ...
When UMaterialInstanceConstant::UpdateCachedData() updates CachedExpressionData.PropertyConnectedMask for material instances with layers incorrectly, it can lead to various graphical issues includin ...
Shadow depths performance for non-VSM in certain scenes, notably those with rect lights and meshes that are set to movable, went from ~2ms to ~18ms going from UE 5.3 to UE 5.4. Setting the movable a ...
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. ...