meat_madness_redux/godot/screens/escape_ending.gd

17 lines
380 B
GDScript3
Raw Normal View History

2023-01-03 19:24:58 -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():
var dialog = Dialogic.start("end")
add_child(dialog)
2023-01-04 12:49:02 -07:00
$AnimationPlayer.play_backwards("camera pan")
2023-01-03 19:24:58 -07:00
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass