Three.js与webVR

简介: WebVR如此近 - three.js的WebVR示例程序解析 关于WebVR 最近VR的发展十分吸引人们的眼球,很多同学应该也心痒痒的想体验VR设备,然而现在的专业硬件价格还比较高,入手一个估计就要吃土了。
WebVR如此近 - three.js的WebVR示例程序解析

WebVR如此近 - three.js的WebVR示例程序解析

关于WebVR

最近VR的发展十分吸引人们的眼球,很多同学应该也心痒痒的想体验VR设备,然而现在的专业硬件价格还比较高,入手一个估计就要吃土了。但是,对于我们前端开发者来说,我们不仅可以简单地在手机上进行视觉上的VR体验,还可以立马上手进行Web端VR应用的开发!

WebVR是一个实验性的Javascript API,允许HMD(head-mounted displays)连接到web apps,同时能够接受这些设备的位置和动作信息。这让使用Javascript开发VR应用成为可能(当然已经有很多接口API让Javascript作为开发语言了,不过这并不影响我们为WebVR感到兴奋)。而让我们能够立马进行预览与体验,移动设备上的chrome已经支持了WebVR并使手机作为一个简易的HMD。手机可以把屏幕分成左右眼视觉并应用手机中的加速度计、陀螺仪等感应器,你需要做的或许就只是买一个cardboard。不说了,我去下单了!

cardborad纸盒,一顿食堂饭钱即可入手

前言

WebVR仍处于w3c的草案阶段,所以开发和体验都需要polyfill。

这篇解析基于 webvr-boilerplate ,这个示例的作者,任职google的 Boris Smus 同时也编写了 webvr-polyfill 。 three.js examples中也提供了关于VR的控制例子。这里主要通过对代码注释的方式来解读关键的文件。

示例的最终效果如下,打开  并把手机放进cardboard即可体验。你也可以在我的github  对照有关的代码和注释

按照惯例,这篇解析默认你至少有three.js相关的基础知识。有兴趣也可以浏览一下我之前写的 ThreeJS 轻松实现主视觉太阳系漫游 。

这篇解析中three.js的版本为V76。文中如有各种错误请指出!

 

先从html开始

在示例中只用到了一个index.html。首先meta标签有几个值得注意的:

1 <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, shrink-to-fit=no">
2 <meta name="mobile-web-app-capable" content="yes">
3 <meta name="apple-mobile-web-app-capable" content="yes" />
4 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

这几个标签对web app开发的同学来说应该是十分熟悉了。其中 shrink-to-fit=no 是Safari的特性,禁止页面通过缩放去适应适口。

接下来在js引用的部分,引用了这几个资源:

1 <script src="node_modules/es6-promise/dist/es6-promise.js"></script>

引入的一个promise polyfill;

1 <script src="node_modules/three/three.js"></script>

three.js核心库

1 <script src="node_modules/three/examples/js/controls/VRControls.js"></script> 

从连接的VR设备中获得位置信息并应用在camera对象上,将在下文展开;

 

1 <script src="node_modules/three/examples/js/effects/VREffect.js"></script> 

处理立体视觉和绘制相关,将在下文展开;

1 <script src="node_modules/webvr-polyfill/build/webvr-polyfill.js"></script>

WebVR polyfill,下文简述调用的API option;

1 <script src="build/webvr-manager.js"></script>

界面按钮以及进入/退出VR模式的控制等。


具体的整个项目文件,可以在 这里 查看有关的代码和注释。

VRControls.js - HMD状态感应

这个文件主要对HMD的状态信息进行获取并应用到camera上。例如在手机上显示的时候,手机的旋转倾斜等就会直接作用到camera上。

第一步是获取连接的VR设备,这一步是基本通过WebVR的API进行的:

 
 1 //获取VR设备(作为信息输入源。如有多个则只取第一个)
 2 function gotVRDevices( devices ) {
 3     for ( var i = 0; i < devices.length; i ++ ) {
 4         if ( ( 'VRDisplay' in window && devices[ i ] instanceof VRDisplay ) || ( 'PositionSensorVRDevice' in window && devices[ i ] instanceof PositionSensorVRDevice ) ) {
 5             vrInput = devices[ i ];
 6             break;  // We keep the first we encounter
 7         }
 8     }
 9 
10     if ( !vrInput ) {
11         if ( onError ) onError( 'VR input not available.' );
12     }
13 }
14 //调用WebVR API获取VR设备
15 if ( navigator.getVRDisplays ) {
16     navigator.getVRDisplays().then( gotVRDevices );
17 } else if ( navigator.getVRDevices ) {
18     // Deprecated API.
19     navigator.getVRDevices().then( gotVRDevices );
20 }

