Module Lifecycle
using UnrealSharp.Engine.Core.Modules;
namespace ModuleShowcase;
public class FModuleShowcase : IModuleInterface
{
// Called when opening the engine or reloading an assembly during hot reload
public void StartupModule()
{
}
// Called when the engine is closing or reloading an assembly during hot reload
public void ShutdownModule()
{
}
}Last updated