We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0767824 commit ccd7d0dCopy full SHA for ccd7d0d
res/sprite_sheet.png
926 Bytes
src/com/redomar/game/entities/Dummy.java
@@ -49,6 +49,11 @@ public void render(Screen screen) {
49
50
if (movingDir == 1) {
51
xTile += 2;
52
+ if (!isMoving || swim.isActive(swimType)){
53
+ yTile -= 2;
54
+ }
55
+ } else if (movingDir == 0 && !isMoving || movingDir == 0 && swim.isActive(swimType)) {
56
57
} else if (movingDir > 1) {
58
xTile += 4 + ((numSteps >> walkingSpeed) & 1) * 2;
59
flipTop = (movingDir - 1) % 2;
0 commit comments