feat: update 2.1.9

This commit is contained in:
2026-04-29 01:36:49 +08:00
parent 1585b91509
commit 8a2f865ad8
76 changed files with 2628 additions and 39 deletions
+14
View File
@@ -0,0 +1,14 @@
extends ConfirmationDialog
signal accepted
signal declined
@onready var _message_label: Label = %MessageLabel
func _ready() -> void:
confirmed.connect(func(): emit_signal("accepted"))
canceled.connect(func(): emit_signal("declined"))
get_cancel_button().text = "Decline"
func setup(from_name: String) -> void:
_message_label.text = "%s invited you to join their lobby!\n\nJoin now?" % from_name