Ok, one way to fix this is to modify the package to fix this class for tvOS. Basically in the class that is throwing the error CesiumPointCloudRenderer, add a #if_def in the part that is causing the error:
#if ENABLE_XR
if (XRSettings.stereoRenderingMode == XRSettings.StereoRenderingMode.SinglePassInstanced ||
XRSettings.stereoRenderingMode == XRSettings.StereoRenderingMode.SinglePassMultiview)
{
this._pointMaterial.EnableKeyword("INSTANCING_ON");
}
#endif
But the problems is that the package needs to be modified. And that’s something we want to avoid.
Any news on this?