Scenes are now ready to be worked on.

This commit is contained in:
Zed A. Shaw 2026-04-01 13:07:48 -04:00
parent 2dec4ec993
commit e113c0bc97
10 changed files with 67 additions and 10 deletions

View file

@ -47,8 +47,23 @@
"frame_width": 900,
"frame_height": 600
},
"test_background":
{"path": "assets/scenes/test_background.png",
"death_scene":
{"path": "assets/scenes/death_scene.png",
"frame_width": 1920,
"frame_height": 1080
},
"next_level_scene":
{"path": "assets/scenes/next_level_scene.png",
"frame_width": 1920,
"frame_height": 1080
},
"starting_scene":
{"path": "assets/scenes/starting_scene.png",
"frame_width": 1920,
"frame_height": 1080
},
"win_scene":
{"path": "assets/scenes/win_scene.png",
"frame_width": 1920,
"frame_height": 1080
}

View file

@ -1,11 +1,53 @@
{
"DEATH": {
"components": [
{"_type": "AnimatedScene",
"layout": [
"[=text]"
],
"background": "death_scene",
"actors": [
],
"fixtures": [
]
}
]
},
"NEXT_LEVEL": {
"components": [
{"_type": "AnimatedScene",
"layout": [
"[=text]"
],
"background": "test_background",
"background": "next_level_scene",
"actors": [
],
"fixtures": [
]
}
]
},
"STARTING": {
"components": [
{"_type": "AnimatedScene",
"layout": [
"[=text]"
],
"background": "starting_scene",
"actors": [
],
"fixtures": [
]
}
]
},
"WIN": {
"components": [
{"_type": "AnimatedScene",
"layout": [
"[=text]"
],
"background": "win_scene",
"actors": [
],
"fixtures": [

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
assets/scenes/win_scene.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB