Ejemplo n.º 1
0
 public void merge(RectZone inOtherZone)
 {
     _unityBounds.Encapsulate(inOtherZone._unityBounds);
 }
Ejemplo n.º 2
0
 public bool isCollide(RectZone inOtherZone)
 {
     return(_unityBounds.Intersects(inOtherZone._unityBounds));
 }
Ejemplo n.º 3
0
    public void setFocusZone(LazyMap.RectZone inZone)
    {
        _focusZone = inZone;

        elementsFocusZoneUpdate();
    }