Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
3DS MAX 为可以放置任意文本的节点提供用户定义字段。
如何使用 FBX SDK 检索此文本?我在文档中找不到任何答案。
FBX ASCII 表示帮助很大。用户定义属性存储在“UDP3DSMAX”FBX 属性中。
代码:
FbxProperty p = m_node->FindProperty("UDP3DSMAX"); if (p.IsValid()) FbxString str = p.Get<FbxString>();