introduction to unity and middlevr
play

Introduction to Unity and MiddleVR David J. Zielinski DiVE Virtual - PowerPoint PPT Presentation

Introduction to Unity and MiddleVR David J. Zielinski DiVE Virtual Reality Lab Duke University Overview Unity Overview Editor Interface Scripting MiddleVR Unity - Why even use a game engine? Simplify development of games.


  1. Introduction to Unity and MiddleVR David J. Zielinski DiVE Virtual Reality Lab Duke University

  2. Overview ● Unity Overview ● Editor Interface ● Scripting ● MiddleVR

  3. Unity - Why even use a game engine? Simplify development of games. ● Game Mechanics ○ physics, AI ● Rendering Effects ○ shadows, lighting ● I/O Abstraction ○ input devices ○ output devices

  4. Unity - What is it? ● Commercial game engine (Free and Pro) ● Cross platform ● Popular

  5. Unity - Commercial Game Engine Pro Version offers: ● LOD ● Occulsion culling ● Profiler ● Full screen post processing effects (Oculus) ● Quad Buffered Stereo (for zSpace and DiVE) ● … and more!

  6. Unity - Cross Platform Multiple Build Targets (Input/Output Abstraction) ● Windows ● Linux ● iOS ● Android ● Web ● … and more!

  7. Unity - Popular ● 2 million registered users ● Large asset store (models, scripts) ● Utilized in other Duke classes

  8. Unity - Competitors

  9. Unity - Understanding Projects A Unity project... ● is actually the directory ● will contain all the assets for your game ● can contain multiple scenes

  10. Unity Editor - Windows Scene Hierarchy Inspector Project Console

  11. Unity Editor - Scene Window Orbit: alt+left mouse right mouse button Pan: middle mouse Zoom: scroll wheel alt+ right mouse

  12. Unity Editor - Hierarchy ● Show objects in current scene ● Can drag objects underneath another object. ● Selecting an object will change the view in the inspector window (next slide) ● Tip: can use ‘f’ key to center on object in scene view

  13. Unity Editor - Inspector ● Shows currently selected game object. ● Lists all components of that game object. ● Scripts will show up here as well.

  14. Unity Editor - Project ● Lists all assets in your project

  15. Unity Editor - Console If there are errors in your script, they will show up here when you press play.

  16. Unity Editor - Game Window ● When you press play the scene window will switch to the game view window. ● IMPORTANT: values adjusted while in play mode will revert when play ends.

  17. Example - Adding a Cube GameObject Create Other Cube

  18. Example - Moving a cube ● can use handles in scene view to move ● can adjust values in inspector view ● Tip: click value and use mouse to quickly adjust

  19. Example - add material to cube Assets Create Material

  20. Example - add material to cube part2 Drag material from project window onto Cube in Hierarchy window.

  21. Example - Material added to cube ● We can change the shader used ● We can change the color by bringing up the color picker

  22. Example - Color picker

  23. Building File Build & Run

  24. Building - Platform Chooser ● This lets you generate a standalone exe ● Tip: make sure scene is in build. ● Look at “Scenes In Build” window.

  25. Scripting ● UnityScript (similiar to JavaScript) ● Boo (similiar to python) ● C#

  26. Which language to use? Answer: C# ● interoperability with libraries written in C# ○ MiddleVR is written in C# ● less errors ○ JS Implicit variable declaration can cause problems ● advanced features available if needed ○ Properties, delegates, lambdas, generics

  27. Comments // for single line comments /* for multi line comments */

  28. Variables ● Various Data Types ○ bool, char, byte, float, double, int, string, … ● Public vs Private keyword ● Pass by reference: use ref instead of & Example: public int playerHealth=5;

  29. Functions (called methods in C#) ● allows us to compartmentalize and reuse code effeciently public int SquareANumber(int number) { return number * number; }

  30. If Statements if (m > 10) { //do something } else { //do something }

  31. Basic Functions void Start() { //called once. do any initialization here } void Update() { //called every frame. move objects here }

  32. For Loop for (int i = 1; i <= 5; i++) { Debug.Log(“hello”); }

  33. Example - Rotating Cube void Update() { transform.Rotate(0,speed,0); }

  34. Example - Rotate Cube Properly void Update() { transform.Rotate(0,speed*Time.deltaTime,0); }

  35. MiddleVR ● Commercial Plugin ● Support for 3D interaction devices ● Stereoscopy (active, passive) ● Multi-screens / multi-computers ○ (needed for CAVE-type systems)

  36. MiddleVR Licensing Free Version: ● export for oculus ● simulator for desktop development Academic (licensed) Version: ● Build/Export to zSpace ● Build/Export to DiVE ● Can be node locked or floating license.

  37. Add MiddleVR to Unity Project Assets Import Package Custom Package

  38. Find the MiddleVR Package

  39. Adding to Scene Need to drag “VRManager” from project to Hierarchy window

  40. Pick Config File ● Select VRManager. ● Many options in inspector window. ● Pick configuration file.

  41. Pick Config File - Part 2 ● I’ve been working (in progress) on some config files. ● Located on the DiVE fileserver.

  42. Now Click Play We can see that VRRootNode is created dynmically.

  43. Virtual Hand Technique ● MiddleVR has easy ways to enable Virtual Hand technique. ● Add VRActor script to object we want to pickup

  44. Virtual Hand Demo ● touch an object and click, the object is moved underneath the handnode

  45. Learn More Unity http://docs.unity3d.com/Documentation/Manual/index.html Walker Boys Studio - Video tutorial http://www.walkerboystudio.com/html/unity_training___free__.html Lynda http://www.lynda.com/Unity-3D-tutorials/Unity-3D-35-Essential-Training/96677-2.html Middle VR http://www.imin-vr.com/doc/current/

  46. Thank You! Questions?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend