start von Commits

This commit is contained in:
kevadesu 2025-04-14 02:27:59 +02:00
commit f35baec2ee
80 changed files with 1747 additions and 0 deletions

10
in_game_ui_leftpanel.gd Normal file
View file

@ -0,0 +1,10 @@
extends VBoxContainer
func _ready():
var button = get_node("Button2")
button.pressed.connect(_button_pressed)
func _button_pressed():
var button = get_node("Button2")
button.text = "You pressed me!"
print("Hello world!")