xnapunk.colliders.RectangleCollider.GetTop C# (CSharp) Method

GetTop() public method

public GetTop ( ) : float
return float
        public float GetTop()
        {
            return (float)(Entity.Position.Y + Offset.Y);
        }

Usage Example

Beispiel #1
0
        private static bool CollideRectRect(RectangleCollider a, RectangleCollider b)
        {
            if (a.GetBottom() < b.GetTop())
                return false;

            if (a.GetTop() > b.GetBottom())
                return false;

            if (a.GetRight() < b.GetLeft())
                return false;

            if (a.GetLeft() > b.GetRight())
                return false;

            return true;
        }