This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
专业(SIM)
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
设置属性
照明
Landscape Tool
Sandworm
使用编辑器工具执行特定任务
如何擴展編輯器功能
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
使用范例
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
Materials and Shaders
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Containers
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
创建内容
内容优化
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Unigine::Exporter Class

Warning
The functionality described in this article is not available in the Community SDK edition.
You should upgrade to Engineering / Sim SDK edition to use it.
Header: #include <UnigineExport.h>

This class is used to manage a node exporter. Node exporters are used by the Engine's export system to export UNIGINE’s nodes to files of different formats. A single exporter can be used to export multiple nodes, but there shouldn't be two or more exporters registered for a single node type.

Each exporter has a set of parameters that control the whole export process (e.g., whether to export lights, cameras, and material normal maps, reset root node transformation, etc.). The exporter should be initialized before the use.

Notice
This is a base class for all exporters. Your custom exporter class must be inherited from it.

Exporter Class

Members


Exporter ( ) #

Constructor. Creates an exporter with default settings.

int containsParameter ( const char* name ) const#

Returns a value indicating whether the list of export parameters includes a parameter with a given name.

Arguments

  • const char* name - Parameter name.

Return value

1 if the list of export parameters includes a parameter with a given name; otherwise, 0.

void setParameterInt ( const char* name, int v ) #

Sets a new value for the specified integer parameter.

Arguments

  • const char* name - Name of the integer parameter.
  • int v - New value to be set.

int getParameterInt ( const char* name ) const#

Returns the current value of the specified integer parameter.

Arguments

  • const char* name - Name of the integer parameter.

Return value

Value of the integer parameter.

void setParameterFloat ( const char* name, float v ) #

Sets a new value for the specified float parameter.

Arguments

  • const char* name - Name of the float parameter.
  • float v - New value to be set.

float getParameterFloat ( const char* name ) const#

Returns the current value of the specified float parameter.

Arguments

  • const char* name - Name of the float parameter.

Return value

Value of the float parameter.

void setParameterDouble ( const char* name, double v ) #

Sets a new value for the specified double parameter.

Arguments

  • const char* name - Name of the double parameter.
  • double v - New value to be set.

double getParameterDouble ( const char* name ) const#

Returns the current value of the specified double parameter.

Arguments

  • const char* name - Name of the double parameter.

Return value

Value of the double parameter.

void setParameterString ( const char* name, const char* v ) #

Sets a new value for the specified string parameter.

Arguments

  • const char* name - Name of the string parameter.
  • const char* v - New value to be set.

const char* getParameterString ( const char* name ) const#

Returns the current value of the specified string parameter.

Arguments

  • const char* name - Name of the string parameter.

Return value

Value of the string parameter.

int init ( ) #

Initializes the exporter.

int doExport ( const NodePtr& root_node, const char* output_filepath ) #

Exports the node to the specified output file.
Notice
To customize actions to be performed on node export processing you can override the onExport() method.

Arguments

  • const NodePtr& root_node - Root node of the hierarchy to be exported.
  • const char* output_filepath - Output path to be used to store generated file(s) with exported data.

void deinit ( ) #

Uninitializes the exporter.

bool onInit ( ) #

Initializes the exporter. This function is called each time when the init() function is called. You can specify your custom actions to be performed on exporter initialization.

bool onExport ( const NodePtr& root_node, const char* output_filepath ) #

Node export processing event handler function. This function is called each time when the doExport() function is called. You can specify your custom actions to be performed on node export processing.

Arguments

  • const NodePtr& root_node - Root node of the hierarchy to be exported.
  • const char* output_filepath - Output path to be used to store generated file(s) with exported data.

Return value

true if export operation for the specified output path was successful; otherwise, false.

void onDeinit ( ) #

Uninitializes the exporter. This function is called each time when the deinit() function is called. You can specify your custom actions to be performed on exporter uninitialization.
Last update: 2022-03-10
Build: ()