This page has been translated automatically.
Getting Started
Migrating to UNIGINE 2.0
C++ API Migration
UnigineScript
The Language
Core Library
Engine Library
Node-Related Classes
GUI-Related Classes
Plugins Library
High-Level Systems
Samples
Usage Examples
C++ API
API Reference
Integration Samples
Usage Examples
C++ Plugins
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Unigine::FunctionBase Class

Function base class.

To use this class, include the UnigineFunction.h file.

Unigine::FunctionBase Class

Members


FunctionBase ()

Default constructor.

virtual ~FunctionBase ()

Virtual destructor.

void setName (const Variable & n)

Sets the function name.

Arguments

  • const Variable & n - Function name.

const Variable & getName () const

Returns the function name.

Return value

Function name.

Variable runSystem () const

Runs the system script function.

Return value

System script function return value.

Variable runWorld () const

Runs the world script function.

Return value

World script function return value.

Variable runEditor () const

Runs the editor script function.

Return value

Editor script function return value.

virtual int getNumArgs () const =0

Returns the number of arguments.

Return value

Number of arguments.

void setArg (int num, const Variable & a)

Sets an argument value.

Arguments

  • int num - Argument number.
  • const Variable & a - Argument value.

const Variable & getArg (int num)

Gets the argument value.

Arguments

  • int num - Argument number.

Return value

Argument value.
Last update: 2017-07-03
Build: ()