Merge pull request #26592 from clayjohn/noisetexture_strength

Changed default noisetexture strength
This commit is contained in:
Rémi Verschelde 2019-03-04 20:48:56 +01:00 committed by GitHub
commit d1ba3227c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ NoiseTexture::NoiseTexture() {
size = Vector2i(512, 512);
seamless = false;
as_normalmap = false;
bump_strength = 1.0; //1.0 is a little low. Keep at 1.0 for compatibility for now. For 3.2 increase to 8.0.
bump_strength = 8.0;
flags = FLAGS_DEFAULT;
noise = Ref<OpenSimplexNoise>();