Game Development | Using BSP Method For Making A Zone In Unreal Engine 4

avatar
(Edited)

zone 3 cover.png

Finding a decent workflow that works for me is still something I’m trying to develop. There are a bunch of different ways and methods to develop a zone in a timelier manner than how I went about it in my first zone. One attempt at using a possible solution was giving BSP (binary space partitioning) brushes also known as BSP geometry a try.

While it might sound complex from the name at the base foundation it is quite simple. Unreal Engine 4 provides a host of basic shapes that you can manipulate in an attempt to build or demo an area out. I tried both creating a modular shell system which if it worked would solve a lot of long term things down the road for me. I also gave using it to mock out a zone before deleting and replacing it with static meshes one at a time.

Modular Shell Setup

Unreal Engine 4 BSP Hallway.png

While I have plans to create quite a few hand-sculpted zones. In the long term that is not the most viable option if I want hundreds of areas and scale things. Before I start working out how to implement and deploy procedural generation. I’m going need to create quite a solid foundation of shells for it to pull and build from.

One way I was hoping to do this was by creating a bunch of setups using BSP brushes. They would make up different size rooms, hallways, stairs, and anything else that would be needed. I would also be creating parts of zones with them in the meantime to test and make sure there is no sizing, mismatching, or other issues I’ll need to adjust or program safeguards in for.

There is also another benefit I was looking for. That was being able to set a wall thickness that resolved the massive light bleed issue I have in the first zone. Trying to scale the static meshes in such a manner to fix this since they are just one pixel wide has other consequences I’m trying to avoid. The other solution would be doubling up on walls to block light but from a design element, you need to leave enough room for that.

On top of that, I have plans for building hidden walls and areas that will open up. When you are dealing with one pixel in-depth static mesh on their own that presents another issue. The player realizes there no depth at all to such objects, so, you would have to build them out to have depth. Which again using BSP brushes would solve this issue.

Finally, a really cool thing they can do when interacting with other BSP brushes is being additive or subtractive. This means if I need to put a doorway, window or even a hole in the floor I didn’t have to move static mesh around and resize them to fit. I could just plop in a subtractive BSP brush and with the correct order of operation, it would make a hole. Sadly without the BSP part, they don’t behave in the same manner when testing it with static meshes on their own.

Unreal Engine 4 BSP inside Hallway.png

At first glance, this looks great. At second glance, I’m sure you notice how easy it is to realize the repeating patterns for the walls, ceiling, and floor. Since I’m not sliding static meshes into place it is “perfect” without any human error.

Since I would be looking to copy and paste this shell quite a number of times. It’s not a big deal to invest quite a lot of time in trying to resolve it having such a repeated pattern look. I also understand there would need to be other adjustments made over time.

After playing with values, making several attempts, and doing some research. I was no better off than where I started on this front. I could break up the pattern but then you realize a dived between the different sections. I could try and change the size of the pattern that again created other issues I was looking to avoid.

I can just use static meshes and make rooms out of them that I copy and paste. This is in part what I did in my first zone. I, however, wanted a more elegant and sure-fire way of not having mistakes crop up over time if a section was missed or something somehow separated. For now, I need to put more time into this and so I went on to another way of using BSP brushes.

BSP Outlining And Replacing

Unreal Engine 4 BSP room outline.png

Another method I notice quite a few people using is getting the general outline and feel for a level and then going in and replacing it all with static meshes. This would also help resolve some workflow issues I’ve been having with getting distracted. There were however quite a few issues I ran into.

One thing I noticed with the first zone I created was wanting to stay away from anything I had a hard time implementing. This usually involved creating height elevation different from going upstairs or downstairs. They are quite a time consuming to create and get everything pixel perfect. This even more so when dealing with a sloping roof that needs to be manually adjusted till it fits.

Unreal Engine 4 BSP BSP zone outline.png

Since I was just about laying basic outlines knowing I did not need it to be 100%. I ended up challenging myself to have 4 staircases of varying lengths. While you can copy and paste what you have already created it can also get quite messy and require some manual adjusting after the fact.

I also knew to go into it that my BSP brushes were not the exact same size as my meshes. I tried my best of eyeballing it and using some overlay rulers. They, however, were not pixel perfect which means dealing with compounding inaccuracies the further along you go. You can’t just click on an object and see its’ X amount of units in the zone. It’s based off scale that starts at 1, 1, 1.

