1
Unreal Engine world Settings
k4sh44 edited this page 2025-12-27 15:57:43 +00:00

Using dumper-7 SDK, it's possible to retrieve World settings

Getting World

UWorld* world = UWorld::GetWorld();
if (!world) return;

Retrieve World settings

AWorldSettings* worldSettings = world->K2_GetWorldSettings();
if (worldSettings)
    worldSettings->TimeDilation = 0.5f; // Set world time dilation half speed. This affects everything (Pawns, physics ...)