Beispiel #1
0
        void CreateZone(Vector3 pos)
        {
            ZoneView aZone = _zoneFactory.Create();

            aZone.SetCenterPosition(pos);
            _zones.Add(aZone);
        }
Beispiel #2
0
    public ZoneView CreateZone(Vector3 pos)
    {
        ZoneView aZone = _zoneFactory.Create();

        pos.z = 0;
        aZone.SetCenterPosition(pos);

        return(aZone);
    }