24 lines
623 B
Plaintext
24 lines
623 B
Plaintext
{
|
|
"window": {
|
|
"width": 800,
|
|
"height": 600,
|
|
"title": "Boundard - Square Example"
|
|
},
|
|
|
|
"input": [
|
|
{ "action": "quit", "keys": ["Escape"] },
|
|
{ "action": "switch_scene", "keys": ["Tab"] },
|
|
{ "action": "move_left", "keys": ["a"] },
|
|
{ "action": "move_right", "keys": ["d"] },
|
|
{ "action": "move_up", "keys": ["w"] },
|
|
{ "action": "move_down", "keys": ["s"] }
|
|
],
|
|
|
|
"start_scene": "square",
|
|
|
|
"scenes": [
|
|
{ "name": "square", "path": "scenes/square.json" },
|
|
{ "name": "square_alt", "path": "scenes/square_alt.json" }
|
|
]
|
|
}
|