added text input, started adding label button
This commit is contained in:
15
AGUI.Scripts/AGUI.Root/AGUI.IconButton3D.gd
Normal file
15
AGUI.Scripts/AGUI.Root/AGUI.IconButton3D.gd
Normal 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)
|
||||
Reference in New Issue
Block a user