|
Where are the public attributes on an FBModelSkeleton which allow me to change Pivot Size, Show Rotation Axis, and Pivot Visibility?
-jason
|
|
|
|
It looks like they don’t have public attrs, in which case you need to access them through the PropertyManager:
a = FBFindModelByName('Skeleton node')
pivSizeProp = a.PropertyList.Find('Pivot Size') pivSizeProp.Data = 150.0
showRotAxProp = a.PropertyList.Find('Show Rotation Axis') showRotAxProp.Data = True
Stev
|
|
|
|
Thank you sir.
Had forgotten about the good ‘ol PropertyList.Find. Been awhile. Trying to get ramped up.
Tanks,
-jason
-jason
|
|
|