18 lines
613 B
GDScript
18 lines
613 B
GDScript
extends Control
|
|
@onready var date: Label = $HBoxContainer/TextureRect/TextureRect/date
|
|
@onready var time: Label = $HBoxContainer/TextureRect/TextureRect/time
|
|
@onready var weather: Label = $HBoxContainer/TextureRect/TextureRect/weather
|
|
@onready var pos: Label = $HBoxContainer/TextureRect/TextureRect/pos
|
|
@onready var map_add_pos: Panel = $HBoxContainer/map_add_pos
|
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready() -> void:
|
|
pass # Replace with function body.
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta: float) -> void:
|
|
pass
|