narration

This commit is contained in:
2026-03-09 21:40:57 -07:00
parent 1b13072412
commit e243083a5f
7 changed files with 27 additions and 64 deletions

View File

@@ -19,19 +19,19 @@ func _on_back_of_fishermans_shack_interacted() -> void:
func _on_boulder_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "A large rock dominates the clearing.")
ScriptBuilder.narrate("A large rock dominates the clearing.")
).build(self, "_on_script_complete"))
func _on_pool_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "It's too far in the distance to see it clearly.")
ScriptBuilder.narrate("It's too far in the distance to see it clearly.")
).build(self, "_on_script_complete"))
func _on_flowers_looked() -> void:
start_main_script(ScriptBuilder.init(
ScriptBuilder.say(ego, "There are flowers here and there.")
ScriptBuilder.narrate("There are flowers here and there.")
).build(self, "_on_script_complete"))