SlideShare a Scribd company logo
Intro to Unreal
Luis Cataldi – Epic Games, Education Evangelist
Unreal Engine For Academic Use
Good Things to Know:
Unreal Engine (EULA) End User License Agreement - LINK
Assets Naming Convention – LINK
Unreal Engine 4 Coding Standard – Link
Unreal Engine 4 Hardware & Software Specifications – Link
Downloading Unreal Engine Source Code – Link
Building Unreal Engine from Source – Link
Compiling Game Projects - Link
3
Unreal Engine Learning Resources
How UE4 Online Documentation is Structured:
Overview Page - Link
Quick Start Pages – Link
Users Guides - Link
How To Pages - Link
Reference Pages - Link
Samples - Link
Tutorials - Link
APIs - Link
5
UE4’s Online Documentation
Improved metadata support
Skill level
Engine version
Sitemap filters
Checkpoints
6
Unreal Engine Release Notes:
Release Notes - Link
New Features
Performance Improvements
Platform Additions
Bug Fixes
Enhancements
Changes
7
UE4 For Unity Developers:
Unreal Engine 4 For Unity Developers – Link
Unreal Engine 4 Terminology – Link
Unreal Engine 4 Tools & Editors - Link
8
Troubleshooting Guide:
Destructible Troubleshooting Guide – LINK
Troubleshooting Launcher Problems - Link
Lighting Troubleshooting Guide – LINK
Mobile Development Troubleshooting Guide – Link
Swarm Agent Troubleshooting - Link
9
UE4 Skills Video Training Curriculum:
Basics – Link
Animation – Link
Programming - Link
Blueprints - Link
Virtual Reality – Link
Level Editing - Link
Unreal Motion Graphics (UMG) – Link
More…
10
UE4 3rd Party Curriculum:
Unreal Engine 4: The Complete Beginner's Course
Learn to Code in C++ by Developing Your First Game
Complete Introduction to Unreal 4
An Introduction to Creating Realistic Materials in UE4
Master Blueprints in Unreal Engine 4 - Endless Runner
Create a Helicopter Game Control System in Unreal Engine 4
Unreal Essential Training
11
Content Examples: - Link
12
13
Game Samples & Free Content In the Learn Tab:
● Content Examples
● The complete A Boy and His Kite
● Open World Demo Collection
● Water Planes
● Matinee environments and characters and content
● Stylized Rendering environments and content
● Realistic Rendering environments and content
● Sun Temple environments and content
● Particle Effects environments and content
● Silly Geo complete game project and content
● Multiplayer Shootout complete game project and content
● Platformer Game complete game project and content
● Swinging Ninja complete game project and content
● Vehicle Game complete game project and content
● Strategy Game complete game project and content
● SciFi Bunk environments and content
● Radial Impact complete game project and content
● And more…
14
The Entire Infiltrator Demo Now Available For Download
○ 900 Textures
○ 468 Materials
○ 637 Static Meshes
○ 20 Skeletal Meshes
○ 69 Sound Wavs
○ 181 Animation
These assets are perfect for use in academic projects including:
○ Level design classes building high fidelity gameplay spaces.
○ For high quality environment art and set dressing exercises.
○ For use in game jams and student games.
○ Perfect for dissecting professional caliber AAA UE4 sample content.
○ ...and much more.
Total Size: 4 GB
Dozens of free complete projects available through the Learn Tab:
Dozens of free complete projects available through the Learn Tab:
15
Huge Infinity Blade Collection Now Available For Download
Below is a list of specific content included in all the asset packs:
○ 1911 Textures
○ 1051 Materials
○ 1488 Static Meshes
○ 176 Skeletal Meshes
○ 1064 Particles
○ 16 Sound Wavs
○ 9 Sound Cues
○ 6 Blueprints
These assets are perfect for use in academic projects including:
○ Level design classes building gameplay spaces for mobile environments.
○ For environment art and mobile set dressing exercises.
○ For use in mobile and traditional game jams.
○ For use in student games.
○ Perfect for dissecting professional caliber mobile UE4 sample content.
○ ...and much more.
Compatibility:4.9
16
The Showdown Cinematic VR Experience Now Available For Download
Below is a list of specific content included in the download:
○ 450 Textures
○ 189 Materials
○ 161 Static Meshes
○ 5 Skeletal Meshes
○ 19 Effects
These assets are perfect for use in academic projects including:
○ VR design classes building playable spaces.
○ For VR environment art and set dressing exercises.
○ For use in VR jams.
○ For student VR games.
○ Perfect for dissecting professional caliber UE4 sample VR content.
○ ...and much more.
Total Size: 2.8 GB
Dozens of free complete projects available through the Learn Tab:
Working with AnswerHUB - Link
There are 15 full time Epic technicians working to help folks on AnswerHUB at all times, but it's
important for people asking questions to AnswerHUB to do the few things listed below.
USE THE SEARCH FIRST!
o There is a strong chance someone has run into similar or the same issue before.
Categories the issue
o Is it a BUG?
o Is it a problem with C++?
o Is it a problem with Blueprints?
o Is it a Rendering issue?
o Etc...
Good submission make AnswerHUB work
o Provide screenshots of the issue. People are visual.
o List steps to reproduce the issue.
o Take the time to be clear and explain carefully.
o Use examples of what you wish to achieve (based on known games when possible)
AnswerHUB is community driven. Help and you will be helped.
o Unreal Engine is open-source software driven by the community.
o By being active in the community, your credibility grows as a developer.
o More people help those who help others.
o Become active in the community and build Karma Points in AnswerHUB.
17
The Learn Tab:
The place to go for help.
18
Better than Google because:
It searches all of Epic Documentation
It searches the Community Wiki
It searches AnswerHUB
…provides you better answers.
** it is actually a Google gadget. ☻
The Unreal Engine Framework
20
GameInstance
GameMode
Pawn Class
HUD Class
PlayerController
Class
PlayerState
Class
GameState
Class
21
The GameInstance is a class
who’s state persists switching of
levels, game modes, pawns etc.
Where classes like GameMode or
PlayerController are being reset
and data stored in those classes
is removed. Any data that you
want to keep beyond levels and
matches, for example "what
player did in specific moment so
you can have consequence on
other level" should be placed in
the GameInstance.
GameInstance
GameMode
Pawn Class
HUD Class
PlayerController
Class
PlayerState
Class
GameState
Class
22
The GameMode is the definition
of the game, including things like
the game rules and win
conditions. It only exists on the
server. It typically should not have
much data that changes during
play, and it definitely should not
have transient data that clients
need to know about.
GameInstance
GameMode
Pawn Class
HUD Class
PlayerController
Class
PlayerState
Class
GameState
Class
23
The GameState contains the state
of the game, which could include
things like the list of connected
players, the score, where the
pieces are in a chess game, or
the list of what missions you have
completed in an open world
game. The GameState exists on
the server and all clients and can
replicate freely to keep all
machines up to date.
GameInstance
GameMode
Pawn Class
HUD Class
PlayerController
Class
PlayerState
Class
GameState
Class
24
A PlayerState is the state of a
participant in the game, such as a
human player or a bot that is
simulating a player. Non-player AI
that exists as part of the game
would not have a PlayerState.
Example data that would be
appropriate in a PlayerState
include player name, score, in-
match level for something like a
MOBA, or whether the player is
currently carrying the flag in a
CTF game. PlayerStates for all
players exist on all machines
(unlike PlayerControllers) and can
replicate freely to keep things in
sync.
GameInstance
GameMode
Pawn Class
HUD Class
PlayerController
Class
PlayerState
Class
GameState
Class
25
A PlayerController is the interface
between the Pawn and the human
player controlling it. The
PlayerController decides what to do
and then issues commands to the
Pawn (e.g. "start crouching",
"jump").
In some cases, putting input
handling or other functionality into
the PlayerController is necessary.
The PlayerController persists
throughout the game, while the
Pawn can be transient.
For example, in deathmatch style
gameplay, you may die and
respawn, so you would get a new
Pawn but your PlayerController
would be the same. In this example,
if you kept your score on your Pawn,
the score would reset, but if you
kept your score on your
PlayerController, it would not.
GameInstance
GameMode
Pawn Class
HUD Class
PlayerController
Class
PlayerState
Class
GameState
Class
26
GameInstance
GameMode
Pawn Class
HUD Class
PlayerController
Class
PlayerState
Class
GameState
Class
The HUD is the base object for
displaying elements overlaid on
the screen. Every human-
controlled player in the game has
their own instance of
the AHUD class which draws to
their individual Viewport. In the
case of splitscreen multiplayer
games, multiple Viewports share
the same screen, but each HUD
still draws to its own Viewport.
The type, or class, of HUD to use
is specified by the gametype
being used.
27
GameInstance
GameMode
Pawn Class
HUD Class
PlayerController
Class
PlayerState
Class
GameState
Class
The Pawn Class is the base class
of all Actors that can be controlled
by players or AI. A Pawn is the
physical representation of a
player or AI entity within the
world. This not only means that
the Pawn determines what the
player or AI entity looks like
visually, but also how it interacts
with the world in terms of
collisions and other physical
interactions.
The Pawn represents the physical
location, rotation, etc. of a player
or entity within the game. A
Character is a special type of
Pawn that has the ability to walk
around.
28
Base building blocks in the Unreal Engine
29
Actor
Base building blocks in the Unreal Engine
Any object that can be placed into a level
30
Actor
Pawn
Base building blocks in the Unreal Engine
Any object that can be placed into a level
Subclass of Actor and serve as an in-game avatar
31
Actor
Pawn
Character
Base building blocks in the Unreal Engine
Any object that can be placed into a level
Subclass of Actor and serve as an in-game avatar
Subclass of a Pawn that is intended
to be used as a player character
32
Pawn Controller
1-to-1 Relationship
33
CharacterMovementComponent
Pawn
Character
CapsuleComponent
SkeletalMeshComponent
Etc.
Controller
1-to-1 Relationship
34
CharacterMovementComponent
Pawn
Character
Default Pawn
CapsuleComponent
SkeletalMeshComponent
Etc.
SpectatorPawn
DefaultPawnMovementComponent
StaticMeshComponent
CollisionComponent, Etc.
Controller
1-to-1 Relationship
35
CharacterMovementComponent
Pawn
Character
Default Pawn
Wheeled
Vehicle
CapsuleComponent
SkeletalMeshComponent
Etc.
VehicleMovementComponent
SkeletalMeshComponent
PhysicsHandle
Etc.
SpectatorPawn
DefaultPawnMovementComponent
StaticMeshComponent
CollisionComponent, Etc.
Controller
1-to-1 Relationship
Gameplay Framework
Quick Reference Link
Unreal Engine
Best Practices for VR
VR Learning Resources for Unreal Engine:
Docs:
▪ Getting Started With VR
▪ UE4 VR Index Page
▪ VR Best Practices
▪ VR Cheat Sheets
▪ Oculus Quick Starts
▪ GearVR Quick Starts
Video:
▪ Integrating the Oculus Rift into UE4
▪ UE4 Support Stream - Developing for VR
▪ 2015 UE4 - VR and Unreal Engine
▪ Unreal Engine 4 Training Stream: Up and Running with Gear VR
Presentations:
▪ UE4 VR - Niklas Smedberg
▪ Lessons from Integrating the Oculus Rift into UE4
Links:
▪ Getting Started with VR in Unreal Engine 4
38
Things to keep in at the front of your mind:
World Scale
Getting the scale of your world correct is one of the most important things to help deliver the
best user experience possible on VR platforms. Having the wrong scale can lead to all kind of
sensory issues for users and could even result in Simulation Sickness. Objects are most easily
viewed in VR when they are in a range of 0.75 to 3.5 Meters from the player's camera. Inside of
UE4, 1 Unreal Unit (UU) is equal to 1 Centimeter (CM). This means that object's inside of
Unreal are best viewed when they are 75 UU to 350 UU away from the player's camera when
using VR.
39
Distance Distance in Unreal Units(UU)
1 Centimeter 1 Unreal Unit
1 Meter 100 Unreal Units
1 Kilometer 100,000 Unreal Units
Things to keep in at the front of your mind:
World Scale
You can adjust the scale of your world in the World to Meters variable that is located
under World Settings in side of UE4. However exercise caution when adjusting the scale of your
world as again, selecting the wrong scale could lead to a disconnection between the world and
the user which could lead to simulation sickness.
40
Things to keep in at the front of your mind:
VR Character Settings
The setup for a character using a VR headset is slightly different than for a
standard character. Things like character Height, Width, Speed, and Camera
Location all need to be slightly modified to accommodate a VR character.
41
Things to keep in at the front of your mind:
VR Character Settings
Character Height & Width
Character Height & Width should mimic real life measurements as much as possible. Using sizes
that are too big or two small could ruin the emersion that you are trying to achieve.
42
Property UE4 Default Recommended VR
Height: 192 CM 176 CM
Width: 84 CM 68 CM
Things to keep in at the front of your mind:
VR Character Settings
Movement Speed
VR movement speed is a difficult property to recommend a setting for because the movement
speed that you choose will mainly be determined by the type of experience that you are trying
to achieve. In the Elemental VR demo for example, the movement speed was cut to about 1/4
normal speed.
43
Property UE4 Default Recommended VR
Movement Speed: 60 M/S 24 M/S
Things to keep in at the front of your mind:
VR Character Settings
Camera Location
The VR camera needs to be positioned slightly lower than the base eye height to compensate for
being at the characters eye level.
44
Property UE4 Default Recommended VR
Base Eye Height: 180 CM 160 CM
Things to keep in at the front of your mind:
Make sure your project is running at your HMD's target frame
rate before you build or add anything to your world.
45
Things to keep in at the front of your mind:
Check your performance constantly to ensure that you are
hitting your VR performance targets.
46
Things to keep in at the front of your mind:
○ Maintain a very simplistic approach to making your content.
○ Minimize complex shaders as best possible.
○ Add detail to the mesh within reason in lieu of relying of
complex shaders for surface details.
47
Things to keep in at the front of your mind:
LOD's and aggressive culling are a must to ensure that you are
hitting your VR performance targets.
48
Known issues and possible workarounds:
Screen Space Reflections(SSR)
SSR will work in VR but not give you the results that you want and instead you
should look into using reflection probes.
49
Known issues and possible workarounds:
Normal Mapping Issues
When viewing Normal maps on objects in VR, you will notice that they do not have
the impact that they might have once had. This is because normal mapping does
not account for a binocular display or motion parallax. Because of this, Normal
maps will come out looking flat when viewed with a VR device. To get around this,
you can do one of two things.
50
Known issues and possible workarounds:
Parallax Mapping
Parallax mapping takes Normal mapping to the next level by accounting for depth
cues, Normal mapping does not. A Parallax mapping shader can better display
depth information, making objects appear to have more detail than they do. This is
because no matter what angle you look at, a Parallax map will always correct itself
to show you the correct depth information from that view point. The best use of a
Parallax map would be for cobblestone pathways and fine detail on surfaces.
51
Known issues and possible workarounds:
Tessellation Shader Displacement
Tessellation Shader Displacement will displace 3D Geometry in real time by adding
details that are not modeled into the object. Tessellation shaders do a great job of
displaying information because tessellation shaders actually create the missing
detail by creating more vertices and displacing them in 3D Space.
52
New Project Settings:
When creating a new project for VR it is best to create a project that uses the Mobile / Tablet
setting with Scalable 3D or 2D and No Starter Content. If you need content you should port /
import only what you need and not everything you have.
53
Launching VR Preview:
Testing out your VR set is very straightforward, simply select “VR Preview” from the Play
dropdown button. By default the head tracking will work right away without any changes to your
existing project or template.
54
Using VR in Blueprint:
Using VR in Blueprint is very straightforward.
You will need a Camera Component and optionally one or two Motion Controllers Components. By default
your Camera is already set up for HMD support, if you wish to disable rotation changes from the HMD you
can disable “Lock to HMD” in the Component’s properties.
55
Performance Considerations:
For the VR experience to feel smooth, your game needs to run on 75 hz
(Oculus DK2) or even 90 hz. (HTC Vive and Oculus CV1) depending on the
device. To see the current framerate type in “stat fps” or “stat unit” (for
more detailed breakdown) in your console when running the game.
56
GPU Profiling:
To capture a single frame with GPU timings press Ctrl+Shift+, or type in “profilegpu” in the console.
This command dumps accurate timings of the GPU, you will find that certain processes are a heavy
burden on the framerate (Ambient Occlusion is one common example) when using VR.
The GPU Profiling & Performance and Profiling docs are a good place to learn about profiling your
game.
57
Instanced Stereo:
The latest 4.11 release introduces Instanced Stereo Rendering, check the video below for a
comparison video of how that works.
“Basically, we’re utilizing hardware instancing to draw both eyes simultaneously with a single draw
call and pass through the render loop. This cuts down render thread CPU time significantly and also
improves GPU performance. Bullet Train was seeing ~15 – 20% CPU improvement on the render
thread and ~7 – 10% improvement on the GPU.” – Ryan Vance.
58
To enable this feature in
4.11 and above, go to
your Project Settings
and look for “Instanced
Stereo” under the
Rendering category.
Disable Heavy Post-Processors:
Due to the demanding requirements of VR many of the advanced Post Processing features that you normally
use should be disabled. To accomplish this you will need to do the following in your level.
• Add a Post Process(PP) volume to your level if there is not already one there.
• Select the PP volume and in the Post Process Volume section enable the Unbound option so that the settings in the PP
volume will be applied to the entire level.
• Expand the Settings of the Post Process Volume and then go through each section and disable any active PP settings by
enabling that property by clicking on it and then set the value from the default, usually 1.0, to 0 to disable the feature.
• When doing this you will not need to hit every section and set all the properties to 0. Instead first disable the really
heavy hitting features like Lens Flares, Screen Space reflections, Temporal AA, SSAO, and anything else that might
have an impact on performance.
• While a lot of the features are disabled by setting things in your .INI this ensures that nothing will happen to performance if
someone deletes the .INI by mistake.
59
Static, Stationary and Dynamic Lighting:
You should always use Static lighting and lightmaps when making a VR project as this
is the cheapest option to render. If you need to use dynamic lighting make sure to
limit the amount of dynamic lights to as few as possible and make sure that they
never touch one another. If you have an outdoor scene set your directional light to
dynamic instead of stationary and then turn on Cascading Shadow Maps and set then
adjust the settings to be as low as possible while still giving you shadows. This is going
to take a lot of trial and error to get correct.
60
Fake shadows if you can:
Using things like fake blob shadow drop to simulate dynamic shadows are a good
general rule in order to keep VR project running at frame.
61
Blob shadow example. Image by Eric Chadwick
VFX in VR:
Some VFX techniques like using SubUV Textures to simulate fire or smoke
do not hold up well when viewed in VR. In many cases it can be more
desirable to use static meshes emitters instead of 2D sprite particles to
simulate VFX's like explosions or smoke trails. Near field effects, or effects
that happen very close to the camera can work well in VR but only when the
effects are made up of Static Meshes particles.
62
Ad

