Creating a basic VR demo using Unreal

With virtual reality (VR) going mainstream, through products like the HTC Vive and Oculus Rift, many game developers have become interested in creating new content for these devices. To develop VR content there are two game engines that stand out: Unreal Engine and Unity3D.

For the purpose of this article, I will develop a small VR demonstration (demo) using Unreal Engine. The goal is to implement a level, where the player can move freely and interact with objects by grabbing them or destroying them.

What is the Unreal Engine?

The Unreal Engine is a game engine created by Epic Games in 1998. It was first used to create the Unreal game and since then has been successfully used in a variety of other huge games (including Unreal Tournament, Bioshock, Mortal Kombat X, among others). This game engine provides two toolsets for programmers: the traditional C++ and a visual scripting system known as Blueprints that allows for rapid development of the game logic.

VR support was added in the 4th version, launched in 2012. The first supported device was Oculus Rift DK1. Currently, all major VR devices are supported.

Before March 2015, to develop games with this engine, it was necessary to buy a licence, but it subsequently became free of charge. The only condition is that all the profits generated from a game developed with Unreal, above $3,000 must pay a 5% royalty. [1]

Alternative

One alternative for creating VR games is Unity3D. Unity3D is a newer game engine and its primary focus is on mobile games thus presenting a very strong 2D component. Furthermore, given its popularity and versatility, the engine expanded to the desktop and VR content.

To create games in unity3D we can use C#, JavaScript or Boo. This game engine is also free to use as with Unreal.

For the purpose of this article, I chose to develop in Unreal Engine because the goal is to create a desktop game and make use of the most advance VR devices on the market. Also, Unreal Engine helps to create prototypes very quickly.

Why develop for VR?

In the past years, VR technology has evolved to approach new levels of immersion and life-like experiences. In this way, consumers have more reasons to get excited about playing in VR, as opposed to 3D and 2D. Therefore, there is an opportunity to create exciting VR content, and for that to happen the developers have to step up and create it.

From a development point of view, it has new challenges to overcome in the way players interact and experiment with different elements of the game. The mentioned challenges include narrative construction, audio setting, locomotion in-game, and many more.

Assuming that future games will be VR ready, we currently have a chance to change the gaming world and entertainment as we know them today.

Headset choice

To identify the chosen hardware for our demo, I will state the reasons that led me to choose the HTC Vive:

  • We want to develop it for desktop. (Automatically excludes mobile devices like Samsung GearVR, Google Daydream, …)
  • HTC Vive allows roomscale (Oculus Rift will soon have this feature)
  • HTC Vive already has two motion controllers (Oculus Rift touch must be bought separately)

Our goal is to make use of the motion controllers to interact with the objects, so the obvious choice is the HTC Vive.

VR setup

Having a high-end desktop and HTC Vive, everything can be set up and ready to use.

For that we need to:

  1. Make sure everything is connected in the right place. The full guide can be seen here [2].
  2. Install Steam and SteamVR.
  3. Make sure the firmware on all controllers and headset is updated.
  4. Run the “Room setup” and “Tutorial” to set up your roomscale and see if everything is working correctly.
  5. Download and install Unreal Engine [3] (Version: 4.13.2).

Now we are ready to start our demo.

Demo implementation

Before starting the development of our demo, is important to have some previous background knowledge about working with Blueprints.

The following section shows the step-by-step process of how to create a new project, set up a level and create some simple game logic so we can point to an object and by pulling the trigger, destroy it.

The process starts by opening the Unreal Engine and going to the New project tab. In the Blueprint section select Virtual Reality. In the project setup choose Desktop/console, Maximum Quality and No starter content, and in Location insert the path you want for the project.

Go to plugins menu and in Virtual Reality confirm that plugin “SteamVR” is enabled.

On the content browser, go to the folder VirtualRealityBP/maps and open “MotionControllerMap”.

This will open a pre-build level that we can use. This level already was many actions ready to use like: grab objects and teleportation for the player to move in the level. We can try it out to see if everything is working correctly. Now to make things more interesting let’s implement logic for destroying an object when we point and pull the trigger.

In order to do that, open the Blueprint “MotionControllerPawn” in VirtualRealityBP/Blueprints.

Call a “MotionController (R) Trigger” event for the right hand and set a boolean that changes between true or false when we press or release the trigger.

On the Tick event, we are going to create a linetrace for us to know what kind of object we are pointing at. To do that we need the starting and ending point. To obtain the starting point, use the “Right Controller” reference, get the “Motion Controller” and get world location.

Still from “Motion Controller” let’s get the forward vector. This will give us the directions where the controller points to. Multiply this vector with the distance we what (let’s say 1000 = 10 meters) and add to the initial location, obtaining the end point.

Add the module “LineTraceByChannel”, connect the start and end points and select “One Frame” in “Draw Debug Type” tab. This parameter will draw a line that we can see between the starting and ending point.

The next step is to break the “Out Hit” output and do a cast for the “Hit Actor” to “BP_PickupCube”. This will guaranty that we can only select the blue cubes in the level.

To finish let’s put a branch and see if the boolean”Can Destroy” (created earlier) is true or false. In case it is false we don’t do anything. In case it’s true, call the module “DestroyActor” to destroy the actor that we have selected.

And we are done. We can try it by going to the Play button on the top and select VRpreview.

Final thoughts

As you can see, creating games for VR devices isn’t difficult. The engine offers pre-made content that makes it much easier for those who are taking the first steps in this area. Furthermore, Unreal allows us to abstract from the hardware (for example, we don’t need to think about how to do the tracking of the devices or how to render the image to the headset) allowing us only to focus on the content of the experience.

In my experience, the use of the Blueprints is a great resource that provides the possibility to create game mechanics in just a few clicks. This demo serves as a basis to easily understand how VR development works in Unreal and from this you can evolve the complexity and create your own VR game.

Now is up to us to create the future of VR

References

[1] https://www.unrealengine.com/blog/ue4-is-free
[2] https://support.steampowered.com/kb_article.php?ref=2001-UXCM-4439
[3] https://www.unrealengine.com/
[Image 1] http://www.htc.com/us/go/press-image-gallery/

Originally published at https://medium.com/@tagowill.

Published On

12/11/2016

Publisher

Scroll to top