예제 #1
0
        private Nextframe StartNextframe(Action action)
        {
            var nextframe = new Nextframe();

            nextframe.action = action;
            m_nextframeMap.Add(nextframe);
            return(nextframe);
        }
예제 #2
0
 public void Reset()
 {
     loadMethod = LoadMethod.Coroutine;
     coroutine  = null;
     nextframe  = null;
 }
예제 #3
0
 private void StopNextframe(Nextframe nextFrame)
 {
     m_nextframeMap.Remove(nextFrame);
 }