Recommended

PDF
Unreal Engine 4 Introduction
Sperasoft
 
PPTX
Game development
RareCoders
 
PDF
Introduction to Game Development
Reggie Niccolo Santos
 
PDF
非同期ロード画面 Asynchronous Loading Screen
エピック・ゲームズ・ジャパン Epic Games Japan
 
PDF
【UE4.25 新機能】ロードの高速化機能「IOStore」について
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
Unreal Open Day 2017 Review of Typical issues
Epic Games China
 
PDF
カリギュラオーバードーズにおけるUE4へのデータ移植の手引き
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
Making VR games and experiences in Unreal Engine
Luis Cataldi
 
PPTX
PRESENTATION ON Game Engine
Diksha Bhargava
 
PDF
Unreal Engine Basics 01 - Game Framework
Nick Pruehs
 
PDF
UE4のモバイル開発におけるコンテンツアップデートの話 - Chunk IDとの激闘編 -
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
最新UE4タイトルでのローカライズ事例 (UE4 Localization Deep Dive)
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
UE4 MultiPlayer Online Deep Dive 基礎編2 -Traveling- (historia様ご講演) #ue4dd
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
[4.20版] UE4におけるLoadingとGCのProfilingと最適化手法
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
Introduction to Game Engine: Concepts & Components
Pouya Pournasir
 
