[Closed] need help adding a controller in biped (CS)?
Hello all, ok heres the problem again I got my rig setup properly (CS) and now how do I Assign a controller (Controller -> Assign) using Max scripts and where can I get the list of all the controllers in Max. And is there a easier way to query the value of my controllers in Max? And is there a way to collapse all my controller when I’m done? Any advice or tips would be appreciated thank you all.
Thanks
This is what I got:
for obj in selection do
(
the_object = obj.transform.controller.Biped_SubAnim.controller.BipRotationList.controller.Available;
the_object = Euler_XYZ();
)
– Unknown property: “controller” in (matrix3 [0.0998334,1.4559e-007,-0.995004] [-1.45833e-006,1,0] [0.995004,1.45104e-006,0.0998334] [9.54482,5.63569,71.1555])
I don’t do any work with Bipeds, but try this instead:
for obj in selection do
(
obj.transform.controller.Biped_SubAnim.controller.BipRotationList.controller.Available.controller = Euler_XYZ()
)
RH