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

Plugin Class

Unigine Plugin class allows loading a custom library dynamically at Unigine runtime.

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

Unigine::Plugin Class

Members


virtual ~Plugin ()

Virtual destructor.

virtual int get_version () const

Plugin version.

Return value

Returns the Engine version.

virtual const char * get_name ()

Plugin name.

Return value

The plugin name.

virtual void * get_data ()

Plugin data.

Return value

The plugin data.

virtual int init ()

Engine calls this function on plugin initialization.

Return value

Returns 1 on success, or 0 if an error occurred.

virtual int shutdown ()

Engine calls this function on plugin shutdown.

Return value

Returns 1 on success, or 0 if an error occurred.

virtual void destroy ()

Plugin should contain this function if it directly uses any OpenGL or DirectX commands. It is used to reinitialize the graphics context. Engine calls this function when the video mode is changed or application is restarted (i.e. video_restart is called).

virtual void update ()

Engine calls this function before updating each render frame.

virtual void render ()

Engine calls this function before rendering each render frame.

virtual void gui ()

Engine calls this function before gui each render frame.

virtual void flush ()

Engine calls this function before updating each physics frame.

virtual void swap ()

Engine calls this function before swapping each render frame.

virtual int initWorld ()

Engine calls this function on world initialization.

Return value

Returns 1 on success, or 0 if an error occurred.

virtual int shutdownWorld ()

Engine calls this function on world shutdown.

Return value

Returns 1 on success, or 0 if an error occurred.

virtual int updateWorld ()

Engine calls this function before updating each render frame.

Return value

virtual int renderWorld ()

Engine calls this function before rendering each render frame.

Return value

virtual int flushWorld ()

Engine calls this function before updating each physics frame.

Return value

virtual int loadWorld (const XmlPtr & xml)

Engine calls this function on world loading.

Arguments

  • const XmlPtr & xml - Xml smart pointer.

Return value

Returns 1 on success, or 0 if an error occurred.

virtual int saveWorld (const XmlPtr & xml)

Engine calls this function on world saving.

Arguments

  • const XmlPtr & xml - Xml smart pointer.

Return value

Returns 1 on success, or 0 if an error occurred.

virtual int saveState (const StreamPtr & stream)

Engine calls this function on world saving.

Arguments

  • const StreamPtr & stream - Stream smart pointer.

Return value

Returns 1 on success, or 0 if an error occurred.

virtual int restoreState (const StreamPtr & stream)

Engine calls this function on world restoring.

Arguments

  • const StreamPtr & stream - Stream smart pointer.

Return value

Returns 1 on success, or 0 if an error occurred.
Last update: 2017-07-03
Build: ()