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"
|
|
|
|
var level1max
|
|
|
|
var level2max
|
|
|
|
var level3max
|
|
|
|
var level4max
|
|
|
|
var level5max
|
|
|
|
var level6max
|
|
|
|
var level7max
|
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
|