コード例 #1
0
ファイル: Target.cs プロジェクト: radziokoch/Teren-Fizyka-Lab
 private void OnCollisionEnter(Collision other)
 {
     if (other.gameObject.tag == "Ball")
     {
         Ball ball = other.gameObject.GetComponent <Ball>();
         pointsController.AddScore(ball.pointsMultiplier * points);
         pointsController.AddTargetShoot();
         Destroy(gameObject);
     }
 }