Cardboard VR: Building Low Cost VR Experiences

Mark Billinghurst
Mark BillinghurstDirector at HIT Lab NZ um University of South Australia
CARDBOARD VR: BUILDING
LOW COST VR EXPERIENCES
Mark Billinghurst
mark.billinghurst@unisa.edu.au
April 14th 2016
CHIuXiD
What You Will Learn
• Virtual Reality Fundamentals + History
• How to Build Cardboard VR Viewer
• Example Cardboard VR Applications
• Basics of Unity Programming
• How to Make Panorama VR Applications
• How to Create VR Scenes
• How to Add Interactivity to VR Applications
• Cardboard Design guidelines
VIRTUAL REALITY
Virtual Reality
Computer generated multi-sensory simulation of an
artificial environment that is interactive and immersive.
Cardboard VR: Building Low Cost VR Experiences
David Zeltzer’s AIP Cube
! Autonomy – User can to
react to events and stimuli.
! Interaction – User can
interact with objects and
environment.
! Presence – User feels
immersed through sensory
input and output channels
Interaction
Autonomy
Presence
VR
Zeltzer, D. (1992). Autonomy, interaction, and presence. Presence: Teleoperators
& Virtual Environments, 1(1), 127-132.
Key Technologies
• Autonomy
•  Head tracking, body input
•  Intelligent systems
• Interaction
•  User input devices, HCI
• Presence
•  Graphics/audio/multisensory output
•  Multisensory displays
•  Visual, audio, haptic, olfactory, etc
Early Experimenters (1950’s – 80’s)
Helig 1956
Sutherland 1965
Furness 1970’s
The First Wave (1980’s – 90’s)
NASA 1989
VPL 1990’s
Virtuality 1990’s
Jaron Lanier
•  Founded VPL, coined term “Virtual Reality”
Desktop VR - 1995
•  Expensive - $150,000+
•  2 million polys/sec
•  VGA HMD – 30 Hz
•  Magnetic tracking
Second Wave (2010 - )
• Palmer Luckey
•  HMD hacker
•  Mixed Reality Lab (MxR)
• Oculus Rift (2011 - )
•  2012 - $2.4 million kickstarter
•  2014 - $2B acquisition FaceBook
•  $350 USD, 110o FOV
•  sddg
Oculus Rift
Sony Morpheus
HTC/Valve Vive
2016 - Rise of Consumer HMDs
Desktop VR 2016
• Graphics Desktop
•  $1,500 USD
•  >4 Billion poly/sec
• $600 HMD
•  1080x1200, 90Hz
• Optical tracking
•  Room scale
https://immersivelifeblog.files.wordpress.com/2015/04/vr_history.jpg
Market Size
Computer Based vs. Mobile VR
Mobile VR
CPU: 300 Mhz
HDD; 9GB
RAM: 512 mb
Camera: VGA 30fps
Graphics: 500K poly/sec
1998: SGI O2 2008: Nokia N95
CPU: 332 Mhz
HDD; 8GB
RAM: 128 mb
Camera: VGA 30 fps
Graphics: 2m poly/sec
Mobile Phone AR & VR
• Mobile Phone AR
• Mobile phone
• Live camera view
• Senor input (GPS, compass)
• Mobile Phone VR
• Mobile phone
• Senor input (compass)
• Additional VR viewer
VR2GO (2013)
•  MxR Lab
•  3D print VR viewer for mobiles
•  Open source hardware + software
•  http://projects.ict.usc.edu/mxr/diy/vr2go/
Multiple Mobile VR Viewers Available
•  zxcvz
CARDBOARD VR
•  dsfsaf
Google Cardboard
• Released 2014 (Google 20% project)
• >5 million shipped/given away
• Easy to use developer tools
+ =
Cardboard
($2)
Lenses
($10)
Magnets
($6)
Velcro
($3)
Rubber
Band
(1¢)
Software
Components
Assembling the Cardboard Viewer
Version 1.0 vs Version 2.0
•  Version 1.0 – Android focused, magnetic switch, small phone
•  Version 2.0 – Touch input, iOS/Android, fits many phones
Many Different Cardboard Viewers
SAMPLE CARDBOARD
APPLICATIONS
Cardboard App
• 7 default experiences
•  Earth: Fly on Google Earth
•  Tour Guide: Visit sites with guides
•  YouTube: Watch popular videos
•  Exhibit: Examine cultural artifacts
•  Photo Sphere: Immersive photos
•  Street View: Drive along a street
•  Windy Day: Interactive short story
100’s of Google Play Cardboard apps
Sample Applications
Cardboard Camera
• Capture 360 panoramas
• Stitch together images on phone
• View in VR on Cardboard
Google Expeditions
• Teacher led VR experiences
• https://www.google.com/edu/expeditions/
Building Your Own Application
• Cardboard Viewer
•  https://www.google.com/get/cardboard/
• Smart phone
•  Android/iOS
• Cardboard SDK
•  iOS, Android, Unity
•  https://developers.google.com/cardboard/
• Unity game engine (optional)
•  https://unity3d.com
• Content
Cardboard SDK
	
