コード例 #1
0
 public void SetGrapple(Grapple g)
 {
     if (grapple != null)
     {
         Destroy(grapple.gameObject);
     }
     grapple = g;
     if (grapple)
     {
         grapple.InitSwing(this, velocity);
     }
 }