I need some help. I'm new to Maxscript (can script, just new to Maxscript).
I have been staring at my code for hours and I can't figure out why my buttons do nothing. Any help would be much appreciated.
ca = attributes Test
(
parameters IKParameter rollout:IKFKRollout
(
)
rollout IKFKRollout "FK / IK Controls"
(
group "Left Leg"
(
button IKButtonL "IK to FK" align:#left across:3
label FKIKTextL "Match" offset:[0,5]
button FKButtonL "FK to IK" align:#right
)
)
on IKButtonL pressed do
(
print "IK to FK"
)
on FKButtonL pressed do
(
print "FK to IK"
)
)
custAttributes.add $'BodyCTRL' ca
vusta · 2016-11-30