PDF
UE4におけるキャラクタークラス設計
Masahiko Nakamura
 
PPTX
Unreal Engine (For Creating Games) Presentation
Nitin Sharma
 
PPSX
An Introduction To Game development
Ahmed
 
PDF
Introduction to Game Development
iTawy Community
 
PDF
UE4とBlenderでランニングコストを抑えるモダンなワークフロー
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
Intro to Game Development and the Game Industry (She Codes TLV)
Nataly Eliyahu
 
PPTX
Unity - Game Engine
Geeks Anonymes
 
PPTX
Migrating to real time - Learning Unreal Engine 4
Luis Cataldi
 
PDF
Game Engine Overview
Sharad Mitra
 
PPTX
Lightmassの仕組み ~Lightmap編~ (Epic Games Japan: 篠山範明)
エピック・ゲームズ・ジャパン Epic Games Japan
 
PDF
60fpsアクションを実現する秘訣を伝授 解析編
エピック・ゲームズ・ジャパン Epic Games Japan
 
PDF
目指せ脱UE4初心者!?知ってると開発が楽になる便利機能を紹介 - DataAsset, Subsystem, GameplayAbility編 -
historia_Inc
 
PDF
徹底解説!UE4を使ったモバイルゲーム開発におけるコンテンツアップデートの極意!
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
Luis Catald IGDA Sept 2015
Luis Cataldi
 
