You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- PreUnloadCallback() was not called in all cases a module could be unloaded (Buggy!) - PostLoadCallback() was never called for modules unless the module happened to be loaded with LoadModuleWithCallback(). (Very confusing!) - These functions were really just called when dynamically unloading and loading modules (not hot reload, and not when starting up or shutting down.) This was very confusing. For the most part you can achieve the same result by overriding StartupModule() and ShutdownModule(). - Additional context: CL 1607584 and https://udn.unrealengine.com/questions/246629/why-is-preunloadcallback-not-called-in-unloadmodul.html [CL 2562810 by Mike Fricker in Main branch]