TwinCameraEyePatcher.cs 378 B

12345678910111213141516171819202122
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class TwinEyePatchCamera : MonoBehaviour
  5. {
  6. public Camera leftEyeCamera;
  7. public Camera rightEyeCamera;
  8. // Start is called before the first frame update
  9. void Start()
  10. {
  11. }
  12. // Update is called once per frame
  13. void Update()
  14. {
  15. }
  16. }