I found a number of issues about making terrains in Godot, be it heightmap, voxels, an engine module or a plugin, so I thought I would make a tracker to list them all:
Engine limitations:
[x] #9571 : need to be able to update a texture partially. Editing huge textures on the CPU makes terrain editing unbearable on huge sizes (although GPU painting can be investigated to some extent).
[ ] #7786 : needs ability to do custom LoD that works in multiple viewports (currently limited to _process on a single viewport), so that the renderer doesn't chugs on culling and drawing the whole landscape, especially on split-screen games. Custom, because LOD on a terrain is often different from LOD on a single model, mainly due to the constraint of keeping the terrain watertight with seams, and that quadtrees may be used instead of chunks of the same size.
[x] #8994, #5624 : scenes and resources saved even without changes, with a terrain it can freeze the editor for seconds and become very annoying. I disabled Ctrl+S saving the scene for that reason.
[x] #6869 : LoD must update differently in editor because camera is not easily available. Current workaround is to use the camera provided in _forward_spatial_input
. #6869 was mentionned to solve this but it actually doesn't change the situation, so I'm still using the same workaround to make it work.
[x] HeightmapShape would be nice for efficient collisions, because mesh colliders are resource-hungry (althought they work decently if limited to a small region) --> would be solved by the HeightmapShape coming in the Bullet PR #10013
[ ] needs custom streamed resource so that a terrain doesn't have to be fully loaded in memory (only required lods around player), speeding loading times (the engine probably supports it already though, for sound). Custom loaders or custom resources will help to solve this.
[ ] [tbd] : Editor: add an undo history memory limit, or use file caching, because terrain edition generates a lot of undo memory in general
[x] #9008 : needs texture arrays / 3D texture support in shaders, for efficient texture painting / terrain shaders. @karroffel worked on that for 3.1.
[ ] #10255 : need 2D blending mode(s) that treat alpha like a regular channel, so it can be used for more general purpose, such as GPU painting of splatmaps or other 4-channel data maps terrains can use. (which is way faster than doing it in C++ on the CPU)
[ ] tbd: need more control over offscreen rendering, mainly custom image formats when making viewports and ability to make them render on demand (#16828), so they can be used more efficiently for GPU-accelerated terrain edition (example: erosion needs to use directional blur over multiple passes, for which you currently have to wait for every frame instead of telling the renderer to do them all at once). Using current viewport forces usage of nodes, waiting frames, and using RGBA16, which eats a lot of memory and bandwidth in some cases, or terribly lack of precision in other cases. Using texture channels differently is an alternative, however it complexifies code a bit, and forces copying the entire shaders just to change a few lines of lookup because Godot doesn't have #17303
[ ] #17683 : improve resource usage when drawing big textures for the first time, as saving a terrain writes them all to the project, which causes re-import AND reconversion on draw, which can cause computer to freeze.
[ ] tbd: integrate with navmesh generation. Currently navmeshes are generated using meshes, but a heightmap using a quad tree or streaming for LOD will never have them all present at full precision. My plugin recently made its generated collider available in the editor, but the navmesh generator is not using it, and probably can't because it's still a grid instead of a mesh.
[ ] tbd: integrate with lightmap baking. Currently Godot only takes static meshes into account but a large heightmap using a quad tree or streaming for LOD will never have them all present at full precision, and they are displaced in shaders anyways. This one could be very hard to solve without either deeply integrate the terrain, rewriting a plugin lightmap baker from scratch, or change the baker so that it uses a GPU technique taking unshaded rendering result into account (but streaming would still come in the way).
User requests:
Issue tracker on my terrain plugin:
https://github.com/Zylann/godot_heightmap_native_plugin/issues
Won't do for now but to consider for Vulkan:
Someone should turn this list into some checkboxes. And if someone does, #5624 #6869 and #9134 are all fixed. #8124 and #8254 are closed as well, for not being an actual issue.
Even though it's what I do currently, I wasn't really convinced by #6869 because it makes a hack easier to do rather than solving the problem of terrain LoD cleanly, because:
1) camera is needed all the time, not only when input is received
2) stealing it in a variable for reuse in _process is dangerous because it's not the only one (multi-viewports) and you don't know what can happen to this camera outside of _input (I believe there was a reason for it to be a parameter).
3) there is an ifdef in my module just to get the camera from somewhere else if in game or editor...
Although it's not nice, I'll tick it anyways because it makes the thing mostly work, the real problem is the inability to have LoD that works on multiple viewports :p
I updated the list
Giving this a bump. It would help out my project greatly
Would also be interested in this for voxel stuff.
Will work on this for 3.1, getting a terrain engine going would be great.
On Sun, Dec 3, 2017 at 7:48 AM, Max Hilbrunner notifications@github.com
wrote:
Would also be interested in this for voxel stuff.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
https://github.com/godotengine/godot/issues/9046#issuecomment-348755536,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AF-Z25UrnGLplD5KGmez6OnE3Pizqa3Uks5s8nyJgaJpZM4NvYUB
.
YAY!
Wow, that would be really awesome :)
@reduz are you going to work on this or should I continue on my heightmap module with technical directions for 3.1? I have a handful of open issues on my repo already, but I'm not sure what you would expect to land in Godot among things we would like to do (especially large terrains).
Thank you for the info, this will be a good issue to follow. I'm myself waiting for heightmap terrain support, and also very interested in the possibility of voxel objects being supported eventually (blocky and smooth alike). I hope the next 3.x releases will offer at least basic heightmap terrain.
subscribing, we use our own terrain system at the moment
Moved to 3.2 for now.
A shame it couldn't make it in 3.1. At least 3.2 isn't too far away... I really hope it happens this time!
Just added mention of navmeshes and lightmap baking.
What are the chances of getting this in 3.2? =)
If by "this", you mean built-in terrain, then slim to none. This is about providing the prerequisites so third-party terrain addons can work (and maybe eventually built-in Terrain) :)
The inability to create terrains in Godot and lack of time and expertise on my part to write coherent tools of my own or edit the ones that already being developed by community made me switch engine for a project I'm working on, although I wanted to be able to do it solely with Godot. I can not reiterate how important it is to have a solid terrain system in 2020 for a 3d game engine. Scalable in-built terrain systems are being utilized in so many games now and other various industries like filmmaking, architecture visualization etc. IMO, having these features would attract so many more users and companies to Godot and propel it forward even faster. I do understand that there are multiple other more pressing issues that are probably more important to solve first, but I hope one day we can see an awesome built-in and performant terrain system in Godot.
@MeshVoid Please don't bump issues without contributing significant new information. Use the :+1: reaction button on the first post instead.
(Also, did you check out https://github.com/Zylann/godot_heightmap_plugin?)
@MeshVoid Please don't bump issues without contributing significant new information. Use the 👍 reaction button on the first post instead.
(Also, did you check out https://github.com/Zylann/godot_heightmap_plugin?)
Hi! Sorry, I did, yeah, awesome work by Zylann, still really hard to control scalability and changes and needs a lot of further improvements and stabilization. I also tried implementing my own chunk system with relative success. But chose to stick with world composition and level streaming system in other engine though.
Most helpful comment
Will work on this for 3.1, getting a terrain engine going would be great.
On Sun, Dec 3, 2017 at 7:48 AM, Max Hilbrunner notifications@github.com
wrote: