Example #1
0
 public bool IsVariableParam(GH_VarParamEventArgs e)
 {
     if (e.Side == GH_VarParamSide.Input)
     {
         return(e.Index > (HiddenCodeInput ? -1 : 0));
     }
     else
     {
         return(e.Index > (HiddenOutOutput ? -1 : 0));
     }
 }
Example #2
0
 public IGH_Param ConstructVariable(GH_VarParamEventArgs e)
 {
     return ConstructVariable(e.Side, null);
 }
Example #3
0
 public bool IsVariableParam(GH_VarParamEventArgs e)
 {
     return e.Index > (!CodeInputVisible ? -1 : 0);
 }
Example #4
0
 public IGH_Param ConstructVariable(GH_VarParamEventArgs e)
 {
     return(ConstructVariable(e.Side, null));
 }
Example #5
0
 public bool IsVariableParam(GH_VarParamEventArgs e)
 {
     if(e.Side == GH_VarParamSide.Input)
     return e.Index > (HiddenCodeInput ? -1 : 0);
       else
     return e.Index > (HiddenOutOutput ? -1 : 0);
 }
Example #6
0
 public bool IsVariableParam(GH_VarParamEventArgs e)
 {
     return e.Index > (!HiddenCodeInput ? -1 : 0);
 }