Skip to content

Latest commit

 

History

History
227 lines (138 loc) · 12.3 KB

File metadata and controls

227 lines (138 loc) · 12.3 KB
title description author ms.author ms.date ms.topic ms.localizationpriority keywords
2. Initializing your project and first application
Part 2 of 6 in a tutorial series to build a simple chess app using Unreal Engine 4 and the Mixed Reality Toolkit UX Tools plugin
hferrone
v-hferrone
06/10/2020
article
high
Unreal, Unreal Engine 4, UE4, HoloLens, HoloLens 2, mixed reality, tutorial, getting started, mrtk, uxt, UX Tools, documentation, mixed reality headset, windows mixed reality headset, virtual reality headset

2. Initializing your project and first application

Overview

In this first tutorial, you'll get started with a new Unreal application for HoloLens 2. This is going to include adding the HoloLens plugin, creating and lighting a level, and populating it with a game board and chess piece. You'll be using pre-made assets for the 3D chess piece and object materials, so don't worry about modeling anything from scratch. By the end of this tutorial you'll have a blank canvas that's ready for mixed reality.

Before continuing, make sure you have all the prerequisites from the Getting Started page.

Objectives

  • Configuring an Unreal project for HoloLens development
  • Importing assets and setting up a scene
  • Creating Actors and script-level events with blueprints

Creating a new Unreal project

The first thing you need is a project to work with. If this is your first time creating an Unreal app for HoloLens, you'll need to download supporting files from the Epic Launcher.

  1. Launch Unreal Engine

  2. Select Games in New Project Categories and click Next.

Select Games project template

  1. Select the Blank Template and click Next.

Select the Blank template

  1. Set C++, Scalable 3D or 2D, Mobile/Tablet, and No Starter Content as your Project Settings, then choose a save location and click Create Project.

Note

You must select a C++ project rather than a Blueprint project in order to build the UX Tools plugin, which you'll be setting up later on in section 4.

Initial project settings

The project should open up automatically in the Unreal editor, which means you're ready for the next section.

Enabling required plugins

Before you start adding objects to the scene you'll need to enable two plugins.

  1. Open Edit > Plugins and select Augmented Reality from the built-in options list.
    • Scroll down to HoloLens and check Enabled.

Enabling HoloLens plugins

  1. Select Virtual Reality from the built-in options list.
    • Scroll down to Microsoft Windows Mixed Reality, check Enabled, and restart your editor.

Enabling Windows Mixed Reality plugin

Note

Both plugins are required for HoloLens 2 development.

With that done your empty level is ready for company.

Creating a level

Your next task is to create a simple player setup with a starting point and a cube for reference and scale.

  1. Select File > New Level and choose Empty Level. The default scene in the viewport should now be empty.

  2. Select Basic from the Modes tab and drag PlayerStart into the scene.

    • Set Location to X = 0, Y = 0, and Z = 0 in the Details tab. This sets the user at the center of the scene when the app starts up.

Viewport with PlayerStart

  1. Drag a Cube from the Basic tab into the scene.
    • Set Location to X = 50, Y = 0, and Z = 0. This positions the cube 50 cm away from the player at start time.
    • Change Scale to X = 0.2, Y = 0.2, and Z = 0.2 to shrink the cube down.

You won’t be able to see the cube unless you add a light to your scene, which is your last task before testing the scene.

  1. Switch to the Lights tab in the Modes panel and drag a Directional Light into the scene. Position the light above PlayerStart so you can see it.

Viewport with light added

  1. Go to File > Save Current, name your level Main, and click Save.

With the scene set, press Play in the toolbar to see your cube in action! When you're finished admiring your work, press Esc to stop the application.

A cube in the viewport

Now that the scene is setup, you can start adding in the chess board and piece to round out the application environment.

Importing assets

The scene is looking a bit empty at the moment, but you'll fix that by importing the ready-made assets into the project.

  1. Download and unzip the GitHub assets folder using 7-zip.

  2. Click Add New > New Folder from the Content Browser and name it ChessAssets.

    • Double-click the new folder - this is where you'll import the 3D assets.

Show or hide the sources panel

  1. Click Import from the Content Browser, select all the items in the unzipped assets folder and click Open.

    • This folder contains the 3D object meshes for the chess board and pieces in FBX format and texture maps in TGA format that you'll use to for materials.
  2. When the FBX Import Options window pops up, expand the Material section and change Material Import Method to Do Not Create Material.

    • Click Import All.

Import FBX options

That's all you need to do for the assets. Your next set of tasks is to create the building blocks of the application with blueprints.

Adding blueprints

  1. Click Add New > New Folder in the Content Browser and name it Blueprints.

Note

