Interactive.Detail.EndStepScreenAnimation.StartStep C# (CSharp) Method

StartStep() public method

public StartStep ( ) : void
return void
        public override void StartStep()
        {
            for (int i = 0; i < objectsToActivate.Length; i++) {
                objectsToActivate [i].SetActive (true);
            }

            winScreen.blocksRaycasts = true;
            winScreen.DOFade(1, screenAnimationDuration).OnComplete(OnScreenAnimationComplete);
        }