Load level information into classes

This commit is contained in:
Sebastian Morr 2020-09-29 19:40:17 +02:00
parent 3270bb64d0
commit f20310df3a
5 changed files with 143 additions and 91 deletions

View file

@ -10,11 +10,23 @@ config_version=4
_global_script_classes=[ {
"base": "Node",
"class": "Chapter",
"language": "GDScript",
"path": "res://chapter.gd"
}, {
"base": "Node",
"class": "Level",
"language": "GDScript",
"path": "res://level.gd"
}, {
"base": "Node",
"class": "Shell",
"language": "GDScript",
"path": "res://shell.gd"
} ]
_global_script_class_icons={
"Chapter": "",
"Level": "",
"Shell": ""
}
@ -28,6 +40,7 @@ config/use_custom_user_dir=true
game="*res://game.gd"
helpers="*res://helpers.gd"
levels="*res://levels.gd"
[display]