Add replays, which replay all your previous runs and can also be disabled in settings

This commit is contained in:
csd4ni3l
2025-11-29 21:29:01 +01:00
parent df5cd8346d
commit 945c3a3859
3 changed files with 59 additions and 6 deletions

View File

@@ -11,6 +11,8 @@ PLAYER_JUMP_SPEED = 28
GRID_PIXEL_SIZE = 70
RESTART_DELAY = 0.1
REPLAY_DELAY = 1 / 20
LEFT_RIGHT_DIAGONAL_ID = 6
RIGHT_LEFT_DIAGONAL_ID = 7
@@ -46,6 +48,7 @@ settings = {
"Miscellaneous": {
"Discord RPC": {"type": "bool", "config_key": "discord_rpc", "default": True},
"Hitboxes": {"type": "bool", "config_key": "hitboxes", "default": False},
"Replays": {"type": "bool", "config_key": "replays", "default": True},
},
"Credits": {}
}