Spine.SkeletonBounds.AabbIntersectsSkeleton C# (CSharp) Method

AabbIntersectsSkeleton() public method

Returns true if the axis aligned bounding box intersects the axis aligned bounding box of the specified bounds.
public AabbIntersectsSkeleton ( SkeletonBounds bounds ) : bool
bounds SkeletonBounds
return bool
		public bool AabbIntersectsSkeleton (SkeletonBounds bounds) {
			return minX < bounds.maxX && maxX > bounds.minX && minY < bounds.maxY && maxY > bounds.minY;
		}