the-crypt/Player/PlayerVariables.gd
2020-07-20 23:55:16 -05:00

14 lines
214 B
GDScript

extends Node
var position: Vector2 = Vector2()
var health: float = -1
var energy: float = -1
var unlocked: Array = [Globals.Conduit2]
func respawn():
health = -1
energy = -1
func reset_magic():
unlocked = []