godot-third-person-basic-scene/maps/objects/panel-mega.gd

14 lines
396 B
GDScript3
Raw Normal View History

2022-03-29 22:30:32 +00:00
extends Node3D
# 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.
2022-06-26 13:20:42 +00:00
func _process(_delta):
2022-03-29 22:30:32 +00:00
$panel2/Node3D/SubViewport/VBoxContainer/Label.text = str(Common.get_time_only_text())
func _on_button_pressed():
Common.msg_debug("Button Panel Meta pressed")