When to use what type of lights?

I am wondering when you should use static, stationary or moving lights.

Somebody on Steam told me to always use moving lights and disable the shadows which you don’t need because this is better for performance.

But I want to know the official way of using lights in your game, what is the best way and when to use what?

Moving lights can be moved in game perfectly without problems but if you put too many in the game will run badly, the other 2 doesn’t make the game run slowly but they don’t work good if they move in the game

Movable lights–you need to move or rotate the light during the game, and you need the light to cast dynamic shadows, this gives the worst performance, ideally you only have your directional light as movable
Stationary Lights–you need to animate the color or intensity of the light, and the light needs to affect dynamic objects, but the light itself is not moving or rotating, can only have 4 lights overlapping an area
Static lights–the light is not being animated in any way and does not need to affect any dynamic objects, you can use as many of these as you want it will only increase lighting build time but will have good real time performance

Use stationary lights for most stuff unless you really need fully dynamic lighting. Stationary produces best direct and indirect lighting.

The problem I am having is the a known issue:

The only way to fix this is either crank some light settings really high which messes other things up or use movable lights.

When I use movable lights it looks like this:


When building it with static or stationary lighting it looks like this:


As you can see the bottom image has a line going straight through the center and thus I can’t build anything modular if I have to use static or stationary lighting.

This is normal. This happens with most engines that bake lighting, it’s just something that can’t be avoided. What we devs do is build environments around these limitations. For example, in your case, I would make that wall one single mesh that shares a lightmap across the surface that will be on the golden path of your game. Another thing we will do, among others, is to create some sort of natural separation at that point, for example maybe there’s a pipe that goes down the wall at that point or maybe some facade detail, different texture at intersection point, decal, anything.
This is happening because the light is baking data into a texture, called a lightmap and it’s perfectly normal.

But it is very annoying because not every wall needs a pipe or something across or it may look unnatural.

There’s so much you can do to cover up the limitations. Just try to think creatively.

Then create a single large piece that doesn’t have seams so that there is one continuous lightmap across the mesh. This is almost like asking “why can’t I make a game with characters that are each 10 million triangles”; game engines have come a long way, but they’re still game engines and have limitations. One of the least talked about skills of the modern game developer, is solving problems like these and coming up with creative solutions to get around these limitations.

Thanks.

I will try and see what works best.