There is a thread conflict between FRDGBuilder execution in Background Worker and LumenVisualizer's LumenCard add/delete process. When lumen cards are displayed in a scene with many objects, a crash ...
The crash can be worked around by modifying FFoliageISMActor::Serialize as following code : void FFoliageISMActor::Serialize(FArchive& Ar) { #if WITH_EDITORONLY_DATA if (!Ar.IsCooking()) // ...
From licensee: A simple example is setup in the project, the relevant part is just this code: UCLASS(meta = (BlueprintSpawnableComponent)) class TESTBUGEDITORONLYEDITOR_API UEditorOnlyComponent : ...
This crash can be fixed by adding a couple of || IsRunningGame() like it is done here: FGenerateStreamingContext Context = FGenerateStreamingContext() .SetLevelPackagesToGenerate((bIsPIE ...
There is a bug inside Unreal Editor when selecting "Browse to Asset" for a Packed Level Actor. Right clicking the Packed Level Actor, all the asset options appear. If you click the "Browse to Asse ...
I am doing some runtime manipulation of data layers and I am running into a check failure due to a zero guid in FLevelInstanceActorGuid::GetGuid during multiplayer testing. When I debug FLevelInsta ...
A crash occurs when LevelInstance with LevelBehavior set to "Standalone" is loaded in a standalone game. Specifically, when LevelInstance is deleted by moving outside the loading range of the worldp ...
Create an asset containing a RetainerBox in UMG, then add the created UMG to the viewport using AddViewport. Running MRQ after this causes a crash. ...
An imported file that resides within the project's folders gets a relative path. That path is not updated it you copy the uasset to another folder, so from the location of the new asset's the relati ...
In SkeletalRenderNanite.cpp / FDynamicSkelMeshObjectDataNanite::UpdateBonesRemovedByLOD, bone indices are of type FBoneIndexType (defined as uint16 from BoneIndices.h), instead of int32. On line 18 ...