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>();