Hi!
Is there a way to detect if a browser is not compatible with babylon.js to display a “custom” error message? Is there something like that somewhere in Babylon or do I need to check the browser features myself (checking specifically for the webgl version or other stuff?) Or maybe we’re just at a point where we can expect it to work more or less everywhere and that’s just useless to test?
For references, I hoped to do something like this :
if (!BABYLON.compatibilityCheck()){
alert('No babylon for you!');
return;
}
//Init babylon here
Thanks!