17 lines
367 B
GDScript3
17 lines
367 B
GDScript3
|
extends Control
|
||
|
|
||
|
signal search_click(str:String)
|
||
|
signal request_hide()
|
||
|
func get_input()->String:
|
||
|
return $TextureRect2/TextureRext/LineEdit.text
|
||
|
|
||
|
|
||
|
func _on_terminal_search_button_pressed() -> void:
|
||
|
search_click.emit(get_input())
|
||
|
pass # Replace with function body.
|
||
|
|
||
|
|
||
|
func _on_tunnel_close_pressed() -> void:
|
||
|
request_hide.emit()
|
||
|
pass # Replace with function body.
|