Exemplo n.º 1
0
 public void SetInputElements(IList <IScriptableInput> inputs)
 {
     if (inputs != null)
     {
         this.booleanInput = inputs[0] as IScriptableInput <bool>;
     }
 }
Exemplo n.º 2
0
 public override void SetInputElements(IList <IScriptableInput> inputs)
 {
     if (inputs != null)
     {
         this.switchInput = inputs[0] as IScriptableInput <bool>;
     }
 }
Exemplo n.º 3
0
 public void SetInputElements(IList <IScriptableInput> inputs)
 {
     if (inputs != null)
     {
         this.firstBoolInput = inputs.FirstOrDefault() as IScriptableInput <bool>;
     }
 }