blob: 5c087444c30b47a1830dad17845ae18f419e7b26 (
plain)
1
2
3
4
5
6
7
8
9
|
class_name RoomCineIntro
extends Room
@onready var top: Top = get_tree().root.get_node("Top")
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
var cine = CineIntro.new()
top.add_child(cine)
|