Basically putting all the translation stuff together before I refactor things to use it.

This commit is contained in:
2025-05-25 12:53:34 -05:00
parent 1e2d971643
commit f5cb84e0c9
31 changed files with 254 additions and 327 deletions

View File

@@ -1,6 +1,6 @@
class_name Quest extends Node
@export var questName:String = "Some quest"
@export var title:String = ""
@export var questKey:QuestSystem.QuestKey = QuestSystem.QuestKey.TEST_QUEST
var questStarted:bool = false

View File

@@ -4,7 +4,7 @@ enum Type {
Item,
}
@export var objectiveName:String = "Some objective"
@export var title:String = ""
@export var objectiveType:Type = Type.Item
@export var itemType:Item.Type = Item.Type.POTION