예제 #1
0
        private void OnTouch()
        {
            ChangeCharacterEmotionSignal.Dispatch(CharacterEmotionType.Incompr);
            TouchCharacterSignal.Dispatch(Character);

            ResetDoingNothingCoroutine();
        }
예제 #2
0
        private void CharIsFound()
        {
            ResetDoingNothingCoroutine();

            StagePassedSignal.Dispatch();

            MainView.DespawnLastGroup();

            ChangeCharacterEmotionSignal.Dispatch(CharacterEmotionType.Delight);
        }
예제 #3
0
        private void CharIsNotFound()
        {
            ResetDoingNothingCoroutine();

            ChangeCharacterEmotionSignal.Dispatch(CharacterEmotionType.Denial);
        }