mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
13 lines
387 B
GDScript3
13 lines
387 B
GDScript3
|
extends Label
|
||
|
|
||
|
func _ready():
|
||
|
pass
|
||
|
|
||
|
func _on_gui_input(ev):
|
||
|
if ev is InputEventMouseButton and ev.doubleclick and ev.button_index == BUTTON_LEFT:
|
||
|
var dialog = preload("res://addons/material_maker/widgets/line_dialog.tscn").instance()
|
||
|
add_child(dialog)
|
||
|
dialog.set_texts("Remote", "Enter a name this control")
|
||
|
dialog.connect("ok", self, "set_text", [])
|
||
|
dialog.popup_centered()
|