SetInputWeightValidated() статический приватный Метод

static private SetInputWeightValidated ( Playable playable, Playable input, float weight, Type typeofPlayable ) : void
playable Playable
input Playable
weight float
typeofPlayable System.Type
Результат void
Пример #1
0
 public unsafe void SetInputWeight(int inputIndex, float weight)
 {
     Playables.SetInputWeightValidated(*((Playable *)this), inputIndex, weight, base.GetType());
 }
Пример #2
0
 public void SetInputWeight(int inputIndex, float weight)
 {
     Playables.SetInputWeightValidated(this, inputIndex, weight, base.GetType());
 }