Пример #1
0
 public void SetInputElements(IList <IScriptableInput> inputs)
 {
     if (inputs != null)
     {
         this.booleanInput = inputs[0] as IScriptableInput <bool>;
     }
 }
Пример #2
0
 public override void SetInputElements(IList <IScriptableInput> inputs)
 {
     if (inputs != null)
     {
         this.switchInput = inputs[0] as IScriptableInput <bool>;
     }
 }
Пример #3
0
 public void SetInputElements(IList <IScriptableInput> inputs)
 {
     if (inputs != null)
     {
         this.firstBoolInput = inputs.FirstOrDefault() as IScriptableInput <bool>;
     }
 }