Tile builder
Took me longer than I expected, but it also has more functionalities available… I give you:
The AUTOTILE BUILDER:
This does what I described in the last post: creates transition tiles between two types of “terrain”, depending on a mask. It also allows for the user to specify a template material that is used to setup all the material colors of the generated tiles (from shaders to custom properties).
Results are fairly good, considering that I used for my tests just some test textures my artist did (with still some artifacts on the edges), and some hand drawn masks.
This generates an atlas of textures:
which is much more efficient for rendering (I can batch the whole terrain if it shares the same atlas page). On this example, we only have 2 textures with 3 masks (full mask, segment and a corner). Each of the textures has a diffuse map and a normal map. They’re blended and used to build a “seamless” terrain tile.
In action this looks pretty good, although we’re still discussing what’s the camera distance of the game, to find out what’s the ideal image size for each terrain tile.
On another note, day job has been a bit more time consuming lately, hence the lack of updates… Hopefully, this phase will pass and we won’t be so tired and will be able to dedicate some more time to Grey.
This looks like a really handy tool to have. Did you write this yourself? Did you ever release it to the public for download? (Just realized how old this post is).
Hi there!
I wrote it, it’s part of our general purpose editor (SurgeEd)…
We never released it, but one of these days, when we finish a game using the editor, we intend on releasing it, for modding purposes, etc…
Building such a tool is rather simple, though (the UI takes more time than the actual operation).
Best regards,
Diogo