This page has been translated automatically.
Programming
Fundamentials
Setting Up Development Environment
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Core Library
Containers
Engine Classes
Node-Related Classes
Rendering-Related Classes
Physics-Related Classes
Bounds-Related Classes
GUI-Related Classes
Controls-Related Classes
Pathfinding-Related Classes
Utility Classes
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

LogicModules Class

The LogicModule class provides an ability to dynamically compile the custom code.

The class implementation can be found in the data/framework/game/logic_module.h

LogicModules Class

Members


LogicModules (string namespace_name)

Constructor. Creates a new LogicModule class instance in the specified namespace.

Arguments

  • string namespace_name - Name of the namespace where the custom code is compiled.

string getNamespace ()

Returns a name of the namespace where the custom code is implemented

Return value

Name of the namespace.

void addModule (string file_name)

Adds a logic file to compile.

Arguments

  • string file_name - Path to the logic file.

void clearModules ()

Clears list of files, which was added to compile.

void compile ()

Compiles logic.

int isCompiled ()

Checks if the logic is compiled successfully.

Return value

1 if the logic is compiled successfully; otherwise 0.

variable create (string type)

Creates a user class instance if this class is described in the custom logic.

Arguments

  • string type - Type of the class instance.

Return value

User class instance.

void clear ()

Clears the compiled logic.
Last update: 2017-07-03
Build: ()