forked from viromedia/viro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
73 lines (61 loc) · 1.9 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
* Copyright (c) 2015-present, Viro Media, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
'use strict';
import React, { Component } from 'react';
import {
AppRegistry,
} from 'react-native';
import {
ViroVRSceneNavigator,
ViroARSceneNavigator,
} from 'react-viro';
var createReactClass = require('create-react-class');
/*
* TODO: Add your API key below!!
*/
var apiKey = "YOUR_API_KEY_HERE";
var vrScenes = {
'360PhotoTour': require('./js/360PhotoTour/MainScene'),
'HumanBody': require('./js/HumanBody/MainScene'),
'ProductShowcase': require('./js/ProductShowcase/ProductShowcase'),
'ViroMediaPlayer': require('./js/ViroMediaPlayer/ViroTheatre'),
'ParticleEmitters': require('./js/ParticleEmitters/ViroParticleTemplates'),
'PhysicsSample': require('./js/PhysicsSample/BasicPhysicsSample'),
}
var arScenes = {
'ARSimpleSample': require('./js/ARSample/HelloWorldSceneAR.js'),
'ARPhysicsSample': require('./js/ARPhysicsSample/BasicPhysicsSample.js'),
'ARCarDemo' : require('./js/ARCarDemo/ARCarDemo.js'),
'ARPosterDemo' : require('./js/ARPosterDemo/ARPosterDemo.js'),
'BusinessCard' : require('./js/ARBusinessCard/BusinessCard.js'),
}
var showARScene = true;
var ViroCodeSamplesSceneNavigator = createReactClass({
render: function() {
if (showARScene) {
return (
<ViroARSceneNavigator
initialScene={{
scene: arScenes['ARSimpleSample'],
}}
apiKey={apiKey} />
);
} else {
return (
<ViroVRSceneNavigator
initialScene={{
scene: vrScenes['360PhotoTour'],
}}
apiKey={apiKey} />
);
}
}
});
module.exports = ViroCodeSamplesSceneNavigator;