Smooth player movements?

Started by
2 comments, last by StrangeTurtle 11 years, 8 months ago
Hello.

I'm basically creating a game made if tiles/blocks.
The player moves like 1 tile, but that just looks bad.
Is there anyway to make it look like he walks to the tile position, like make an animation to the position?
Advertisement
yes you can animate a sprite and interpolate each frame as an animation, and move using delta time.

this link is for c++ but you can get the idea http://www.programmersheaven.com/2/time-fps

ej

currentpos += dir*deltatime;

yes you can animate a sprite and interpolate each frame as an animation, and move using delta time.

this link is for c++ but you can get the idea http://www.programme....com/2/time-fps

ej

currentpos += dir*deltatime;

This is a good idea, time delta is widely used in geometry transforms like rotation and translation.
Check out this basic physics flash movie. http://www.rodedev.com/tutorials/gamephysics/

you need to keep adding acceleration over time to the velocity of the object changing its position until it reaches the final target location.

"Oh, God, I'm nervous. Two of my three hearts are having attacks." -Zoidberg
Site: http://www.strangeturtle.com

This topic is closed to new replies.

Advertisement