Godot Version
Godot 4.3
Question
Hi, in my game I want an area to check if the player is currently touching it, not when it enters the area. I saw that some people used this function online but it doesnt seem to work, any ideas?
@onready var loc_col = $reset_area
if loc_col.is_colliding():
Global.is_player_right = true
else:
Global.is_player_right = false