Script to simply adjust a Pose Control?
jamesramirez6734
Posts: 90
Simple one! I'm able to target the Pose Control I want to change using:
var poseControl = genesis.getProperty(i);
But how do I actually change the pose control value? For example if the pose control is Mouth Open, what function do I need to call on it to adjust the sliders?
Thanks!
Comments
poseControl.setValue( val );
Thank you!