fixed basic movement, now add world loading

This commit is contained in:
anonoe 2026-02-09 22:44:11 +01:00
parent 34ba37312a
commit 50f37ebc5f
Signed by: anonoe
SSH key fingerprint: SHA256:OnAs6gNQelOnDiY5tBpDYKQiuTgBvnmIdMo5P09cdqg
23 changed files with 482 additions and 27 deletions

View file

@ -0,0 +1,15 @@
{
"schema": 1,
"world_id": "world:main",
"display_name": "Main World",
"chunk_size_px": 512,
"tile_size_px": 16,
"start_pos_px": [256, 256],
"chunks": [
{ "x": 0, "y": 0, "path": "data/world/chunks/0_0.json" },
{ "x": 1, "y": 0, "path": "data/world/chunks/1_0.json" },
{ "x": 0, "y": 1, "path": "data/world/chunks/0_1.json" },
{ "x": 1, "y": 1, "path": "data/world/chunks/1_1.json" }
]
}