![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | scooty |
I dunno why this won’t work, it’s driving me crazy
extends Node
onready var KofiArea = get_node("ColorRect/KofiButton/Area2D")
func _ready():
KofiArea.connect("mouse_entered", self, "_Kofi_Enter")
func _Kofi_Enter():
print("ENTER")
I have no idea why this isn’t working. The collision shape isn’t disabled, pickable is enabled, and even interchanging this area with another (working) area from another scene doesn’t fix it. What’s going on?