Core::Conifg

Global Configuration in Unified Engine

The Unified Engine provides a GlobalConfig structure for central configuration settings that influence various engine functionalities. This documentation provides an overview of the GlobalConfig struct and its associated settings.

Table of Contents

  • OpenGL Configuration

  • External Global Config

OpenGL Configuration

Define the version of OpenGL being used by the engine.

struct GlobalConfig{
    unsigned char VersionMajor = 3;
    unsigned char VersionMinor = 3;
};

External Global Config

The modifiable configuration that should be retained from modification after initialization.

extern GlobalConfig __GLOBAL_CONFIG__;

Last updated