[Bf-blender-cvs] [18208c8] master: Fix T44872

Antony Riakiotakis noreply at git.blender.org
Thu May 28 18:06:19 CEST 2015


Commit: 18208c8ad979621d6e214e6c84f04cdeb6b091f3
Author: Antony Riakiotakis
Date:   Thu May 28 18:05:29 2015 +0200
Branches: master
https://developer.blender.org/rB18208c8ad979621d6e214e6c84f04cdeb6b091f3

Fix T44872

All musgrave tupes use intensity, never hide it.

===================================================================

M	release/scripts/startup/bl_ui/properties_texture.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_texture.py b/release/scripts/startup/bl_ui/properties_texture.py
index 98a5244..78ea4fa 100644
--- a/release/scripts/startup/bl_ui/properties_texture.py
+++ b/release/scripts/startup/bl_ui/properties_texture.py
@@ -676,8 +676,7 @@ class TEXTURE_PT_musgrave(TextureTypePanel, Panel):
         col = split.column()
         if musgrave_type in {'HETERO_TERRAIN', 'RIDGED_MULTIFRACTAL', 'HYBRID_MULTIFRACTAL'}:
             col.prop(tex, "offset")
-        if musgrave_type in {'MULTIFRACTAL', 'RIDGED_MULTIFRACTAL', 'HYBRID_MULTIFRACTAL'}:
-            col.prop(tex, "noise_intensity", text="Intensity")
+        col.prop(tex, "noise_intensity", text="Intensity")
         if musgrave_type in {'RIDGED_MULTIFRACTAL', 'HYBRID_MULTIFRACTAL'}:
             col.prop(tex, "gain")




More information about the Bf-blender-cvs mailing list