예제 #1
0
        public static void EndPostfix()
        {
            if (end is Coroutine)
            {
#if SUBNAUTICA
                CoroutineHost.main.StopCoroutine(end);
#elif BELOWZERO
                CoroutineHost.StopCoroutine(end);
#endif
            }

            end = CoroutineHost.StartCoroutine(End());
        }