A possible feature. A noise option (see image below). Please let me know if you would like this option, if you like this option I will add it to the tool.
Hi there, is it possible to randomly swap textures (i.e. mix up the textures) to a flat terrain? I would be interested in the noise brush, but very slight but rough texture, similar to what you have on your photo.
Thanks
I’ve just bought the asset, I’m very pleased with it, thanks a lot. What I meant was the noise option you mentioned two posts earlier, the effect it’s had on that picture is very nice. Another option that would be great would be to allow painting grass, I like the fact you can increase the brush size to any amount, and it would be good to be able to paint large areas with grass and bushes, rather than have to do them in small patches at a time which not only takes ages, you can end up with uneven distribution. Or an option to add grass/bushes based on height, i.e. ferns and green grass near the water’s edge, and other bushes and drier grass higher up.
@jonfinlay I am going to include the feature showed at post #2. And your idea of painting grass and bushes is great! I certainly going to dive into that one.
Also added a feature that allows you to save your splat-maps
(splat-map size: 512x512, texture-count: 12)
It is only possible at splat-maps of the same size and amount of textures.
Great! I’ve already had a look at it and it’s working fine The UI is a great improvement. The noise generator is very subtle though isn’t it, after using it I couldn’t see clearly whether it had been applied or not (which is better as less is more), but just wanted to know that I’d applied it correctly
@jonfinlay Thank you! My goal was to keep it a bit subtle, if you would like to see a more of a noise effect; lower the offset a bit. A bit more blacks than whites would give you a nice result. Also mess around with the scale.
Note for upgrading from version “1.3.1” to “1.3.2”;
First delete the old version before upgrading to version “1.3.2”
In some cases there can occur an error at (“tp_LoadSave” line 64) just comment it out.
Sorry for not mentioning it.
Just uploaded a new version (will be available after Unity Asset Store review) that includes the option to safe the settings and enable/disable the paint all option in each tab.
I was just looking at this picture again, and realised that I’ve never been able to get my noise like that. Which settings did you use? Whenever I increase or decrease the noise generator, the effects are not nearly as visible as this picture.
My settings:
Terrain Texture control: 512
Noise Scale: 100
Noise Amplitude: 1.8
Noise Offset: -1.7
Brush opacity: around 90
Alpha Texture: the second one (just one that is a bit noisy)
The other settings all default
Try some different “techniques”; try some clicking and switching a few times between the texture combination you’re aiming for.
for example a mix between grass and sand, just paint the area with sand, switch over to grass generate new noise texture and do some clicks and switch back to sand.
I’ve used the exact same settings as you, and also done a lot of experimenting, but the result I’m getting is like the attached the screenshot. The noise isn’t defined like your screenshot, most notably the ‘darkness’. When I apply the texture, I don’t notice any difference, even zoomed close up and from various angles. Do you think it may be the textures I’m using, or another factor? I wanted the noise like you have because it adds a lot of contrast and ‘roughness’ to the terrain, an effect I’m after. As it stands, my textures look too smooth, as in the screenshot. The textures I’m using are here: Unity Asset Store - The Best Assets for Game Making
Any suggestions would be greatly appreciated!
Thanks
It could be a few factors:
The contrast between textures is less than the grass/sand example.
And I think this is the biggest factor;
I forgot to mention the size of my terrain, it was [250 x 250] so the splat-map resolution (512 mentioned in previous post) per unit was (512 / 250) 2.05. And it looks like your terrain is way bigger, so the splat-map resolution per unit is way lower than mine so there will be more blending between those “splat-map pixels”, and so looses contrast.
I hope it makes some sense, but I am going to look how the contrast can be increased on an lower splat-map resolution per unit.
Edit:
I tested it, and I noticed indeed low contrast. I tested it again and without the nice sliders so there where no slider limits and I got this (it is a bit closer).
File: tp_Editor.cs
Line: 281
Steps to replace the sliders with fields:
start of line 281, insert this “/*” without the quotes
go to line 294, insert before “EditorGUILayout.EndVertical();” this “*/” (It is now commented out)
Inert the following code after “*/” and before “EditorGUILayout.EndVertical();”
Makes perfect sense, it must be this, my terrain is 2048 x 2048, with a resolution of 1024. I’ll see if I can increase the resolution, I wanted the terrain resolution as high as possible because of the viewpoint I’m using in the game as the terrain texture is always clearly visible. Thanks.