Cosc 5/4735 Unity and Cardboard VR.

Slides:



Advertisements
Similar presentations
What we will cover today… Where is the camera on my phone? Taking a photo Zoom in and out Deleting a photo Where do my photos go to? Viewing my photos.
Advertisements

How to use a scanner Throughout this slide show there will be hyperlinks (highlighted in blue) follow the hyperlinks to navigate to the specified Topic.
GameCamp! and Game Davis Introduction to Unity®
Introduction to AppInventor Dr. José M. Reyes Álamo.
Software Development. Chapter 3 – Your first Windows 8 app.
Programming with App Inventor Computing Institute for K-12 Teachers Summer 2012 Workshop.
Cosc 5/4730 Scripting layer for Android (SL4A). Android scripting SL4A brings scripting languages to the android, by allowing you edit and execute scripts.
Operating system for mobile devices with a Java programming interface. Provides tools, e.g. a compiler, debugger, device emulator, and its own Java Virtual.
Basic Pspice Instructions Stuart Tewksbury
EEC-693/793 Applied Computer Vision with Depth Cameras Lecture 13 Wenbing Zhao
LLRP GUI Client User Guide
Lab 6: event & input intro User Interface Lab: GUI Lab Oct. 2 nd, 2013.
SVN in Eclipse Presented by David Eisler 10/09/2014.
Unity 5 Visual Studio Code * Asset Store * FPS * Terrain.
Learning Unity. Getting Unity
Lesson 1- The Basics.  In this lesson, you will learn how to: ◦ Start Excel. ◦ Open an existing workbook. ◦ Navigate within a workbook. ◦ Edit a worksheet.
Alice 3.0 A Guided Tour Mike R-D YRDSB. Agenda General Walkthrough of Alice 3.0 Loops, Variables, Threads Methods / Properties Arrays Misc.
Loader Tutorial Set Up. Requirements Java 7 Eclipse IvyIDE plugin Git Optional: Ant Maven.
Intoduction to Andriod studio Environment With a hello world program.
SPL basic – Build Simulation Environment Young Joon Kim SPL First Beginner Course – 03.
Expressive Intelligence Studio // Center for Games and Playable Media // Unity Pro John Murray Expressive.
Cosc 5/4735 Unity 3D Getting Started Guide for Android.
Designed with MockApp is not freeware... It’s Tweetware. If you’ve already either twitted, digged, blogged, etc. about MockApp, this copy is legally yours.
Cosc 5/4735 Unity and Cardboard VR. Unity3D and Cardboard Much like OpenGL, android has produced a “plugin” for unity. – You can use the asset at the.
SPS-70DL Download Documentation Step-by-Step. SPS-70DL Download Documentation (USB Driver Installation) End user (client) logs onto Transcell WebStore.
Building Games for the Humanities with Unity3D Rudy McDaniel University of Central Florida Orlando, FL USA.
How To Fix Errors In Antivirus. How to Fix AVG Installation Failed 0xc00702e4 If your AVG product is failing Installation to update itself and showing.
How to fix Windows 10 apps crashing or not opening errors.
Aindra Systems We See Things …
Philio Technology Corporation
EEC-693/793 Applied Computer Vision with Depth Cameras
Google VR (gvr) CardBoard and DayDream With OpenGL
Development Environment
SPen & Camera Kit Experience App
Your Personal Protection & Safety Smartphone App
EEC-693/793 Applied Computer Vision with Depth Cameras
APK Downloader
Opening an Existing File
bcb
Quick Guide for Offline Reports
EEC-693/793 Applied Computer Vision with Depth Cameras
How to Fix Android File Transfer Not Working on Mac?
We are here to help you in Reinstallation of Avira Antivirus. You just have to follow some steps which are mentioned in this Presentation……….
Using the Mouse Dead Application
How to Download the RRC App to Your Phone
Android Studio Hello World
Philio Technology Corporation
UNITY TEAM PROJECT TOPICS: [1]. Unity Collaborate
TRUST KEY (DONGLE / PEN DRIVE)
Packing and Signing of the Application
Unity Connection 7.0 Multiple Message Parts (Attachments)
This presentation document has been prepared by Vault Intelligence Limited (“Vault") and is intended for off line demonstration, presentation and educational.
A beginner’s tutorial for Unity and VR
Introduction to AppInventor
Fundaments of Game Design
Retrieving BOA Templates
Tonga Institute of Higher Education
Setting up Guide Brussels 6/9/2017.
EEC-693/793 Applied Computer Vision with Depth Cameras
GST Implementation in Miracle
YOUR text YOUR text YOUR text YOUR text
TI-NspireTM Version 2.1 Top 10
Category 1 Category 2 Category 3 Category 4 Category
Mu Editor – New User Cheat Sheet – CircuitPython Mode
GST Implementation in Miracle
Mu Editor – New User Cheat Sheet – CircuitPython Mode
Streamline Message Send
Presentation transcript:

Cosc 5/4735 Unity and Cardboard VR

Unity3D and Google VR Much like OpenGL, android has produced a “plugin” for unity. You can use the asset at the start or add it in to already formed project. Directions assume Unity 2017.4.0f1 Download gvr package for unity https://github.com/googlevr/gvr-unity-sdk/releases

Adding VR to unity Assets -> Import package -> Custom Package Find the GoogleVRForUnity…unitypackage file (where you downloaded it) Import everything. Existing project: Select the camera (either MainCamera or FirstPersonCharacter Camera) From menu, Component -> Google VR->Update Stereo Cameras You now have Cardboard ready cameras.

Adding VR to unity (2) For a new project Delete the MainCamera and add the GvrMain prefab It has everything to control the VR mode.

Play mode in Unity. Mouse-based head tracking: if you press Alt and move the mouse around, you can pan horizontally and tilt vertically around your scene as if your head is moving Cardboard around. Use Ctrl with the mouse to simulate tilting your head from side to side. Simulating trigger pulls: use a mouse click to simulate the action of a user using the trigger.

Trigger Pulls Add the following script: public class NewBehaviourScript : MonoBehaviour {     public Text textView;     void Update()    {         if (Cardboard.SDK.Triggered)        { //deal with trigger here         }           } } Add the script via the Add Component button Likely to the FirstPersonCharacter.

A note Build & Run on unity If you get Key error, it’s a known problem in unity3D. It’s having problems with the data connection to that phone. Works on my Moto G, fails on the Nexus 5X Try just Build. Cmd prompt: adb install –r file.apk -r is replace, so you can do it multiple times with the same version number.

References https://developers.google.com/vr/

Q A &