I have a door with a wheel that turns when you open it. When you close the door it should turn the wheel the other way.
%door.setThreadDir(0,true);
%door.playthread(0,"Wheel");
%door.stopThread(0);
%door.setThreadDir(0,false);
%door.playthread(0,"Wheel");
%door.stopThread(0);
This does not work.... seems stopThread resets the seq to frame 0
I changed the anim to not be cyclic and still does not work.
What am I doing wrong here?