Features:	
1.  Lens	distor-on	correc-on.	
2.  Head	tracking.	
3.  3D	calibra-on.	
4.  Side-by-side	rendering.	
5.  Stereo	geometry	configura-on.	
6.  User	input	event	handling.	
Unity Cardboard SDK
INTRODUCTION TO UNITY
Cardboard VR: Building Low Cost VR Experiences
Unity 3D Game Editor
SETUP
Download and Install
•  Go to unity3d.com/download
•  Use Download Assistant – pick components you want
Getting Started
•  First time running Unity you’ll be asked to create a project
•  Specify project name and location
•  Can pick asset packages (pre-made content)
Unity Interface
•  Toolbar, Scene, Hierarchy, Project, Inspector
Customizable Interface
Building Scenes
• Use GameObjects:
•  Containers that hold different components
•  Eg 3D model, texture, animation
• Use Inspector
•  View and edit object properties and other settings
• Use Scene View
•  Position objects, camera, lights, other GameObjects etc
• Scripting
•  Adding interaction, user input, events, etc
GameObjects
•  Every object in Scene is a GameObject
•  GameObjects contain Components
•  Eg Transform Component, Camera Component
Adding 3D Content
•  Create 3D asset using modeling package, or download
•  Fbx, Obj file format for 3D models
•  Add file to Assets folder in Project
•  When project opened 3D model added to Project View
•  Drag mesh from Project View into Hierarchy or Scene View
•  Creates a game object
Positioning/Scaling Objects
•  Click on object and choose transform
Unity Asset Store
•  Download thousands models, scripts, animations, etc
•  https://www.assetstore.unity3d.com/
UNITY BASICS
Making a Simple Scene
1.  Create New Project
2.  Create Game Object
3.  Moving main camera position
4.  Adding lights
5.  Adding more objects
6.  Adding physics
7.  Changing object materials
8.  Adding script behaviour
CreateProject
•  Create new folder and project
New Empty Project
Create GameObject
•  Load a Sphere into the scene
•  GameObject -> 3D Object -> Sphere
Moving main camera
•  Select Main Camera
•  Select translate icon
•  Move camera
Add Light
•  GameObject -> Light -> Directional Light
•  Use inspector to modify light properties (colour, intensity)
Add Physics
•  Select Sphere
•  Add Rigidbody component
•  Add Component -> Physics -> RigidBody
•  or Component -> Physics -> RigidBody
•  Modify inspector properties (mass, drag, etc)
Add More Objects
•  Add several cubes
•  GameObject -> 3D Object – Cube
•  Move cube
•  Add Rigid Body component (uncheck gravity)
Add Material
•  Assets -> Create -> Material
•  Click Albedo colour box in inspector
•  Select colour
•  Drag asset onto object to apply
Add Script
•  Assets -> Create -> C# script
•  Edit script using Mono
•  Drag script onto Game Object
Example C# Script
GameObject Rotation
using UnityEngine;

using System.Collections;



public class spin : MonoBehaviour {



    // Use this for initialization

    void Start () {

    

    }

    

    // Update is called once per frame

    void Update () {

        this.gameObject.transform.Rotate(Vector3.up*10);

    }

}

#
Scripting C# Unity 3D
•  void Awake():
•  Is called when the first scene is loaded and the game object is active
•  void Start():
•  Called on first frame update
•  void FixedUpdate():
•  Called before physics calculations are made
•  void Update():
•  Called every frame before rendering
•  void LateUpdate():
•  Once per frame after update finished
Final Spinning Cube Scene
Resources
• Unity Main site
• http://www.unity3d.com/
• Holistic Development with Unity
• http://holistic3d.com
• Official Unity Tutorials
• http://unity3d.com/learn/tutorials
• Unity Coder Blog
• http://unitycoder.com
IMMERSIVE PANORAMAS
Steps
1.  Create a new project
2.  Load the Cardboard SDK
3.  Load a panorama image asset
4.  Create a Skymap
5.  Add to VR scene
6.  Deploy to mobile phone
New Project
Load Cardboard SDK
•  Assets -> Import Package -> Custom Package
•  Navigate to CardboardSDKForUnity.unitypackage
•  Uncheck iOS (for Android build)
Load Cardboard Main Camera
•  Drag CardboardMain prefab into Hierarchy
•  Assets -> Cardboard -> Prefab
•  Delete CameraMain
Panorama Image Asset
•  Find/create suitable panorama image
•  Ideally 2K or higher resolution image
•  Google “Panorama Image Cubemap”
Add Image Asset to Project
•  Assets -> Import Asset
•  Select desired image
•  Set Texture Type to
Cubemap
•  Set mapping to Latitude-
Longitude (Cylindrical)
Create Skybox Material
•  Assets -> Create -> Material
•  Name material
•  Set Shader to Skybox -> Cubemap
•  Drag texture to cubemap
Create Skybox
•  Window -> Lighting
•  Drag Skybox material into
Skypebox form
Panorama Image in Unity
One Last Thing..
•  CardboardMain -> Head -> Main Camera
•  Set Clear Flags to Skybox
Test It Out
•  Hit play, use alt/option key + mouse to look around
Deploy to Mobile (Android)
1.  Plug phone into USB
• make sure device in debug mode
2.  Set correct build settings
3.  Player settings
• Other settings
•  Set Bundle Idenitfier -> com.Company.ProductName
• Resolution and Presentation
•  Default Orientation -> Landscape Left
4.  Build and run
Deploying to Phone
1.  Plug phone into USB
2.  Open Build Settings
3.  Change Target platform to Android
4.  Resolution and Presentation
•  Default Orientation -> Landscape Left
5.  Under Player Settings
•  Edit Bundle Identifier – eg com.UniSA.cubeTest
•  Minimum API level
6.  Build and Run
•  Select .apk file name
Running on Phone
•  Droid@Screen View on Desktop
CREATING 3D
ENVIRONMENTS
Key Steps
1.  Creating a new project
2.  Load Cardboard SDK
3.  Replace camera with CardboardMain
4.  Loading in 3D asset packages
5.  Loading a SkyDome
6.  Adding a plane floor
New Project
•  Camera replaced with CameraMain
Download Model Package
•  Magic Lamp from 3dFoin
•  Search on Asset store
Load Asset + Add to Scene
•  Assets -> Import Package -> Custom Package
•  Look for MagicLamp.unitypackage (If not installed already)
•  Drag MagicLamp_LOD0 to Hierarchy
•  Position and rotate
Import SkySphere package
•  SkySphere Volume1 on Asset store
Add SkySphere to Scene
•  Drag Skyball_WithoutCap into Hierarchy
•  SkySphere_V1 -> Meshes
•  Rotate and Scale as needed
Add Ground Plane
•  GameObject -> 3D Object -> Plane
•  Set Scale X to 2.0, Z to 2.0
Testing View
•  Use alt/option key plus mouse to rotate view
Adding More Assets
•  Load from Asset store – look for free assets
ADDING INTERACTIVITY
Adding Movement
Goal: Move in direction user looking when
Cardboard Button pressed.
• Key Steps
1.  Start with static screen
2.  Create movement script
3.  Add movement script to Camera head
4.  Deploy to mobile
Static Scene
Create Movement Script
•  Add new script object
•  Assets -> Create -> C# Script
•  Edit script in Mono
Add Script to Scene
•  Drag Script onto Head object
•  CameraboardMain -> Head
•  Uncheck Track Position Box
•  Adjust movement speed
Adding More Interactivity
•  Load Cardboard Demo application
•  Assets -> Import Package -> Custom Package
•  Load CardboardDemoForUnity.unitypackage
•  Launch Demo Scene
•  Assets -> Cardboard -> DemoScene
Features Shown
•  Gaze reticle + selection
•  Viewpoint teleportation
•  Menu panel overlay
•  Audio feedback
•  Event system
DESIGN GUIDELINES
Google Design Guidelines
• Google’s Guidelines for good VR experiences:
•  Physiological Considerations
•  Interactive Patterns
•  Setup
•  Controls
•  Feedback
•  Display Reticle
•  From http://www.google.com/design/spec-vr/designing-
for-google-cardboard/a-new-dimension.html
Physiological Considerations
• Factors to Consider
•  Head tracking
•  User control of movement
•  Use constant velocity
•  Grounding with fixed objects
•  Brightness changes
Interactive Patterns - Setup
• Setup factors to consider:
• Entering and exiting
• Headset adaptation
• Full Screen mode
• API calls
• Indicating VR apps
Interactive Patterns - Controls
• Use fuze buttons for selection in VR
Interactive Patterns - Feedback
• Use audio and haptic feedback
•  Reduce visual overload
•  Audio alerts
•  3D spatial sound
•  Phone vibrations
Interactive Patterns - Display Reticle
•  Easier for users to target objects with a display reticle
•  Can display reticle only when near target object
•  Highlight objects (e.g. with light source) that user can target
Cardboard Design Lab Application
•  Use Cardboard Design Lab app to explore design ideas
CONCLUSION
Cardboard VR: Building Low Cost VR Experiences
Conclusion
• Virtual Reality industry starting to boom again
• Google Cardboard provides a great entry for VR
•  Consumer hardware
•  Cheap/free viewer
•  Industry standard game engine
•  High quality content
•  Many tutorials/learning resources
• The time to get started is now!
RESOURCES
Useful Resources
•  Google Cardboard main page
•  https://www.google.com/get/cardboard/
•  Developer Website
•  https://www.google.com/get/cardboard/developers/
•  Building a VR app for Cardboard
•  http://www.sitepoint.com/building-a-google-cardboard-vr-app-in-unity/
•  Creating VR game for Cardboard
•  http://danielborowski.com/posts/create-a-virtual-reality-game-for-
google-cardboard/
•  Moving in VR space
•  http://www.instructables.com/id/Prototyping-Interactive-Environments-
in-Virtual-Re/
www.empathiccomputing.org
@marknb00
mark.billinghurst@unisa.edu.au
1 von 112

