以下の記事を参考にして、ブロック崩しを作成しています。
https://qiita.com/nmxi/items/7950fb12ef925efa276d
順番どおりに進めていたのですが、ボールをはじくブロックを動かすことができません。
スクリプトはちゃんとオブジェクトのInspectorに付与しています。
UnityのPlayボタンも押しています。
スクリプトのVisual studioもアタッチして再生しております。
どなたか助けてください。
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class Controller : MonoBehaviour 6{ 7 8 // Use this for initialization 9 void Start() 10 { 11 12 } 13 14 // Update is called once per frame 15 void Update() 16 { 17 if (Input.GetKey(KeyCode.LeftArrow)) 18 { 19 transform.position += transform.forward * 0.1f; 20 } 21 else if (Input.GetKey(KeyCode.RightArrow)) 22 { 23 transform.position -= transform.forward * 0.1f; 24 } 25 } 26}
回答1件
あなたの回答
tips
プレビュー