first Prototype
This commit is contained in:
parent
89503407e7
commit
c887a2168c
78 changed files with 2494 additions and 2 deletions
14
scenes/globals/globals.gd
Normal file
14
scenes/globals/globals.gd
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
extends Node
|
||||
|
||||
var currentDelay: float = 1.0
|
||||
var player: Player = null
|
||||
|
||||
func _ready() -> void:
|
||||
pass
|
||||
|
||||
|
||||
func setPlayer(_player: Player):
|
||||
player = _player
|
||||
|
||||
func getPlayer() -> Player:
|
||||
return player
|
||||
Loading…
Add table
Add a link
Reference in a new issue