発生している問題・エラーメッセージ
OVRPlayerControllerに下記のScriptをアタッチしたところ
using System.Collections; using System.Collections.Generic; using UnityEngine; public class test : MonoBehaviour { // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { if (OVRInput.GetDown(OVRInput.RawButton.A))//OculusTouchのAボタンを押したら { Debug.Log("Clicked A"); transform.position = new Vector3(5, 2, -46); } } }
まったく意図していない座標に瞬間移動してしまいます。Cubeなどのオブジェクトにアタッチするとちゃんと意図した座標に瞬間移動するのですが、OVRPlayerControllerはtransform.position = new Vector3(x座標, y, z);では移動させることはできないのでしょうか?
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。