Improved quest system

This commit is contained in:
Segey Lapin
2019-07-26 04:29:15 +03:00
parent 3376b5b912
commit 790f4b43dd
10 changed files with 245 additions and 10 deletions

View File

@@ -23,11 +23,23 @@ _global_script_classes=[ {
"class": "QuestObjective",
"language": "GDScript",
"path": "res://system/quest_objective.gd"
}, {
"base": "Quest",
"class": "StatsQuest",
"language": "GDScript",
"path": "res://system/stats_quest.gd"
}, {
"base": "Quest",
"class": "WalkQuest",
"language": "GDScript",
"path": "res://system/walk_quest.gd"
} ]
_global_script_class_icons={
"BallGameAI": "",
"Quest": "",
"QuestObjective": ""
"QuestObjective": "",
"StatsQuest": "",
"WalkQuest": ""
}
[application]