|
strange, in 2010 I have created Aux Pivot for ankle, selected and runned this script
from pyfbsdk import *
lModels = FBModelList() FBGetSelectedModels(lModels)
if len(lModels) > 0:
IKPivot = lModels[0].PropertyList.Find('IKPivot')
if IKPivot:
IKPivot.Data = FBVector3d(30,30,20)
print IKPivot
worked as expected.
Author: KxL
|