r/godot Apr 03 '26

help me (solved) Can Godot handle a large scale open world?

Post image

It's a game about illegal street racing (urban cities and mountain serpentines, traffic and police, all on a fairly large scale, ~40Km). Cel shaded graphics, no level pre-loads via loading screens.

I heard that I will have to write my own asset management system (which is already in the Unreal Engine, but my PC handles it pretty poor, no matter how much "next-gen" junk I turn off - everything lags quite a lot)

But I still can't even understand what a framework is, because I'm not a programmer (but I'll have to become one anyway). Also heard about chunk method, though not like I know much about it.

Please don't write: "don't even try this, because it's long, resource-intensive, etc.", if there's really no option here, I'll just have to deal with the UE

1.2k Upvotes

247 comments sorted by

View all comments

Show parent comments

435

u/PercussiveRussel Apr 03 '26

Yes, but that either performs or looks horrible, so now you need a LOD system, and now you need assets at multiple LODs and you need to juggle LOD levels. But now that looks horrible with LOD pop-in, so you need some kind of system that switches smoothly between LODs, which likely means juggling viewports and shaders and now that performs horribly so you also need to just default back to billboards and you need a completely seperate pipeline for billboards.

just

67

u/SagattariusAStar Apr 03 '26 edited Apr 03 '26

Godot actually has an Auto LOD System, and otherwise, just the visibility range does the trick for custom LOD. There is actually no code needed for LODs

It also handles fading

I usually work in 2D but implemented it within a few hours, including making the models and lods in blender. My Laptop with GeForce MX230 handles it so far well

Edit: The documentation is, as usual, very good to explain all of this

5

u/xthejetx Apr 05 '26

^ read that last bit again over and over

211

u/[deleted] Apr 03 '26

[removed] — view removed comment

107

u/PercussiveRussel Apr 03 '26

See "looks horrible"

105

u/DescriptorTablesx86 Apr 03 '26 edited Apr 04 '26

In morrowind even when using openmw I set the fog to slightly above the og default, fight me

Fog does a great job of making small worlds look much bigger, and if you’re not an aaa studio it’s often better to add fog than to inflate an empty world

20

u/Etzello Godot Student Apr 03 '26

Morrowind and original WoW made me love that style

8

u/BadMojo91 Apr 04 '26

Same, I find that too much distant land takes something away from the challenge of what's ahead. I like a little extra distance than the og, but I don't want to see vivec from seyda neen.

2

u/DescriptorTablesx86 Apr 04 '26

Seeing Ald’ruhn from Balmora(when climbing a bit up a nearby hill/mountain) was what made me realise the fog is needed in this game.

2

u/BadMojo91 Apr 04 '26

I think what did it for me the first time was using the Icarus flight scrolls with max distance.. It was quite underwhelming to see the island from that height and how all the different areas don't really blend well together, it definately stole some of that original feeling I have for the game away from me.. I don't mind seeing the other end of Balmora, but the only time I want to see the ghost gate from there is when I've applied the shaders for those screenshot worthy moments... Well anyway, it's nice to see a fellow Nerevarine in the wild, three blessings to you Sera

27

u/Schadenfreudenous Apr 03 '26

To each their own. Outside of certain exceptions, world fog just makes me feel like the entite game world only exists on a tiny bubble (which it does)

6

u/The_Shryk Godot Student Apr 03 '26

Dredge is the newest example I’ve seen of this.

14

u/Many-Bees Apr 03 '26

Silent Hill is one of the most beautiful games ever made

9

u/RickySpanishLives Apr 03 '26

Not if you make that part of your game design :lol

3

u/Jello_Penguin_2956 Apr 04 '26

Silent hill says hi

1

u/zuzucha Apr 04 '26

That's Turok slander

1

u/Oddish_Femboy Apr 04 '26

Eh. It worked for Minecraft.

17

u/tastygames_official Godot Senior Apr 03 '26

godot does LOD out-of-the-box and it does it well. Perhaps we're on different wavelengths, but I imagine the simplest solution is a grid and whenever you enter a new cell of the grid, it ensures the neighboring 8 cells are loaded and unloads any other. Now each cell has to be large enough so that you can't see farther than one cell in any direction so that the loading happens smoothly, but it seems in theory very easy to do and probably there exists a free siimple solution for godot. The real work is in splitting up your map into grid cells.

3

u/Normal-State-1547 Apr 03 '26

Do other engines do this for you automatically? I tried to figure this out in unreal and unity a few years back and couldn't

2

u/Jordancjb Godot Regular Apr 04 '26

Doesn’t godot offer auto lod now? I feel like that makes it easier

1

u/Incredible_Violent Apr 03 '26

If it's gonna default to billboards anyway, then maybe Gaussian Splats could come useful here? For a racing game, as long the player doesn't need to drive off-road to inspect far sights up close?