add tooltips and fix stuff

This commit is contained in:
2026-07-02 21:19:56 +02:00
parent 3512145a66
commit 922c771185
69 changed files with 1452 additions and 5 deletions

21
core/tooltips/tooltip.gd Normal file
View File

@@ -0,0 +1,21 @@
@tool
extends HBoxContainer
@export var image: Texture:
set(value):
image = value
if is_inside_tree() and has_node("%Texture"):
$%Texture.texture = image
@export var text: String:
set(value):
text = value
if is_inside_tree() and has_node("%Label"):
$%Label.text = text
func _ready():
if image != null and has_node("%Texture"):
$%Texture.texture = image
if is_inside_tree() and has_node("%Label"):
$%Label.text = text