var jump just pressed

This commit is contained in:
minjaesong
2019-10-06 14:50:16 +09:00
parent 951a65cb4f
commit b6fe91ad19
3 changed files with 98 additions and 2 deletions

View File

@@ -133,7 +133,8 @@ class BasicDebugInfoWindow : UICanvas() {
"${if (player.walledRight) "$ccR" else "$ccG"}R" +
"${if (player.colliding) "$ccR" else "$ccG"}${0x08.toChar()} " +
"${if (player.jumping) "$ccG" else "$ccK"}JMP" +
"${if (player.isJumpDown) "$ccG" else "$ccK"}KEY"
"${if (player.isJumpDown) "$ccG" else "$ccK"}KEY" +
"${if (player.isJumpJustDown) "$ccO" else "$ccK"}${0x0F.toChar()}"
)
}