Something Dungeons: Work In Progress!

in #gaming4 years ago

For anyone who's interested... I'm still working on my game. Things are just getting a bit tricky currently because of some major changes to the dungeon architecture.

Instead of randomly generating a few rectangular rooms I want to design the levels myself.

Before, rooms looked like this:
image.png

Pretty boring... Rooms are just rectangular, mostly empty and you can see only one room at a time.

Now a dungeon can look like this:

image.png

Much more interesting but also more complicated. Before the lights were simply deactivated if you are not in the same room. Since there aren't necessarily clearly separated rooms anymore, the lighting system needs to be more dynamic. That's why I am currently experimenting with raycasting.

raycasting.gif

As it turns out... it's not as simply as I thought. For example... I have wall colliders:

image.png

My first idea was: Hey.... why not just use the wall colliders for raycasting? Well... here's why that won't work:

image.png

So I need separate "light colliders":

image.png

But that also doesn't behave exactly as I want it to:

image.png

So... that's why there hasn't been any updates recently. I'm desperately trying to make this work in an at least "good enough" form.