Unreal Engine 4 outline issues.png

The great thing is my mind did not focus on the 50 things I wanted to do in a room and everything else I got distracted with. The downside is I needed to go back in one at a time and place a static mesh, delete the nearby BSP brushes and then focus on getting everything 100%. As we can see in the screenshot there was a lot of touching up needing to be done just for this small section alone.

Unreal Engine 4 stairways.png

It’s official I hate making stairs. There are so many moving parts that you can’t just snap in place and move on. Lots of having to make micro-adjustments, checking all the angles, and making even more adjustments before you get it right. Even more so when the outline you were making was off enough that some major changes need to be made to make them look decent. They are quite a mess on the outside!

I’ve been slowly trying to work on this much smaller zone than my first zone over the past two weeks a little here or there at a time. It’s hard to say if I ended up saving time going this route or just making way more work for myself. While I enjoyed having using BSP brushes as one step in my workflow. It also added in additional steps and frustration.

Final Thoughts

Unreal Engine 4  zone start.png

It’s hard to say if these past two weeks have been a success or not. I have most of the static wall meshes now in place for another zone. I still need to go in and add a lot more detail and purpose to different areas.

This is just part of making your own game. Things never are as simple or smooth as you want them to be. This was at the very least another attempt to try something new and see how it went. I’m uncertain if I want to attempt trying this method again. Perhaps I just need to invest more time in understanding and researching before giving it another go.

Other Posts:

Information

Screenshots were taken and content was written by @Enjar. Screenshots are from Unreal Engine 4.



0
0
0.000
16 comments
avatar

Liking the castle walls look. Think stairs are hard? Try animating a PC to walk up or down them like a real person would.

Thanks for sharing an inside look, literally.

0
0
0.000
avatar

For the time being I’m going to keep the volume for NavMesh Bounds off the stairs for any AI. I’ve not started to really work on them much outside of some damage testing. Had one that kept trying to get up on a table when going after the player lol.

0
0
0.000
avatar

Hi @enjar

Check out what a close fight we just had :)
https://holybread.io/arenafight/?id=o3v60v628nwy3m4olx1mxwjz7xkq5derg91mnzq

Seriously ... I almost got you there :)

0
0
0.000
avatar

I really need to spend the almost 400k gold I’m sitting on lol.

0
0
0.000
avatar

Hi again @enjar

Can I ask you for little favour? I joined contest called "Community of the week" with project I manage and I would be grateful if you could RESTEEM it and help me get some exposure and drop some encouraging comment :)

Link to my post: on steemit or on steempeak

Thanks :)
Yours, Piotr

0
0
0.000
avatar

I'm not a developer or anything but this is really cool to see. Getting to see an insider look on game development is pretty rare these days, especially for indie things. I haven't seen any of your other posts but I was wondering what type of game this is going to be in the end?

0
0
0.000
avatar

This is a dungeon crawler.

Many don’t want to talk about their experiences of doing something as they don’t feel they are an expert. I myself am definitely not an expert. This project has been a lot of failing and trying to learn from it to move forward.

There is also that fear in-game development of never making it to some kind of release. Many even here on Steem are trying to make their own game. These things have a very high risk of failure and are time-consuming. I can understand why so many don’t want to talk about it until they are closer to release.

I joke my release date is 2030. The reality is that could very well end up being true as it has been for a lot of other game developers out there in the past.

!ENGAGE 25

0
0
0.000
avatar

Not too many games, these days are legit dungeon crawlers. I'll have to keep my eyes open for future posts. I guess I get that. If you make posts or updates about a game you lock yourself into finishing it. I am thankful you are willing to make your progress public.

0
0
0.000
avatar

How awesome! That is way above my head but I am so glad you are getting to dig into it.

0
0
0.000
avatar

Hi @enjar!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your UA account score is currently 5.348 which ranks you at #764 across all Steem accounts.
Your rank has improved 2 places in the last three days (old rank 766).

In our last Algorithmic Curation Round, consisting of 108 contributions, your post is ranked at #42.

Evaluation of your UA score:
  • You've built up a nice network.
  • The readers like your work!
  • Try to work on user engagement: the more people that interact with you via the comments, the higher your UA score!

Feel free to join our @steem-ua Discord server

0
0
0.000