Forum Discussion
RiverExplorer
10 months agoStart Partner
FIX: Thousands of errors with standard render pipleline and OVR camera
I do not know which version of meta avatar SDK introduced this error.
In 35, the code assumes you are building with URP, if not, you get thousands of errors in the Meta script: AdditionalCameraData.cs
At about line 444, it looks for URP stuff that does not exist and will not exist with standard render pipeline.
Change:
if (!scriptableRenderer.SupportsCameraStackingType(CameraRenderType.Base))
to:
if (scriptableRenderer != null && !scriptableRenderer.SupportsCameraStackingType(CameraRenderType.Base))
Replies have been turned off for this discussion
Quick Links
- Horizon Developer Support
- Quest User Forums
- Troubleshooting Forum for problems with a game or app
- Quest Support for problems with your device
Other Meta Support
Related Content
- 9 years ago
- 7 months ago
- 12 years ago
- 2 years ago