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