initial commit

This commit is contained in:
2026-06-09 23:53:19 -05:00
commit 625f1eb1f9
9 changed files with 128 additions and 0 deletions

View File

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