Example #1
0
 void OnThirdSwithcCompeleted()
 {
     m_Clip.CanClip = true;
     IsSwitching    = false;
     if (OnSwitchCompleted != null)
     {
         OnSwitchCompleted.Invoke();
     }
     CharacterCtrl.SwitchFollowView(FollowViewType.Third);
 }
Example #2
0
        void OnFirstSwitchCompeleted()
        {
            IsSwitching = false;
            if (OnSwitchCompleted != null)
            {
                OnSwitchCompleted.Invoke();
            }

            CharacterCtrl.SwitchFollowView(FollowViewType.First);
        }