How to create your first VR project in Unity?

rs=w_1280+(51).jpeg

Today we are going to talk about the VR Fundamentals in Unity

**Check out this great class in Pluralsight*Unity VR Fundamentals by MJ Johns. This article/notes are based on this online class.

Screen Shot 2021-08-18 at 3.39.05 PM.png

Unity is probably one of the best VR building engine so far. Let’s talk about how to make some cool VR in Unity.

What’s Virtual Reality?

Virtual reality (VR) is an interactive computer-generated experience taking place within a simulated environment, that incorporates mainly auditory and visual, but also other types of sensory feedback like haptic. — Wikipedia

There are 2 different types of VR for consumers and developers.

  1. Mobile VR: 3 Degrees of freedom / Mobile (limitation)

  2. Room Scale VR: 6 Degrees of freedom / PC or Mac / Tracked Controllers with Tactile Feedback

There are 4 major devices for mobile VR.

  1. Google Cardboard

  2. Gear VR

  3. Merge VR

  4. Google Daydream

There are 2 main device for Room-Scale VR

  1. HTC Vive

  2. Oculus Rift

Setting your first VR project in Unity: (example: PC)

  1. Set up a new project in Unity

  2. Download SDK (depends on what you are going to build):

*Oculus SDK:

https://developer.oculus.com/downloads/unity

*Google VR SDK:

https://developers.google.com/vr/develop/unity/get-started-android

https://github.com/googlevr/gvr-unity-sdk/releases

  1. Create some simple 3 D objects in the scene: Create > 3D Object > Plane & Cube

  2. Create a build: File > Build Settings > Platform ->PC > Switch Platform (Button)

Screen Shot 2021-08-18 at 3.44.13 PM.png

3. PlayerSetting (Button)>Inspector > Check the “XR support” > Add the device you are using.

Screen Shot 2021-08-18 at 3.41.07 PM.png

Basic Concept of VR scene:

  1. We need to create a plane / ground and walls / barriers to help players preventing motion sickness.

  2. It is really important that in VR environment, the players have their own awareness of their own bodies. For example: If we put a car and make it run through the player’s body (*Proprioception), it will arouse the strong emotion and create an illusion that the car is really hitting the player.

Proprioception is the sense of the relative position of one’s own parts of the body and strength of effort being employed in movement.It is sometimes described as the “sixth sense”. — Wikipedia

Start to Create a VR scene:

  1. Create a new Scene.

  2. Insert.FBX or.OBJ in your scene. *Create a 3D capsule as a reference as the size of a real player — get a sense of the size of the real world and scale the 3D objects accordingly. *An Unity Cube equals 1 meter in real world.

  3. Apply Materials to your objects.

  4. Apply Colliders (box, sphere, capsule, or mesh collider ) to your static objects such as a wall, floors, and anything that will not have any interaction in the scene.

  5. Create Prefabs folder and make those prefabs by dragging them to the prefabs folder (Now all the 3D models are prefabs)

  6. Setting up VR environment:

  • Add wall & visual barriers scaling according to the real world

  • Place interactive objects 2–3 meters away from the player starting point

7. Create UI: World-Space Canvas or 3D Text:

  • 3D text: GameObject>3D Object> 3D Text: Will show up in the scene even though it is behind a 3D object.

  • Word-Space Canvas: GameObject>UI>Text: By default, it will not integrate well in the scene in Editing Mode. However, no matter where you position it, the text will be shown in front of the camera (Screen Space Overlay). If you want to change the position, you can change the render mode to World Space.

8. Create a 360 background or video:

  • Create an inside-out sphere and scale it very large

  • Attach 360 image

9. Design audio for the VR experience

You can add “Audio Listener” to either Camera or Game Object. Or you can add “SteamVR Plugin > Camera Rig”

  • Headphone

  • Speakers

  • Surround Sound

  • Ambisonic Audio

Ambisonic: A full sphere of audio capture, creating a fully immersive sound space, particularly for use in 360 film.

10. Make sure all the interactive objects are within the reachable distance for the player.

Previous
Previous

This is service design methods (1) — Research Method

Next
Next

A Book Apart: Conversational Design