FProceduralMeshModule
Overview
This class is responsible for initializing and shutting down the ProceduralMesh module. It inherits from IModuleInterface and overrides the StartupModule and ShutdownModule functions to perform necessary setup and cleanup operations when the module is loaded and unloaded, respectively.
Properties
Type | Name | Access | Description |
|---|---|---|---|
FGenerationParameters | GenerationParams | EditAnywhere, Category="Generation Parameters" | The generation parameters for mesh instances. |
Functions
Return Type | Signature | Description |
|---|---|---|
void | StartupModule() | Initializes the ProceduralMesh module. Currently empty. |
void | ShutdownModule() | Cleans up resources used by the ProceduralMesh module. Currently empty. |
Usage & Implementation Notes
This module does not perform any complex initialization or cleanup tasks and is primarily a placeholder for future functionality related to procedural mesh generation.
The
StartupModuleandShutdownModulefunctions are currently empty, indicating that no specific actions are taken during the module's lifecycle.