You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Babushka/scripts/GdScript/dialogic_start_specific.gd

12 lines
218 B

extends Node
class_name DialogicStartSpecific
@export var timeline : String
func open():
Dialogic.start(timeline)
func _process(delta: float) -> void:
TalkingCharacter.SetTalking(Dialogic.current_timeline!=null)