Allow having an arbitrary number of repos in a level

This commit is contained in:
Sebastian Morr 2020-09-30 21:36:11 +02:00
parent 91a57c49d7
commit 065ca2a233
11 changed files with 161 additions and 79 deletions

View file

@ -20,6 +20,11 @@ _global_script_classes=[ {
"path": "res://level.gd"
}, {
"base": "Node",
"class": "LevelRepo",
"language": "GDScript",
"path": "res://level_repo.gd"
}, {
"base": "Node",
"class": "Shell",
"language": "GDScript",
"path": "res://shell.gd"
@ -27,6 +32,7 @@ _global_script_classes=[ {
_global_script_class_icons={
"Chapter": "",
"Level": "",
"LevelRepo": "",
"Shell": ""
}