然后是三个关于位置的参数:

 1 // the Rift SDK returns the position in meters
 2 // this scale factor allows the user to define how meters
 3 // are converted to scene units.
 4 //Rift SDK返回的位置信息是以米作为单位的。这里可以定义以几倍的缩放比例转换为three.js中的长度。
 5 this.scale = 1;
 6 
 7 // If true will use "standing space" coordinate system where y=0 is the
 8 // floor and x=0, z=0 is the center of the room.
 9 //表示使用者是否站立姿态。当为false时camra会在y=0的位置,而为true时会结合下面的模拟身高来决定camera的y值。
10 //在无法获取用户姿势信息的设备上,需要在调用时直接指定是站姿还是坐姿。
11 this.standing = false;
12 
13 // Distance from the users eyes to the floor in meters. Used when
14 // standing=true but the VRDisplay doesn't provide stageParameters.
15 //当为站立姿态时,用户的眼睛(camera)的高度(跟如有硬件时返回的单位一致,为米)。这里会受scale的影响。如scale为2时,实际camera的高度就是3.2。
16 this.userHeight = 1.6;

通过WebVR API获取到用户的设备信息,并应用到camera上,是一个持续进行的过程。因此这部分的信息更新会在requestAnimationFrame中不断地调用。

 1 //将在requestAnimationFrame中应用更新
 2 this.update = function () {
 3     if ( vrInput ) {
 4         if ( vrInput.getPose ) {
 5             //方法返回传感器在某一时刻的信息(object)。例如包括时间戳、位置(x,y,z)、线速度、线加速度、角速度、角加速度、方向信息。
 6             var pose = vrInput.getPose();
 7             //orientation 方向
 8             if ( pose.orientation !== null ) {
 9                 //quaternion  四元数
10                 //把设备的方向复制给camera
11                 object.quaternion.fromArray( pose.orientation );
12             }
13             //位置信息
14             if ( pose.position !== null ) {
15                 //同样把设备的位置复制给camera
16                 object.position.fromArray( pose.position );
17             } else {
18                 object.position.set( 0, 0, 0 );
19             }
20 
21         } else {
22             // Deprecated API.
23             var state = vrInput.getState();
24             if ( state.orientation !== null ) {
25                 object.quaternion.copy( state.orientation );
26             }
27             if ( state.position !== null ) {
28                 object.position.copy( state.position );
29             } else {
30                 object.position.set( 0, 0, 0 );
31             }
32         }
33 
34         //TODO 此块会一直执行
35         if ( this.standing ) {
36             //如果硬件返回场景信息,则应用硬件返回的数据来进行站姿转换
37             if ( vrInput.stageParameters ) {
38                 object.updateMatrix();
39                 //sittingToStandingTransform返回一个Matrix4,表示从坐姿到站姿的变换。
40                 standingMatrix.fromArray(vrInput.stageParameters.sittingToStandingTransform);
41                 //应用变换到camera。
42                 object.applyMatrix( standingMatrix );
43             } else {
44                 //如果vrInput不提供y高度信息的话使用userHeight作为高度
45                 object.position.setY( object.position.y + this.userHeight );
46             }
47 
48         }
49         //使用上面定义的this.scale来缩放camera的位置。
50         object.position.multiplyScalar( scope.scale );
51     }
52 };

以上是vrcontrols的关键代码。

VREffect.js - 立体视觉

VREffect.js主要把屏幕显示切割为左右眼所视的屏幕,两个屏幕所显示的内容具有一定的差异,使得人的双目立体视觉可以把屏幕中的内容看得立体化。这个文件主要的流程如下图:

