React VR 快速入门完全教程

前端之家收集整理的这篇文章主要介绍了React VR 快速入门完全教程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

React VR 快速入门

什么是React

React是一个开放源代码JavaScript库,为HTML呈现的数据提供了视图渲染。React视图通常使用指定的像HTML标签一样的组件来进行UI渲染。它目前是最流行的JavaScript库之一,它拥有强大的基础和庞大的社区。

创建一个React App

  1. $ npm install -g create-react-app
  2. $ create-react-app my-app
  3.  
  4. $ cd my-app
  5. $ npm start

效果

什么是React Native?

React Native是仅使用Javascript的移动应用构建框架。它使用与React相同的设计,包含丰富的UI库和组件声明。

它使用与常规iOS和Android应用程序相同的基本UI构建块。

使用React-Native最赞的地方是还可以通过原生的Objective-C,Java,或者Swift来构建组件。

  • React VS React Native:

  • React Native bridge:

创建一个React Native App

  • 环境安装

查看官网http://facebook.github.io/react-native/docs/getting-started.html

  • 创建项目

  1. $ react-native init my-rn-app
  • 运行项目

  1. To run your app on iOS:
  2. cd /Users/liyuechun/Pictures/my_rn_app
  3. react-native run-ios
  4. - or -
  5. Open ios/my_rn_app.xcodeproj in Xcode
  6. Hit the Run button
  7. To run your app on Android:
  8. cd /Users/liyuechun/Pictures/my_rn_app
  9. Have an Android emulator running (quickest way to get started),or a device connected
  10. react-native run-android
iOS Android

联系我

开始使用React VR

React VR旨在允许Web开发人员使用React的声明方法(特别是React Native)来创作虚拟现实(VR)应用程序。

React VR使用Three.js支持较低级别的WebVRWebGL API. WebVR是用于访问Web上VR设备的API。 WebGL(Web图形库)是一种无需使用插件即可用于在任何兼容的Web浏览器中渲染3D图形的API。

React VR类似于React Native,因为它使用ViewImageText作为核心组件,并且支持FlexBox布局。 此外,React VR还将PanoMeshPointLight等VR组件添加相关库中。

在本篇文章中,我将带领大家创建一个简单的VR应用程序来学习如何创建一个全景图片,3D对象模型,按钮和flexBox布局的使用场景。我们的模拟应用程序基于React VR的两个网格布局官方示例

该应用程序将渲染一个能够放大和缩小的地球月球的3D模型,效果图如下所示:

这些模型中,它们的尺度和旋转不是地球-月球系统的真实复制品。 这种关系只是为了展示React VR的工作原理。 与此同时,我们将解释一些关键的3D建模概念。 一旦掌握了ReactVR,就可以随意创造更多的作品。

你能够从 GitHub找到最后的项目源代码

要求

到目前为止,虚拟现实是一项相当新的技术,开发或测试我们的VR应用程序的方法很少。

WebVRIs WebVR Ready? 可以帮助您了解哪些浏览器和设备支持最新的VR规范。

但是你也不必过于担心, 你现在不需要任何特殊的设备,例如: Oculus Rift,HTC Vive,或者 Samsung Gear VR 来测试一个WebVR APP。

下面是你现在 所需要 准备的:

  • 一台Windows/Mac电脑。

  • Google浏览器。

  • 最新版本的Node.js

如果您也有Android设备和Gear VR耳机,您可以安装Carmel Developer Preview浏览器来探索您的React VR 应用程序。

创建项目

首先,我们需要使用NPM来安装React VR CLI工具:

  1. $ npm install -g react-vr-cli

使用React VR CLI来创建一个名字叫做EarthMoonVR的新项目:

  1. $ react-vr init EarthMoonVR

在创建过程中您需要等一会儿,这将创建一个EarthMoonVR目录,目录里面就是相关项目文件,如果希望创建速度快一些,您可以安装 Yarn 来提高速度。

一旦项目创建完毕,可以通过cd切换到EarthMoonVR文件路径下面:

  1. $ cd EarthMoonVR

在终端通过npm start来启动程序以便查看效果

  1. $ npm start

在浏览器中输入http://localhost:8081/vr。稍微等一会儿,即可查看到VR效果

React VR

