Shutdown Script Management

calling Python functions on Editor Shutdown

Editor Shutdown is less involved than Editor Startup, we just need a function to connect to the callback is all:

def on_editor_shutdown():
    print("Running Editor Shutdown code")
    
    
shutdown_id = unreal.register_python_shutdown_callback(on_editor_shutdown)

Last updated