meow
This commit is contained in:
parent
10a7e89e3a
commit
5cab4e0ab9
5 changed files with 295 additions and 5 deletions
3
clock.gd
3
clock.gd
|
|
@ -2,6 +2,7 @@ extends Control
|
|||
|
||||
var taskbar_height : int = 50
|
||||
@export var bar: TextureProgressBar
|
||||
@export var label: Label
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
|
|
@ -31,6 +32,8 @@ func _process(delta: float) -> void:
|
|||
bar.max_value = mini_hour * 13.5
|
||||
bar.min_value = mini_hour * 11.5
|
||||
bar.value = current_day
|
||||
#label.text = Time.get_datetime_string_from_system()
|
||||
#Time.
|
||||
#print(current_day)
|
||||
|
||||
if (bar.value >= 0.50):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue