Added Spawn and Map functions

This commit is contained in:
Willow Behar
2024-06-02 15:29:04 -05:00
parent 7cd96e08e3
commit 5b67cb1681

View File

@ -1,7 +1,16 @@
extends Node
var DEVMODE = true
var is_paused = false
var current_map = ""
var SpawnPoint:Vector3
var Player_Last_Location = Vector3(0,0,0)
func SetCurrentMap(selected_map):
current_map = selected_map
func SetSpawnPoint(pos:Vector3):
SpawnPoint = pos
print("Spawn Point set to ", pos)