AcTools.Render.Base.Cameras.CameraOrtho.LookAt C# (CSharp) Method

LookAt() public method

public LookAt ( Vector3 pos, Vector3 target, Vector3 up ) : void
pos Vector3
target Vector3
up Vector3
return void
        public override void LookAt(Vector3 pos, Vector3 target, Vector3 up) {
            Position = pos;
            Target = target;
            Up = up;
        }