Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Three.js browser compatibility

Tags:

I was reading the Three.js wikipedia page and it states "Three.js runs in all browsers supported by WebGL." If you use canvas renderer will the application/game created with Three.js run in browsers that support canvas but not webGL. Also are there any know issues with Three.js and mobile browsers.

like image 852
Kahless Avatar asked Dec 31 '13 01:12

Kahless


1 Answers

Actually all browsers are supported which have support for canvas. We do not support polyfilled canvas. Mainly because most of the time, we use other things beside the canvas that are not implemented by the browser.

like image 127
Gero3 Avatar answered Oct 04 '22 22:10

Gero3