UnityEngine.Animation.Enumerator.MoveNext C# (CSharp) Method

MoveNext() public method

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