Unreal Engine 5.3 - 30kmx30km Tutorial - Open World Landscape Tutorial

  Рет қаралды 7,445

Mootzart Dev

Mootzart Dev

2 ай бұрын

This video demonstrates setting up a large open world landscape for Unreal Engine 5.3 using world partition. This includes avoiding bugs, doing calculations and importing heightmaps. As well as a short demo of the landscape. I use Ultra Dynamic Sky for the quick and amazing lighting setup!
Scale Up Method Calculations:
X,Y Axis: (Desired KM x 100 / HM Res)
30km Calculation Example using 16321x16321:
30,000 x 100 / 16321 = 183.8122664052448
Z Axis: (Height x 100 / 512) or (Height x 100 x 0.001953125)
5000 x 100 x 0.001953125 = 976.5625
or
5000 x 100 / 512 = 976.5625
Links:
Tecastus Channel (dev logs for Zarthia coming soon): @tecastus
Tecastus Public Discord: / discord

Пікірлер: 88
@ReiRoldan
@ReiRoldan 11 күн бұрын
You sir are a legend! I've been fighting my way through all possible resolutions, sizes, scales, options, plugins, everything, and couldn't get past 32 fps. Creating the landscape first, then importing the heightfield solved the issue completely, now hitting a solid 120 FPS, with materials applied, not a single hitch or drop in fps! Running on UE 5.4 (which also has the same issue as previous versions). Many thanks for the video!
@HeroVisualsFX
@HeroVisualsFX 24 күн бұрын
Thank you!
@mootzartdev
@mootzartdev 22 күн бұрын
You're welcome
@Xperiencesounddesign
@Xperiencesounddesign 11 күн бұрын
ive always loved unreal engine and watching tutorials never had the brain capacity to actually learn it.
@robxbledo7589
@robxbledo7589 27 күн бұрын
Ty
@tomerhertz8502
@tomerhertz8502 Ай бұрын
Great tutorial....can you please share the height map ?
@mootzartdev
@mootzartdev Ай бұрын
Thanks! Im afraid i cant share this file as its from a personal game project.
@shaheen06
@shaheen06 Ай бұрын
👍@@mootzartdev
@touristhawk
@touristhawk Ай бұрын
is there any difference importing the heightmap after creating landscape first?
@mootzartdev
@mootzartdev Ай бұрын
Yes. Currently in 5.3 there are lots of import bugs. It might be fine importing from file directly. But it tends to come with lots of VRAM issues. This is likely due to World Partition having to stitch the map together before it creates the proxies.
@FPChris
@FPChris Ай бұрын
2:40 the res it perfect actually. Once you apply auto material, displacement, and the rest of it.
@mootzartdev
@mootzartdev Ай бұрын
I agree. Although this is actually the more realistic limit we can get away with at the moment i guess haha
@CruelCrusader90
@CruelCrusader90 18 күн бұрын
wouldn't changing the scale value after generating the landscape be less impactful on the computing?
@mootzartdev
@mootzartdev 18 күн бұрын
Yes it could be. It would depend on what your PC can handle
@CommanderColson
@CommanderColson Ай бұрын
Great tutorial. How does this work with landscape tessellation? A key feature with UE5.3 (further established in the upcoming UE5.4) is applying material tessellation directly on to landscapes, but considering you are literally scaling up the landscape proxies, wouldn't this mess with materials and potentially break the potential for landscape tessellation? For instance, if I wanted to use this method to make some ridiculously large sized open world (think the map from Ubisoft's The Crew), would I still be able to utilize landscape tessellation/nanite for all that extra detail?
@mootzartdev
@mootzartdev Ай бұрын
In theory it shouldn't matter. Displacement should be relative to how the material is tiled. Not the size of the 'object' it is on top of. But I will have to try it and see. I have a few videos to do first.
@michaelhampton645
@michaelhampton645 28 күн бұрын
Enabling landscape nanite is limited to slightly over 8 Sq kilometers. Anything higher crashes unreal engine. And it will use every bit of 128gbs of system ram just to turn an 8 Sq kilometer map into nanite. Plus nanite displacement is not compatible with large landscapes in 5.3, fingers crossed with 5.4 it will work with larger landscapes.
@CommanderColson
@CommanderColson 28 күн бұрын
@@michaelhampton645 Oh wow thanks for the update! I agree, hopefully it receives more support in the future. I'm inclined to say it probably will considering how all out they are pursing nanite
@mootzartdev
@mootzartdev 28 күн бұрын
@@michaelhampton645 Spot on. This is why im kinda waiting for full 5.4 before doing more in depth tutorials on these subjects.
@FPChris
@FPChris 13 күн бұрын
@@michaelhampton6455.4 is out any tests done?
@shaheen06
@shaheen06 Ай бұрын
@mootzartdev one question .about my pc. ryz 5 5600x with 16gb 3600mhz and rtx 3060. these softwares runs but will i be able to make large landscapes with my pc
@mootzartdev
@mootzartdev Ай бұрын
I would say it is certainly possible. But you would have to be very strict with yourself with the amount of things you do at once. For example, I would not recommend having the entire landscape loaded at once for certain size environments. As this is the type of thing that will currently max our your gpu and cause crashes.
@shaheen06
@shaheen06 Ай бұрын
@@mootzartdev i was currently doing this tutorial. It said out of memory🥲.
@shaheen06
@shaheen06 Ай бұрын
@@mootzartdev ok ill try a different approch.
@real2late
@real2late Ай бұрын
Btw you can also just paste the entire calculation into the ue field and it will calculate it as well
@mootzartdev
@mootzartdev Ай бұрын
Thank you for sharing. I was aware of that. But I prefer to give others the ability to understand what they are doing.
@fletchmane6075
@fletchmane6075 Ай бұрын
how did you get the image of you're height map to be 16k? were you using Gaea?
@mootzartdev
@mootzartdev Ай бұрын
Indeed. I exported a Gaea height map at 16k. Then simply changed its scale inside of G.I.M.P (or can use Photoshop) to 16321x16321. But you can use lower resolution heightmaps if you want to. But might not get the detail you want if you are scaling up to very extreme scales. And of course the import settings may require some adjustments to what is shown here.
@lolaswift111
@lolaswift111 22 күн бұрын
how do we handle spawning and despawning npcs, AIs and other game objects in this setup? thx
@mootzartdev
@mootzartdev 22 күн бұрын
Well this is purely a method for setting up a large landscape. NPC and AI is a entire new area really. I would check out some other channels currently as i do not really have a plan for those types of videos at the moment sadly. But its worth noting that NPC/AI related stuff is a very large topic. Depending on what you want them to do of course. There are lots of 'systems' on the Epic Marketplace though that might be of help to get you going, and you can perhaps learn from them. A quick google search shows this system as a example that is currently on offer. www.unrealengine.com/marketplace/en-US/product/ai-behavior-system?sessionInvalidated=true
@amerboss99
@amerboss99 Ай бұрын
when i try to to change number of components it keeps going back to maximum resolution which is 8k
@GamesStudio313
@GamesStudio313 13 күн бұрын
Nice, what kind of graphics card, CPU and RAM do you have?
@mootzartdev
@mootzartdev 13 күн бұрын
I have a RTX 4090, 128gb RAM and a very high spec cpu. So it does make things a lot easier for me at the moment.
@jacobmartinelli7496
@jacobmartinelli7496 13 күн бұрын
currently anything over 4000 resolution causes gpu crashes bug on asus rog ally z1 extreme. would love to start developing my game good upload thanks for the tips!
@mootzartdev
@mootzartdev 13 күн бұрын
Yeah for large environments with high res, you generally have to do it in chunks or have a machine that can handle it Vram and ram wise.
@BlueSucho
@BlueSucho 18 күн бұрын
How to get a Heightmap?? is there a way to get the one you used? (where can i create my own?)
@mootzartdev
@mootzartdev 18 күн бұрын
The one i used is from a personal project that i cant share im afraid. I used Gaea to make my heightmap. Perhaps i should make a tutorial on it. There are not many very good free options out there really.
@BlueSucho
@BlueSucho 18 күн бұрын
@@mootzartdev hm okay sad haha, well thanks for the answer. Yeah a Tutorial on it would be very cool!
@coreycarries6325
@coreycarries6325 10 күн бұрын
Generate one using perlin noise algorithms
@swanayagupta
@swanayagupta 22 күн бұрын
hello suggest me system req for unreal game I'm so much confused when choosing hardware please.
@AndrewOnWish
@AndrewOnWish Ай бұрын
Can you show us how to texture the map?
@mootzartdev
@mootzartdev Ай бұрын
Sure! I can work on a video for that. It can be very complex.. or very simple. Depending on what we would want to achieve.
@galegosantos3156
@galegosantos3156 Ай бұрын
@@mootzartdev waiting
@yujack5910
@yujack5910 Ай бұрын
Hello, may I ask if there is any difference between your four "Open World Tutorials"? I have read your first one and I didn't quite understand it. Sorry
@mootzartdev
@mootzartdev Ай бұрын
Hey! I only have one technically which is this one targeting a more 'complex' setup. The others are more specific to different elements of the process.
@yujack5910
@yujack5910 13 күн бұрын
@@mootzartdev Hello, at 21:07 in the video, I noticed the Landscape Region, a unique world partitioning feature specific to UE5.3. I'd like to ask about the role of the Landscape Region. Why are there four proxies, and I didn't see you setting them up?
@mootzartdev
@mootzartdev 13 күн бұрын
@@yujack5910 kzbin.info/www/bejne/hZCxo6WOeM91qs0 This video i sort of explain them with how i think they are intended to be used. Basically they are for general loading and unloading. But some comments suggest they can be used in different ways.
@daybrick2513
@daybrick2513 Ай бұрын
How many RAM do you have? and VGA? my computer crashes no matter what I do..:(
@mootzartdev
@mootzartdev Ай бұрын
Hey. I have a beast of a machine really. 128GB RAM + RTX 4090 with 24GB VRAM. The hard truth is that large open worlds are not easily possible on lightweight machines.
@AndrewOnWish
@AndrewOnWish Ай бұрын
Could you do a tutorial on how to optimize big maps?@@mootzartdev
@abex15
@abex15 Ай бұрын
@@mootzartdevJak 2 ran on the potato ps2 and had a huge map, it’s about optimizations dawg u don’t need 128 GB of ram
@mootzartdev
@mootzartdev Ай бұрын
@@abex15 hahaha i don't think you understand mate. This is regards to importing a 16321 resolution heightmap in unreal engine 5. Not running it when it's optimised. For starters Jak 2 map mostly consisted of meshes and extremely low resolution terrains. It's a totally different thing all together. Check the documentation for Unreal Engine or attempt this yourself and see for yourself.
@abex15
@abex15 Ай бұрын
@@mootzartdev I know, that’s the point, low resolution terrains, you said “large open worlds” not large resolution so this is just ur ego talking lol, if ur landscape is mostly flat u can get away with low res
@CattyWampus_OFG
@CattyWampus_OFG Ай бұрын
Show how you do HLODS for the world. Jacking up the loading range is not a way to deal with disappearing landscape past the WP range
@mootzartdev
@mootzartdev Ай бұрын
No point in 5.3. I'll wait till 5.4.
@sifudarryl
@sifudarryl Ай бұрын
@@mootzartdevHow will that issue be resolved in 5.4?
@mootzartdev
@mootzartdev Ай бұрын
@@sifudarryl I can't even say for certain it will be resolved. There are lots of bugs with 5.3 and we can only hope they are fully fixed in 5.4.
@josephreynolds55
@josephreynolds55 Ай бұрын
To have the landscape always loaded, you can de-select the Spacial Loaded checkbox in the Landscape details panel.
@michaelhampton645
@michaelhampton645 28 күн бұрын
Making sure the landscape proxies are not set to spatially load is 1 way to stop the disappearing landscapes, but if you're having the actual bug where landscapes disappear then make sure the level is saved and there is a setting asking if this is the main world and make sure it's checked or set to main world. It took me months to find a solution for this bug.
Unreal Engine 5.4 - Landscape Regions Explained (Location Volumes)
14:17
🌿 Ultimate FOLIAGE Guide in UE5 🌿
13:06
VLRN | Valerian
Рет қаралды 25 М.
Surprise Gifts #couplegoals
00:21
Jay & Sharon
Рет қаралды 27 МЛН
INO IS A KIND ALIEN😂
00:45
INO
Рет қаралды 20 МЛН
когда одна дома // EVA mash
00:51
EVA mash
Рет қаралды 9 МЛН
how are massive game environments made?
4:08
Stylized Station
Рет қаралды 902 М.
Unreal Engine 5’s Biggest New Features
10:07
Unreal Sensei
Рет қаралды 318 М.
Using Physics to Improve your Shots in Unreal Engine 5
11:35
William Faucher
Рет қаралды 216 М.
BEST SETTINGS for Unreal Engine 5.3 - PERFECT Renders Every Time
8:36
Boundless Entertainment
Рет қаралды 23 М.
Unreal Engine 5.4 Full Presentation | State of Unreal 2024
10:02
I Created a Fight Scene Cinematic in Unreal Engine 5
14:44
Sir Wade Neistadt
Рет қаралды 8 М.
How to Get Started with PCG Biomes in Unreal Engine 5.4
21:49
Procedural Minds
Рет қаралды 6 М.
Как ОПТИМИЗИРУЮТ ИГРЫ
11:00
Atix
Рет қаралды 317 М.
Surprise Gifts #couplegoals
00:21
Jay & Sharon
Рет қаралды 27 МЛН