I have a model in which I need to control its animation. I had long given up on this idea, until I remembered holding Z in Third Person View. With this, you can turn your head certain ways in a controlled manner.
After much searching, I couldn't figure out exactly how to create any new way of doing this outside of some imprecise source code. I changed the head turning animation with a different animation and found that I could control the different animation the same way. But I need a different way of controlling it, preferably by numerical value.
I used to try all the animation scripts, but none of them could provide control. All they allowed me to do was go to the start or end of an animation.
I'm sure this is not possible as I was hoping, but at least is there a way to make a similar hack?
Edit1: And, sadly, this is the Torque code for FreeLook:
function toggleFreeLook( %val )
{
if ( %val )
$mvFreeLook = true;
else
$mvFreeLook = false;
}Edit2: I found this, although an apparent cold has left me in too much pain to process the words:
http://www.torquepowered.com/community/forums/viewthread/73223