Started using a project file to load scenes

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2021-06-02 08:04:44 +02:00
parent 4e37cad399
commit e6cc79f1dc
10 changed files with 190 additions and 141 deletions

25
res/project/game.proj Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "dummy_game",
"engineVersion": "0.2",
"mounts": [
{
"path": "./res",
"mountpoint": "res"
},
{
"path": "./res/scripts",
"mountpoint": "scripts"
},
{
"path": "./res/scenes",
"mountpoint": "scenes"
}
],
"scenes": [
{
"id": "MainScene",
"path": "scenes://MainScene.evsc"
}
],
"activeScene": "MainScene"
}