Beispiel #1
0
        public void ExitVantageView()
        {
            if (!inVantage)
            {
                return;
            }

            if (currentVantagePoint != null)
            {
                currentVantagePoint.ShowIndicator();
            }

            inVantage = false;
            cameraBehavior.ShouldFollow = true;
            animationWrapper.StartNewAnimation(ReturnCamera(defaultCameraSize,
                                                            shiftBackTime));
        }
Beispiel #2
0
 public void RegisterCurrentVantage(VantagePoint vantagePoint)
 {
     vantagePoint.ShowIndicator();
     currentVantagePoint = vantagePoint;
 }