2023-09-08 21:50:34 +02:00
|
|
|
extends Node
|
|
|
|
|
|
|
|
var live
|
|
|
|
var time
|
|
|
|
var origmpos
|
|
|
|
var mousepos
|
2023-10-24 18:36:04 +02:00
|
|
|
var timelimit = 15000
|
|
|
|
var wait
|
2023-11-01 17:35:54 +01:00
|
|
|
var hiscoresfile = "user://hiscores.save"
|
2023-11-12 18:20:59 +01:00
|
|
|
var gamelevel
|
|
|
|
var levelmax
|
2023-11-23 20:19:21 +01:00
|
|
|
var firstrun
|
|
|
|
var sk = false
|
2023-12-02 21:44:54 +01:00
|
|
|
var xm = 0
|
|
|
|
var ym = 0
|
2023-09-08 21:50:34 +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
|