Пример #1
0
 public ArgItemHolder(string name, bool value)
 {
     this.name      = name;
     this.boolValue = value;
     this.type      = PageArgType.boolType;
 }
Пример #2
0
 public ArgItemHolder(string name, int value)
 {
     this.name     = name;
     this.intValue = value;
     this.type     = PageArgType.intType;
 }
Пример #3
0
 public ArgItemHolder(string name, string value)
 {
     this.name        = name;
     this.stringValue = value;
     this.type        = PageArgType.stringType;
 }
Пример #4
0
 public ArgItemHolder(string name, UnityEngine.Object value)
 {
     this.name        = name;
     this.objectValue = value;
     this.type        = PageArgType.objectType;
 }