Assets.Scripts.Scenes.Game.Boss.BossDeathAnimationController.BeginDeathAnimation C# (CSharp) Method

BeginDeathAnimation() public method

public BeginDeathAnimation ( ) : void
return void
        public void BeginDeathAnimation()
        {
            SceneBackground.SetActive(false);
            UI.SetActive(false);
            BossDeathExplosionController.Explode();
            moveDirection = Vector3.zero;
            animationStartTimeDelta = 0;
        }