###<実現したいこと>
スクリプトから一秒ごとにオブジェクトを出現させたくて、スクリプトを書いたのですが、prefabの型が分からないので、とりあえずgameobjectにしました。ですが、実行すると、1つしか出ません。
私の予想は、prefabの型が違うと思うのですが、違う箇所で間違って居たら教えてください。
###<エラーコード>
なし
###<ソースコード>
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class Spawn : MonoBehaviour 6{ 7 public GameObject Prefbs; 8 // Start is called before the first frame update 9 void Start() 10 { 11 StartCoroutine("spawn"); 12 } 13 14 // Update is called once per frame 15 void Update() 16 { 17 18 } 19 private IEnumerator spawn() 20 { 21 Instantiate(Prefbs, transform.position, transform.rotation); 22 23 // 1秒待つ 24 yield return new WaitForSeconds(1f); 25 26 } 27}
(PrefabがPrefbsになっていますが無視してください)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/07 08:48
2020/09/07 13:39