コード例 #1
0
 public void merge(RectZone inOtherZone)
 {
     _unityBounds.Encapsulate(inOtherZone._unityBounds);
 }
コード例 #2
0
 public bool isCollide(RectZone inOtherZone)
 {
     return(_unityBounds.Intersects(inOtherZone._unityBounds));
 }
コード例 #3
0
    public void setFocusZone(LazyMap.RectZone inZone)
    {
        _focusZone = inZone;

        elementsFocusZoneUpdate();
    }