Unreal Engine Archives

Articles about Unreal Engine 4 and 5

Changing the UV Tiling on a Material in Unreal Engine

Sometimes you have a tiled material on an object, and the UV tiling isn’t exposed. This means some manual intervention, which had me stumped in Unreal Engine, and here’s how I’ve solved it. On the material, each texture needs a Texture Coordinate node in the UV input for tiling to be changeable. If nothing is …

Read more

Displaying an Image Sequence on a Plane in Unreal Engine

Most 3D apps have a concept of 2D planes that can show pre-rendered images and videos. They’re often called billboards, splats or simply image planes, they usually involve transparency and they’re a great way to conserve some rendering power. The principle is used with LODs as well, where usually the lowest LOD is a flat …

Read more

Materials vs Material Instances in Unreal Engine

When we change a parameter directly on Material in Unreal Engine, you’ll notice that it takes a while for us to preview the effect. That’s because under the hood, UE has to compile our materials before they can be rendered, which is computationally expensive and creatively annoying. Thankfully EPIC have thought of a snazzy solution …

Read more

Using the level’s Post Process Volume while rendering a camera in Unreal Engine

When you tweak effects through a global Post Process volume in Unreal Engine, and then render out one or multiple cameras, you may notice that the effects can look different in the render than they do when previewing or playing the project. That’s because Unreal Engine can coordinate work with multiple Post Process volumes, but …

Read more

Making things float on water in Unreal Engine 5.1 and 5.2

I’ve seen a couple of good tutorials about how to make things float with the experimental built-in water plugin that came with Unreal Engine 5. Sadly these tips didn’t work in Unreal Engine 5.1 and 5.2 due to a bug that doesn’t install the relevant collision profile on the water body. This causes the floating …

Read more

Creating HDRIs with Unreal Engine

Unreal Engine has a super easy way to render spherical cameras, whose outputs can be used as HDRIs in other applications, or even Unreal Engine itself. This is a great way to make use of the many EPIC freebies we’ve been collecting over the years, without having to know all that much about Unreal Engine …

Read more

How to remove the Streaming Pool warning in Unreal Engine

Do you ever get tired of Unreal Engine screaming at you about the Texture Streaming Pool being over budget? I don’t even know what it means or why it doesn’t solve this automatically. Usually I just ignore it, or type DisableAllScreenMessages in the console and move on with my day. Thankfully there is a fix …

Read more

How to package Unreal Engine 5 Projects for Distribution

UE5 has changed some of the menu options that let us package a project for distribution. In UE4 we could find these options under the File Menu, but they’re gone. We now have a brand new entry under the Platforms button at the top. Under Binary Configuration we can now conveniently pick shipping, debug or …

Read more

Using a Save Game object in Unreal Engine

Storing values between game sessions can be done with the Save Game object in Unreal Engine. Much like with other objects, we create a custom subclass of it, give it variables that we want it to remember, then populate those before the game ends (and retrieve from it when our game begins). Let me show …

Read more

How to get a reference to your Character’s Animation Blueprint in Unreal Engine

Sometimes it’s the simple things that catch you out, like quick references. Say you wanted to access a property on your animation blueprint for something you’re doing in your player character. I couldn’t remember how to do this, so I thought I’d best make a note of it. Here’s how we can do that: This …

Read more

Playing a random Death Animation in Unreal Engine

When a character dies, we can play a death animation either as a montage, or via the animation blueprint. In this quick tip I’ll explain the latter principle. We typically have a boolean (like “is dead”) that checks if the character has died, and it’s true, we’ll transition to a new state in our state …

Read more

How to make something fly away on spawn in Unreal Engine

I’ve been dissecting an old project of mine and couldn’t remember how the projectiles I was shooting happened to magically fly away when they were spawned. They seemed to have an initial velocity or inertia in the forward direction, yet nothing in my Blueprint was causing this. Then I figured it out: we had added …

Read more

Trimming Animation Assets in Unreal Engine

I was trying to implement an Aim Offset the other day and followed a particularly terrible tutorial on the EPIC site that didn’t work out at all. This tends to happen when we try to do something that’s beyond our understanding. One part in particular left me clueless, which is the process of editing animation …

Read more

Making an actor look at another one in Unreal Engine

A few years ago I’ve described how to rotate an actor towards a location with the use of the Lerp node. This thing can interpolate two float values and as such is a very multi-purpose function. I’ve just found out that Unreal Engine has a dedicated “rotation interpolator” node called Rinterp. It takes two rotation …

Read more