aboutsummaryrefslogtreecommitdiff
path: root/lib/clickable_area.gd
blob: c9e49d77f3e1b52c1b2f33f02a9b275b45518dc3 (plain)
1
2
3
4
5
6
7
8
9
extends Area2D
class_name ClickableArea

func _click():
	pass

func _input_event(viewport, event, shape_idx):
	if event is InputEventMouseButton and event.button_index == BUTTON_LEFT and event.is_pressed():
		_click()