Limen Framework 0.1 Help

LimenModularSettings Module

Subsystem Breakdown

Threading & Parallelism

Class Name

Role

FLimenModularSettingsModule

Manages the initialization and shutdown of the modular settings module within the LimenCore plugin.

Settings Management

Class Name

Role

ULimenSetting

Abstract base class for a setting. A setting can be anything the user can change like Resolution, WindowMode, etc.

ULimenSelectionSetting

Base class for a setting containing a selection (e.g., resolution list).

ULimenValueSetting

Base class for a ranged value setting (e.g., volume usually is set from 0 to 100).

User Interface

Class Name

Role

ULimenSettingWidget

Base class for widgets that display and interact with settings.

Event Handling

Class Name

Role

ULimenModularSettingListener

A component that listens for updates to settings and notifies when a setting is updated.

Developer Tools

Class Name

Role

ULimenToggleSetting

Base class for a setting that can be toggled (on or off).

ULimenModularSettingsSubsystemDeveloperSettings

Base class for developer settings for a modular settings subsystem. Used to add settings to a specific subsystem.

Save & Load

Class Name

Role

ULimenSettingsSaveData

A subclass of ULimenStorageSaveData designed to handle settings-specific save data.

Design Philosophy

The LimenModularSettings module is designed to provide a robust and flexible framework for managing user settings within the LimenCore plugin. It emphasizes modularity, allowing developers to easily add new types of settings and integrate them into the system. The module also includes mechanisms for saving and loading settings persistently, ensuring that user preferences are preserved across sessions.

Developers can use this system to create custom settings widgets and integrate them into their applications. By extending ULimenSettingWidget, developers can create interactive UI elements that allow users to modify various settings. The module also supports the creation of developer-specific settings through the ULimenModularSettingsSubsystemDeveloperSettings class, enabling fine-grained control over configuration options.

Additionally, by implementing ULimenModularSettingListener, developers can react to setting changes in real-time, updating application behavior or UI elements accordingly. This flexibility makes LimenModularSettings an essential tool for building configurable and user-friendly applications within the LimenCore ecosystem.

22 May 2026