So as the title says i’m triyng to create a simple jumping animation for my 2d RPG, instead of just having left,right,up,down movements i’d like left, right, and jump.
At the moment the only variables to tell/change a players position are:
public int absX;
public int absY;
Now I know i’m going to need some other variables + forumlas, such as Dx, Dy, but if someone could point me in the direction on how to go on this, it would be much appreciated.
At the moment i just made a simple method called jump(), which (absY–) = (Up actually), 15 times, and when that characters height has raised 15 times, than i would lower it back to -15, (flat at the floor), so it looks like a animation.
But I really don’t like the way that that looks O_o.
If someone could help me please! :o