mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 07:28:14 +00:00
14 lines
303 B
GDScript
14 lines
303 B
GDScript
extends TilePropertyContainer
|
|
|
|
signal editing_start
|
|
signal editing_finished
|
|
|
|
func open_menu() -> void:
|
|
editing_start.emit()
|
|
$CanvasLayer.show()
|
|
|
|
func on_pressed() -> void:
|
|
set_value(Global.sanitize_string($CanvasLayer/Panel/VBoxContainer/TextEdit.text))
|
|
editing_finished.emit()
|
|
$CanvasLayer.hide()
|