How to create a flickering light with a Light Function in Unreal Engine

I’ve been tinkering with a flickering light effect. While it is possible to animate the intensity with Blueprint code directly, there’s an easier way that lets us use the intensity as an override and make the light flicker without futzing with variables. The solution is a Light Function. To create one, let’s make a new …

Read more

How to fix “spatilally loaded Actor references non-spatilally loaded actor” in Unreal Engine

I had this warning in Unreal Engine 5.3 recently when opening a level and didn’t quite know what to make of it: “Spatially loaded actor references a non-spatially loaded actor”. Everything seemed to be working fine, and since it wasn’t an error as such, I didn’t worry too much about it. Curious about what this …

Read more

How to export cameras from Unreal Engine

The other day I needed to make some geometric changes to an object in Blender that relied on my object looking handsome when viewed through a specific camera in Unreal Engine. Hence the best way to work was to export the camera I had setup in UE, and it wasn’t obvious how to do that. …

Read more