blob: 5f1d810115e4993a5b713b935d8631b480869e73 (
plain)
1
2
3
4
5
6
7
8
9
|
extends Node
func _ready():
var scene = preload("res://Scenes/Maps/Base01.tscn").instantiate()
var player = preload("res://Scenes/Entities/Player.tscn").instantiate()
Utilities.change_scene_with_player_to_position(
scene, player, NodePath("InitialPlayerPosition"), "down"
)
|