コード例 #1
0
 public static string SafeBoolToString(this Editor.GenericParameter parameter, int index)
 {
     parameter.EnsureBoolItem(index);
     return(parameter.boolsList[index] ? "true" : "false");
 }
コード例 #2
0
 public static bool SafeBool(this Editor.GenericParameter parameter, int index)
 {
     parameter.EnsureBoolItem(index);
     return(parameter.boolsList[index]);
 }