devwiki:three_js

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
devwiki:three_js [2022/07/07 11:37] – [Three.js Problem and Solution] yingdevwiki:three_js [2022/07/17 11:49] (current) – [Browse Support] ying
Line 28: Line 28:
       * https://1stwebdesigner.com/examples-of-three-js-in-action/       * https://1stwebdesigner.com/examples-of-three-js-in-action/
  
 +====== Browse Support ======
 +
 +  * some feature using WebGL 2.0 and some old browser or some mobile browser may not support it,
 +  * you can use code to detect webgl2 support and dynamic change the way of coding to support other browser
 +    * webgl2 support browser tabel: https://caniuse.com/webgl2
 +
 +  * check webgl2 support <code javascript>
 +// check webgl2 support for multi sample version
 +const gl = document.createElement('canvas').getContext('webgl2');
 +if (!gl) {
 +  alert('your browser/OS/drivers do not support WebGL2');
 +  console.log('your browser/OS/drivers do not support WebGL2');
 +} else {
 +  console.log('webgl2 works!');
 +}
 +</code>
 ====== Tools ====== ====== Tools ======
  
Line 402: Line 418:
 const main_texLoader = new THREE.TextureLoader(load_manager) const main_texLoader = new THREE.TextureLoader(load_manager)
 const cn_text_ctex = main_texLoader.load("./img/cn_texture.jpg"); const cn_text_ctex = main_texLoader.load("./img/cn_texture.jpg");
 +cn_text_ctex.flipY = false;
 if(child.name == "lang_texture_geo") ){ if(child.name == "lang_texture_geo") ){
     lang_texture_geo = child     lang_texture_geo = child
  • devwiki/three_js.1657193822.txt.gz
  • Last modified: 2022/07/07 11:37
  • by ying