mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
12 lines
180 B
GDScript
12 lines
180 B
GDScript
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
|