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 ...
From UDN: The reason it crashes is because Child doesn't get garbage collected, which is because it still has the RF_Standalone flag. UEditorEngine::EditorDestroyWorld clears RF_Standalone flag ...
This is caused by adding an item to a grid panel inside the grid panel iteration loop. The same operation to canvas panel goes well without any errors. The difference is that the array iteration in ...
The order of world and game instance initialization is different between a true standalone game (cooked game or an editor build with -game) and a Play In Editor game. Specifically, in Play in Editor ...
No user comments in crash group 18 FSlateShaderResourceManager* FSlateDataPayload::ResourceManager; 19 20 static bool IsResourceObjectValid(UObject*& InObject) 21 ...
If a struct has a variable set to a class type, then the object of that class type is moved to a new folder in the editor, the struct will replace the class type with "class", which causes the edito ...
FVariant is a struct that implements a union of data types, including FVector. When assigning an FVariant an FVector value in engine versions UE 4.27 or earlier, the FVariant will deserialize incorr ...
When Calling UBlueprintMapLibrary::GenericMap_Find with a non-existent key, the function construct the default structure in-place on the given pointer without destroying the object. This behavior ca ...
Description from licensee: We're seeing an ensure get tripped up in FDebugRenderSceneProxy that says "DrawDelegate is already Registered!". Debugging the issue, we have confirmed that the DrawDeleg ...
When a small external force is applied to the rigid body, the VSmooth value is reset in the ResetVSmoothFromForces function. Since this function ignores the current velocity, a very small velocity ...