If you're new to blueprints, they're special assets that provide a node-based interface for creating new types of Actors and script level events.

  1. Double-click into the Blueprints folder, then right-click and select Blueprint Class.
    • Select Actor and name the blueprint Board.

Select a parent class for your Blueprint

The new Board blueprint now shows up in the Blueprints folder as seen in the following screenshot.

The new Board Blueprint

You're all set to start adding materials to the created objects.

Working with materials

The objects you've created are default grey, which isn't much fun to look at. Adding materials and meshes to your objects is the last set of tasks in this tutorial.

  1. Double-click Board to open the blueprint editor.

  2. Click Add Component > Scene from the Components panel and name it Root. Notice that Root shows up as a child of DefaultSceneRoot in the screenshot below:

Replacing the root in blueprint

  1. Click-and-drag Root onto DefaultSceneRoot to replace it and get rid of the sphere in the viewport.

Replacing the root

  1. Click Add Component > Static Mesh from the Components panel and name it SM_Board. It will appear as a child object under Root.

Adding a static mesh

  1. Click SM_Board, scroll down to the Static Mesh section of the Details panel, and select ChessBoard from the dropdown.

The board mesh in the viewport

  1. Still in the Details panel, expand the Materials section and click Create New Asset > Material from the dropdown.
    • Name the material M_ChessBoard and save it to the ChessAssets folder.

Create a new material

  1. Double-click the M_ChessBoard material imaged to open the Material Editor.

Open material editor

  1. In the Material Editor, right-click and search for Texture Sample.
    • Expand the Material Expression Texture Base section in the Details panel and set Texture to ChessBoard_Albedo.
    • Drag the RGB output pin to the Base Color pin of M_ChessBoard.

Set the base color

  1. Repeat the previous step four more times to create four more Texture Sample nodes with the following settings:
    • Set Texture to ChessBoard_AO and link the RGB to the Ambient Occlusion pin.
    • Set Texture to ChessBoard_Metal and link the RGB to the Metallic pin.
    • Set Texture to ChessBoard_Normal and link the RGB to the Normal pin.
    • Set Texture to ChessBoard_Rough and link the RGB to the Roughness pin.
    • Click Save.

Hook up the remaining textures

Make sure the your material setup looks like the above screenshot before continuing.

Populating the scene

If you go back to the Board blueprint, you'll see that the material you just created has been applied. All that's left is setting up the scene! First, change the following properties to make sure the board is a reasonable size and angled correctly when it's placed in the scene:

  1. Set Scale to (0.05, 0.05, 0.05) and Z Rotation to 90.
    • Click Compile in the top toolbar, then Save and return to the Main window.

Chessboard with material applied

  1. Right-click Cube > Edit > Delete and drag Board from the Content Browser into the viewport.

    • Set Location to X = 80, Y = 0, and Z = -20.
  2. Click the Play button to view your new board in the level. Press Esc to return to the editor.

Now you'll follow the same steps to create a chess piece as you did with the board:

  1. Go to the Blueprints folder, right-click and select Blueprint Class and choose Actor. Name the actor WhiteKing.

  2. Double click WhiteKing to open it in the Blueprint Editor, click Add Component > Scene and name it Root.

    • Drag-and-drop Root onto DefaultSceneRoot to replace it.
  3. Click Add Component > Static Mesh and name it SM_King.

    • Set Static Mesh to Chess_King and Material to a new Material called M_ChessWhite in the Details panel.
  4. Open M_ChessWhite in the Material editor and hook up the following Texture Sample nodes to the following:

    • Set Texture to ChessWhite_Albedo and link the RGB to the Base Color pin.
    • Set Texture to ChessWhite_AO and link the RGB to the Ambient Occlusion pin.
    • Set Texture to ChessWhite_Metal and link the RGB to the Metallic pin.
    • Set Texture to ChessWhite_Normal and link the RGB to the Normal pin.
    • Set Texture to ChessWhite_Rough and link the RGB to the Roughness pin.
    • Click Save.

Your M_ChessKing material should look like the following image before continuing.

Create the material for the chess king

You're almost there, just need to add the new chess piece into the scene:

  1. Open the WhiteKing blueprint and change the Scale to (0.05, 0.05, 0.05) and Z Rotation to 90.

    • Compile and save your blueprint, then head back to the main window.
  2. Drag WhiteKing into the viewport, switch to the World Outliner panel drag WhiteKing onto Board to make it a child object.

World Outliner

  1. In the Details panel under Transform, set WhiteKing's Location to X = -26, Y = 4, and Z = 0.

That's a wrap! Click Play to see your populated level in action, and press Esc when you're ready to exit. This tutorial covered a lot of ground creating a simple project, but your project is ready to move on to the next part of the series: setting up for mixed reality.

Next Section: 3. Set up your project for mixed reality