_unityでコインを取るスクリプトを書いていたのですがコインをとってもスコアを加算してくれません。
_ちゃんと> このウェブサイトどうりに書いたのですがどうしてでしょうか。
ご教授お願いします。
using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Threading.Tasks; using UnityEngine.UI; public class Item : MonoBehaviour { public Text scoretext; private int score = 0; // Start is called before the first frame update void Start() { } // Update is called once per frame private void OnCollisionEnter(Collision collision) { if (collision.gameObject.tag == "Untagged") { score += 1; scoretext.text = string.Format("Score;[0]", score); Destroy(this.gameObject); } } }
回答1件
あなたの回答
tips
プレビュー