AddInputValidated() static private method

static private AddInputValidated ( AnimationPlayable target, Playable input, System typeofTarget ) : int
target AnimationPlayable
input Playable
typeofTarget System
return int
コード例 #1
0
 public int AddInput(Playable input)
 {
     return(AnimationPlayableUtilities.AddInputValidated(this, input, base.GetType()));
 }
コード例 #2
0
 public unsafe int AddInput(Playable input)
 {
     return(AnimationPlayableUtilities.AddInputValidated(*((AnimationPlayable *)this), input, base.GetType()));
 }
コード例 #3
0
 /// <summary>
 /// <para>Adds an Playable as an input.</para>
 /// </summary>
 /// <param name="input">The [[Playable] to connect.</param>
 /// <returns>
 /// <para>Returns the index of the port the playable was connected to.</para>
 /// </returns>
 public int AddInput(Playable input) =>
 AnimationPlayableUtilities.AddInputValidated((AnimationPlayable)this, input, base.GetType());