webvr_multiview.html 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>three.js webvr - multiview</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  7. <style>
  8. body {
  9. font-family: Monospace;
  10. background-color: #101010;
  11. color: #fff;
  12. margin: 0px;
  13. overflow: hidden;
  14. }
  15. a {
  16. color: #48f;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <script type="module">
  22. import * as THREE from '../build/three.module.js';
  23. import { BoxLineGeometry } from './jsm/geometries/BoxLineGeometry.js';
  24. import { WEBVR } from './jsm/vr/WebVR.js';
  25. import Stats from './jsm/libs/stats.module.js';
  26. var container;
  27. var camera, scene, renderer;
  28. var room;
  29. var stats;
  30. var count = 0;
  31. var radius = 0.02;
  32. var normal = new THREE.Vector3();
  33. var relativeVelocity = new THREE.Vector3();
  34. var clock = new THREE.Clock();
  35. init();
  36. animate();
  37. function init() {
  38. container = document.createElement( 'div' );
  39. document.body.appendChild( container );
  40. //
  41. var canvas = document.createElement( 'canvas' );
  42. // Currently OVR_multiview2 is supported just on WebGL2 non-multisampled contexts
  43. // so we must create the context manually ensuring `antialias` is set to false
  44. //
  45. // There is an ongoing discussion on how to add multisampled multiview support
  46. // on the Khronos Group's WebGL repo: https://github.com/KhronosGroup/WebGL/issues/2912
  47. // as soon as that will get solved we will update the code so it will be
  48. // transparent for the user and you could use this extension with or without multisampled
  49. // contexts
  50. var context = canvas.getContext( 'webgl2', { antialias: false } );
  51. renderer = new THREE.WebGLRenderer( { canvas: canvas, context: context } );
  52. renderer.setPixelRatio( window.devicePixelRatio );
  53. renderer.setSize( window.innerWidth, window.innerHeight );
  54. renderer.vr.enabled = true;
  55. container.appendChild( renderer.domElement );
  56. var info = document.createElement( 'div' );
  57. info.style.position = 'absolute';
  58. info.style.top = '10px';
  59. info.style.width = '100%';
  60. info.style.textAlign = 'center';
  61. info.innerHTML = '<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> webvr - multiview<br/>';
  62. info.innerHTML += renderer.capabilities.multiview ? `<span style="color: #33ff33"><b>OVR_multiview2</b> is supported in your browser</span>` :
  63. `<span style="color: #ff3333"><b>OVR_multiview2</b> is not supported or enabled in your browser</span>`;
  64. container.appendChild( info );
  65. scene = new THREE.Scene();
  66. scene.background = new THREE.Color( 0x505050 );
  67. camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 0.1, 10 );
  68. room = new THREE.LineSegments(
  69. new BoxLineGeometry( 6, 6, 6, 10, 10, 10 ),
  70. new THREE.LineBasicMaterial( { color: renderer.capabilities.multiview ? 0x99ff99 : 0xff3333 } )
  71. );
  72. room.geometry.translate( 0, 3, 0 );
  73. scene.add( room );
  74. var light = new THREE.HemisphereLight( 0xffffff, 0x444444 );
  75. light.position.set( 1, 1, 1 );
  76. scene.add( light );
  77. var geometry = new THREE.IcosahedronBufferGeometry( radius );
  78. for ( var i = 0; i < 2000; i ++ ) {
  79. var object = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { color: Math.random() * 0xffffff } ) );
  80. object.position.x = Math.random() * 4 - 2;
  81. object.position.y = Math.random() * 4;
  82. object.position.z = Math.random() * 4 - 2;
  83. object.userData.velocity = new THREE.Vector3();
  84. object.userData.velocity.x = 2 * Math.random() - 1;
  85. object.userData.velocity.y = 2 * Math.random() - 1;
  86. object.userData.velocity.z = 2 * Math.random() - 1;
  87. room.add( object );
  88. }
  89. //
  90. document.body.appendChild( WEBVR.createButton( renderer ) );
  91. //
  92. stats = new Stats();
  93. container.appendChild( stats.dom );
  94. window.addEventListener( 'resize', onWindowResize, false );
  95. }
  96. function onWindowResize() {
  97. camera.aspect = window.innerWidth / window.innerHeight;
  98. camera.updateProjectionMatrix();
  99. renderer.setSize( window.innerWidth, window.innerHeight );
  100. }
  101. //
  102. function animate() {
  103. renderer.setAnimationLoop( render );
  104. }
  105. function render() {
  106. //
  107. stats.update();
  108. var delta = clock.getDelta();
  109. var range = 3 - radius;
  110. for ( var i = 0; i < room.children.length; i ++ ) {
  111. var object = room.children[ i ];
  112. object.position.x += object.userData.velocity.x * delta;
  113. object.position.y += object.userData.velocity.y * delta;
  114. object.position.z += object.userData.velocity.z * delta;
  115. // keep objects inside room
  116. if ( object.position.x < - range || object.position.x > range ) {
  117. object.position.x = THREE.Math.clamp( object.position.x, - range, range );
  118. object.userData.velocity.x = - object.userData.velocity.x;
  119. }
  120. if ( object.position.y < radius || object.position.y > 6 ) {
  121. object.position.y = Math.max( object.position.y, radius );
  122. object.userData.velocity.y = - object.userData.velocity.y;
  123. }
  124. if ( object.position.z < - range || object.position.z > range ) {
  125. object.position.z = THREE.Math.clamp( object.position.z, - range, range );
  126. object.userData.velocity.z = - object.userData.velocity.z;
  127. }
  128. }
  129. renderer.render( scene, camera );
  130. }
  131. </script>
  132. </body>
  133. </html>