首先是对画布大小进行了设定。其中renderer.setPixelRatio( 1 ); 是防止在retina等屏幕上出现图像变形等显示问题。

 1 //初始化或者resize的时候进行。
 2 this.setSize = function ( width, height ) {
 3     rendererSize = { width: width, height: height };
 4 
 5     //是否VR模式中
 6     if ( isPresenting ) {
 7         //getEyeParameters包含了渲染某个眼睛所视的屏幕的信息,例如offset,FOV等
 8         var eyeParamsL = vrHMD.getEyeParameters( 'left' );
 9         //设备像素比
10         //若设备像素比不为1时会出现显示问题。
11         //https://github.com/mrdoob/three.js/pull/6248
12         renderer.setPixelRatio( 1 );
13 
14         if ( isDeprecatedAPI ) {
15             renderer.setSize( eyeParamsL.renderRect.width * 2, eyeParamsL.renderRect.height, false );
16 
17         } else {
18             renderer.setSize( eyeParamsL.renderWidth * 2, eyeParamsL.renderHeight, false );
19         }
20 
21     } else {
22         renderer.setPixelRatio( rendererPixelRatio );
23         renderer.setSize( width, height );
24     }
25 };

然后是关于全屏模式的设置,这里跟上面的设定差不远:

 1 //显示设备进入全屏显示模式
 2 function onFullscreenChange () {
 3     var wasPresenting = isPresenting;
 4     isPresenting = vrHMD !== undefined && ( vrHMD.isPresenting || ( isDeprecatedAPI && document[ fullscreenElement ] instanceof window.HTMLElement ) );
 5     if ( wasPresenting === isPresenting ) {
 6         return;
 7     }
 8 
 9     //如果此次事件是进入VR模式
10     if ( isPresenting ) {
11         rendererPixelRatio = renderer.getPixelRatio();
12         rendererSize = renderer.getSize();
13 
14         //getEyeParameters包含了渲染某个眼睛所视的屏幕的信息,例如offset,FOV等
15         var eyeParamsL = vrHMD.getEyeParameters( 'left' );
16         var eyeWidth, eyeHeight;
17 
18         if ( isDeprecatedAPI ) {
19             eyeWidth = eyeParamsL.renderRect.width;
20             eyeHeight = eyeParamsL.renderRect.height;
21         } else {
22             eyeWidth = eyeParamsL.renderWidth;
23             eyeHeight = eyeParamsL.renderHeight;
24         }
25         renderer.setPixelRatio( 1 );
26         renderer.setSize( eyeWidth * 2, eyeHeight, false );
27 
28     } else {
29         renderer.setPixelRatio( rendererPixelRatio );
30         renderer.setSize( rendererSize.width, rendererSize.height );
31     }
32 }

接下来是对表示左右眼的camera的设定。两个camera也肯定是PerspectiveCamera:

1 var cameraL = new THREE.PerspectiveCamera();
2 //左camera显示layer 1层(即当某个元素只出现在layer 1时,只有cameraL可见。)
3 cameraL.layers.enable( 1 );
4 
5 var cameraR = new THREE.PerspectiveCamera();
6 cameraR.layers.enable( 2 );

从WebVR API中获取关于某个眼睛所视的屏幕的信息:

 1 //getEyeParameters包含了渲染某个眼睛所视的屏幕的信息,例如offset,FOV等
 2 var eyeParamsL = vrHMD.getEyeParameters( 'left' );
 3 var eyeParamsR = vrHMD.getEyeParameters( 'right' );
 4 
 5 if ( ! isDeprecatedAPI ) {
 6     // represents the offset from the center point between the user's eyes to the center of the eye, measured in meters.
 7     //瞳距的偏移
 8     eyeTranslationL.fromArray( eyeParamsL.offset );
 9     eyeTranslationR.fromArray( eyeParamsR.offset );
10     //represents a field of view defined by 4 different degree values describing the view from a center point.
11     //获得左右眼的FOV
12     eyeFOVL = eyeParamsL.fieldOfView;
13     eyeFOVR = eyeParamsR.fieldOfView;
14 
15 } else {
16     eyeTranslationL.copy( eyeParamsL.eyeTranslation );
17     eyeTranslationR.copy( eyeParamsR.eyeTranslation );
18     eyeFOVL = eyeParamsL.recommendedFieldOfView;
19     eyeFOVR = eyeParamsR.recommendedFieldOfView;
20 }
21 
22 if ( Array.isArray( scene ) ) {
23     console.warn( 'THREE.VREffect.render() no longer supports arrays. Use object.layers instead.' );
24     scene = scene[ 0 ];
25 }

