Exemplo n.º 1
0
 public void DockChick(Chick chick)
 {
     this.chick = chick;
     chick.transform.position = transform.position;
     chick.transform.rotation = transform.rotation;
     chick.transform.parent   = transform;
 }
Exemplo n.º 2
0
 public void ReleaseChick(float releaseForce)
 {
     chick.transform.parent = null;
     chick.Kick(releaseForce);
     chick = null;
 }