mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
13 lines
225 B
GDScript
13 lines
225 B
GDScript
@icon("res://behaviours/hover_detector.svg")
|
|
extends Area2D
|
|
class_name HoverDetector
|
|
|
|
|
|
var mouse_inside = false
|
|
|
|
|
|
func _on_mouse_entered() -> void:
|
|
mouse_inside = true
|
|
|
|
func _on_mouse_exited() -> void:
|
|
mouse_inside = false
|