UnityEngine.Animation.Enumerator.MoveNext C# (CSharp) 메소드

MoveNext() 공개 메소드

public MoveNext ( ) : bool
리턴 bool
            public bool MoveNext()
            {
                int stateCount = this.m_Outer.GetStateCount();
                this.m_CurrentIndex++;
                return (this.m_CurrentIndex < stateCount);
            }