wall-kick-jump WIP

This commit is contained in:
minjaesong
2019-10-02 15:24:05 +09:00
parent c14453cb35
commit 15a6324ef4
6 changed files with 29 additions and 9 deletions

View File

@@ -131,7 +131,9 @@ class BasicDebugInfoWindow : UICanvas() {
"${if (player.walledBottom) "$ccR" else "$ccG"}${0x1F.toChar()}" +
"${if (player.walledTop) "$ccR" else "$ccG"}${0x1E.toChar()}" +
"${if (player.walledRight) "$ccR" else "$ccG"}R" +
"${if (player.colliding) "$ccR" else "$ccG"}${0x08.toChar()}"
"${if (player.colliding) "$ccR" else "$ccG"}${0x08.toChar()} " +
"${if (player.jumping) "$ccG" else "$ccK"}JMP" +
"${if (player.isJumpDown) "$ccG" else "$ccK"}KEY"
)
}