Update tileset and settings, enhance logging

- Updated tileset configuration in 'tileset.tsj' to include new tiles and adjust dimensions.
- Added 'settings.json' for key bindings related to climbing and movement actions.
- Enhanced game logging in 'game.log' to track game start events and map loading.
- Updated the game binary to the latest version.
This commit is contained in:
2026-04-26 15:59:44 +02:00
parent ef550044ad
commit ede03ad026
22 changed files with 1237 additions and 482 deletions

View File

@@ -0,0 +1,73 @@
{
"ClimbDown": [
[
"ArrowDown"
]
],
"ClimbIn": [
[
"W"
]
],
"ClimbLeft": [
[
"A"
],
[
"ArrowLeft"
]
],
"ClimbMode": [
[
"Shift"
]
],
"ClimbOut": [
[
"S"
]
],
"ClimbRight": [
[
"D"
],
[
"ArrowRight"
]
],
"ClimbUp": [
[
"ArrowUp"
]
],
"Jump": [
[
"Space"
]
],
"MoveDown": [
[
"S"
]
],
"MoveLeft": [
[
"A"
]
],
"MoveRight": [
[
"D"
]
],
"MoveUp": [
[
"W"
]
],
"Run": [
[
"Control"
]
]
}