私はUinityを使ってVR動画の作成を行っています。そこで視点の切り替えをVRコントローラーのボタンで行いたいのですが上手くいきません。今のところキーボード操作での視点切り替えは成功しています。VIVEコントローラーの対応付けを行ったのですが上手くいきません。対応するコードおよびボタンの画像を添付します。(現在の状況としてはLeftArrowのところをJoystick0などにしてみましたが上手くいきません。)```C#
コード
using
1using System.Collections.Generic; 2using UnityEngine; 3public class Move2 : MonoBehaviour 4{ 5 6 void Update() 7 { 8 9 // 原点に移動 10 if (Input.GetKeyDown(KeyCode.LeftArrow)) 11 { 12 this.transform.position=new Vector3(50, 30, 20); 13 } 14 // X方向に移動 15 if (Input.GetKeyDown(KeyCode.RightArrow)) 16 { 17 this.transform.position = new Vector3(10, 10, 0); 18 } 19 // Y方向に移動 20 if (Input.GetKeyDown(KeyCode.UpArrow)) 21 { 22 this.transform.position = new Vector3(10, 10, 20); 23 } 24 // Z方向に移動 25 if (Input.GetKeyDown(KeyCode.DownArrow)) 26 { 27 this.transform.position = new Vector3(10, 10, 40); 28 } 29 } 30}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。