added text input, started adding label button

This commit is contained in:
2026-06-10 06:01:03 -05:00
parent 6c38b05832
commit 2e31012447
27 changed files with 163 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
@tool
extends Node3D
signal buttonPressed
signal buttonReleased
signal buttonUpdated
@export_category("Visuals")
@export var baseColor : Color
@export var pressedColor : Color
@export var icon : Texture2D
func _ready() -> void:
$StaticBody3D._initButton(baseColor,pressedColor,icon)
print(baseColor,pressedColor)