Recomendados

Gaze detection with Virtual Reality and Unity 3d von
Gaze detection with Virtual Reality and Unity 3dGaze detection with Virtual Reality and Unity 3d
Gaze detection with Virtual Reality and Unity 3dBond University
2.3K views13 Folien
Building VR Applications For Google Cardboard von
Building VR Applications For Google CardboardBuilding VR Applications For Google Cardboard
Building VR Applications For Google CardboardMark Billinghurst
12.2K views179 Folien
Building AR and VR Experiences von
Building AR and VR ExperiencesBuilding AR and VR Experiences
Building AR and VR ExperiencesMark Billinghurst
5.8K views226 Folien
Virtual reality von
Virtual realityVirtual reality
Virtual realitymajid asgharizadeh
1.1K views25 Folien
Mobile AR Lecture 7 - Introduction to Vuforia von
Mobile AR Lecture 7 - Introduction to VuforiaMobile AR Lecture 7 - Introduction to Vuforia
Mobile AR Lecture 7 - Introduction to VuforiaMark Billinghurst
4.8K views45 Folien
Comp4010 2021 Lecture2-Perception von
Comp4010 2021 Lecture2-PerceptionComp4010 2021 Lecture2-Perception
Comp4010 2021 Lecture2-PerceptionMark Billinghurst
1.6K views105 Folien

Más contenido relacionado

Was ist angesagt?

Comp 4010 2021 - Snap Tutorial-1 von
Comp 4010 2021 - Snap Tutorial-1Comp 4010 2021 - Snap Tutorial-1
Comp 4010 2021 - Snap Tutorial-1Mark Billinghurst
791 views52 Folien
History of Virtual Reality von
History of Virtual RealityHistory of Virtual Reality
History of Virtual RealityMatthew Doyle
748 views15 Folien
COMP 4010 - Lecture 3 VR Systems von
COMP 4010 - Lecture 3 VR SystemsCOMP 4010 - Lecture 3 VR Systems
COMP 4010 - Lecture 3 VR SystemsMark Billinghurst
1.2K views98 Folien
Lecture 8 Introduction to Augmented Reality von
Lecture 8 Introduction to Augmented RealityLecture 8 Introduction to Augmented Reality
Lecture 8 Introduction to Augmented RealityMark Billinghurst
4.4K views97 Folien
Introduction to Extended Reality - XR von
Introduction to Extended Reality - XRIntroduction to Extended Reality - XR
Introduction to Extended Reality - XRKumar Ahir
987 views88 Folien
Comp4010 Lecture8 Introduction to VR von
Comp4010 Lecture8 Introduction to VRComp4010 Lecture8 Introduction to VR
Comp4010 Lecture8 Introduction to VRMark Billinghurst
1.2K views174 Folien

Was ist angesagt?(20)

