Possible Duplicate:
How to make a character jump?
I have been working on a 2D platformer and am trying to implement jumping. At the moment I have it simply teleporting upward and then falling back down:
if(Keyboard.GetState().IsKeyDown(Keys.Space) && !jumping) _position2D.Y -= 64f;
Is there any way to smooth it out and make it more parabolic?