This commit is contained in:
2025-08-31 17:53:17 -05:00
parent 6d75b33775
commit aea5158d6e
161 changed files with 13444 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
@tool
extends Button
@export var tip_title: String = ""
@export_multiline var tip_text: String = "" # (String, MULTILINE)
@onready var tip_dialog = get_node("TipDialog")
func _on_BtnTip_pressed():
tip_dialog.title = tip_title
tip_dialog.dialog_text = tip_text
tip_dialog.popup_centered()