Latest Articles

The navigation at the bottom lets you see older posts

Creating Normal Maps from sculpted details in ZBrush

In this article I’ll show you how to bake out a Normal Map from details that have been sculpted in ZBrush. We’ll use this map to apply the high-res details to an object in Daz Studio for this example, but it will work with any target application. Typically we have a low-ish resolution object that …

Read more

Filed under: Categories 3D Tagged as: Tags

How to use the Transpose Tool in ZBrush 2022

Transpose is an old-skool tool in ZBrush that can be used to pose characters and move parts of objects. It used to be insanely difficult to comprehend (like everything in ZBrush), but when used together with masking, what you can accomplish is quite remarkable. Blender has a similar tool called the Pose Brush, which is …

Read more

Filed under: Categories 3D Tagged as: Tags

How to create Polygroups from Material Zones in ZBrush

This has been puzzling me for a while: how do we tell ZBrush to create Polygroups if we import an OBJ that already has material zones? Turns out the Polygroups menu is not where we need to go to make that change. Instead, head over to Preferences – ImportExport and enable Import Mat as Groups. …

Read more

Filed under: Categories 3D Tagged as: Tags

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

Creating Brush Shortcuts in ZBrush

ZBrush has an overwhelming amount of brushes available, but many are just variations of things artists have created over time. Typically we don’t need to use more than a handful, and as such it might be useful to switch between them faster than using the default key sequences (like BST or BMV). Many users prefer …

Read more

Filed under: Categories 3D Tagged as: Tags

Abdullah’s Ice Cream Shop in the Desert

I’ve just tried ChatGPT for the first time and though I’d share its output with you. The prompt was “write a short story about an ice cream shop in the desert”, and what I got back was beyond my imagination. It simply blew me away, and that’s after a single use. I’ve added a Midjourney …

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

Overriding Animations with Animation Montages in Unreal Engine

Animation Montages can be inserted into running animations when we feel something else needs to happen before the previous animation can continue. A good example is weapon recoil that happens as a result of firing a bullet: rather than switching to a completely different animation, we just cut to the montage for a moment before …

Read more

Setting up a Blend Space in Unreal Engine 5.1

Blend Spaces can mix animations together depending on value input. This can be used when say your game pad input determines how fast your character can walk, so that an idle animation is blended together with a walking forward animation. That way there’s no pop between each animation. Let’s take a look how to setup …

Read more

Sharing UE4 Animations with a UE5 Skeleton

Unreal Engine 5 offers an exciting way to share animations from UE4 skeletons on the new UE5 skeletons. This works by way of a pre-configured IK Rig and Retargeter specifically made for this purpose, and an export option so that we’ll end up with a set of new animations that are ready to be used …

Read more

How to read a live log file from Daz Studio

Like most apps, Daz Studio writes a continuous text output to a log file with any status messages that are generated under the hood. The most obvious of these is the render progress window, as we can see each line update live while the render is happening. We can also read the full log from …

Read more

Formatting Text Objects in Unreal Engine

Text Objects can be formatted with a funky node called Format Text. It’s a very powerful little thing, even though at first glance it certainly doesn’t look like it. When you drag in a value, it is literally passed through without much change. However, if left alone as in the example above, we can use …

Read more

Rounding values up and down in Unreal Engine

When dealing with float values, we’re often less interested in the exact value and can make do with a more human readable one. Unreal Engine has a couple of rounding functions we can use to make this happen: Ceil to Integer and Floor to Integer. Ceil rounds up, so 1.6 becomes 2 and -1.6 becomes …

Read more