A bit of a silly question, but I’m looking into the TooltipSpawner class in the utils of the Inventory RPG and I don’t understand something:
Lines 79-80:
bool below = transform.position.y > Screen.height / 2;
bool right = transform.position.x < Screen.width / 2;
Why should below return true if the y position is greater than Screen.height/2? The screen space is 0,0 in the bottom left, so shouldn’t it be the other way around?