コード例 #1
0
 public AssignableProperty(ToyBehaviour self, string propertyName, int argCount)
 {
     this.self         = self;
     this.propertyName = propertyName;
     this.argCount     = argCount;
 }
コード例 #2
0
 void Awake()
 {
     behaviour = GetComponent <Toy.ToyBehaviour>();
 }
コード例 #3
0
ファイル: ToyBehaviour.cs プロジェクト: FireofGods/Toy
 public AssignableProperty(ToyBehaviour self, string propertyName)
 {
     this.self         = self;
     this.propertyName = propertyName;
 }