現在、UnityにおいてPinを大砲から発射した弾で撃ち落として、スコア加算といったゲームを作っています。
ScoreFloorがStargeの下に設置されていて、そこにPinが落下、当たるとスコアを表示するというスクリプトを書きました。なお、Pinは3種類で色によって、スコアが違います。
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4using UnityEngine.UI; 5 6public class Score : MonoBehaviour 7{ 8 int score = 0; 9 public Text scoreText; 10 11 // Start is called before the first frame update 12 void Start() 13 { 14 score = 0; 15 Setscore(); 16 } 17 18 // Update is called once per frame 19 void Update() 20 { 21 22 } 23 24 private void OnTriggerEnter(Collider other) 25 { 26 if (other.gameObject.tag == "BluePin") 27 { 28 score += 10; 29 } 30 if (other.gameObject.tag == "YellowPin") 31 { 32 score += 300; 33 } 34 if (other.gameObject.tag == "RedPin") 35 { 36 score -= 50; 37 } 38 Setscore(); 39 } 40 void Setscore() 41 { 42 scoreText.text = string.Format("スコア:{0}", score); 43 } 44} 45
上記のようなスクリプトを書きました。これを、落下判定する、ScoreFloorにアタッチして、実行してみたところ、『スコア:0』は表示されたのですが、いざ砲弾を発射して、Pinを落下させ、ScoreFloorに当てても、スコアが加算されません。
tagの設定にミスはないこと、ScoreFloorのIsTriggerのチェックが外れていることは確認しました。
スクリプトの問題でしょうか? それとも、アタッチする場所やその他Unityにおける設定ミスでしょうか?
教えていただけるとありがたいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/11 03:32
2020/11/11 03:36
2020/11/12 02:22