How can I detect if the browser is fully compatible with phaser?

I found a workaround for this, it seems that in every chrome-based, non-compatible browser, it’s using a Chrome version inferior to 80, so I’m validating that version with the UserAgent string. I’ll leave my code for that if someone needs it:

    let isCompatible = parseInt(navigator.userAgent.substr(navigator.userAgent.indexOf('Chrome/') + 7,2))>=80;
1 Like