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