├── README.md └── chapters ├── chapter 1 └── HelloVirtualWorld │ ├── .babelrc │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── __tests__ │ └── client.js │ ├── index.vr.js │ ├── package.json │ ├── rn-cli.config.js │ ├── static_assets │ ├── chess-world.jpg │ └── horseshoe-bend.jpg │ └── vr │ ├── client.js │ └── index.html ├── chapter 2 ├── HelloVirtualWorld │ ├── .babelrc │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── __tests__ │ │ └── client.js │ ├── index.vr.js │ ├── package.json │ ├── rn-cli.config.js │ ├── static_assets │ │ ├── chess-world.jpg │ │ └── horseshoe-bend.jpg │ └── vr │ │ ├── client.js │ │ └── index.html └── PanoramicRoadTrip │ ├── .babelrc │ ├── .flowconfig │ ├── .gitignore │ ├── .watchmanconfig │ ├── __tests__ │ └── client.js │ ├── index.vr.js │ ├── package.json │ ├── rn-cli.config.js │ ├── static_assets │ ├── Arizona.jpg │ ├── California.jpg │ ├── Hawaii.jpg │ ├── New Hampshire.jpg │ └── Texas.jpg │ └── vr │ ├── client.js │ └── index.html ├── chapter 3 └── OutdoorMovieTheater │ ├── Components │ └── Scenes │ │ ├── Layouts │ │ ├── Elements │ │ │ ├── Button.js │ │ │ ├── Movie.js │ │ │ └── Title.js │ │ ├── MainMenuContainer.js │ │ └── MovieProjector.js │ │ ├── MainMenu.js │ │ └── MovieTheater.js │ ├── __tests__ │ └── client.js │ ├── index.vr.js │ ├── package.json │ ├── rn-cli.config.js │ ├── static_assets │ └── Readme.txt │ └── vr │ ├── client.js │ └── index.html ├── chapter 4 └── OutdoorMovieTheater │ ├── Components │ └── Scenes │ │ ├── Layouts │ │ ├── Elements │ │ │ ├── Button.js │ │ │ ├── Movie.js │ │ │ └── Title.js │ │ ├── MainMenuContainer.js │ │ ├── MovieProjector.js │ │ └── SceneSelectMenu.js │ │ ├── MainMenu.js │ │ ├── MovieTheater.js │ │ └── SceneSelect.js │ ├── __tests__ │ └── client.js │ ├── index.vr.js │ ├── package.json │ ├── rn-cli.config.js │ ├── static_assets │ └── Readme.txt │ └── vr │ ├── client.js │ └── index.html ├── chapter 5 └── StarWarsModeling │ ├── __tests__ │ └── client.js │ ├── index.vr.js │ ├── package.json │ ├── rn-cli.config.js │ ├── static_assets │ └── ReadMe.txt.txt │ └── vr │ ├── client.js │ └── index.html ├── chapter 6 └── VectorGraphicPanoramic │ ├── __tests__ │ └── client.js │ ├── index.vr.js │ ├── package.json │ ├── rn-cli.config.js │ ├── static_assets │ ├── ReadMe.txt │ ├── chess-world.jpg │ └── koala.PNG │ ├── vr │ ├── client.js │ └── index.html │ └── yarn.lock └── chapter 8 ├── After Study Break └── VrVideoApp │ ├── __tests__ │ └── client.js │ ├── components │ └── scenes │ │ ├── Dashboard.js │ │ ├── TitleScene.js │ │ ├── VideoPlayer.js │ │ └── layouts │ │ ├── DashboardLayout.js │ │ ├── TitleLayout.js │ │ ├── VideoPlayerLayout.js │ │ └── elements │ │ ├── Button.js │ │ ├── MenuButtons.js │ │ ├── ProgressCircles.js │ │ ├── TileButtons.js │ │ ├── Title.js │ │ └── VideoElement.js │ ├── index.vr.js │ ├── package-lock.json │ ├── package.json │ ├── rn-cli.config.js │ ├── static_assets │ └── ReadMe.text.txt │ ├── vr │ ├── client.js │ └── index.html │ └── yarn.lock └── Before Study Break └── VrVideoApp ├── __tests__ └── client.js ├── components └── scenes │ ├── Dashboard.js │ ├── TitleScene.js │ └── layouts │ ├── DashboardLayout.js │ ├── TitleLayout.js │ └── elements │ ├── Button.js │ ├── MenuButtons.js │ ├── ProgressCircles.js │ ├── TileButtons.js │ └── Title.js ├── index.vr.js ├── package.json ├── rn-cli.config.js ├── static_assets └── ReadMe.txt ├── vr ├── client.js └── index.html └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/README.md -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/.flowconfig -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | *.log 4 | *.js.meta 5 | node_modules/ 6 | build/ 7 | -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/.watchmanconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/package.json -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/static_assets/chess-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/static_assets/chess-world.jpg -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/static_assets/horseshoe-bend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/static_assets/horseshoe-bend.jpg -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 1/HelloVirtualWorld/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 1/HelloVirtualWorld/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/.flowconfig -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | *.log 4 | *.js.meta 5 | node_modules/ 6 | build/ 7 | -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/.watchmanconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/package.json -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/static_assets/chess-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/static_assets/chess-world.jpg -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/static_assets/horseshoe-bend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/static_assets/horseshoe-bend.jpg -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 2/HelloVirtualWorld/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/HelloVirtualWorld/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/.flowconfig -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | *.log 4 | *.js.meta 5 | node_modules/ 6 | build/ 7 | -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/.watchmanconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/package.json -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/static_assets/Arizona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/static_assets/Arizona.jpg -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/static_assets/California.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/static_assets/California.jpg -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/static_assets/Hawaii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/static_assets/Hawaii.jpg -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/static_assets/New Hampshire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/static_assets/New Hampshire.jpg -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/static_assets/Texas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/static_assets/Texas.jpg -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 2/PanoramicRoadTrip/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 2/PanoramicRoadTrip/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Button.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Movie.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Title.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/MainMenuContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/MainMenuContainer.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/MovieProjector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/Layouts/MovieProjector.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/MainMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/MainMenu.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/MovieTheater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/Components/Scenes/MovieTheater.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/package.json -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/static_assets/Readme.txt: -------------------------------------------------------------------------------- 1 | Check the chapter for all static_asset files 2 | -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 3/OutdoorMovieTheater/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 3/OutdoorMovieTheater/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Button.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Movie.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/Elements/Title.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/MainMenuContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/MainMenuContainer.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/MovieProjector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/MovieProjector.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/SceneSelectMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/Layouts/SceneSelectMenu.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/MainMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/MainMenu.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/MovieTheater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/MovieTheater.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/SceneSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/Components/Scenes/SceneSelect.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/package.json -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/static_assets/Readme.txt: -------------------------------------------------------------------------------- 1 | Check the chapter 3 for all static_asset files 2 | -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 4/OutdoorMovieTheater/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 4/OutdoorMovieTheater/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 5/StarWarsModeling/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 5/StarWarsModeling/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 5/StarWarsModeling/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 5/StarWarsModeling/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 5/StarWarsModeling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 5/StarWarsModeling/package.json -------------------------------------------------------------------------------- /chapters/chapter 5/StarWarsModeling/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 5/StarWarsModeling/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 5/StarWarsModeling/static_assets/ReadMe.txt.txt: -------------------------------------------------------------------------------- 1 | See the chapter for assets -------------------------------------------------------------------------------- /chapters/chapter 5/StarWarsModeling/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 5/StarWarsModeling/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 5/StarWarsModeling/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 5/StarWarsModeling/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/package.json -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/static_assets/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/static_assets/ReadMe.txt -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/static_assets/chess-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/static_assets/chess-world.jpg -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/static_assets/koala.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/static_assets/koala.PNG -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 6/VectorGraphicPanoramic/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 6/VectorGraphicPanoramic/yarn.lock -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/Dashboard.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/TitleScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/TitleScene.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/VideoPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/VideoPlayer.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/DashboardLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/DashboardLayout.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/TitleLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/TitleLayout.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/VideoPlayerLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/VideoPlayerLayout.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/Button.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/MenuButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/MenuButtons.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/ProgressCircles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/ProgressCircles.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/TileButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/TileButtons.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/Title.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/VideoElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/components/scenes/layouts/elements/VideoElement.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/package-lock.json -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/package.json -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/static_assets/ReadMe.text.txt: -------------------------------------------------------------------------------- 1 | See the chapter for asset links. -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 8/After Study Break/VrVideoApp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/After Study Break/VrVideoApp/yarn.lock -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/__tests__/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/__tests__/client.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/Dashboard.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/TitleScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/TitleScene.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/DashboardLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/DashboardLayout.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/TitleLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/TitleLayout.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/Button.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/MenuButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/MenuButtons.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/ProgressCircles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/ProgressCircles.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/TileButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/TileButtons.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/components/scenes/layouts/elements/Title.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/index.vr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/index.vr.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/package.json -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/rn-cli.config.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/static_assets/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/static_assets/ReadMe.txt -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/vr/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/vr/client.js -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/vr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/vr/index.html -------------------------------------------------------------------------------- /chapters/chapter 8/Before Study Break/VrVideoApp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelmang/Learn-React-VR/HEAD/chapters/chapter 8/Before Study Break/VrVideoApp/yarn.lock --------------------------------------------------------------------------------