下面是初始化的React VR新项目的项目结构:

  1. +-__tests__
  2. +-node_modules
  3. +-static_assets
  4. +-vr
  5. \-.babelrc
  6. \-.flowconfig
  7. \-.gitignore
  8. \-.watchmanconfig
  9. \-index.vr.js
  10. \-package.json
  11. \-rn-cli-config.js
  12. \-yarn.lock

我将index.vr.js文件呈现高亮状态,它包含了您应用程序的源码,static_assets目录包含像图片和3D模型的外部资源文件

你可以从这里了解更多项目结构。

index.vr.js 文件内容如下:

  1. import React from 'react';
  2. import {
  3. AppRegistry,asset,StyleSheet,Pano,Text,View,} from 'react-vr';
  4.  
  5. class EarthMoonVR extends React.Component {
  6. render() {
  7. return (
  8. <View>
  9. <Pano source={asset('chess-world.jpg')}/>
  10. <Text
  11. style={{
  12. backgroundColor:'blue',padding: 0.02,textAlign:'center',textAlignVertical:'center',fontSize: 0.8,layoutOrigin: [0.5,0.5],transform: [{translate: [0,-3]}],}}>
  13. hello
  14. </Text>
  15. </View>
  16. );
  17. }
  18. };
  19.  
  20. AppRegistry.registerComponent('EarthMoonVR',() => EarthMoonVR);

我们可以看到React VR使用了ES2015JSX

这个代码通过React Native packager进行预编译,它提供了(ES2015,JSX)编译和其他资源加载。

render函数中,return了一个顶级标签,里面包含:

  • View 组件,它是可以包含其他所有组件的容器组件。

  • Pano 组件,用于将(chess-world.jpg)渲染一张360度的图片

  • Text 组件,用于渲染字体的3D空间。

注意,Text组件通过一个内联的样式对象来设置样式。在React VR中的每一个组件都有一个style属性来控制控制它的外观和布局。

除了添加PanoVrButton等特殊组件之外,React VR还使用了与React和React Native相同的概念,例如组件,属性,状态,生命周期,事件和弹性布局。

最后,项目根组件应该通过AppRegistry.registerComponent来进行注册,以便App能够进行打包和正常运行。

现在我们知道代码是做什么用的,接下来我们将全景图片拖拽到项目中。

全景图像

通常,我们的VR应用程序中的空间由全景(pano)图像组成,它创建了一个1000米的球体(在React VR距离中,尺寸单位为米),并将用户置于其中心。

一张全景图像允许你从上面,下面,后面以及你的前面去观察它,这就是他们也被称为360的图像或球面全景的原因。

360全景图有两种主要格式:平面全景图立方体。 React VR支持两者。

平面全景图

平面全景图由宽高比为2:1的单个图像组成,意味着宽度必须是高度的两倍。

这些照片是通过360度照相机创建的。一个很好的平面图像来源是Flickr,你打开这个网站尝试搜索equirectangular关键字,例如:我通过equirectangular关键字尝试搜索就找到这张图片:

看起来很奇怪,不是吗?

无论如何,下载最高可用分辨率的照片,将其拖拽到项目中static_assets的路径下面,并且修改render函数中的代码,如下所示:

  1. render() {
  2. return (
  3. <View>
  4. <Pano source={asset('sample_pano.jpg')}/>
  5. </View>
  6. );
  7. }

Pano组件的source属性接收一个当前图片位置的uri属性值。这里我们使用了asset函数,将sample_pano.jpg作为参数,这个函数将会返回static_assets 路径下的图片的正确的uri。换句话说,上面的方法等价于下面的方法

  1. render() {
  2. return (
  3. <View>
  4. <Pano source={ {uri:'../static_assets/sample_pano.jpg'} }/>
  5. </View>
  6. );
  7. }

假设本地服务器一直在运行,当我们在浏览器中刷新页面时,我们将看到如下效果