History of Virtual Reality von Matthew Doyle
History of Virtual RealityHistory of Virtual Reality
History of Virtual Reality
Matthew Doyle748 views
Lecture 8 Introduction to Augmented Reality von Mark Billinghurst
Lecture 8 Introduction to Augmented RealityLecture 8 Introduction to Augmented Reality
Lecture 8 Introduction to Augmented Reality
Mark Billinghurst4.4K views
Introduction to Extended Reality - XR von Kumar Ahir
Introduction to Extended Reality - XRIntroduction to Extended Reality - XR
Introduction to Extended Reality - XR
Kumar Ahir987 views
Mobile AR Lecture6 - Introduction to Unity 3D von Mark Billinghurst
Mobile AR Lecture6 - Introduction to Unity 3DMobile AR Lecture6 - Introduction to Unity 3D
Mobile AR Lecture6 - Introduction to Unity 3D
Mark Billinghurst2.2K views
Comp4010 Lecture13 More Research Directions von Mark Billinghurst
Comp4010 Lecture13 More Research DirectionsComp4010 Lecture13 More Research Directions
Comp4010 Lecture13 More Research Directions
Mark Billinghurst1.2K views
Virtual reality von yp95
Virtual realityVirtual reality
Virtual reality
yp952.1K views
Virtual Reality von Sagar Reddy
Virtual RealityVirtual Reality
Virtual Reality
Sagar Reddy100.8K views
virtual reality von STUDENT
virtual realityvirtual reality
virtual reality
STUDENT323 views
COMP 4010 - Lecture4 VR Technology - Visual and Haptic Displays von Mark Billinghurst
COMP 4010 - Lecture4 VR Technology - Visual and Haptic DisplaysCOMP 4010 - Lecture4 VR Technology - Visual and Haptic Displays
COMP 4010 - Lecture4 VR Technology - Visual and Haptic Displays
Mark Billinghurst3.9K views
Virtual Reality von Dom Cushnan
Virtual RealityVirtual Reality
Virtual Reality
Dom Cushnan3.5K views

Destacado

Virtual Reality: A Renaissance von
Virtual Reality: A RenaissanceVirtual Reality: A Renaissance
Virtual Reality: A RenaissanceSt. Petersburg College
10.7K views45 Folien
VR and google Cardboard von
VR and google CardboardVR and google Cardboard
VR and google CardboardHoussem Eddine LASSOUED
2.5K views75 Folien
Museums as a Framework for Educational VR Design von
Museums as a Framework for Educational VR DesignMuseums as a Framework for Educational VR Design
Museums as a Framework for Educational VR DesignChris Modzelewski
1K views65 Folien
Moca virtual tour ppt von
Moca virtual tour pptMoca virtual tour ppt
Moca virtual tour pptLeah Master
1.3K views54 Folien
Introduction to Virtual Tour von
Introduction to Virtual TourIntroduction to Virtual Tour
Introduction to Virtual TourRachabodin Suwannakanthi
2K views21 Folien
Virtual Reality met HTC Vive von
Virtual Reality met HTC ViveVirtual Reality met HTC Vive
Virtual Reality met HTC ViveAvanade Nederland
695 views67 Folien

Destacado(20)

Museums as a Framework for Educational VR Design von Chris Modzelewski
Museums as a Framework for Educational VR DesignMuseums as a Framework for Educational VR Design
Museums as a Framework for Educational VR Design
Moca virtual tour ppt von Leah Master
Moca virtual tour pptMoca virtual tour ppt
Moca virtual tour ppt
Leah Master1.3K views
Home plus virtual store von willdope
Home plus virtual storeHome plus virtual store
Home plus virtual store
willdope6.6K views
VR and Google Cardboard von Aung Win Htut
VR and Google CardboardVR and Google Cardboard
VR and Google Cardboard
Aung Win Htut7.9K views
Bucaramanga en los últimos 25 años von josenino2002
Bucaramanga en los últimos 25 añosBucaramanga en los últimos 25 años
Bucaramanga en los últimos 25 años
josenino2002330 views
AR & VR at the Science Museum - REMIX 2017 von Dave Patten
AR & VR at the Science Museum - REMIX 2017AR & VR at the Science Museum - REMIX 2017
AR & VR at the Science Museum - REMIX 2017
Dave Patten565 views
HTC Vive, FOVE, Playstation VR and more - Presentation Meetup 20 Feb 2016 von Richard Hoffmann
HTC Vive, FOVE, Playstation VR and more - Presentation Meetup 20 Feb 2016HTC Vive, FOVE, Playstation VR and more - Presentation Meetup 20 Feb 2016
HTC Vive, FOVE, Playstation VR and more - Presentation Meetup 20 Feb 2016
Richard Hoffmann989 views
Hybrid-Realities: Merging real and virtual worlds to create unique experiences von Nils Pokel
Hybrid-Realities: Merging real and virtual worlds to create unique experiencesHybrid-Realities: Merging real and virtual worlds to create unique experiences
Hybrid-Realities: Merging real and virtual worlds to create unique experiences
Nils Pokel1.3K views
Extending the Virtual World Framework for Mobile Training von Ronald Punako, Jr.
Extending the Virtual World Framework for Mobile TrainingExtending the Virtual World Framework for Mobile Training
Extending the Virtual World Framework for Mobile Training
Ronald Punako, Jr.1.4K views
Virtual stores the future of retail von Bharat Bharadwaj
Virtual stores the future of retailVirtual stores the future of retail
Virtual stores the future of retail
Bharat Bharadwaj15.9K views
Virtual Shopping von Dinesh Mv
Virtual ShoppingVirtual Shopping
Virtual Shopping
Dinesh Mv1.4K views

Similar a Cardboard VR: Building Low Cost VR Experiences

Mobile AR Tutorial von
Mobile AR TutorialMobile AR Tutorial
Mobile AR TutorialMark Billinghurst
4.8K views103 Folien
Developing VR Experiences with Unity von
Developing VR Experiences with UnityDeveloping VR Experiences with Unity
Developing VR Experiences with UnityMark Billinghurst
2.7K views64 Folien
Create Your Own VR Experience von
Create Your Own VR ExperienceCreate Your Own VR Experience
Create Your Own VR ExperienceMark Billinghurst
3.9K views87 Folien
STEM Camp Virtual Reality von
STEM Camp Virtual RealitySTEM Camp Virtual Reality
STEM Camp Virtual RealityTomasz Bednarz
1.4K views42 Folien
Introduction to Unity von
Introduction to UnityIntroduction to Unity
Introduction to UnityUniversity of Auckland
254 views46 Folien
Cross platform game development von
Cross platform game developmentCross platform game development
Cross platform game developmentJerel Hass
507 views34 Folien

Similar a Cardboard VR: Building Low Cost VR Experiences(20)

