Ejemplo n.º 1
0
 public static void Tick(float DeltaTime)
 {
     ObjectPoolManager.Tick(DeltaTime);
     GroupManager.Tick(DeltaTime);
     TaskManager.Tick(DeltaTime);
     TimerManager.Tick(DeltaTime);
     MotionManager.Tick(DeltaTime);
     NetManager.Tick(DeltaTime);
 }
Ejemplo n.º 2
0
        public void TickLayoutView(TimeSpan elapsedGameTime)
        {
            if (!helloWorldAnimation.Completed)
            {
                helloWorldAnimation.Tick(elapsedGameTime);
            }

            if (State.ShowWelcome)
            {
                if (!welcomeAnimation.Completed)
                {
                    welcomeAnimation.Tick(elapsedGameTime);
                }
            }
        }
 public void TickLayoutView(TimeSpan elapsedGameTime)
 {
     Motion.Tick(elapsedGameTime);
 }