SetInputs() 공개 메소드

public SetInputs ( IEnumerable sources ) : bool
sources IEnumerable
리턴 bool
예제 #1
0
 static public int SetInputs(IntPtr l)
 {
     try {
         UnityEngine.Experimental.Director.AnimationPlayable self = (UnityEngine.Experimental.Director.AnimationPlayable)checkSelf(l);
         System.Collections.Generic.IEnumerable <UnityEngine.Experimental.Director.AnimationPlayable> a1;
         checkType(l, 2, out a1);
         var ret = self.SetInputs(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 internal static bool SetInputsValidated(AnimationPlayable target, IEnumerable <Playable> sources, System.Type typeofTarget)
 {
     return(target.SetInputs(sources));
 }
 internal static bool SetInputsValidated(AnimationPlayable target, IEnumerable<Playable> sources, System.Type typeofTarget)
 {
     return target.SetInputs(sources);
 }