wellbeingapp/godot/program_values.gd

19 lines
403 B
GDScript3
Raw Normal View History

2022-08-07 01:08:10 +00:00
extends Node
# This variable lists the release number.
# This is "the number of releases".
# My aim is to check against a web file to see if
# there is a new version available and show a
# download button if there is.
var release_version = 1
2022-08-08 08:53:39 +00:00
var web_release_version = 0
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