FCollisionAnalyzerModule::ShutdownModule

Called before the module is unloaded, right before the module object is destroyed.

Windows
MacOS
Linux

Override Hierarchy

IModuleInterface::ShutdownModule()

FCollisionAnalyzerModule::ShutdownModule()

References

Module

CollisionAnalyzer

Header

/Engine/Source/Developer/CollisionAnalyzer/Public/CollisionAnalyzerModule.h

Include

#include "CollisionAnalyzerModule.h"

Source

/Engine/Source/Developer/CollisionAnalyzer/Private/CollisionAnalyzerModule.cpp

Syntax

virtual void ShutdownModule()

Remarks

Called before the module is unloaded, right before the module object is destroyed. During normal shutdown, this is called in reverse order that modules finish StartupModule(). This means that, as long as a module references dependent modules in it's StartupModule(), it can safely reference those dependencies in ShutdownModule() as well.