DoubleCamera.cs 508 B

123456789101112131415161718192021222324
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class DoubleCamera : MonoBehaviour
  5. {
  6. public bool blindLeftEye;
  7. public bool blindRightEye;
  8. public GameObject leftEyeCamera;
  9. public GameObject rightEyeCamera;
  10. public GameObject leftEyePatch;
  11. public GameObject rightEyePatch;
  12. // Start is called before the first frame update
  13. void Start()
  14. {
  15. }
  16. // Update is called once per frame
  17. void Update()
  18. {
  19. }
  20. }