Script to simply adjust a Pose Control?
![jamesramirez6734](https://secure.gravatar.com/avatar/f860601803ee3d2b13a507aefc4f7f20?&r=pg&s=100&d=https%3A%2F%2Fvanillicon.com%2Ff860601803ee3d2b13a507aefc4f7f20_100.png)
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!