2023-01-03 19:08:45 -07:00
|
|
|
extends Spatial
|
|
|
|
|
|
|
|
|
|
|
|
# Declare member variables here. Examples:
|
|
|
|
# var a = 2
|
|
|
|
# var b = "text"
|
|
|
|
|
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready():
|
|
|
|
$blackscreen.visible = false
|
|
|
|
var dialog = Dialogic.start("end")
|
|
|
|
add_child(dialog)
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
#func _process(delta):
|
2023-01-03 23:20:15 -07:00
|
|
|
# if Dialogic.get_variable("")
|
2023-01-03 19:08:45 -07:00
|
|
|
# pass
|