Advertisement
Guest User

unity

a guest
Nov 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class CameraScript : MonoBehaviour
  6. {
  7. public GameObject ply;
  8. private Vector3 dist;
  9.  
  10. // Start is called before the first frame update
  11. void Start()
  12. {
  13. dist = transform.position - ply.transform.position;
  14. }
  15.  
  16. // Update is called once per frame
  17. void Update()
  18. {
  19. transform.position = ply.transform.TransformPoint(dist);
  20. transform.LookAt(ply.transform);
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement