質問です。unityでマルチタッチのスクリプトテスト行なっていたのですが、
現在のコンテキストに'myTouches'という名前は存在しませんと
表示され実行できません。何が原因なのでしょうか。回答お願いいたします。
using System.Collections; using System.Collections.Generic; using UnityEngine; public class TouchTest : MonoBehaviour { public Transform[] Image; // Use this for initialization void Start () { } // Update is called once per frame void Update () { if (Input.touchCount > 0) { Touch[] myTouches = Input.touches; } for(int i = 0; i < myTouches.Length; i++) { Image[i].position = myTouches[i].position; } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/11 06:15