Vector3で変数xとzを使って、100通りの位置を出力がしたいです
エラー内容
Assets\Scripts\Start1.cs(22,27): error CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class Start1 : MonoBehaviour 6{ 7 public GameObject blocks; 8 9 public int z; 10 11 public int x; 12 13 // Start is called before the first frame update 14 void Start() 15 { 16 CreateObject(); 17 } 18 19 20 public void CreateObject() 21 { 22 for (z = 0,x = 0, z < 10; x < 10; z++,x++) 23 { 24 Instantiate(blocks, new Vector3(x, 0, z), Quaternion.identity); 25 } 26 27 28 } 29 30}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/22 03:05