6 lines
121 B
GDScript3
6 lines
121 B
GDScript3
|
extends PanelContainer
|
||
|
|
||
|
func _input(event: InputEvent) -> void:
|
||
|
if event.is_action_pressed("mouse_left"):
|
||
|
self.hide()
|