由于左右camera的视锥体还没确定,需要对获得的FOV信息进行计算来确定。在涉及透视投影矩阵的部分会比较复杂,所以这里不展开来说。如果有错误请指出:

 1 cameraL.projectionMatrix = fovToProjection( eyeFOVL, true, camera.near, camera.far );
 2 cameraR.projectionMatrix = fovToProjection( eyeFOVR, true, camera.near, camera.far );
 3 
 4 //角度弧度的转换,然后进行后续的计算
 5 function fovToProjection( fov, rightHanded, zNear, zFar ) {
 6     //角度转换为弧度  如30度转为1/6 PI
 7     var DEG2RAD = Math.PI / 180.0;
 8 
 9     var fovPort = {
10         upTan: Math.tan( fov.upDegrees * DEG2RAD ),
11         downTan: Math.tan( fov.downDegrees * DEG2RAD ),
12         leftTan: Math.tan( fov.leftDegrees * DEG2RAD ),
13         rightTan: Math.tan( fov.rightDegrees * DEG2RAD )
14     };
15 
16     return fovPortToProjection( fovPort, rightHanded, zNear, zFar );
17 }
18 
19 //根据从设备获得的FOV以及相机设定的near、far来生成透视投影矩阵
20 function fovPortToProjection( fov, rightHanded, zNear, zFar ) {
21 
22     //使用右手坐标
23     rightHanded = rightHanded === undefined ? true : rightHanded;
24     zNear = zNear === undefined ? 0.01 : zNear;
25     zFar = zFar === undefined ? 10000.0 : zFar;
26 
27     var handednessScale = rightHanded ? - 1.0 : 1.0;
28 
29     // start with an identity matrix
30 
31     var mobj = new THREE.Matrix4();
32     var m = mobj.elements;
33 
34     // and with scale/offset info for normalized device coords
35     var scaleAndOffset = fovToNDCScaleOffset( fov );
36 
37     //建立透视投影矩阵
38 
39     // X result, map clip edges to [-w,+w]
40     m[ 0 * 4 + 0 ] = scaleAndOffset.scale[ 0 ];
41     m[ 0 * 4 + 1 ] = 0.0;
42     m[ 0 * 4 + 2 ] = scaleAndOffset.offset[ 0 ] * handednessScale;
43     m[ 0 * 4 + 3 ] = 0.0;
44 
45     // Y result, map clip edges to [-w,+w]
46     // Y offset is negated because this proj matrix transforms from world coords with Y=up,
47     // but the NDC scaling has Y=down (thanks D3D?)
48     //NDC(归一化设备坐标系)是左手坐标系
49     m[ 1 * 4 + 0 ] = 0.0;
50     m[ 1 * 4 + 1 ] = scaleAndOffset.scale[ 1 ];
51     m[ 1 * 4 + 2 ] = - scaleAndOffset.offset[ 1 ] * handednessScale;
52     m[ 1 * 4 + 3 ] = 0.0;
53 
54     // Z result (up to the app)
55     m[ 2 * 4 + 0 ] = 0.0;
56     m[ 2 * 4 + 1 ] = 0.0;
57     m[ 2 * 4 + 2 ] = zFar / ( zNear - zFar ) * - handednessScale;
58     m[ 2 * 4 + 3 ] = ( zFar * zNear ) / ( zNear - zFar );
59 
60     // W result (= Z in)
61     m[ 3 * 4 + 0 ] = 0.0;
62     m[ 3 * 4 + 1 ] = 0.0;
63     m[ 3 * 4 + 2 ] = handednessScale;
64     m[ 3 * 4 + 3 ] = 0.0;
65 
66     //转置矩阵,因为mobj.elements是column-major的
67     mobj.transpose();
68 
69     return mobj;
70 }
71 
72 //计算线性插值信息
73 function fovToNDCScaleOffset( fov ) {
74 
75     var pxscale = 2.0 / ( fov.leftTan + fov.rightTan );
76     var pxoffset = ( fov.leftTan - fov.rightTan ) * pxscale * 0.5;
77     var pyscale = 2.0 / ( fov.upTan + fov.downTan );
78     var pyoffset = ( fov.upTan - fov.downTan ) * pyscale * 0.5;
79     return { scale: [ pxscale, pyscale ], offset: [ pxoffset, pyoffset ] };
80 }

之后是确定左右camera的位置和方向。由于左右眼(左右camera)肯定是在头部(主camera,位置和方向由HMD返回的信息确定)上的,在我们获得把眼睛从头部飞出去的超能力之前,左右camera的位置和方向都是根据主camera来设定的。

