public AssignableProperty(ToyBehaviour self, string propertyName, int argCount)
 {
     this.self         = self;
     this.propertyName = propertyName;
     this.argCount     = argCount;
 }
Exemple #2
0
 void Awake()
 {
     behaviour = GetComponent <Toy.ToyBehaviour>();
 }
Exemple #3
0
 public AssignableProperty(ToyBehaviour self, string propertyName)
 {
     this.self         = self;
     this.propertyName = propertyName;
 }