2022-08-07 01:08:10 +00:00
|
|
|
extends Node
|
|
|
|
|
|
|
|
|
|
|
|
# This variable lists the release number.
|
|
|
|
# This is "the number of releases".
|
|
|
|
|
|
|
|
var release_version = 1
|
2022-08-16 09:37:09 +00:00
|
|
|
|
|
|
|
# The var web_release_version is pulled from GitHub
|
|
|
|
# when the update button is checked. A higher value means
|
|
|
|
# an update is available
|
|
|
|
|
2022-08-08 08:53:39 +00:00
|
|
|
var web_release_version = 0
|
2022-08-16 09:37:09 +00:00
|
|
|
var current_version = "0.0.8"
|
2022-08-09 07:17:54 +00:00
|
|
|
|
|
|
|
func check_update():
|
|
|
|
pass
|
2022-08-07 01:08:10 +00:00
|
|
|
|
|
|
|
func _ready():
|
2022-08-08 06:52:49 +00:00
|
|
|
pass
|
2022-08-08 08:53:39 +00:00
|
|
|
|
2022-08-07 01:08:10 +00:00
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
|
|
#func _process(delta):
|
|
|
|
# pass
|