Cross platform game development von Jerel Hass
Cross platform game developmentCross platform game development
Cross platform game development
Jerel Hass507 views
【Unite 2017 Tokyo】インスタンシングを用いた美麗なグラフィックの実現方法 von Unite2017Tokyo
【Unite 2017 Tokyo】インスタンシングを用いた美麗なグラフィックの実現方法【Unite 2017 Tokyo】インスタンシングを用いた美麗なグラフィックの実現方法
【Unite 2017 Tokyo】インスタンシングを用いた美麗なグラフィックの実現方法
Unite2017Tokyo32.2K views
【Unite 2017 Tokyo】インスタンシングを用いた美麗なグラフィックの実現方法 von Unity Technologies Japan K.K.
【Unite 2017 Tokyo】インスタンシングを用いた美麗なグラフィックの実現方法【Unite 2017 Tokyo】インスタンシングを用いた美麗なグラフィックの実現方法
【Unite 2017 Tokyo】インスタンシングを用いた美麗なグラフィックの実現方法
Developing applications and games in Unity engine - Matej Jariabka, Rudolf Ka... von gamifi.cc
Developing applications and games in Unity engine - Matej Jariabka, Rudolf Ka...Developing applications and games in Unity engine - Matej Jariabka, Rudolf Ka...
Developing applications and games in Unity engine - Matej Jariabka, Rudolf Ka...
gamifi.cc1.1K views
Augmented Reality Application - Final Year Project von Yash Kaushik
Augmented Reality Application - Final Year ProjectAugmented Reality Application - Final Year Project
Augmented Reality Application - Final Year Project
Yash Kaushik15.2K views
Android Wear from zero to hero von Roberto Orgiu
Android Wear from zero to heroAndroid Wear from zero to hero
Android Wear from zero to hero
Roberto Orgiu518 views
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture von Sebastien Kuntz
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architectureIEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture
Sebastien Kuntz2.1K views
Augmented World Expo 2013 Mobile AR SDK Comparison and Tutorial von Patrick O'Shaughnessey
Augmented World Expo 2013 Mobile AR SDK Comparison and TutorialAugmented World Expo 2013 Mobile AR SDK Comparison and Tutorial
Augmented World Expo 2013 Mobile AR SDK Comparison and Tutorial
Getting started with Verold and Three.js von Verold
Getting started with Verold and Three.jsGetting started with Verold and Three.js
Getting started with Verold and Three.js
Verold2.4K views
Introduction to daydream for AnDevCon DC - 2017 von Jared Sheehan
Introduction to daydream for AnDevCon DC - 2017Introduction to daydream for AnDevCon DC - 2017
Introduction to daydream for AnDevCon DC - 2017
Jared Sheehan435 views
Cross Game Dev with Corona von Shawn Grimes
Cross Game Dev with CoronaCross Game Dev with Corona
Cross Game Dev with Corona
Shawn Grimes833 views

Más de Mark Billinghurst

Empathic Computing: Delivering the Potential of the Metaverse von
Empathic Computing: Delivering  the Potential of the MetaverseEmpathic Computing: Delivering  the Potential of the Metaverse
Empathic Computing: Delivering the Potential of the MetaverseMark Billinghurst
496 views80 Folien
Empathic Computing: Capturing the Potential of the Metaverse von
Empathic Computing: Capturing the Potential of the MetaverseEmpathic Computing: Capturing the Potential of the Metaverse
Empathic Computing: Capturing the Potential of the MetaverseMark Billinghurst
452 views46 Folien
Talk to Me: Using Virtual Avatars to Improve Remote Collaboration von
Talk to Me: Using Virtual Avatars to Improve Remote CollaborationTalk to Me: Using Virtual Avatars to Improve Remote Collaboration
Talk to Me: Using Virtual Avatars to Improve Remote CollaborationMark Billinghurst
550 views107 Folien
Empathic Computing: Designing for the Broader Metaverse von
Empathic Computing: Designing for the Broader MetaverseEmpathic Computing: Designing for the Broader Metaverse
Empathic Computing: Designing for the Broader MetaverseMark Billinghurst
231 views50 Folien
2022 COMP 4010 Lecture 7: Introduction to VR von
2022 COMP 4010 Lecture 7: Introduction to VR2022 COMP 4010 Lecture 7: Introduction to VR
2022 COMP 4010 Lecture 7: Introduction to VRMark Billinghurst
325 views236 Folien
2022 COMP4010 Lecture 6: Designing AR Systems von
2022 COMP4010 Lecture 6: Designing AR Systems2022 COMP4010 Lecture 6: Designing AR Systems
2022 COMP4010 Lecture 6: Designing AR SystemsMark Billinghurst
156 views176 Folien

Más de Mark Billinghurst(20)

Empathic Computing: Delivering the Potential of the Metaverse von Mark Billinghurst
Empathic Computing: Delivering  the Potential of the MetaverseEmpathic Computing: Delivering  the Potential of the Metaverse
Empathic Computing: Delivering the Potential of the Metaverse
Mark Billinghurst496 views
Empathic Computing: Capturing the Potential of the Metaverse von Mark Billinghurst
Empathic Computing: Capturing the Potential of the MetaverseEmpathic Computing: Capturing the Potential of the Metaverse
Empathic Computing: Capturing the Potential of the Metaverse
Mark Billinghurst452 views
Talk to Me: Using Virtual Avatars to Improve Remote Collaboration von Mark Billinghurst
Talk to Me: Using Virtual Avatars to Improve Remote CollaborationTalk to Me: Using Virtual Avatars to Improve Remote Collaboration
Talk to Me: Using Virtual Avatars to Improve Remote Collaboration
Mark Billinghurst550 views
Empathic Computing: Designing for the Broader Metaverse von Mark Billinghurst
Empathic Computing: Designing for the Broader MetaverseEmpathic Computing: Designing for the Broader Metaverse
Empathic Computing: Designing for the Broader Metaverse
Mark Billinghurst231 views
2022 COMP 4010 Lecture 7: Introduction to VR von Mark Billinghurst
2022 COMP 4010 Lecture 7: Introduction to VR2022 COMP 4010 Lecture 7: Introduction to VR
2022 COMP 4010 Lecture 7: Introduction to VR
Mark Billinghurst325 views
2022 COMP4010 Lecture 6: Designing AR Systems von Mark Billinghurst
2022 COMP4010 Lecture 6: Designing AR Systems2022 COMP4010 Lecture 6: Designing AR Systems
2022 COMP4010 Lecture 6: Designing AR Systems
Mark Billinghurst156 views
2022 COMP4010 Lecture1: Introduction to XR von Mark Billinghurst
2022 COMP4010 Lecture1: Introduction to XR2022 COMP4010 Lecture1: Introduction to XR
2022 COMP4010 Lecture1: Introduction to XR
Mark Billinghurst389 views
Empathic Computing and Collaborative Immersive Analytics von Mark Billinghurst
Empathic Computing and Collaborative Immersive AnalyticsEmpathic Computing and Collaborative Immersive Analytics
Empathic Computing and Collaborative Immersive Analytics
Mark Billinghurst406 views
Empathic Computing: Developing for the Whole Metaverse von Mark Billinghurst
Empathic Computing: Developing for the Whole MetaverseEmpathic Computing: Developing for the Whole Metaverse
Empathic Computing: Developing for the Whole Metaverse
Mark Billinghurst549 views
Advanced Methods for User Evaluation in Enterprise AR von Mark Billinghurst
Advanced Methods for User Evaluation in Enterprise ARAdvanced Methods for User Evaluation in Enterprise AR
Advanced Methods for User Evaluation in Enterprise AR
Mark Billinghurst1.2K views

