FLimenLevelTransitionsModule
Overview
The FLimenLevelTransitionsModule class is a module interface for handling level transitions in the game. It inherits from IModuleInterface and provides implementations for the StartupModule and ShutdownModule functions to manage the initialization and cleanup of the module, respectively.
Functions
Return Type | Signature | Description |
|---|---|---|
void | StartupModule() override | Initializes the level transitions module. Currently empty. |
void | ShutdownModule() override | Cleans up the level transitions module. Currently empty. |
Usage & Implementation Notes
The
StartupModuleandShutdownModulefunctions are currently placeholders and do not contain any logic for managing level transitions.This module is intended to be extended with specific functionality related to level transitions in future updates.
22 May 2026