How to know WebGL version used in the player?

Hello,

I am developing a WebGL app and I need to know if the WebGL version used in the player is 1.0 or 2.0 in order to enable|disable the Reflection Probes.

Is there any way to know this information?

Thanks in advance,

Joel

try SystemInfo.graphicsDeviceType, it will return either “OpenGLES3” (WebGL2.0) or “OpenGLES2” (WebGL1.0).

1 Like

Thank you!