PPTX
On Ramp to Unreal Engine
Unreal Engine
 

More Related Content

What's hot (20)

PPTX
PRESENTATION ON Game Engine
Diksha Bhargava
 
PDF
Unreal Engine Basics 01 - Game Framework
Nick Pruehs
 
PDF
UE4のモバイル開発におけるコンテンツアップデートの話 - Chunk IDとの激闘編 -
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
最新UE4タイトルでのローカライズ事例 (UE4 Localization Deep Dive)
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
UE4 MultiPlayer Online Deep Dive 基礎編2 -Traveling- (historia様ご講演) #ue4dd
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
[4.20版] UE4におけるLoadingとGCのProfilingと最適化手法
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
Introduction to Game Engine: Concepts & Components
Pouya Pournasir
 
PDF
UE4におけるキャラクタークラス設計
Masahiko Nakamura
 
PPTX
Unreal Engine (For Creating Games) Presentation
Nitin Sharma
 
PPSX
An Introduction To Game development
Ahmed
 
PDF
Introduction to Game Development
iTawy Community
 
PDF
UE4とBlenderでランニングコストを抑えるモダンなワークフロー
エピック・ゲームズ・ジャパン Epic Games Japan
 
PPTX
Intro to Game Development and the Game Industry (She Codes TLV)
Nataly Eliyahu
 
PPTX
Unity - Game Engine
Geeks Anonymes
 
PPTX
Migrating to real time - Learning Unreal Engine 4
Luis Cataldi
 
PDF
Game Engine Overview
Sharad Mitra
 
PPTX
Lightmassの仕組み ~Lightmap編~ (Epic Games Japan: 篠山範明)
エピック・ゲームズ・ジャパン Epic Games Japan
 
PDF
60fpsアクションを実現する秘訣を伝授 解析編
エピック・ゲームズ・ジャパン Epic Games Japan
 
PDF
目指せ脱UE4初心者!?知ってると開発が楽になる便利機能を紹介 - DataAsset, Subsystem, GameplayAbility編 -
historia_Inc
 
PDF
徹底解説!UE4を使ったモバイルゲーム開発におけるコンテンツアップデートの極意!
エピック・ゲームズ・ジャパン Epic Games Japan
 
PRESENTATION ON Game Engine
Diksha Bhargava
 
Unreal Engine Basics 01 - Game Framework
Nick Pruehs
 
UE4のモバイル開発におけるコンテンツアップデートの話 - Chunk IDとの激闘編 -
エピック・ゲームズ・ジャパン Epic Games Japan
 
最新UE4タイトルでのローカライズ事例 (UE4 Localization Deep Dive)
エピック・ゲームズ・ジャパン Epic Games Japan
 
UE4 MultiPlayer Online Deep Dive 基礎編2 -Traveling- (historia様ご講演) #ue4dd
エピック・ゲームズ・ジャパン Epic Games Japan
 
[4.20版] UE4におけるLoadingとGCのProfilingと最適化手法
エピック・ゲームズ・ジャパン Epic Games Japan
 
Introduction to Game Engine: Concepts & Components
Pouya Pournasir
 
UE4におけるキャラクタークラス設計
Masahiko Nakamura
 
Unreal Engine (For Creating Games) Presentation
Nitin Sharma
 
An Introduction To Game development
Ahmed
 
Introduction to Game Development
iTawy Community
 
UE4とBlenderでランニングコストを抑えるモダンなワークフロー
エピック・ゲームズ・ジャパン Epic Games Japan
 
