|
ArticyXImporter
ArticyXImporter for Unreal Engine
|
#include <ArticyRuntimeModule.h>
Public Member Functions | |
| virtual void | StartupModule () override |
| virtual void | ShutdownModule () override |
Module for the Articy Runtime.
This module handles the initialization and shutdown of the Articy runtime, and is responsible for setting up any necessary resources or state when loaded, and cleaning up when unloaded.
|
overridevirtual |
Cleans up the module. This method is called when the module is unloaded from memory.
Called when the module is unloaded from memory. This is where you should clean up any resources or state that was initialized in StartupModule. Currently, this method does not perform any actions.
|
overridevirtual |
Initializes the module. This method is called when the module is loaded into memory.
Called when the module is loaded into memory. This is where you should initialize any resources or set up any state necessary for your module. Currently, this method does not perform any actions.