UnityEngine.Animation.GetEnumerator C# (CSharp) Method

GetEnumerator() public final method

public final GetEnumerator ( ) : IEnumerator
return IEnumerator
		public sealed virtual IEnumerator GetEnumerator(){}
		internal AnimationState GetState(string name){}

Usage Example

コード例 #1
0
 static public int GetEnumerator(IntPtr l)
 {
     try {
         UnityEngine.Animation self = (UnityEngine.Animation)checkSelf(l);
         var ret = self.GetEnumerator();
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
All Usage Examples Of UnityEngine.Animation::GetEnumerator