Creating a Beautiful Level in Unity

Calum Slee
4 min readJun 21, 2022

Using the High Definition Rendering Pipeline

With my learning path through the different rendering pipelines complete via the sci fi room, it was time to put the knowledge to the test and create a small office den from scratch. I opted to continue using the High Definition Rendering Pipeline (HDRP) as I really like the use of the extra features such as Decals and Light Cookies. Through the GameDevHQ program and Filebase I was provided with a starting room.

From here, I browsed Filebase to accumulate a range of suitable props, then began populating my room. I particularly wanted to create a sense of clutter and mystery, and achieved this with miscellaneous objects strewn around, cardboard boxes. I also angled the coffee table and rug to show it’s not an immaculately clean space.

With the room full of objects, I could start looking at how I was going to light my scene. First and foremost, light props were needed for realism, a few lamps, some wall sconces and a ceiling light fit the bill. The texture of the ceiling light seemed very worn out, especially with editing the emissive texture, so I decided that this was broken, hence the lampshade in the centre of the room. I also added a fire particle system to the fireplace to later emit light.

With the props in place, the first step for lighting the scene was to create an environment. This room has a few windows, so I wanted a sense of outside light coming in to the room. I created a Post Processing Volume for my sky elements, and crafted a Visual Environment along with an HDRI Sky cubemap from the Asset Store to create a twilight-like sky. I then added a small amount of fog to represent a bit of haze.

With the room slightly illuminated, I needed a main light source. This consisted of a mixed point light in the lampshade, with just enough radius and intensity to touch the edges of the room.

To add realism to this light source, I created a Light Probe Group and set my walls, ceiling, and floor to static, to allow for the light to be baked so the ‘dynamic’ props in the room could receive light data. This meant that my lamp’s illumination was essentially bouncing off the objects in my scene, just as a real light source would. This is especially noticeable on the left hand side of the screenshot below, with the books being more visible than without the light probe active.

In addition to this, I wanted to replicate ‘god rays’ coming in through the window. To achieve this, I blasted a spotlight through the space. But I had added blinds to the window, with shadows enabled, they kind of achieved the right look, but not quite, so I added a Lighting Cookie to further accentuate the light spilling between the blinds.

With my scene illuminated, it was time to enhance this with Post Processing. The main overrides contributing to the scene, are my Bloom and Ambient Occlusion, allowing for much warmer light sources and surrounding shadows, as well as Screen Space Reflections paired with a Reflection Probe to further distribute a bit of light.

I then added extra detail to the scene with a bunch of decals to add wear and tear, using the fade factor to blend them in with elements like the ceiling.

For a finishing touch, I found a free dust particle sprite sheet, and set about crafting a particle system to spread these around the corner of the room near the god rays. It adds a really subtle effect depending on the viewing angle, but helps to make the scene look alive.

It has been super useful learning a bunch of basic functions of the different rendering pipelines. Being able to easily craft beautiful visuals makes for a much better medium to create immersive audio experiences from. While this scene is a bit small, and better suited to still images, I’m looking forward to turning my sci-fi level into a short demo experience in the near future!

--

--