コード例 #1
0
 void OnTriggerEnter2D(Collider2D collision)
 {
     if (collision.tag == "Enemy")
     {
         GameObject explode   = GameManager.Inst().ObjManager.MakeObj("Explosive");
         Explosive  explosive = explode.GetComponent <Explosive>();
         explosive.SetData(gameObject.GetComponent <Bullet>());
         explosive.SpriteRenderer.color = Bullet.color;
         explode.transform.position     = transform.position;
     }
 }