Rawdreen
Rawdreen
Hi @sleal-unity! When it comes to intrinsic metrics you are correct. And I guess it would be great to output, not just intrinsic metrics but the intrinsic matrix of the...
@sleal-unity, for now, I overwrote the ToProjectionMatrix3x3() function with my custom CameraIntrinsicMatrix script. Thanks for the help, going to test your solution out! 👍
@JonathanHUnity great! I implemented Camera Intrinsic Matrix in this function (maybe it'll help somebody): ```c# float3x3 GetIntrinsic(Camera cam) { float pixel_aspect_ratio = (float)cam.pixelWidth / (float)cam.pixelHeight; float alpha_u = cam.focalLength *...