I'm reading up on Lua based animation here
http://springrts.com/wiki/Animation-LuaScripting
Is there a way to do key framed animation from 3DS max?
I want to make a garage door of a factory go down into the ground when a unit is completed and go back up as soon as it rolls out, I imagine something of the following fashion would get me close?
Code: Select all
Move(door, y_axis, -2.4)
Sleep(150)
Move(door, y_axis, 0, 3)
end
Thanks