r3-cd/global.gd

20 lines
380 B
GDScript3
Raw Permalink Normal View History

2023-09-25 20:07:12 +02:00
extends Node
var live
var time
var origmpos
var mousepos
2023-10-24 18:36:49 +02:00
var timelimit = 15000
var wait
2023-11-01 17:36:29 +01:00
var hiscoresfile = "user://hiscores.save"
2023-11-12 18:21:27 +01:00
var gamelevel
var levelmax
2023-09-25 20:07:12 +02:00
# 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