|
Hello mobu-community.
You can in the menu File>Properties add some metadata of your scene.
It is stored as a GlobalInfo into the fbx file:
Creator: "FBX SDK/FBX Plugins version 2012.0"
SceneInfo: "SceneInfo::GlobalInfo", "UserData" {
Type: "UserData"
Version: 100
MetaData: {
Version: 123
Title: "myTitle"
Subject: "mySubject"
Author: "Me"
Keywords: "tags"
Revision: "456"
Comment: "This is a comment"
}
My question is, how to get/set these informations in pyfbsdk ?
I cannot find a way to do it sadly.
There is a GlobalInfo component in the Scene instance, but without any Component or Property T.T
for currentComp in pyfbsdk.FBSystem().Scene.Components:
if currentComp.Name == 'GlobalInfo':
print len(currentComp.PropertyList)
print len(currentComp.Components) 0
0 >>>
A little help will be very appreciated^^.
|
|
|