前提・実現したいこと
3秒ごとにキューブを自動生成するのを10回繰り返したいのですが、このスクリプトを書いても生成されませんでした。
該当のソースコード
using System.Collections; using System.Collections.Generic; using UnityEngine; public class ObjectGenerator : MonoBehaviour { public GameObject Cube; float time = 3; int count = 0; int max = 10; void Update() { time -= Time.deltaTime; while (count >= max) { if(time <= 0) { Vector3 CreatePoint = new Vector3(Random.Range(0f, 5f), 0.5f, Random.Range(0f, 5f)); Instantiate(Cube, CreatePoint, Quaternion.identity); time = 3; count += 1; } } } }
##試したこと
色々調べましたがわからなかったので質問しました。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/31 08:32
2019/12/31 09:13