Fix T44872

All musgrave tupes use intensity, never hide it.
This commit is contained in:
Antonis Ryakiotakis 2015-05-28 18:05:29 +02:00
parent bdf242fa21
commit 18208c8ad9
Notes: blender-bot 2023-02-14 09:04:57 +01:00
Referenced by issue #44872, Missing UI control in Musgrave texture properties
1 changed files with 1 additions and 2 deletions

View File

@ -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")