1 //使主camera的位移、旋转、缩放变换分解,作用到左camra 右camera上。
2 camera.matrixWorld.decompose( cameraL.position, cameraL.quaternion, cameraL.scale );
3 camera.matrixWorld.decompose( cameraR.position, cameraR.quaternion, cameraR.scale );
4 
5 var scale = this.scale;
6 //左右眼camera根据瞳距进行位移。
7 cameraL.translateOnAxis( eyeTranslationL, scale );
8 cameraR.translateOnAxis( eyeTranslationR, scale );

最后便是对两个区域进行渲染。

1 // 渲染左眼视觉
2 renderer.setViewport( renderRectL.x, renderRectL.y, renderRectL.width, renderRectL.height );
3 renderer.setScissor( renderRectL.x, renderRectL.y, renderRectL.width, renderRectL.height );
4 renderer.render( scene, cameraL );
5 
6 // 渲染右眼视觉
7 renderer.setViewport( renderRectR.x, renderRectR.y, renderRectR.width, renderRectR.height );
8 renderer.setScissor( renderRectR.x, renderRectR.y, renderRectR.width, renderRectR.height );
9 renderer.render( scene, cameraR );

VREffect文件的关键点差不多是上述这些。

webvr-polyfill.js - 让现在使用WebVR成为可能

webvr-polyfill.js 根据WebVR API的草案来实现了一套polyfill。例如根据所处环境是pc还是手机来确定使用的是 CardboardVRDisplay 还是 MouseKeyboardVRDisplay ,在手机环境下的话使用 Device API 来处理手机旋转、方向等参数的获取。此外作者还顺便做了几个提示图标和画面来优化体验。在这里我们来看一下其API参数:

 1 WebVRConfig = {
 2   /**
 3    * webvr-polyfill configuration
 4    */
 5 
 6   // Flag to disabled the UI in VR Mode.
 7   //是否禁用VR模式的UI。
 8   CARDBOARD_UI_DISABLED: false, // Default: false
 9 
10   // Forces availability of VR mode.
11   //是否强制使VR模式可用。
12   //FORCE_ENABLE_VR: true, // Default: false.
13 
14   // Complementary filter coefficient. 0 for accelerometer, 1 for gyro.
15   //互补滤波系数。加速度计在静止的时候是很准的,但运动时的角度噪声很大,陀螺仪反之。
16   //互补滤波器徘徊在信任陀螺仪和加速度计的边界。首先选择一个时间常数,然后用它来计算滤波器系数。
17   //例如陀螺仪的漂移是每秒2度,则可能需要一个少于一秒的时间常数去保证在每一个方向上的漂移不会超过2度。
18   //但是当时间常数越低,越多加速度计的噪声将允许通过。所以这是一个权衡的内容。
19   //K_FILTER: 0.98, // Default: 0.98.
20 
21   // Flag to disable the instructions to rotate your device.
22   //是否禁用旋转设备的提示(横放手机以进入全屏)。
23   ROTATE_INSTRUCTIONS_DISABLED: false, // Default: false
24 
25   // How far into the future to predict during fast motion.
26   //由于有给定的方向以及陀螺仪信息,选择允许预测多长时间之内的设备方向,在设备快速移动的情况下可以让渲染比较流畅。
27   //PREDICTION_TIME_S: 0.040, // Default: 0.040 (in seconds).
28 
29   // Flag to disable touch panner. In case you have your own touch controls、
30   //是否禁用提供的触摸控制,当你有自己的触摸控制方式时可以禁用
31   //TOUCH_PANNER_DISABLED: true, // Default: false.
32 
33   // To disable keyboard and mouse controls, if you want to use your own
34   // implementation.
35   //是否禁用pc下的鼠标、键盘控制。同上。
36   //MOUSE_KEYBOARD_CONTROLS_DISABLED: true, // Default: false.
37 
38   // Enable yaw panning only, disabling roll and pitch. This can be useful for
39   // panoramas with nothing interesting above or below.
40   // 仅关心左右角度变化,忽略上下和倾斜等。
41   // YAW_ONLY: true, // Default: false.
42 
43   // Prevent the polyfill from initializing immediately. Requires the app
44   // to call InitializeWebVRPolyfill() before it can be used.
45   //是否阻止组件直接进行初始化构建。如果为true则需要自己调用InitializeWebVRPolyfill()。
46   //DEFER_INITIALIZATION: true, // Default: false.
47 
48   // Enable the deprecated version of the API (navigator.getVRDevices).
49   //允许使用过时版本的API。
50   //ENABLE_DEPRECATED_API: true, // Default: false.
51 
52   // Scales the recommended buffer size reported by WebVR, which can improve
53   // performance. Making this very small can lower the effective resolution of
54   // your scene.
55   //在VR显示模式下对WebVR推荐的屏幕比例进行缩放。在IOS下如果不为0.5会出现显示问题,查看
56   //https://github.com/borismus/webvr-polyfill/pull/106
57   BUFFER_SCALE: 0.5, // default: 1.0
58 
59   // Allow VRDisplay.submitFrame to change gl bindings, which is more
60   // efficient if the application code will re-bind it's resources on the
61   // next frame anyway.
62   // Dirty bindings include: gl.FRAMEBUFFER_BINDING, gl.CURRENT_PROGRAM,
63   // gl.ARRAY_BUFFER_BINDING, gl.ELEMENT_ARRAY_BUFFER_BINDING,
64   // and gl.TEXTURE_BINDING_2D for texture unit 0
65   // Warning: enabling this might lead to rendering issues.
66   //允许 VRDisplay.submitFrame使用脏矩形渲染。但是开启此特性可能会出现渲染问题。
67   //DIRTY_SUBMIT_FRAME_BINDINGS: true // default: false
68 };

