CameraToLook.cs 242 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class CameraToLook : MonoBehaviour
  5. {
  6. public bool isNew = true;
  7. public static CameraToLook ins;
  8. void Start()
  9. {
  10. ins = this;
  11. }
  12. }