Último

"Surviving highload with Node.js", Andrii Shumada von
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada Fwdays
33 views29 Folien
Unit 1_Lecture 2_Physical Design of IoT.pdf von
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdfStephenTec
15 views36 Folien
Special_edition_innovator_2023.pdf von
Special_edition_innovator_2023.pdfSpecial_edition_innovator_2023.pdf
Special_edition_innovator_2023.pdfWillDavies22
18 views6 Folien
Info Session November 2023.pdf von
Info Session November 2023.pdfInfo Session November 2023.pdf
Info Session November 2023.pdfAleksandraKoprivica4
15 views15 Folien
Network Source of Truth and Infrastructure as Code revisited von
Network Source of Truth and Infrastructure as Code revisitedNetwork Source of Truth and Infrastructure as Code revisited
Network Source of Truth and Infrastructure as Code revisitedNetwork Automation Forum
32 views45 Folien
Scaling Knowledge Graph Architectures with AI von
Scaling Knowledge Graph Architectures with AIScaling Knowledge Graph Architectures with AI
Scaling Knowledge Graph Architectures with AIEnterprise Knowledge
50 views15 Folien

Último(20)

"Surviving highload with Node.js", Andrii Shumada von Fwdays
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada
Fwdays33 views
Unit 1_Lecture 2_Physical Design of IoT.pdf von StephenTec
Unit 1_Lecture 2_Physical Design of IoT.pdfUnit 1_Lecture 2_Physical Design of IoT.pdf
Unit 1_Lecture 2_Physical Design of IoT.pdf
StephenTec15 views
Special_edition_innovator_2023.pdf von WillDavies22
Special_edition_innovator_2023.pdfSpecial_edition_innovator_2023.pdf
Special_edition_innovator_2023.pdf
WillDavies2218 views
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... von TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc72 views
HTTP headers that make your website go faster - devs.gent November 2023 von Thijs Feryn
HTTP headers that make your website go faster - devs.gent November 2023HTTP headers that make your website go faster - devs.gent November 2023
HTTP headers that make your website go faster - devs.gent November 2023
Thijs Feryn26 views
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf von Dr. Jimmy Schwarzkopf
STKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdfSTKI Israeli Market Study 2023   corrected forecast 2023_24 v3.pdf
STKI Israeli Market Study 2023 corrected forecast 2023_24 v3.pdf
"Running students' code in isolation. The hard way", Yurii Holiuk von Fwdays
"Running students' code in isolation. The hard way", Yurii Holiuk "Running students' code in isolation. The hard way", Yurii Holiuk
"Running students' code in isolation. The hard way", Yurii Holiuk
Fwdays24 views
Data Integrity for Banking and Financial Services von Precisely
Data Integrity for Banking and Financial ServicesData Integrity for Banking and Financial Services
Data Integrity for Banking and Financial Services
Precisely29 views
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe von Simone Puorto
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
2024: A Travel Odyssey The Role of Generative AI in the Tourism Universe
Simone Puorto13 views
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive von Network Automation Forum
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLiveAutomating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Automating a World-Class Technology Conference; Behind the Scenes of CiscoLive
Igniting Next Level Productivity with AI-Infused Data Integration Workflows von Safe Software
Igniting Next Level Productivity with AI-Infused Data Integration Workflows Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Safe Software317 views
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas... von Bernd Ruecker
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
iSAQB Software Architecture Gathering 2023: How Process Orchestration Increas...
Bernd Ruecker48 views

