Ejemplo n.º 1
0
        private void OnStepHide(ShowableView showable)
        {
            bool isLastStep = nextStepIndex == steps.Length - 1;

            if (isLastStep)
            {
                Close();
                return;
            }

            ++nextStepIndex;
            NextStep();
        }
Ejemplo n.º 2
0
 private void OnPopupHide(ShowableView showable)
 {
     poolStorage.Return(showable.GetComponent <PoolableView>());
 }