其config主要是对一些用户可选项进行设定。在文件内部,更多的是对 Device API 的应用等等。

现在就开始编写WebVR应用吧!

在示例的最后是一个显示简单的旋转立方体的demo。此处可以帮助我们学习怎么创建一个WebVR应用。

首先是建立好scene、renderer、camera的三要素:

 1 // Setup three.js WebGL renderer. Note: Antialiasing is a big performance hit.
 2 // Only enable it if you actually need to.
 3 var renderer = new THREE.WebGLRenderer({antialias: true});
 4 renderer.setPixelRatio(window.devicePixelRatio);
 5 
 6 // Append the canvas element created by the renderer to document body element.
 7 document.body.appendChild(renderer.domElement);
 8 
 9 // Create a three.js scene.
10 var scene = new THREE.Scene();
11 
12 // Create a three.js camera.
13 var camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 10000);

对上面解析过的controls、effect进行调用:

 1 // Apply VR headset positional data to camera.
 2 var controls = new THREE.VRControls(camera);
 3 //站立姿态
 4 controls.standing = true;
 5 
 6 // Apply VR stereo rendering to renderer.
 7 var effect = new THREE.VREffect(renderer);
 8 effect.setSize(window.innerWidth, window.innerHeight);
 9 
10 // Create a VR manager helper to enter and exit VR mode.
11 //按钮和全屏模式管理
12 var params = {
13   hideButton: false, // Default: false.
14   isUndistorted: false // Default: false.
15 };
16 var manager = new WebVRManager(renderer, effect, params);

在场景中,添加一个网格显示的空间,在空间内加入一个小立方体:

 1 // Add a repeating grid as a skybox.
 2 var boxSize = 5;
 3 var loader = new THREE.TextureLoader();
 4 loader.load('img/box.png', onTextureLoaded);
 5 
 6 function onTextureLoaded(texture) {
 7   texture.wrapS = THREE.RepeatWrapping;
 8   texture.wrapT = THREE.RepeatWrapping;
 9   texture.repeat.set(boxSize, boxSize);
10 
11   var geometry = new THREE.BoxGeometry(boxSize, boxSize, boxSize);
12   var material = new THREE.MeshBasicMaterial({
13     map: texture,
14     color: 0x01BE00,
15     side: THREE.BackSide
16   });
17 
18   // Align the skybox to the floor (which is at y=0).
19   skybox = new THREE.Mesh(geometry, material);
20   skybox.position.y = boxSize/2;
21   scene.add(skybox);
22 
23   // For high end VR devices like Vive and Oculus, take into account the stage
24   // parameters provided.
25   //在高端的设备上,要考虑到设备提供的场景信息的更新。
26   setupStage();
27 }
28 
29 // Create 3D objects.
30 var geometry = new THREE.BoxGeometry(0.5, 0.5, 0.5);
31 var material = new THREE.MeshNormalMaterial();
32 var cube = new THREE.Mesh(geometry, material);
33 
34 // Position cube mesh to be right in front of you.
35 cube.position.set(0, controls.userHeight, -1);
36 
37 scene.add(cube);

