Incorrect config property serialization for UStructs used as TMap keys or contained in a TSet with a single value. Diffs taken from default-value of each member type, instead of from default-value of the struct

UE - Foundation - Core - Nov 18, 2024

Consider a UStruct with some basic type members, each one with a default value specified in the struct. Also consider a TSet or TMap with that struct as keys, used inside a UObject as a UProperty an ...

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 ...

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 ...

Incremental GC vs Loading Screens deadlock

UE - Foundation - Core - Sep 5, 2024

A licensee is reporting that using a loading screen with the incremental garbage collector can result in a dead lock when a loading screen is displayed. The licensee found out that:  -------------- ...

Enabling ZenLoader causes editor crash when undoing Level Instance deletion

UE - Foundation - Core - Sep 5, 2024

Crash reported through UDN. With ZenLoader enabled, deleting a level instance and triggering Undo causes a crash in  ULandscapeComponent::PostEditUndo() The user has provided an example project th ...

EnumRedirections from a Blueprint enum to a c++ enum does not redirect everything correctly.

UE - Foundation - Core - Aug 20, 2024

There is an engine bug when using the EnumRedirects feature inside a config file. If we have a Blueprint Enum used in our blueprints, and we want to convert all the Blueprint enum references to a C+ ...

Crash handling: Prevent reports of assertions during shutdown after an assertion

UE - Foundation - Core - Aug 8, 2024

CriticalErrors in FWindowsErrorOutputDevice::Serialize (and other platforms) run some code after the error is detected rather than immediately terminating the process. Some of this other code is spe ...

FILTER_COMMANDLINE_LOGGING cannot be used without forcing UE_COMMAND_LINE_USES_ALLOW_LIST

UE - Foundation - Core - Jul 30, 2024

There's two ways to affect the commandline in CommandLine.cpp: FILTER_COMMANDLINE_LOGGING - for filtering certain or all args (if left empty) from the log. UE_COMMAND_LINE_USES_ALLOW_LIST - for on ...

Spawnable Post Process Volume does not draw bounded values after saving and reopening a level

UE - Foundation - Core - Jul 19, 2024

Reproduction Attempts: 3/3 Doing some additional testing for Spawnable Post Process Volumes in a level sequence, the PPV does not appear after saving the level and level sequence, closing and reope ...

AssetRegistry has poor performance when a large map is resaved

UE - Foundation - Core - Jun 21, 2024

A licensee reports that their large map has a 10s cost in the AssetRegistry when resaved. They took a profile and found the cost is mostly in LoadCalculatedDependencies for the map, and most of that ...