Decals custom depth/stencil side effect from Lumen

UE - Graphics Features - Oct 15, 2024

The order of passes related to Decal rendering (without the DBuffer) and CustomDepth is changed by the CVar "r.Lumen.AsyncCompute", even when Lumen is not enabled. This causes Decal Materials that ...

In Standalone mode, when reading world partition actor descriptors for BP actors, "bIsSpatiallyLoaded" receives its value from the native base class instead of the BP class, so BP actors are loaded/unloaded based on the wrong condition.

UE - World Creation - Worldbuilding Tools - World Partition - Oct 15, 2024

Consider an actor defined in C++ with "bIsSpatiallyLoaded" set to true (the default), and a derived blueprint that overrides "bIsSpatiallyLoaded" to false. Now consider an actor instance of that blu ...

The Remove-On-Break feature, set on Fracture Mode on Geometry Collections, stops shrinking and shows strange behaviors

UE - Simulation - Physics - Destruction - Oct 15, 2024

The Remove-On-Break (ROB) feature, set on Fracture Mode on Geometry Collections (GC), was supposed to make the particle shrink until it vanishes. When the GC goes to sleep the shrinking stops and sh ...

Mesh Paint mode's Texture Paint has obvious artifact with UV seams

UE - Rendering Architecture - Oct 8, 2024

Mesh Painting Texture Paint tool can miss some pixels along UV seams, even with "Enable Seam Painting" set to True. This appears to be because of the difference between rasterization and sampling. ...

FStaticMeshCompiler::FinishCompilation stalls when compiling multiple meshes.

UE - Foundation - Core - Oct 7, 2024

Calling "FStaticMeshCompiler::FinishCompilation" on multiple assets simultaneously can cause a hang. Also tested on //UE5/Release-5.5, CL: 36784631 ...

Calling GetMaterial during compile on load can cause the material shader to fail to compile

UE - Rendering Architecture - Materials - Oct 4, 2024

Calling UStaticMeshComponent::GetMaterial() during a Blueprint compile on load can cause the Material shader to fail to compile because GetMaterial will trigger a PostLoad call on that Material and ...

Substrate- black outline appears when using sharp contrast mask to blend slabs

UE - Graphics Features - Oct 4, 2024

Substrate materials have a thin border of black pixels between slabs. These lines can be made more apparent by changing the Diffuse Albedo color of the two slabs to pure white. This will remove the ...

Niagara Parameter Collection Instances does not get updates from changes to the parent Niagara Parameter Collection in the editor

UE - Niagara - Oct 4, 2024

When an Niagara Parameter Collection (NPC) is selected as the parent Collection for an NPC Instance (NPCI), all of its current parameters are carried over to the NPCI with their current values as th ...

Crumbling Geometry Collections do not render for one frame when child clusters crumble

UE - Simulation - Physics - Destruction - Oct 3, 2024

Crumbling Geometry collection do not render for one frame when child clusters crumble. In the repro project a 4 particle GC is told to crumble. The single GeometryCollectionActor is then split into ...

Crash during garbage collection when container UPROPERTIES specify raw interface pointer element types without TScriptInterface wrapper

UE - Foundation - Core - Oct 1, 2024

When a UPROPERTY() TMap or TArray has raw interface pointers as element type, the garbage collector tries to handle them and crashes. For raw interface pointers without a container, UHT generates a ...