summaryrefslogtreecommitdiffstats
path: root/GlobalData.gd
blob: 1ee67a1b305e5a0dabdd97a8c15760655960e7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extends Node

export(int) var player_hp = 3
export(float) var GRAVITY: float = 1200
export(float) var MAX_FALL_SPEED: float = 1200

# Called when the node enters the scene tree for the first time.
func _ready():
	pass # Replace with function body.


# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
#	pass