It is obvious that both touchiing each other right?
I have trigger colliders.
public void OnTriggerStay2D(Collider2D other)
{
if (Target == null)
{
print("Check");
Target = other.gameObject;
}
}
So why sometimes it works and sometimes it doesnt!?!?