CONTROLER TOOLS

Controler tools are just two small scripts that I use to manage my objects control inputs.

ZERO CONTROLERS - When rigging I find myself layering controlers, for all kinds of reasons. Well mosty for wiring controlers to a clean value, but I end up doing it alot. This script automates it for me.

CLEAR - This button sits next to the zero button on my toolbox, so I included it with, it just resets your controlers to what objects start out with, hand to clean things up quickly.

ZERO CONTROLERS

(
for i in 1 to selection.count do
(
selection[i].pos.controller = position_list ()
selection[i].pos.controller.Available.controller = Position_XYZ ()
selection[i].rotation.controller = rotation_list ()
selection[i].rotation.controller.Available.controller = Euler_XYZ ()
)
)

CLEAR CONTROLERS

(
selection[i].pos.controller = Position_XYZ ()
selection[i].rotation.controller = Euler_XYZ ()
)