最后便是设置requestAnimationFrame的更新。在animate的函数中,不但要考虑立方体的旋转问题,更重要的是要不断地获取HMD返回的信息以及对camera进行更新。

 

 
 1 // Request animation frame loop function
 2 var lastRender = 0;
 3 function animate(timestamp) {
 4   var delta = Math.min(timestamp - lastRender, 500);
 5   lastRender = timestamp;
 6 
 7   //立方体的旋转
 8   cube.rotation.y += delta * 0.0006;
 9 
10   // Update VR headset position and apply to camera.
11   //更新获取HMD的信息
12   controls.update();
13 
14   // Render the scene through the manager.
15   //进行camera更新和场景绘制
16   manager.render(scene, camera, timestamp);
17 
18   requestAnimationFrame(animate);
19 }

总结

以上便是此示例的各个文件的解析。我相信VR的形式除了在游戏上的应用的前景,在其他方面也有其值得探索的可行性。所以让我们一起来开始WebVR之旅吧!

目录
相关文章
|
8月前
|
Web App开发 测试技术 API
WebGpu VS WebGL
首先是Web 和 WebGPU 上的图形简史.如果您还没有阅读,请阅读 - 这篇文章在很大程度上是从那篇文章开始的。我将介绍WebGPU在实践中与WebGL的比较,我在Web游戏引擎Construct中添加WebGPU支持时学到的东西,以及它对未来的意义。
141 0
|
前端开发
互动应用开发p5.js——WebGL太阳系
WebGL太阳系 一、实验内容: 完成一个太阳系场景,其中至少有三个球体,一个表示太阳,一个表示地球,一个表示月亮;地球不停地绕太阳旋转,月亮绕地球旋转,星球本身有自转。可添加纹理,纹理自行从网络搜寻。画上星球运动的轨道线,并加上适当的光照效果。提交代码(如有纹理则需要提交纹理图片)和文档,要求简要说明功能点和实现方法; 评分标准: 星球的自转和公转运动准确;(30分) 光照效果合理;(30分) 场景丰富美观,可自由增加其他物体和光照,如飞船等;(20分) 编码规范,文档说明准确清楚;(20分)
236 0
互动应用开发p5.js——WebGL太阳系
|
JavaScript 物联网 开发者
WebGL的3D框架比较 ThingJS 和 Three.js
随着flash的没落,浏览器的原生能力的兴起。在3D方面WebGL不管从功能还是性能方面都在逐渐加强。2D应用变为3D应用的需求也越来越强烈。 win10的画图板支持3D图片,2d工具photoshop也开始逐步集成了3D工具。
4554 0
|
Web App开发 应用服务中间件 定位技术
用OpenLayers开发地图应用
项目背景 最近有一个使用全球地图展示数据的项目,用地图展示数据本身没什么难度,但出于安全和保密的考虑,甲方单位要求项目不能连接外网,只能在内网使用,也就是说,我们不得不在内网中部署一个地图服务器,在这个地图服务器的基础上进行开发。
2335 0
|
Web App开发 移动开发 前端开发
分享一个WebGL开发的网站-用JavaScript + WebGL开发3D模型
分享一个WebGL开发的网站-用JavaScript + WebGL开发3D模型
238 0
分享一个WebGL开发的网站-用JavaScript + WebGL开发3D模型
|
移动开发 JavaScript 前端开发
ThingJS:基于WebGL的3D技术在网页中的运用
Three.js、ThingJS这些引擎库可以加载3D制作软件的模型,大幅度提高了制作效率,改变WebGL开发困难的局面,让Web开发者享受便捷的3D开发服务。
ThingJS:基于WebGL的3D技术在网页中的运用
|
Web App开发 前端开发 JavaScript
使用WebGL + Three.js制作动画场景
使用WebGL + Three.js制作动画场景 3D图像,技术,打造产品,还有互联网:这些只是我爱好的一小部分。 现在,感谢WebGL的出现-一个新的JavaScriptAPI,它可以在不依赖任何插件的情况下渲染浏览器中的3D图像-这让3D渲染操作变得异常简单。
2092 0
|
JavaScript HTML5 移动开发