Intro to Game Development and the Game Industry (She Codes TLV)
Nataly Eliyahu
 
Unity - Game Engine
Geeks Anonymes
 
Migrating to real time - Learning Unreal Engine 4
Luis Cataldi
 
Game Engine Overview
Sharad Mitra
 
Lightmassの仕組み ~Lightmap編~ (Epic Games Japan: 篠山範明)
エピック・ゲームズ・ジャパン Epic Games Japan
 
60fpsアクションを実現する秘訣を伝授 解析編
エピック・ゲームズ・ジャパン Epic Games Japan
 
目指せ脱UE4初心者!?知ってると開発が楽になる便利機能を紹介 - DataAsset, Subsystem, GameplayAbility編 -
historia_Inc
 
徹底解説!UE4を使ったモバイルゲーム開発におけるコンテンツアップデートの極意!
エピック・ゲームズ・ジャパン Epic Games Japan
 

Similar to Intro to unreal with framework and vr (20)

PPTX
Luis Catald IGDA Sept 2015
Luis Cataldi
 
PPTX
On Ramp to Unreal Engine
Unreal Engine
 
PPTX
GDC Europe 2014: Unreal Engine 4 for Programmers - Lessons Learned & Things t...
Gerke Max Preussner
 
PPTX
UnrealEngine_4_hackathon
Luis Cataldi
 
PPTX
East Coast DevCon 2014: Game Programming in UE4 - Game Framework & Sample Pro...
Gerke Max Preussner
 
PPTX
Making VR with Unreal Engine Luis Cataldi
Unreal Engine
 
PDF
BYOD: Build Your First VR Experience with Unreal Engine
Michael Sheyahshe
 
PDF
IRJET- Technical Graphic Showcase
IRJET Journal
 
PDF
Unreal Open Day 2017 Unreal Engine Education & Training
Epic Games China
 
PPTX
Making VR Games and Experiences in UE4
Unreal Engine
 
PPTX
West Coast DevCon 2014: Game Programming in UE4 - Game Framework & Sample Pro...
Gerke Max Preussner
 
PDF
Unreal Technology
Mohammed Safwat
 
PPTX
Intro to VR with Unreal Engine
Unreal Engine
 
PPTX
West Coast DevCon 2014: Engine Overview - A Programmers Glimpse at UE4
Gerke Max Preussner
 
PPTX
UNREAL ENGINE.pptx
Jeyaprabufantacy
 
PPTX
Unreal Engine.pptx
SujitShejul1
 
PDF
Introduction to the Unreal Development Kit
Nick Pruehs
 
PDF
Unreal Engine Basics 02 - Unreal Editor
Nick Pruehs
 
PDF
Unreal Engine Basics 06 - Animation, Audio, Visual Effects
Nick Pruehs
 
PPTX
Luis cataldi-siggraph 2015
Luis Cataldi
 
Luis Catald IGDA Sept 2015
Luis Cataldi
 
On Ramp to Unreal Engine
Unreal Engine
 
GDC Europe 2014: Unreal Engine 4 for Programmers - Lessons Learned & Things t...
Gerke Max Preussner
 
UnrealEngine_4_hackathon
Luis Cataldi
 
East Coast DevCon 2014: Game Programming in UE4 - Game Framework & Sample Pro...
Gerke Max Preussner
 
Making VR with Unreal Engine Luis Cataldi
Unreal Engine
 
BYOD: Build Your First VR Experience with Unreal Engine
Michael Sheyahshe
 
IRJET- Technical Graphic Showcase
IRJET Journal
 
Unreal Open Day 2017 Unreal Engine Education & Training
Epic Games China
 
Making VR Games and Experiences in UE4
Unreal Engine
 
West Coast DevCon 2014: Game Programming in UE4 - Game Framework & Sample Pro...
Gerke Max Preussner
 
Unreal Technology
Mohammed Safwat
 
Intro to VR with Unreal Engine
Unreal Engine
 
West Coast DevCon 2014: Engine Overview - A Programmers Glimpse at UE4
Gerke Max Preussner
 
UNREAL ENGINE.pptx
Jeyaprabufantacy
 
Unreal Engine.pptx
SujitShejul1
 
Introduction to the Unreal Development Kit
Nick Pruehs
 
Unreal Engine Basics 02 - Unreal Editor
Nick Pruehs
 
Unreal Engine Basics 06 - Animation, Audio, Visual Effects
Nick Pruehs
 
Luis cataldi-siggraph 2015
Luis Cataldi
 
Ad

Recently uploaded (20)

PDF
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
trjnesjnqg7801
 
PPTX
Pests of Maize: An comprehensive overview.pptx
Arshad Shaikh
 
PPTX
How payment terms are configured in Odoo 18
Celine George
 
PPTX
How to Customize Quotation Layouts in Odoo 18
Celine George
 
PPTX
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
 
PPTX
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
Ultimatewinner0342
 
PPTX
Values Education 10 Quarter 1 Module .pptx
JBPafin
 
PPTX
YSPH VMOC Special Report - Measles Outbreak Southwest US 6-14-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
PPTX
Photo chemistry Power Point Presentation
mprpgcwa2024
 
PDF
VCE Literature Section A Exam Response Guide
jpinnuck
 
PPTX
2025 June Year 9 Presentation: Subject selection.pptx
mansk2
 
PDF
K12 Tableau User Group virtual event June 18, 2025
dogden2
 
PPTX
INDUCTIVE EFFECT slide for first prof pharamacy students
SHABNAM FAIZ
 
PPTX
Q1_TLE 8_Week 1- Day 1 tools and equipment
clairenotado3
 
PPTX
NSUMD_M1 Library Orientation_June 11, 2025.pptx
Julie Sarpy
 
PDF
Learning Styles Inventory for Senior High School Students
Thelma Villaflores
 
PDF
Gladiolous Cultivation practices by AKL.pdf
kushallamichhame
 
PDF
English 3 Quarter 1_LEwithLAS_Week 1.pdf
DeAsisAlyanajaneH
 
PPTX
How to use _name_search() method in Odoo 18
Celine George
 
PPTX
How to use search fetch method in Odoo 18
Celine George
 
Public Health For The 21st Century 1st Edition Judy Orme Jane Powell
trjnesjnqg7801
 
Pests of Maize: An comprehensive overview.pptx
Arshad Shaikh
 
How payment terms are configured in Odoo 18
Celine George
 
