Game Development Community

Character animations

by Kevin Lee · in Artist Corner · 03/19/2007 (2:40 pm) · 2 replies

My charcter animations work fine in show tools, but when I bring them into the TGE my forward animation isn't working. I can see my back, and side animations working, but my forward animation isn't playing. Anyone know why?

#1
03/21/2007 (5:59 pm)
Have you double check your TShapeConstructor, what name have you define your forward animation.


Aun.
Torque-Motion

#2
03/22/2007 (10:13 am)
I have tried 2 different ways. I have called the sequence name "forward and run". Here is the copy of my .cs file
datablock TSShapeConstructor(PlayerDts)
{
baseShape = "./max.dts";
sequence0 = "./max_root.dsq root";
sequence1 = "./max_run.dsq run";
sequence2 = "./max_back.dsq back";
sequence3 = "./max_walk.dsq walk";
};

I have also tried
datablock TSShapeConstructor(PlayerDts)
{
baseShape = "./max.dts";
sequence0 = "./max_root.dsq root";
sequence1 = "./max_forward.dsq run";
sequence2 = "./max_back.dsq back";
sequence3 = "./max_walk.dsq walk";
};