AR_Engine_SDK
载入中...
搜索中...
未找到
函数 | 变量
FxPropertyObject.lua 文件参考

#include <FxPropertyObject.h>

类 FxPropertyObject 继承关系图:
Inheritance graph

函数

function FxPropertyObject GetProperty (szPropertyName) end
 
function FxPropertyObject GetCategoryNum () end
 
function FxPropertyObject GetCategoryName (nCategory) end
 
function FxPropertyObject GetProperties (nCategory) end
 
function FxPropertyObject CopyValueFrom (pPropertyObject) end
 

变量

 FxPropertyObject = {}
 

函数说明

◆ CopyValueFrom()

function FxPropertyObject CopyValueFrom ( pPropertyObject  )

从另一个属性对象拷贝信息

参数
pPropertyObjectFxPropertyObject 要拷贝的属性对象
返回
boolean 是否拷贝成功

◆ GetCategoryName()

function FxPropertyObject GetCategoryName ( nCategory  )

获取某一类别名称

参数
nCategorynumber 属性类别
返回
string 类别名称

◆ GetCategoryNum()

function FxPropertyObject GetCategoryNum ( )

获取类别数目

返回
number 类别数目

◆ GetProperties()

function FxPropertyObject GetProperties ( nCategory  )

获取某一类别所有属性信息

参数
nCategorynumber 属性类别
返回
FxProperty[] 所有属性信息数组指针

◆ GetProperty()

function FxPropertyObject GetProperty ( szPropertyName  )

获取某一个属性对应的指针对象

参数
szPropertyNamestring 属性名称
返回
FxProperty 属性指针对象

变量说明

◆ FxPropertyObject