So, I'm trying to do something pretty simple and straightforward. Create a 1-bone joint chain, and get back all of its elements. Turns out this is not being as straight-forward as it should be. Here's the little snippet of this part of my script...

si = Application
chainRoot = si.Create2DSkeleton(0, 0, 0, 10, 0, 0, -90, 0, 0, 4)
print chainRoot
print chainRoot.Children # Not working
print chainRoot.Bones # Not working
print chainRoot.Effector

'''
Properties taken from here
http://download.autodesk.com/global/docs/softimage2013/en_us/sdkguide/index.html
'''

As you can see, I'm printing out the properties I'd need, but two of them (the two I'd actually care about) are 'not working' (they return 'None'). Why is this? Are they broken, or am I missing something? Any help is appreciated. Thanks!
--

Reply via email to