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.

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

Chapter 7 – Managing Windows XP. Control Panel The main tool for configuring your system. Most of the tools to configure the system come with the normal.
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.
Get android development environment running. Install – Get and install JDK 5 or 6 (see link in the.
GameCamp! and Game Davis Introduction to Unity®
Cosc 4730 Installing IDEs And a note on carriers..
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.
CS5103 Software Engineering Lecture 08 Android Development II.
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.
First Venture into the Android World Chapter 1 Part 2.
Java Programming, Second Edition Appendix A Working with Java SDK 1.4.
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.
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
EEC-693/793 Applied Computer Vision with Depth Cameras
Opening an Existing File
bcb
Sensors, maps and fragments:
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
Android Studio Hello World
Philio Technology Corporation
UNITY TEAM PROJECT TOPICS: [1]. Unity Collaborate
TRUST KEY (DONGLE / PEN DRIVE)
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
Windows customization
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
Cosc 5/4735 Unity and Cardboard VR.
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
Presentation transcript:

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 start or add it in to already formed project. – Download cardboard sdk for unity unity/blob/master/CardboardSDKForUnity.unitypackag e?raw=true unity/blob/master/CardboardSDKForUnity.unitypackag e?raw=true

Adding VR to unity Assets -> Import package -> Custom Package – Find the CardboardSDKForUnity.unitypackage file. – Import everything. Existing project: – Select the camera (either MainCamera or FirstPersonCharacter Camera) From menu, Component -> CardBoard->Update Steoro Cameras – You now have Cardboard ready cameras.

Adding VR to unity (2) For a new project – Delete the MainCamera and add the CardboardMain 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 ty/ ty/

Q A &