Scenes are now ready to be worked on.
This commit is contained in:
parent
2dec4ec993
commit
e113c0bc97
10 changed files with 67 additions and 10 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
BIN
assets/scenes/death_scene.png
Normal file
BIN
assets/scenes/death_scene.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 252 KiB |
BIN
assets/scenes/next_level_scene.png
Normal file
BIN
assets/scenes/next_level_scene.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 203 KiB |
BIN
assets/scenes/starting_scene.png
Normal file
BIN
assets/scenes/starting_scene.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
BIN
assets/scenes/win_scene.png
Normal file
BIN
assets/scenes/win_scene.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 194 KiB |
Loading…
Add table
Add a link
Reference in a new issue