前提・実現したいこと
あまりプログラミングが得意ではなく困っています。
アイテムを複数獲得してクリア画面に移動したいです。
発生している問題・エラーメッセージ
アイテムを獲得してもクリアとならない。
該当のソースコード
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Item : MonoBehaviour
{
public static bool clear;
private int count;
private void Start() { clear = false; count = 0; } void OnCollisionEnter(Collision collision) { if (collision.gameObject.tag=="Player") { Destroy(gameObject); count += 1; if (count >= 5) { clear = true; } } }
}
試したこと
複数獲得ではなく一つにするとクリア画面に移動できる。
補足情報(FW/ツールのバージョンなど)
Unity 2020.1.2f1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。