Cardboard VR: Building Low Cost VR Experiences

  • 1. CARDBOARD VR: BUILDING LOW COST VR EXPERIENCES Mark Billinghurst mark.billinghurst@unisa.edu.au April 14th 2016 CHIuXiD
  • 2. What You Will Learn • Virtual Reality Fundamentals + History • How to Build Cardboard VR Viewer • Example Cardboard VR Applications • Basics of Unity Programming • How to Make Panorama VR Applications • How to Create VR Scenes • How to Add Interactivity to VR Applications • Cardboard Design guidelines
  • 4. Virtual Reality Computer generated multi-sensory simulation of an artificial environment that is interactive and immersive.
  • 6. David Zeltzer’s AIP Cube ! Autonomy – User can to react to events and stimuli. ! Interaction – User can interact with objects and environment. ! Presence – User feels immersed through sensory input and output channels Interaction Autonomy Presence VR Zeltzer, D. (1992). Autonomy, interaction, and presence. Presence: Teleoperators & Virtual Environments, 1(1), 127-132.
  • 7. Key Technologies • Autonomy •  Head tracking, body input •  Intelligent systems • Interaction •  User input devices, HCI • Presence •  Graphics/audio/multisensory output •  Multisensory displays •  Visual, audio, haptic, olfactory, etc
  • 8. Early Experimenters (1950’s – 80’s) Helig 1956 Sutherland 1965 Furness 1970’s
  • 9. The First Wave (1980’s – 90’s) NASA 1989 VPL 1990’s Virtuality 1990’s
  • 10. Jaron Lanier •  Founded VPL, coined term “Virtual Reality”
  • 11. Desktop VR - 1995 •  Expensive - $150,000+ •  2 million polys/sec •  VGA HMD – 30 Hz •  Magnetic tracking
  • 12. Second Wave (2010 - ) • Palmer Luckey •  HMD hacker •  Mixed Reality Lab (MxR) • Oculus Rift (2011 - ) •  2012 - $2.4 million kickstarter •  2014 - $2B acquisition FaceBook •  $350 USD, 110o FOV
  • 14. Oculus Rift Sony Morpheus HTC/Valve Vive 2016 - Rise of Consumer HMDs
  • 15. Desktop VR 2016 • Graphics Desktop •  $1,500 USD •  >4 Billion poly/sec • $600 HMD •  1080x1200, 90Hz • Optical tracking •  Room scale
  • 18. Computer Based vs. Mobile VR
  • 19. Mobile VR CPU: 300 Mhz HDD; 9GB RAM: 512 mb Camera: VGA 30fps Graphics: 500K poly/sec 1998: SGI O2 2008: Nokia N95 CPU: 332 Mhz HDD; 8GB RAM: 128 mb Camera: VGA 30 fps Graphics: 2m poly/sec
  • 20. Mobile Phone AR & VR • Mobile Phone AR • Mobile phone • Live camera view • Senor input (GPS, compass) • Mobile Phone VR • Mobile phone • Senor input (compass) • Additional VR viewer
  • 21. VR2GO (2013) •  MxR Lab •  3D print VR viewer for mobiles •  Open source hardware + software •  http://projects.ict.usc.edu/mxr/diy/vr2go/
  • 22. Multiple Mobile VR Viewers Available
  • 26. Google Cardboard • Released 2014 (Google 20% project) • >5 million shipped/given away • Easy to use developer tools + =
  • 29. Version 1.0 vs Version 2.0 •  Version 1.0 – Android focused, magnetic switch, small phone •  Version 2.0 – Touch input, iOS/Android, fits many phones
  • 32. Cardboard App • 7 default experiences •  Earth: Fly on Google Earth •  Tour Guide: Visit sites with guides •  YouTube: Watch popular videos •  Exhibit: Examine cultural artifacts •  Photo Sphere: Immersive photos •  Street View: Drive along a street •  Windy Day: Interactive short story
  • 33. 100’s of Google Play Cardboard apps
  • 35. Cardboard Camera • Capture 360 panoramas • Stitch together images on phone • View in VR on Cardboard
  • 36. Google Expeditions • Teacher led VR experiences • https://www.google.com/edu/expeditions/
  • 37. Building Your Own Application • Cardboard Viewer •  https://www.google.com/get/cardboard/ • Smart phone •  Android/iOS • Cardboard SDK •  iOS, Android, Unity •  https://developers.google.com/cardboard/ • Unity game engine (optional) •  https://unity3d.com • Content
  • 38. Cardboard SDK Features: 1.  Lens distor-on correc-on. 2.  Head tracking. 3.  3D calibra-on. 4.  Side-by-side rendering. 5.  Stereo geometry configura-on. 6.  User input event handling. Unity Cardboard SDK
  • 41. Unity 3D Game Editor
  • 42. SETUP
  • 43. Download and Install •  Go to unity3d.com/download •  Use Download Assistant – pick components you want
  • 44. Getting Started •  First time running Unity you’ll be asked to create a project •  Specify project name and location •  Can pick asset packages (pre-made content)
  • 45. Unity Interface •  Toolbar, Scene, Hierarchy, Project, Inspector
  • 47. Building Scenes • Use GameObjects: •  Containers that hold different components •  Eg 3D model, texture, animation • Use Inspector •  View and edit object properties and other settings • Use Scene View •  Position objects, camera, lights, other GameObjects etc • Scripting •  Adding interaction, user input, events, etc
  • 48. GameObjects •  Every object in Scene is a GameObject •  GameObjects contain Components •  Eg Transform Component, Camera Component
  • 49. Adding 3D Content •  Create 3D asset using modeling package, or download •  Fbx, Obj file format for 3D models •  Add file to Assets folder in Project •  When project opened 3D model added to Project View •  Drag mesh from Project View into Hierarchy or Scene View •  Creates a game object
  • 50. Positioning/Scaling Objects •  Click on object and choose transform
  • 51. Unity Asset Store •  Download thousands models, scripts, animations, etc •  https://www.assetstore.unity3d.com/
  • 53. Making a Simple Scene 1.  Create New Project 2.  Create Game Object 3.  Moving main camera position 4.  Adding lights 5.  Adding more objects 6.  Adding physics 7.  Changing object materials 8.  Adding script behaviour
  • 54. CreateProject •  Create new folder and project
  • 56. Create GameObject •  Load a Sphere into the scene •  GameObject -> 3D Object -> Sphere
  • 57. Moving main camera •  Select Main Camera •  Select translate icon •  Move camera
  • 58. Add Light •  GameObject -> Light -> Directional Light •  Use inspector to modify light properties (colour, intensity)
  • 59. Add Physics •  Select Sphere •  Add Rigidbody component •  Add Component -> Physics -> RigidBody •  or Component -> Physics -> RigidBody •  Modify inspector properties (mass, drag, etc)
  • 60. Add More Objects •  Add several cubes •  GameObject -> 3D Object – Cube •  Move cube •  Add Rigid Body component (uncheck gravity)
  • 61. Add Material •  Assets -> Create -> Material •  Click Albedo colour box in inspector •  Select colour •  Drag asset onto object to apply
  • 62. Add Script •  Assets -> Create -> C# script •  Edit script using Mono •  Drag script onto Game Object
  • 63. Example C# Script GameObject Rotation using UnityEngine;
 using System.Collections;
 
 public class spin : MonoBehaviour {
 
     // Use this for initialization
     void Start () {
     
     }
     
     // Update is called once per frame
     void Update () {
         this.gameObject.transform.Rotate(Vector3.up*10);
     }
 }
 #
  • 64. Scripting C# Unity 3D •  void Awake(): •  Is called when the first scene is loaded and the game object is active •  void Start(): •  Called on first frame update •  void FixedUpdate(): •  Called before physics calculations are made •  void Update(): •  Called every frame before rendering •  void LateUpdate(): •  Once per frame after update finished
  • 66. Resources • Unity Main site • http://www.unity3d.com/ • Holistic Development with Unity • http://holistic3d.com • Official Unity Tutorials • http://unity3d.com/learn/tutorials • Unity Coder Blog • http://unitycoder.com
  • 68. Steps 1.  Create a new project 2.  Load the Cardboard SDK 3.  Load a panorama image asset 4.  Create a Skymap 5.  Add to VR scene 6.  Deploy to mobile phone
  • 70. Load Cardboard SDK •  Assets -> Import Package -> Custom Package •  Navigate to CardboardSDKForUnity.unitypackage •  Uncheck iOS (for Android build)
  • 71. Load Cardboard Main Camera •  Drag CardboardMain prefab into Hierarchy •  Assets -> Cardboard -> Prefab •  Delete CameraMain
  • 72. Panorama Image Asset •  Find/create suitable panorama image •  Ideally 2K or higher resolution image •  Google “Panorama Image Cubemap”
  • 73. Add Image Asset to Project •  Assets -> Import Asset •  Select desired image •  Set Texture Type to Cubemap •  Set mapping to Latitude- Longitude (Cylindrical)
  • 74. Create Skybox Material •  Assets -> Create -> Material •  Name material •  Set Shader to Skybox -> Cubemap •  Drag texture to cubemap
  • 75. Create Skybox •  Window -> Lighting •  Drag Skybox material into Skypebox form
  • 77. One Last Thing.. •  CardboardMain -> Head -> Main Camera •  Set Clear Flags to Skybox
  • 78. Test It Out •  Hit play, use alt/option key + mouse to look around
  • 79. Deploy to Mobile (Android) 1.  Plug phone into USB • make sure device in debug mode 2.  Set correct build settings 3.  Player settings • Other settings •  Set Bundle Idenitfier -> com.Company.ProductName • Resolution and Presentation •  Default Orientation -> Landscape Left 4.  Build and run
  • 80. Deploying to Phone 1.  Plug phone into USB 2.  Open Build Settings 3.  Change Target platform to Android 4.  Resolution and Presentation •  Default Orientation -> Landscape Left 5.  Under Player Settings •  Edit Bundle Identifier – eg com.UniSA.cubeTest •  Minimum API level 6.  Build and Run •  Select .apk file name
  • 81. Running on Phone •  Droid@Screen View on Desktop
  • 83. Key Steps 1.  Creating a new project 2.  Load Cardboard SDK 3.  Replace camera with CardboardMain 4.  Loading in 3D asset packages 5.  Loading a SkyDome 6.  Adding a plane floor
  • 84. New Project •  Camera replaced with CameraMain
  • 85. Download Model Package •  Magic Lamp from 3dFoin •  Search on Asset store
  • 86. Load Asset + Add to Scene •  Assets -> Import Package -> Custom Package •  Look for MagicLamp.unitypackage (If not installed already) •  Drag MagicLamp_LOD0 to Hierarchy •  Position and rotate
  • 87. Import SkySphere package •  SkySphere Volume1 on Asset store
  • 88. Add SkySphere to Scene •  Drag Skyball_WithoutCap into Hierarchy •  SkySphere_V1 -> Meshes •  Rotate and Scale as needed
  • 89. Add Ground Plane •  GameObject -> 3D Object -> Plane •  Set Scale X to 2.0, Z to 2.0
  • 90. Testing View •  Use alt/option key plus mouse to rotate view
  • 91. Adding More Assets •  Load from Asset store – look for free assets
  • 93. Adding Movement Goal: Move in direction user looking when Cardboard Button pressed. • Key Steps 1.  Start with static screen 2.  Create movement script 3.  Add movement script to Camera head 4.  Deploy to mobile
  • 95. Create Movement Script •  Add new script object •  Assets -> Create -> C# Script •  Edit script in Mono
  • 96. Add Script to Scene •  Drag Script onto Head object •  CameraboardMain -> Head •  Uncheck Track Position Box •  Adjust movement speed
  • 97. Adding More Interactivity •  Load Cardboard Demo application •  Assets -> Import Package -> Custom Package •  Load CardboardDemoForUnity.unitypackage •  Launch Demo Scene •  Assets -> Cardboard -> DemoScene
  • 98. Features Shown •  Gaze reticle + selection •  Viewpoint teleportation •  Menu panel overlay •  Audio feedback •  Event system
  • 100. Google Design Guidelines • Google’s Guidelines for good VR experiences: •  Physiological Considerations •  Interactive Patterns •  Setup •  Controls •  Feedback •  Display Reticle •  From http://www.google.com/design/spec-vr/designing- for-google-cardboard/a-new-dimension.html
  • 101. Physiological Considerations • Factors to Consider •  Head tracking •  User control of movement •  Use constant velocity •  Grounding with fixed objects •  Brightness changes
  • 102. Interactive Patterns - Setup • Setup factors to consider: • Entering and exiting • Headset adaptation • Full Screen mode • API calls • Indicating VR apps
  • 103. Interactive Patterns - Controls • Use fuze buttons for selection in VR
  • 104. Interactive Patterns - Feedback • Use audio and haptic feedback •  Reduce visual overload •  Audio alerts •  3D spatial sound •  Phone vibrations
  • 105. Interactive Patterns - Display Reticle •  Easier for users to target objects with a display reticle •  Can display reticle only when near target object •  Highlight objects (e.g. with light source) that user can target
  • 106. Cardboard Design Lab Application •  Use Cardboard Design Lab app to explore design ideas
  • 109. Conclusion • Virtual Reality industry starting to boom again • Google Cardboard provides a great entry for VR •  Consumer hardware •  Cheap/free viewer •  Industry standard game engine •  High quality content •  Many tutorials/learning resources • The time to get started is now!
  • 111. Useful Resources •  Google Cardboard main page •  https://www.google.com/get/cardboard/ •  Developer Website •  https://www.google.com/get/cardboard/developers/ •  Building a VR app for Cardboard •  http://www.sitepoint.com/building-a-google-cardboard-vr-app-in-unity/ •  Creating VR game for Cardboard •  http://danielborowski.com/posts/create-a-virtual-reality-game-for- google-cardboard/ •  Moving in VR space •  http://www.instructables.com/id/Prototyping-Interactive-Environments- in-Virtual-Re/