diff options
| author | metamuffin <metamuffin@disroot.org> | 2024-07-17 23:09:15 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2024-07-17 23:09:15 +0200 |
| commit | 9c2da5a7beba1254e52c907d501a22dec0075ac6 (patch) | |
| tree | 05e2ebda0f8c24d122759ab98301afe28368dee4 /client/menu/warning_popup.gd | |
| parent | db36af42d34e1af26d4f76a14f310eea367396f9 (diff) | |
| download | hurrycurry-9c2da5a7beba1254e52c907d501a22dec0075ac6.tar hurrycurry-9c2da5a7beba1254e52c907d501a22dec0075ac6.tar.bz2 hurrycurry-9c2da5a7beba1254e52c907d501a22dec0075ac6.tar.zst | |
pass data to submenu and more form validation
Diffstat (limited to 'client/menu/warning_popup.gd')
| -rw-r--r-- | client/menu/warning_popup.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/menu/warning_popup.gd b/client/menu/warning_popup.gd index f418550b..20741834 100644 --- a/client/menu/warning_popup.gd +++ b/client/menu/warning_popup.gd @@ -1,5 +1,9 @@ extends Menu class_name WarningPopup +func _ready(): + print(self.data) + $CenterContainer/Panel/MarginContainer/VBoxContainer/Message.text = self.data + func _on_accept_pressed(): exit() |