mirror of
https://github.com/Relintai/godot_data_editor.git
synced 2024-11-13 06:27:19 +01:00
10 lines
161 B
GDScript3
10 lines
161 B
GDScript3
|
tool
|
||
|
extends AcceptDialog
|
||
|
|
||
|
func warn(title, text):
|
||
|
set_title(title)
|
||
|
set_text(text)
|
||
|
popup_centered()
|
||
|
|
||
|
# Probably this should be placed at get_base_control()
|