Game Development Community

Wheel Chair Sequence

by John Peter · in Torque 3D Beginner · 08/03/2010 (10:43 am) · 1 replies

Hi All

I have a Wheel Chair as a static Object. When the person clicks the wheel chair. It should mount. I have mounted the wheel chair on it.

My Problem is

I am trying for changing the pushing sequence. I have executed like this

%client = $server::Client;
%client.player.playThread(0, "pushing");

My Sequence is working. But not exactly.

when i click the up arrow. I think

The Run sequence+pushing sequence is calling.

How can i make only pushing sequence only should work.

is there any other idea.

How can i call the sequence while the object is mounted.

#1
08/20/2010 (5:17 am)
Try inserting
%client.player.stopThread();
before you play each new thread.
Please explain more about the problem you're having trying to play the sequence while the object is mounted.