[Bf-blender-cvs] [473f12e] fluid-mantaflow: enabled liquid high resolution mode in ui

Sebastián Barschkis noreply at git.blender.org
Wed Sep 14 11:55:53 CEST 2016


Commit: 473f12e00b6309508da4d7ae3b60e690bb174db0
Author: Sebastián Barschkis
Date:   Thu Sep 8 01:26:31 2016 +0200
Branches: fluid-mantaflow
https://developer.blender.org/rB473f12e00b6309508da4d7ae3b60e690bb174db0

enabled liquid high resolution mode in ui

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_physics_smoke.py b/release/scripts/startup/bl_ui/properties_physics_smoke.py
index ed54498..e0fe11e 100644
--- a/release/scripts/startup/bl_ui/properties_physics_smoke.py
+++ b/release/scripts/startup/bl_ui/properties_physics_smoke.py
@@ -290,15 +290,15 @@ class PHYSICS_PT_smoke_highres(PhysicButtonsPanel, Panel):
         split = layout.split()
         split.enabled = not domain.point_cache.is_baked
 
-        if domain.smoke_domain_type == 'GAS':
-            col = split.column()
-            col.prop(domain, "use_high_resolution", text="High resolution")
-            sub = col.column()
-            sub.active = domain.use_high_resolution
-            sub.prop(domain, "amplify", text="Divisions")
-            sub.label(text="Flow Sampling:")
-            sub.row().prop(domain, "highres_sampling", text="")
+        col = split.column()
+        col.prop(domain, "use_high_resolution", text="High resolution")
+        sub = col.column()
+        sub.active = domain.use_high_resolution
+        sub.prop(domain, "amplify", text="Divisions")
+        sub.label(text="Flow Sampling:")
+        sub.row().prop(domain, "highres_sampling", text="")
 
+        if domain.smoke_domain_type == 'GAS':
             sub = split.column()
             sub.active = domain.use_high_resolution
             sub.label(text="Noise Method:")




More information about the Bf-blender-cvs mailing list