-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayer.java
21 lines (17 loc) · 865 Bytes
/
Player.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
public class Player extends Entity {
Stats stats;
public Player(Stats stats) {
super(64, 400, 16, 48);
this.debugColor = new Color(0.5f, 0.3f, 0.8f, 1);
this.stats = stats;
TextureAtlas atlas = new TextureAtlas(Gdx.files.internal("sprites/player.pack"));
idleLeft = setupAnimation(atlas, new String[]{"standing-0"}, true);
idleRight = setupAnimation(atlas, new String[]{"standing-0"}, false);
runLeft = setupAnimation(atlas, new String[]{"running-0", "standing-0", "running-1", "standing-0"}, true);
runRight = setupAnimation(atlas, new String[]{"running-0", "standing-0", "running-1", "standing-0"}, false);
}
}