Skip to content

Instantly share code, notes, and snippets.

@ScottKirvan
Last active June 19, 2023 19:37
Show Gist options
  • Save ScottKirvan/be6550e546fca0e525f2803c9c6e2b19 to your computer and use it in GitHub Desktop.
Save ScottKirvan/be6550e546fca0e525f2803c9c6e2b19 to your computer and use it in GitHub Desktop.

Unreal Blueprints 5.2 - 'Get Editor World' deprecated - resolved

  • UE 5.2
  • imported Automotive Mtls assets
  • right clicking on any asset in the asset browser throws an Editor Error with assetActionUtility UTIL_AngleMapConversion

Message Log:

/Game/AutomotiveMaterials/Utils/AngleConvertUtility/UTIL_AngleMapConversion.UTIL_AngleMapConversion needs to be re-saved and possibly upgraded.

Navigating to that blueprint shows a warning in the compiler results:

Get Editor World : Usage of 'Get Editor World' has been deprecated. The Editor Scripting Utilities Plugin is deprecated - Use the function in Unreal Editor Subsystem

Original Warning in Blueprints:

image

The updated code:

image

@ScottKirvan
Copy link
Author

ScottKirvan commented Jun 19, 2023

@jimaki was seeing a similar error in an older version of Unreal after migrating some data in. The cause was that the Editor Scripting Plugin needs to be enabled. He was seeing an error that looked very similar to what's described above, but wasn't seeing any way to add Unreal Editor Subsystem node (which is a newer node, so of course, wasn't available) -- enabling the plugin fixed the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment