13 lines
392 B
GDScript
13 lines
392 B
GDScript
class_name frm_ecm_list extends NinePatchRect
|
|
|
|
|
|
## Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
$grd_forced/btn_cancel.button_connect('pressed', Callable(self, 'on_btn_cancel_pressed').bind($grd_forced/btn_cancel))
|
|
|
|
|
|
func on_btn_cancel_pressed(btn):
|
|
signaller.emit_signal('interfer_off_all')
|
|
await get_tree().create_timer(0.1).timeout
|
|
btn.pressed = false
|