顺便说一下,如果我们想避免在每次更改时都需要重新刷新页面,我们可以通过在URL(http://localhost:8081/vr/?hot...添加 ?hotreload 来启用 热刷新

立方体全景图

立方体全景图是360度全景图的其他格式。这种格式使用六个图像作为一个多维数组集的六个面,它将填充我们周围的球体。 它也被称为天空盒。

基本思想是渲染一个立方体,并将观众置于中心,随后移动。

例如,下面的这张大图中,每一个方位的小图代表立方体的一面:

为了能够在React VR中使用立方体全景图,Pano组件的source属性uri值必须指定为一个数组,数组中的每一张图片分别代表[+x,-x,+y,-y,+z,-z],如下所示:

  1. render() {
  2. return (
  3. <View>
  4. <Pano source={
  5. {
  6. uri: [
  7. '../static_assets/sample_right.jpg','../static_assets/sample_left.jpg','../static_assets/sample_top.jpg','../static_assets/sample_bottom.jpg','../static_assets/sample_back.jpg','../static_assets/sample_front.jpg'
  8. ]
  9. }
  10. } />
  11. </View>
  12. );
  13. }

在2D布局中,X轴越向右x值越大,Y轴越向下值越大,(0,0)坐标为最左上角,右下角代表元素的宽和高(width,height)。

然而,在3D空间中,React VR使用了同OpenGL使用的右手坐标系统,正X指向右边,正Y指向上边,正Z指向用户的方向。因为用户的默认视图从原点开始,这意味着它们将从负Z方向开始:

你可以从React VR coordinate system here了解更多React VR坐标系统.

这样,我们的立方体(或天空盒)将如下所示:

SkyBoxUnity中使用了很多,所以有很多地方可以找到他们并进行下载。 例如,我从这个页面下载了撒哈拉沙漠。我将图片拖拽到项目中,并修改代码如下所示:

  1. render() {
  2. return (
  3. <View>
  4. <Pano source={
  5. {
  6. uri: [
  7. '../static_assets/sahara_rt.jpg','../static_assets/sahara_lf.jpg','../static_assets/sahara_up.jpg','../static_assets/sahara_dn.jpg','../static_assets/sahara_bk.jpg','../static_assets/sahara_ft.jpg'
  8. ]
  9. }
  10. } />
  11. </View>
  12. );
  13. }

效果如下所示:

你能注意到顶部和底部的图像不协调吗?我们可以通过将顶部图像顺时针旋转90度,底部逆时针旋转90度来校正它们:

现在让我们为我们的应用创建一个空间天空盒。

最好的程序是Spacescape, 它一个免费的工具,可在Windows和Mac上创建空间天空盒(包括星星和星云)。

创建一个sampleSpace.xml文件,将下面的代码拷贝到sampleSpace.xml文件中:

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <spacescapelayers>
  3. <layer>
  4. <destBlendFactor>one</destBlendFactor>
  5. <farColor>0 0 0 1</farColor>
  6. <hdrMultiplier>1</hdrMultiplier>
  7. <hdrPower>1</hdrPower>
  8. <maskEnabled>false</maskEnabled>
  9. <maskGain>0.5</maskGain>
  10. <maskLacunarity>2</maskLacunarity>
  11. <maskNoiseType>fbm</maskNoiseType>
  12. <maskOctaves>1</maskOctaves>
  13. <maskOffset>1</maskOffset>
  14. <maskPower>1</maskPower>
  15. <maskScale>1</maskScale>
  16. <maskSeed>1</maskSeed>
  17. <maskThreshold>0</maskThreshold>
  18. <name>Fuzzy Blue Stars</name>
  19. <nearColor>1 1 1 1</nearColor>
  20. <numPoints>3000</numPoints>
  21. <pointSize>3</pointSize>
  22. <seed>4</seed>
  23. <sourceBlendFactor>one</sourceBlendFactor>
  24. <type>points</type>
  25. </layer>
  26. <layer>
  27. <destBlendFactor>one</destBlendFactor>
  28. <ditherAmount>0.03</ditherAmount>
  29. <gain>1.5</gain>
  30. <hdrMultiplier>1</hdrMultiplier>
  31. <hdrPower>1</hdrPower>
  32. <innerColor>1 1 1 1</innerColor>
  33. <lacunarity>2</lacunarity>
  34. <name>Fuzzy White Star Overlay</name>
  35. <noiseType>ridged</noiseType>
  36. <octaves>8</octaves>
  37. <offset>0.94</offset>
  38. <outerColor>0 0 0 1</outerColor>
  39. <powerAmount>1</powerAmount>
  40. <previewTextureSize>1024</previewTextureSize>
  41. <scale>10</scale>
  42. <seed>4</seed>
  43. <shelfAmount>0.81</shelfAmount>
  44. <sourceBlendFactor>one</sourceBlendFactor>
  45. <type>noise</type>
  46. </layer>
  47. </spacescapelayers>

并且通过Spacescape软件打开sampleSpace.xml文件效果图如下所示:

我们可以导出天空盒的六张图像:

如果我们修改代码如下所示:

  1. <Pano source={
  2. {
  3. uri: [
  4. '../static_assets/space_right.png','../static_assets/space_left.png','../static_assets/space_up.png','../static_assets/space_down.png','../static_assets/space_back.png','../static_assets/space_front.png'
  5. ]
  6. }
  7. }/>

将得到如下结果:

现在让我们来讨论讨论3D模型。

联系我

3D 模型

React VR 有一个 Model 组件,它支持Wavefront .obj file format 来代表3D建模。

mesh是定义3D对象形状的顶点、边和面的集合。

.obj文件是一个纯文本文件,其中包含几何顶点,纹理坐标,顶点法线和多边形面元素的坐标。

通常,.obj文件引用一个外部.mtl file文件,其中存储了描述多边形视觉方面的材质(或纹理)。

您可以使用Blender,3DS Max,和Maya等程序创建3D模型并将其导出为这些格式。

还有很多网站可以免费下载或免费下载3D模型。 以下是其中三个很不错的:

对于我们的应用程序,我们将使用这个3D地球模型和这个来自TF3DM的3D月球模型

当我们将地球模型的文件提取到我们应用程序的static_assets目录时,我们可以看到有一堆图像(纹理)以及.obj和.mtl文件。 如果我们在文本编辑器中打开后者,我们将看到如下所示定义:

  1. # 3ds Max Wavefront OBJ Exporter v0.97b - (c)2007 guruware
  2. # File Created: 25.01.2016 02:22:51
  3.  
  4. newmtl 01___Default
  5. Ns 10.0000
  6. Ni 1.5000
  7. d 1.0000
  8. Tr 0.0000
  9. Tf 1.0000 1.0000 1.0000
  10. illum 2
  11. Ka 0.0000 0.0000 0.0000
  12. Kd 0.0000 0.0000 0.0000
  13. Ks 0.0000 0.0000 0.0000
  14. Ke 0.0000 0.0000 0.0000
  15. map_Ka 4096_earth.jpg
  16. map_Kd 4096_earth.jpg
  17. map_Ke 4096_night_lights.jpg
  18. map_bump 4096_bump.jpg
  19. bump 4096_bump.jpg
  20.  
  21. newmtl 02___Default
  22. Ns 10.0000
  23. Ni 1.5000
  24. d 1.0000
  25. Tr 0.0000
  26. Tf 1.0000 1.0000 1.0000
  27. illum 2
  28. Ka 0.5882 0.5882 0.5882
  29. Kd 0.5882 0.5882 0.5882
  30. Ks 0.0000 0.0000 0.0000
  31. Ke 0.0000 0.0000 0.0000
  32. map_Ka 4096_earth.jpg
  33. map_Kd 4096_earth.jpg
  34. map_d 4096_earth.jpg

现在我们将添加Model组件,如下面的代码所示:

  1. <Model source={{obj:asset('earth.obj'),mtl:asset('earth.mtl')}} lit={true} />

lit属性指定网格中使用的材料应使用Phong shading处理灯。

同时,也不要忘了从react-vr中导入Model组件:

  1. import {
  2. ...
  3. Model,} from 'react-vr';

但是,如果我们只将该组件添加到我们的应用程序中,则不会显示任何内容。 我们首先需要添加一个光源。

React VR 有四种光源类型:

  • AmbientLight表示全方位,固定强度和固定颜色的光源,可以均匀地影响场景中的所有对象。

  • DirectionalLight表示从指定方向平均照亮所有物体的光源。

  • PointLight 代表光的起源来源于一个点,并向各个方向传播。

  • SpotLight 代表光的起源来源于一个点,并以锥形向外扩散。

您可以尝试所有类型的灯光,看看哪一个可以为您带来最佳效果。 在这种情况下,我们将使用强度值为2.6AmbientLight

  1. import React from 'react';
  2. import {
  3. AppRegistry,Model,AmbientLight,} from 'react-vr';
  4.  
  5. class EarthMoonVR extends React.Component {
  6. render() {
  7. return (
  8. <View>
  9. ...
  10.  
  11. <AmbientLight intensity={ 2.6 } />
  12. <Model source={{obj:asset('earth.obj'),mtl:asset('earth.mtl')}} lit={true} />
  13. </View>
  14. );
  15. }
  16. };
  17.  
  18. AppRegistry.registerComponent('EarthMoonVR',() => EarthMoonVR);

接下来,我们需要给我们的模型一些用于放置、大小、和旋转的样式属性。 通过尝试不同的值,我想出了以下配置:

  1. class EarthMoonVR extends React.Component {
  2. render() {
  3. return (
  4. <View>
  5. ...
  6.  
  7. <Model
  8. style={{
  9. transform: [
  10. {translate: [-25,-70]},{scale: 0.05 },{rotateY: -130},{rotateX: 20},{rotateZ: -10}
  11. ],}}
  12. source={{obj:asset('earth.obj'),mtl:asset('earth.mtl')}}
  13. lit={true}
  14. />
  15. </View>
  16. );
  17. }
  18. };
  19.  
  20. AppRegistry.registerComponent('EarthMoonVR',() => EarthMoonVR);

Transforms被表示为一个样式对象中的对象数组,请记住它们最后被应用的单位是米。

translate将您的模型的位置转换为x,y,z空间,scale给您的模型一个大小,并根据提供的度数绕轴旋转。

这是效果图:

这个地球模型可以应用多个纹理。 默认情况下它带 clouds 纹理,但是我们可以通过用4096_earth.jpg替换最后三行中的4096_clouds.jpg来更改.mtl文件中的内容

  1. # 3ds Max Wavefront OBJ Exporter v0.97b - (c)2007 guruware
  2. # File Created: 25.01.2016 02:22:51
  3.  
  4. newmtl 01___Default
  5. ...
  6.  
  7. newmtl 02___Default
  8. ...
  9. map_Ka 4096_earth.jpg
  10. map_Kd 4096_earth.jpg
  11. map_d 4096_earth.jpg

效果图如下:

顺便说一下,如果您的模型不带有.mtl文件,React VR允许您通过下面的代码指定纹理:

  1. <Model
  2. source={{obj:asset('model.obj'),texture:asset('model.jpg')}}
  3. lit={true}
  4. />

我们对月球模型做同样的操作,将纹理的路径修复到.mtl文件中,并尝试使用不同的比例和放置值。 您不需要添加另一个光源,AmbientLight将适用于两种模型。

这是我想出的月球模型的代码

  1. render() {
  2. return (
  3. <View>
  4.  
  5. ...
  6.  
  7. <Model
  8. style={{
  9. transform: [
  10. {translate: [10,10,-100]},{scale: 0.05},],}}
  11. source={{obj:asset('moon.obj'),mtl:asset('moon.mtl')}}
  12. lit={true}
  13. />
  14. </View>
  15. );
  16. }

效果图:

如果你想在WebVR上下文中了解更多关于360度全景图的信息,你可以查看the developer documentation at Oculus这篇文章

现在,我们一起来为模型添加动画。

模型动画化

React VR 有一个 动画库来以简单的方式组合一些类型的动画。

在这个时候,只有几个组件可以自己动画(View 使用 Animated.View,Text 使用 Animated.Text,Image 使用 Animated.Image). 这个文档 提醒你可以通过createAnimatedComponent来创建更多的动画,但是目前为止还找不到更多的相关信息。

另位一种选择是使用requestAnimationFrame ,它是基于JavaScript动画API的重要组成部分。

那么我们可以做的就是要有一个状态属性来表示两个模型的Y轴上的旋转值(在月球模型上,为了使它变慢让旋转是地球旋转的三分之一):

  1. class EarthMoonVR extends React.Component {
  2. constructor() {
  3. super();
  4. this.state = {
  5. rotation: 130,};
  6. }
  7.  
  8. render() {
  9. return (
  10. <View>
  11. ...
  12.  
  13. <Model
  14. style={{
  15. transform: [
  16. {translate: [-25,{rotateY: this.state.rotation},mtl:asset('earth.mtl')}}
  17. lit={true}
  18. />
  19. <Model
  20. style={{
  21. transform: [
  22. {translate: [10,{rotateY: this.state.rotation / 3},mtl:asset('moon.mtl')}}
  23. lit={true}
  24. />
  25. </View>
  26. );
  27. }
  28. };

现在我们来编写一个rotate函数,它将通过requestAnimationFrame函数调用每一帧,在一定时间基础上更新旋转:

  1. class EarthMoonVR extends React.Component {
  2. constructor() {
  3. super();
  4. this.state = {
  5. rotation: 130,};
  6. this.lastUpdate = Date.now();
  7.  
  8. this.rotate = this.rotate.bind(this);
  9. }
  10.  
  11. rotate() {
  12. const now = Date.now();
  13. const delta = now - this.lastUpdate;
  14. this.lastUpdate = now;
  15.  
  16. this.setState({
  17. rotation: this.state.rotation + delta / 150
  18. });
  19. this.frameHandle = requestAnimationFrame(this.rotate);
  20. }
  21.  
  22. ...
  23. }

幻数 150只是控制旋转速度(这个数字越大,旋转速度越慢)。 我们保存由requestAnimationFrame返回的处理程序,以便当组件卸载并启动componentDidMount上的旋转动画时,我们可以取消动画:

  1. class EarthMoonVR extends React.Component {
  2. constructor() {
  3. super();
  4. this.state = {
  5. rotation: 130,};
  6. this.lastUpdate = Date.now();
  7.  
  8. this.rotate = this.rotate.bind(this);
  9. }
  10.  
  11. componentDidMount() {
  12. this.rotate();
  13. }
  14.  
  15. componentWillUnmount() {
  16. if (this.frameHandle) {
  17. cancelAnimationFrame(this.frameHandle);
  18. this.frameHandle = null;
  19. }
  20. }
  21.  
  22. rotate() {
  23. const now = Date.now();
  24. const delta = now - this.lastUpdate;
  25. this.lastUpdate = now;
  26.  
  27. this.setState({
  28. rotation: this.state.rotation + delta / 150
  29. });
  30. this.frameHandle = requestAnimationFrame(this.rotate);
  31. }
  32.  
  33. ...
  34. }

这是效果图(你可能没有注意到,但是月亮旋转得很慢):

现在让我们来添加一些button来增加一些交互。

添加button并设置样式

为我们的button创建一个新的组件。在实际开发中,我们也能使用View 或者VrButton,这俩都能设置像onEnter一样的有效的事件来达到我们的目的。

然而,我们将使用VrButton,因为它有和其他组件不一样的状态机,并且很方便的添加onClickonLongClick事件。

同时,我们为了让button外观更好看一些,我们将使用StyleSheet 来创建一个样式对象,并通过一个样式ID来对button进行引用。

下面是button.js内容

  1. import React from 'react';
  2. import {
  3. StyleSheet,VrButton,} from 'react-vr';
  4.  
  5. export default class Button extends React.Component {
  6. constructor() {
  7. super();
  8. this.styles = StyleSheet.create({
  9. button: {
  10. margin: 0.05,height: 0.4,backgroundColor: 'red',},text: {
  11. fontSize: 0.3,textAlign: 'center',});
  12. }
  13.  
  14. render() {
  15. return (
  16. <VrButton style={this.styles.button}
  17. onClick={() => this.props.callback()}>
  18. <Text style={this.styles.text}>
  19. {this.props.text}
  20. </Text>
  21. </VrButton>
  22. );
  23. }
  24. }

一个VrButton没有外观效果,因此我们必须给它添加样式。它也可以包装一个ImageText组件。当点击这个button时,我们可以给它传递一个事件函数来接收点击事件。

现在在我们的根组件中,我们倒入Button 组件并且在render函数中,如下所示添加两个Button。

  1. ...
  2. import Button from './button.js';
  3.  
  4. class EarthMoonVR extends React.Component {
  5. ...
  6.  
  7. render() {
  8. return (
  9. <View>
  10. ...
  11.  
  12. <AmbientLight intensity={ 2.6 } />
  13.  
  14. <View>
  15. <Button text='+' />
  16. <Button text='-' />
  17. </View>
  18.  
  19. ...
  20. </View>
  21. );
  22. }
  23. };

这两个Button在被触发时将会改变模型的Z坐标值并进行相应的缩放。因此,我们添加一个zoom状态机变量值,让它的初始值为-70(地球的Z轴值),当我们点击+-时会增加减少 zoom的值。

  1. class EarthMoonVR extends React.Component {
  2. constructor() {
  3. super();
  4. this.state = {
  5. rotation: 130,zoom: -70,};
  6. ...
  7. }
  8.  
  9. render() {
  10. return (
  11. <View>
  12.  
  13. ...
  14.  
  15. <View>
  16. <Button text='+'
  17. callback={() => this.setState((prevState) => ({ zoom: prevState.zoom + 10 }) ) } />
  18. <Button text='-'
  19. callback={() => this.setState((prevState) => ({ zoom: prevState.zoom - 10 }) ) } />
  20. </View>
  21.  
  22. <Model
  23. style={{
  24. transform: [
  25. {translate: [-25,this.state.zoom]},this.state.zoom - 30]},mtl:asset('moon.mtl')}}
  26. lit={true}
  27. />
  28. </View>
  29. );
  30. }
  31. };

现在我们通过StyleSheet.create来给包含两个Button的View添加flexbox布局样式。

  1. class EarthMoonVR extends React.Component {
  2. constructor() {
  3. super();
  4. ...
  5. this.styles = StyleSheet.create({
  6. menu: {
  7. flex: 1,flexDirection: 'column',width: 1,alignItems: 'stretch',transform: [{translate: [2,2,-5]}],});
  8. ...
  9. }
  10.  
  11. render() {
  12. return (
  13. <View>
  14. ...
  15.  
  16. <View style={ this.styles.menu }>
  17. <Button text='+'
  18. callback={() => this.setState((prevState) => ({ zoom: prevState.zoom + 10 }) ) } />
  19. <Button text='-'
  20. callback={() => this.setState((prevState) => ({ zoom: prevState.zoom - 10 }) ) } />
  21. </View>
  22.  
  23. ...
  24.  
  25. </View>
  26. );
  27. }
  28. };

在flexBox布局中,子组件会通过flexDirection:'column'属性值垂直布局,通过flexDirection:'row'属性值水平布局。在这个案例中,flex设置为1代表两个button大小一样,flexDirection设置为column代表两个button从上往下排列。alignItems的值为stretch代表两个Button和父视图宽度一样。

看看 this page on the React Native documentationthis one on the React VR documentation 这两篇文章来了解更多关于flexBox布局的相关知识。

最后,我们可以从render函数中将天空盒的图片移除,以便render中的代码看起来不至于那么拥挤:

  1. import React from 'react';
  2. import {
  3. AppRegistry,} from 'react-vr';
  4. import Button from './button.js';
  5.  
  6. class EarthMoonVR extends React.Component {
  7. constructor() {
  8. super();
  9. this.state = {
  10. rotation: 130,};
  11. this.lastUpdate = Date.now();
  12. this.spaceSkymap = [
  13. '../static_assets/space_right.png','../static_assets/space_front.png'
  14. ];
  15. this.styles = StyleSheet.create({
  16. menu: {
  17. flex: 1,});
  18.  
  19. this.rotate = this.rotate.bind(this);
  20. }
  21.  
  22. componentDidMount() {
  23. this.rotate();
  24. }
  25.  
  26. componentWillUnmount() {
  27. if (this.frameHandle) {
  28. cancelAnimationFrame(this.frameHandle);
  29. this.frameHandle = null;
  30. }
  31. }
  32.  
  33. rotate() {
  34. const now = Date.now();
  35. const delta = now - this.lastUpdate;
  36. this.lastUpdate = now;
  37.  
  38. this.setState({
  39. rotation: this.state.rotation + delta / 150
  40. });
  41. this.frameHandle = requestAnimationFrame(this.rotate);
  42. }
  43.  
  44. render() {
  45. return (
  46. <View>
  47. <Pano source={ {uri: this.spaceSkymap} }/>
  48.  
  49. <AmbientLight intensity={ 2.6 } />
  50.  
  51. <View style={ this.styles.menu }>
  52. <Button text='+'
  53. callback={() => this.setState((prevState) => ({ zoom: prevState.zoom + 10 }) ) } />
  54. <Button text='-'
  55. callback={() => this.setState((prevState) => ({ zoom: prevState.zoom - 10 }) ) } />
  56. </View>
  57.  
  58. <Model
  59. style={{
  60. transform: [
  61. {translate: [-25,mtl:asset('moon.mtl')}}
  62. lit={true}
  63. />
  64. </View>
  65. );
  66. }
  67. };
  68.  
  69. AppRegistry.registerComponent('EarthMoonVR',() => EarthMoonVR);

如果我们测试这个应用程序,我们将看到两个button均触发了相关事件。

总结

React Native 是基于React的一个移动端的JavaScrpit库,而React VR又是基于React Native的适用于虚拟现实的JavaScrpit库。React VR允许我们快速方便的创建VR体验。

有很多相关的社区,如A-FrameReact VR 中文网。如果你想在App中制作360度的VR全景效果,并且如果你了解React/React Native,那么React VR是非常不错的选择。

记住,你能够从GitHub下载本篇文章中的源码。

谢谢阅读!

联系我

猜你在找的React相关文章