Announcements

AREA content is being relocated to the Autodesk Community M&E Hub and Gallery. Notifications may be intermittently unavailable 10–12 November. Learn more HERE.

Take Options ( from Animation menu in Key Editor Window ) not exposed in Python?

Take Options ( from Animation menu in Key Editor Window ) not exposed in Python?

Anonymous
Not applicable
576 Views
3 Replies
Message 1 of 4

Take Options ( from Animation menu in Key Editor Window ) not exposed in Python?

Anonymous
Not applicable

Is this property exposed in Python?

 

It would be very handy when working in multitake scenes...

 

 

Does anybody know about this property?

 

MotionBuilder 2015 - Student Version   - 64 bit  - Untitled.jpg

0 Likes
577 Views
3 Replies
Replies (3)
Message 2 of 4

BradClarkRiggingDojo
Collaborator
Collaborator

Not sure if it is set in Python, it didn't work correctly in a few version of MotionBuilder.

 

The setting is per object and should save with the scene so if you select what you want, set it and save as your template you should be set.

 

Mobu 2017 should be working correctly, anything in 2016 I think is still broken.

0 Likes
Message 3 of 4

Anonymous
Not applicable

3 years later.....got the answer by searching a little bit more.

 

for other people out there: 

 

just query the object or model's PropertyList.

joe = FBModelCube("joe")

for i in joe.PropertyList: print i.Name, ": " , i

 

then, 

 

print joe.PropertyList.Find("MultiTake").Data

and you can set this property's data value.

 

joe.PropertyList.Find("MultiTake").Data = 0

 

Message 4 of 4

BradClarkRiggingDojo
Collaborator
Collaborator
0 Likes