This repository has been archived on 2023-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Boups/Elements/Scripts/Directory.gd
Mylloon 8f920f93b9
* Add cursors, background and new buttons
* Start implementation of desktop
2023-02-26 13:12:38 +01:00

10 lines
302 B
GDScript
Executable file

extends Area2D
onready var screen = $"../Screen"
func _on_Area2D_input_event(_viewport: Node, event: InputEvent, _shape_idx: int) -> void:
if event is InputEventMouseButton:
event = event as InputEventMouseButton
if event.pressed and event.button_index == BUTTON_LEFT:
screen.visible = true