public ScriptArgument(string description, string defaultValue, ScriptArgumentType type, string[] typeParams)
 {
     this.Description  = description;
     this.DefaultValue = defaultValue;
     this.Type         = type;
     this.TypeParams   = typeParams;
 }
 public ScriptArgument(string description, string defaultValue, ScriptArgumentType type, string[] typeParams)
 {
     this.Description = description;
     this.DefaultValue = defaultValue;
     this.Type = type;
     this.TypeParams = typeParams;
 }
Beispiel #3
0
 public ScriptArgumentTypeAttribute(ScriptArgumentType argumentType)
 {
     ArgumentType = argumentType;
 }
Beispiel #4
0
 public ScriptArgument(ScriptArgumentType argumentType, int intValue)
 {
     ArgumentType = argumentType;
     IntValue     = intValue;
 }
Beispiel #5
0
 public ScriptArgument(ScriptArgumentType argumentType, string stringValue)
 {
     ArgumentType = argumentType;
     StringValue  = stringValue;
 }
Beispiel #6
0
 public ScriptArgument(ScriptArgumentType argumentType, float floatValue)
 {
     ArgumentType = argumentType;
     FloatValue   = floatValue;
 }