ok, i'm trying out some basic animations now. i've got an idle.smd which is one frame of animation standing still and i have a crude run.smd where the legs just waggle back and forth. the problem is that whichever animation comes first in config-zym.txt just runs all the time, regardless of whether i am standing still or running. if i have...
- Code: Select all
output "blockbot"
scale 1
origin 0 0 23
rotate 90
mesh mesh.smd
scene idle.smd fps 10
scene run.smd fps 22
...then my model glides around the map motionless, but if i have...
- Code: Select all
output "blockbot"
scale 1
origin 0 0 23
rotate 90
mesh mesh.smd
scene run.smd fps 22
scene idle.smd fps 10
...it runs all the time, even when i'm not moving.
is this because i don't have the complete set of animations?