Skip to content

Instantly share code, notes, and snippets.

@keijiro
Created April 12, 2017 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keijiro/f1f4e05eaaa9546033374fd5adbbcabe to your computer and use it in GitHub Desktop.
Save keijiro/f1f4e05eaaa9546033374fd5adbbcabe to your computer and use it in GitHub Desktop.
using UnityEngine;
public class CameraAim : MonoBehaviour
{
[SerializeField] Transform _target;
[SerializeField] Transform _upTarget;
void LateUpdate()
{
transform.LookAt(_target, _upTarget.position - _target.position);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment