Ejemplo n.º 1
0
        public void Update(GameTime gameTime)
        {
            if (!battleTransition)
            {
                worldCharacter.Update(gameTime);
            }
            worldMovement();

            //WorldMapAnimation
            worldMapAnimation(gameTime);
            _autoElements.Update(gameTime);

            _sunColor = GSS.getSunPositionColor();
        }
Ejemplo n.º 2
0
        public void Update(GameTime gameTime)
        {
            if (!battleTransition)
            {
                worldCharacter.Update(gameTime);
            }
            WorldMovement();

            //WorldMapAnimation
            WorldMapAnimation(gameTime);
            _autoElements.Update(gameTime);

            _sunColor = GSS.GetSunPositionColor();

            SceneWorker.AttemptSceneChange(worldCharacter.GetCenterTilePosition());
        }