可以迭代不是 'built in' 的对象的 FbxProperties
Is is possible to iterate over the FbxProperties of an object that are not 'built in'
FbxObjects中的属性可以内置(如LclTranslation on an FbxNode)或动态添加。
我知道 GetDstPropertyCount() & GetDstProperty(int pIndex=0) 但我相信这也是 returns 'built in' 属性。
是否可以只对 FbxProperty
不是 'built in' 的 FbxObject
进行迭代?
是的,是的。您可以从文档中查看示例:
http://help.autodesk.com/view/FBX/2017/ENU/?guid=__cpp_ref__import_scene_2_display_user_properties_8cxx_example_html
您也可以使用此处提到的方法 FindProperty
:
FBX SDK how to retrieve user defined object properties
FbxObjects中的属性可以内置(如LclTranslation on an FbxNode)或动态添加。
我知道 GetDstPropertyCount() & GetDstProperty(int pIndex=0) 但我相信这也是 returns 'built in' 属性。
是否可以只对 FbxProperty
不是 'built in' 的 FbxObject
进行迭代?
是的,是的。您可以从文档中查看示例: http://help.autodesk.com/view/FBX/2017/ENU/?guid=__cpp_ref__import_scene_2_display_user_properties_8cxx_example_html
您也可以使用此处提到的方法 FindProperty
:
FBX SDK how to retrieve user defined object properties