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