123456789101112131415161718 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class TestWorld : MonoBehaviour
- {
-
- void Start()
- {
-
- }
-
- void Update()
- {
- this.transform.localEulerAngles = GSXRManager.Instance.head.transform.InverseTransformVector(new Vector3(8,0,0));
- }
- }
|