ULimenOnlineDeveloperSettings
Overview
ULimenOnlineDeveloperSettings is a subclass of UDeveloperSettings used to store and manage configuration data specific to the Limen Online chat module. It provides properties that can be edited in the Unreal Engine editor and includes overrides for various methods to categorize and display settings within the editor UI.
Properties
Type | Name | Access | Description |
|---|---|---|---|
| ChatEncryptionKey | EditAnywhere, Config | The encryption key used for chat messages. |
Functions
Return Type | Signature | Description |
|---|---|---|
| GetContainerName() const override | Returns the container name for settings, which is "Project". |
| GetCategoryName() const override | Returns the category name for settings, which is "Project". |
| GetSectionName() const override | Returns the section name for settings, which is " Limen Online". |
Usage & Implementation Notes
This class is intended to be used in the Unreal Engine editor to configure developer-specific settings for the Limen Online chat module.
The
ChatEncryptionKeyproperty allows developers to specify an encryption key for securing chat messages.The overridden methods ensure that the settings are categorized and displayed correctly within the editor's settings UI.