How to Customize Quotation Layouts in Odoo 18
Celine George
 
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
 
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
Ultimatewinner0342
 
Values Education 10 Quarter 1 Module .pptx
JBPafin
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 6-14-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Photo chemistry Power Point Presentation
mprpgcwa2024
 
VCE Literature Section A Exam Response Guide
jpinnuck
 
2025 June Year 9 Presentation: Subject selection.pptx
mansk2
 
K12 Tableau User Group virtual event June 18, 2025
dogden2
 
INDUCTIVE EFFECT slide for first prof pharamacy students
SHABNAM FAIZ
 
Q1_TLE 8_Week 1- Day 1 tools and equipment
clairenotado3
 
NSUMD_M1 Library Orientation_June 11, 2025.pptx
Julie Sarpy
 
Learning Styles Inventory for Senior High School Students
Thelma Villaflores
 
Gladiolous Cultivation practices by AKL.pdf
kushallamichhame
 
English 3 Quarter 1_LEwithLAS_Week 1.pdf
DeAsisAlyanajaneH
 
How to use _name_search() method in Odoo 18
Celine George
 
How to use search fetch method in Odoo 18
Celine George
 
Ad

Intro to unreal with framework and vr

  • 1. Intro to Unreal Luis Cataldi – Epic Games, Education Evangelist
  • 2. Unreal Engine For Academic Use
  • 3. Good Things to Know: Unreal Engine (EULA) End User License Agreement - LINK Assets Naming Convention – LINK Unreal Engine 4 Coding Standard – Link Unreal Engine 4 Hardware & Software Specifications – Link Downloading Unreal Engine Source Code – Link Building Unreal Engine from Source – Link Compiling Game Projects - Link 3
  • 5. How UE4 Online Documentation is Structured: Overview Page - Link Quick Start Pages – Link Users Guides - Link How To Pages - Link Reference Pages - Link Samples - Link Tutorials - Link APIs - Link 5
  • 6. UE4’s Online Documentation Improved metadata support Skill level Engine version Sitemap filters Checkpoints 6
  • 7. Unreal Engine Release Notes: Release Notes - Link New Features Performance Improvements Platform Additions Bug Fixes Enhancements Changes 7
  • 8. UE4 For Unity Developers: Unreal Engine 4 For Unity Developers – Link Unreal Engine 4 Terminology – Link Unreal Engine 4 Tools & Editors - Link 8
  • 9. Troubleshooting Guide: Destructible Troubleshooting Guide – LINK Troubleshooting Launcher Problems - Link Lighting Troubleshooting Guide – LINK Mobile Development Troubleshooting Guide – Link Swarm Agent Troubleshooting - Link 9
  • 10. UE4 Skills Video Training Curriculum: Basics – Link Animation – Link Programming - Link Blueprints - Link Virtual Reality – Link Level Editing - Link Unreal Motion Graphics (UMG) – Link More… 10
  • 11. UE4 3rd Party Curriculum: Unreal Engine 4: The Complete Beginner's Course Learn to Code in C++ by Developing Your First Game Complete Introduction to Unreal 4 An Introduction to Creating Realistic Materials in UE4 Master Blueprints in Unreal Engine 4 - Endless Runner Create a Helicopter Game Control System in Unreal Engine 4 Unreal Essential Training 11
  • 13. 13 Game Samples & Free Content In the Learn Tab: ● Content Examples ● The complete A Boy and His Kite ● Open World Demo Collection ● Water Planes ● Matinee environments and characters and content ● Stylized Rendering environments and content ● Realistic Rendering environments and content ● Sun Temple environments and content ● Particle Effects environments and content ● Silly Geo complete game project and content ● Multiplayer Shootout complete game project and content ● Platformer Game complete game project and content ● Swinging Ninja complete game project and content ● Vehicle Game complete game project and content ● Strategy Game complete game project and content ● SciFi Bunk environments and content ● Radial Impact complete game project and content ● And more…
  • 14. 14 The Entire Infiltrator Demo Now Available For Download ○ 900 Textures ○ 468 Materials ○ 637 Static Meshes ○ 20 Skeletal Meshes ○ 69 Sound Wavs ○ 181 Animation These assets are perfect for use in academic projects including: ○ Level design classes building high fidelity gameplay spaces. ○ For high quality environment art and set dressing exercises. ○ For use in game jams and student games. ○ Perfect for dissecting professional caliber AAA UE4 sample content. ○ ...and much more. Total Size: 4 GB Dozens of free complete projects available through the Learn Tab:
  • 15. Dozens of free complete projects available through the Learn Tab: 15 Huge Infinity Blade Collection Now Available For Download Below is a list of specific content included in all the asset packs: ○ 1911 Textures ○ 1051 Materials ○ 1488 Static Meshes ○ 176 Skeletal Meshes ○ 1064 Particles ○ 16 Sound Wavs ○ 9 Sound Cues ○ 6 Blueprints These assets are perfect for use in academic projects including: ○ Level design classes building gameplay spaces for mobile environments. ○ For environment art and mobile set dressing exercises. ○ For use in mobile and traditional game jams. ○ For use in student games. ○ Perfect for dissecting professional caliber mobile UE4 sample content. ○ ...and much more. Compatibility:4.9
  • 16. 16 The Showdown Cinematic VR Experience Now Available For Download Below is a list of specific content included in the download: ○ 450 Textures ○ 189 Materials ○ 161 Static Meshes ○ 5 Skeletal Meshes ○ 19 Effects These assets are perfect for use in academic projects including: ○ VR design classes building playable spaces. ○ For VR environment art and set dressing exercises. ○ For use in VR jams. ○ For student VR games. ○ Perfect for dissecting professional caliber UE4 sample VR content. ○ ...and much more. Total Size: 2.8 GB Dozens of free complete projects available through the Learn Tab:
  • 17. Working with AnswerHUB - Link There are 15 full time Epic technicians working to help folks on AnswerHUB at all times, but it's important for people asking questions to AnswerHUB to do the few things listed below. USE THE SEARCH FIRST! o There is a strong chance someone has run into similar or the same issue before. Categories the issue o Is it a BUG? o Is it a problem with C++? o Is it a problem with Blueprints? o Is it a Rendering issue? o Etc... Good submission make AnswerHUB work o Provide screenshots of the issue. People are visual. o List steps to reproduce the issue. o Take the time to be clear and explain carefully. o Use examples of what you wish to achieve (based on known games when possible) AnswerHUB is community driven. Help and you will be helped. o Unreal Engine is open-source software driven by the community. o By being active in the community, your credibility grows as a developer. o More people help those who help others. o Become active in the community and build Karma Points in AnswerHUB. 17
  • 18. The Learn Tab: The place to go for help. 18 Better than Google because: It searches all of Epic Documentation It searches the Community Wiki It searches AnswerHUB …provides you better answers. ** it is actually a Google gadget. ☻
  • 19. The Unreal Engine Framework
  • 21. 21 The GameInstance is a class who’s state persists switching of levels, game modes, pawns etc. Where classes like GameMode or PlayerController are being reset and data stored in those classes is removed. Any data that you want to keep beyond levels and matches, for example "what player did in specific moment so you can have consequence on other level" should be placed in the GameInstance. GameInstance GameMode Pawn Class HUD Class PlayerController Class PlayerState Class GameState Class
  • 22. 22 The GameMode is the definition of the game, including things like the game rules and win conditions. It only exists on the server. It typically should not have much data that changes during play, and it definitely should not have transient data that clients need to know about. GameInstance GameMode Pawn Class HUD Class PlayerController Class PlayerState Class GameState Class
  • 23. 23 The GameState contains the state of the game, which could include things like the list of connected players, the score, where the pieces are in a chess game, or the list of what missions you have completed in an open world game. The GameState exists on the server and all clients and can replicate freely to keep all machines up to date. GameInstance GameMode Pawn Class HUD Class PlayerController Class PlayerState Class GameState Class
  • 24. 24 A PlayerState is the state of a participant in the game, such as a human player or a bot that is simulating a player. Non-player AI that exists as part of the game would not have a PlayerState. Example data that would be appropriate in a PlayerState include player name, score, in- match level for something like a MOBA, or whether the player is currently carrying the flag in a CTF game. PlayerStates for all players exist on all machines (unlike PlayerControllers) and can replicate freely to keep things in sync. GameInstance GameMode Pawn Class HUD Class PlayerController Class PlayerState Class GameState Class
  • 25. 25 A PlayerController is the interface between the Pawn and the human player controlling it. The PlayerController decides what to do and then issues commands to the Pawn (e.g. "start crouching", "jump"). In some cases, putting input handling or other functionality into the PlayerController is necessary. The PlayerController persists throughout the game, while the Pawn can be transient. For example, in deathmatch style gameplay, you may die and respawn, so you would get a new Pawn but your PlayerController would be the same. In this example, if you kept your score on your Pawn, the score would reset, but if you kept your score on your PlayerController, it would not. GameInstance GameMode Pawn Class HUD Class PlayerController Class PlayerState Class GameState Class
  • 26. 26 GameInstance GameMode Pawn Class HUD Class PlayerController Class PlayerState Class GameState Class The HUD is the base object for displaying elements overlaid on the screen. Every human- controlled player in the game has their own instance of the AHUD class which draws to their individual Viewport. In the case of splitscreen multiplayer games, multiple Viewports share the same screen, but each HUD still draws to its own Viewport. The type, or class, of HUD to use is specified by the gametype being used.
  • 27. 27 GameInstance GameMode Pawn Class HUD Class PlayerController Class PlayerState Class GameState Class The Pawn Class is the base class of all Actors that can be controlled by players or AI. A Pawn is the physical representation of a player or AI entity within the world. This not only means that the Pawn determines what the player or AI entity looks like visually, but also how it interacts with the world in terms of collisions and other physical interactions. The Pawn represents the physical location, rotation, etc. of a player or entity within the game. A Character is a special type of Pawn that has the ability to walk around.
  • 28. 28 Base building blocks in the Unreal Engine
  • 29. 29 Actor Base building blocks in the Unreal Engine Any object that can be placed into a level
  • 30. 30 Actor Pawn Base building blocks in the Unreal Engine Any object that can be placed into a level Subclass of Actor and serve as an in-game avatar
  • 31. 31 Actor Pawn Character Base building blocks in the Unreal Engine Any object that can be placed into a level Subclass of Actor and serve as an in-game avatar Subclass of a Pawn that is intended to be used as a player character
  • 38. VR Learning Resources for Unreal Engine: Docs: ▪ Getting Started With VR ▪ UE4 VR Index Page ▪ VR Best Practices ▪ VR Cheat Sheets ▪ Oculus Quick Starts ▪ GearVR Quick Starts Video: ▪ Integrating the Oculus Rift into UE4 ▪ UE4 Support Stream - Developing for VR ▪ 2015 UE4 - VR and Unreal Engine ▪ Unreal Engine 4 Training Stream: Up and Running with Gear VR Presentations: ▪ UE4 VR - Niklas Smedberg ▪ Lessons from Integrating the Oculus Rift into UE4 Links: ▪ Getting Started with VR in Unreal Engine 4 38
  • 39. Things to keep in at the front of your mind: World Scale Getting the scale of your world correct is one of the most important things to help deliver the best user experience possible on VR platforms. Having the wrong scale can lead to all kind of sensory issues for users and could even result in Simulation Sickness. Objects are most easily viewed in VR when they are in a range of 0.75 to 3.5 Meters from the player's camera. Inside of UE4, 1 Unreal Unit (UU) is equal to 1 Centimeter (CM). This means that object's inside of Unreal are best viewed when they are 75 UU to 350 UU away from the player's camera when using VR. 39 Distance Distance in Unreal Units(UU) 1 Centimeter 1 Unreal Unit 1 Meter 100 Unreal Units 1 Kilometer 100,000 Unreal Units
  • 40. Things to keep in at the front of your mind: World Scale You can adjust the scale of your world in the World to Meters variable that is located under World Settings in side of UE4. However exercise caution when adjusting the scale of your world as again, selecting the wrong scale could lead to a disconnection between the world and the user which could lead to simulation sickness. 40
  • 41. Things to keep in at the front of your mind: VR Character Settings The setup for a character using a VR headset is slightly different than for a standard character. Things like character Height, Width, Speed, and Camera Location all need to be slightly modified to accommodate a VR character. 41
  • 42. Things to keep in at the front of your mind: VR Character Settings Character Height & Width Character Height & Width should mimic real life measurements as much as possible. Using sizes that are too big or two small could ruin the emersion that you are trying to achieve. 42 Property UE4 Default Recommended VR Height: 192 CM 176 CM Width: 84 CM 68 CM
  • 43. Things to keep in at the front of your mind: VR Character Settings Movement Speed VR movement speed is a difficult property to recommend a setting for because the movement speed that you choose will mainly be determined by the type of experience that you are trying to achieve. In the Elemental VR demo for example, the movement speed was cut to about 1/4 normal speed. 43 Property UE4 Default Recommended VR Movement Speed: 60 M/S 24 M/S
  • 44. Things to keep in at the front of your mind: VR Character Settings Camera Location The VR camera needs to be positioned slightly lower than the base eye height to compensate for being at the characters eye level. 44 Property UE4 Default Recommended VR Base Eye Height: 180 CM 160 CM
  • 45. Things to keep in at the front of your mind: Make sure your project is running at your HMD's target frame rate before you build or add anything to your world. 45
  • 46. Things to keep in at the front of your mind: Check your performance constantly to ensure that you are hitting your VR performance targets. 46
  • 47. Things to keep in at the front of your mind: ○ Maintain a very simplistic approach to making your content. ○ Minimize complex shaders as best possible. ○ Add detail to the mesh within reason in lieu of relying of complex shaders for surface details. 47
  • 48. Things to keep in at the front of your mind: LOD's and aggressive culling are a must to ensure that you are hitting your VR performance targets. 48
  • 49. Known issues and possible workarounds: Screen Space Reflections(SSR) SSR will work in VR but not give you the results that you want and instead you should look into using reflection probes. 49
  • 50. Known issues and possible workarounds: Normal Mapping Issues When viewing Normal maps on objects in VR, you will notice that they do not have the impact that they might have once had. This is because normal mapping does not account for a binocular display or motion parallax. Because of this, Normal maps will come out looking flat when viewed with a VR device. To get around this, you can do one of two things. 50
  • 51. Known issues and possible workarounds: Parallax Mapping Parallax mapping takes Normal mapping to the next level by accounting for depth cues, Normal mapping does not. A Parallax mapping shader can better display depth information, making objects appear to have more detail than they do. This is because no matter what angle you look at, a Parallax map will always correct itself to show you the correct depth information from that view point. The best use of a Parallax map would be for cobblestone pathways and fine detail on surfaces. 51
  • 52. Known issues and possible workarounds: Tessellation Shader Displacement Tessellation Shader Displacement will displace 3D Geometry in real time by adding details that are not modeled into the object. Tessellation shaders do a great job of displaying information because tessellation shaders actually create the missing detail by creating more vertices and displacing them in 3D Space. 52
  • 53. New Project Settings: When creating a new project for VR it is best to create a project that uses the Mobile / Tablet setting with Scalable 3D or 2D and No Starter Content. If you need content you should port / import only what you need and not everything you have. 53
  • 54. Launching VR Preview: Testing out your VR set is very straightforward, simply select “VR Preview” from the Play dropdown button. By default the head tracking will work right away without any changes to your existing project or template. 54
  • 55. Using VR in Blueprint: Using VR in Blueprint is very straightforward. You will need a Camera Component and optionally one or two Motion Controllers Components. By default your Camera is already set up for HMD support, if you wish to disable rotation changes from the HMD you can disable “Lock to HMD” in the Component’s properties. 55
  • 56. Performance Considerations: For the VR experience to feel smooth, your game needs to run on 75 hz (Oculus DK2) or even 90 hz. (HTC Vive and Oculus CV1) depending on the device. To see the current framerate type in “stat fps” or “stat unit” (for more detailed breakdown) in your console when running the game. 56
  • 57. GPU Profiling: To capture a single frame with GPU timings press Ctrl+Shift+, or type in “profilegpu” in the console. This command dumps accurate timings of the GPU, you will find that certain processes are a heavy burden on the framerate (Ambient Occlusion is one common example) when using VR. The GPU Profiling & Performance and Profiling docs are a good place to learn about profiling your game. 57
  • 58. Instanced Stereo: The latest 4.11 release introduces Instanced Stereo Rendering, check the video below for a comparison video of how that works. “Basically, we’re utilizing hardware instancing to draw both eyes simultaneously with a single draw call and pass through the render loop. This cuts down render thread CPU time significantly and also improves GPU performance. Bullet Train was seeing ~15 – 20% CPU improvement on the render thread and ~7 – 10% improvement on the GPU.” – Ryan Vance. 58 To enable this feature in 4.11 and above, go to your Project Settings and look for “Instanced Stereo” under the Rendering category.
  • 59. Disable Heavy Post-Processors: Due to the demanding requirements of VR many of the advanced Post Processing features that you normally use should be disabled. To accomplish this you will need to do the following in your level. • Add a Post Process(PP) volume to your level if there is not already one there. • Select the PP volume and in the Post Process Volume section enable the Unbound option so that the settings in the PP volume will be applied to the entire level. • Expand the Settings of the Post Process Volume and then go through each section and disable any active PP settings by enabling that property by clicking on it and then set the value from the default, usually 1.0, to 0 to disable the feature. • When doing this you will not need to hit every section and set all the properties to 0. Instead first disable the really heavy hitting features like Lens Flares, Screen Space reflections, Temporal AA, SSAO, and anything else that might have an impact on performance. • While a lot of the features are disabled by setting things in your .INI this ensures that nothing will happen to performance if someone deletes the .INI by mistake. 59
  • 60. Static, Stationary and Dynamic Lighting: You should always use Static lighting and lightmaps when making a VR project as this is the cheapest option to render. If you need to use dynamic lighting make sure to limit the amount of dynamic lights to as few as possible and make sure that they never touch one another. If you have an outdoor scene set your directional light to dynamic instead of stationary and then turn on Cascading Shadow Maps and set then adjust the settings to be as low as possible while still giving you shadows. This is going to take a lot of trial and error to get correct. 60
  • 61. Fake shadows if you can: Using things like fake blob shadow drop to simulate dynamic shadows are a good general rule in order to keep VR project running at frame. 61 Blob shadow example. Image by Eric Chadwick
  • 62. VFX in VR: Some VFX techniques like using SubUV Textures to simulate fire or smoke do not hold up well when viewed in VR. In many cases it can be more desirable to use static meshes emitters instead of 2D sprite particles to simulate VFX's like explosions or smoke trails. Near field effects, or effects that happen very close to the camera can work well in VR but only when the effects are made up of Static Meshes particles. 62