Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2010-06-07 19:28:17 +0400
committerThomas Dinges <blender@dingto.org>2010-06-07 19:28:17 +0400
commitc13c3d00816677692cdccebe440aadd7f1cde4c8 (patch)
treecf634cf601bddd22c45ae3ecb1181ff7db050891 /release
parent180a9f1a81ba0ba115973ee0c10fb3a290d2a687 (diff)
Smoke UI:
* Greying out for Smoke High Resolution Panel. * Code cleaning, removed some unnecessary declarations.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_physics_smoke.py41
1 files changed, 18 insertions, 23 deletions
diff --git a/release/scripts/ui/properties_physics_smoke.py b/release/scripts/ui/properties_physics_smoke.py
index f362588cd98..ec9f8fad77e 100644
--- a/release/scripts/ui/properties_physics_smoke.py
+++ b/release/scripts/ui/properties_physics_smoke.py
@@ -70,8 +70,7 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel):
else:
layout.prop(md, "smoke_type", text="")
- if md.smoke_type == 'TYPE_DOMAIN':
-
+ if md.smoke_type == 'DOMAIN':
domain = md.domain_settings
split = layout.split()
@@ -93,8 +92,7 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel):
sub.prop(domain, "dissolve_speed", text="Time")
sub.prop(domain, "dissolve_smoke_log", text="Slow")
- elif md.smoke_type == 'TYPE_FLOW':
-
+ elif md.smoke_type == 'FLOW':
flow = md.flow_settings
split = layout.split()
@@ -114,7 +112,7 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel):
col.prop(flow, "temperature")
col.prop(flow, "density")
- #elif md.smoke_type == 'TYPE_COLL':
+ #elif md.smoke_type == 'COLLISION':
# layout.separator()
@@ -124,7 +122,7 @@ class PHYSICS_PT_smoke_groups(PhysicButtonsPanel):
def poll(self, context):
md = context.smoke
- return md and (md.smoke_type == 'TYPE_DOMAIN')
+ return md and (md.smoke_type == 'DOMAIN')
def draw(self, context):
layout = self.layout
@@ -153,19 +151,17 @@ class PHYSICS_PT_smoke_cache(PhysicButtonsPanel):
def poll(self, context):
md = context.smoke
- return md and (md.smoke_type == 'TYPE_DOMAIN')
+ return md and (md.smoke_type == 'DOMAIN')
def draw(self, context):
layout = self.layout
- domain = context.smoke.domain_settings
-
- layout.label(text="Compression:")
- layout.prop(domain, "smoke_cache_comp", expand=True)
-
md = context.smoke.domain_settings
cache = md.point_cache_low
+ layout.label(text="Compression:")
+ layout.prop(md, "smoke_cache_comp", expand=True)
+
point_cache_ui(self, context, cache, (cache.baked is False), 'SMOKE')
@@ -175,18 +171,20 @@ class PHYSICS_PT_smoke_highres(PhysicButtonsPanel):
def poll(self, context):
md = context.smoke
- return md and (md.smoke_type == 'TYPE_DOMAIN')
+ return md and (md.smoke_type == 'DOMAIN')
def draw_header(self, context):
- high = context.smoke.domain_settings
+ md = context.smoke.domain_settings
- self.layout.prop(high, "highres", text="")
+ self.layout.prop(md, "highres", text="")
def draw(self, context):
layout = self.layout
md = context.smoke.domain_settings
wide_ui = context.region.width > narrowui
+
+ layout.active = md.highres
split = layout.split()
@@ -208,20 +206,17 @@ class PHYSICS_PT_smoke_cache_highres(PhysicButtonsPanel):
def poll(self, context):
md = context.smoke
- return md and (md.smoke_type == 'TYPE_DOMAIN') and md.domain_settings.highres
+ return md and (md.smoke_type == 'DOMAIN') and md.domain_settings.highres
def draw(self, context):
layout = self.layout
- domain = context.smoke.domain_settings
-
- layout.label(text="Compression:")
- layout.prop(domain, "smoke_cache_high_comp", expand=True)
-
-
md = context.smoke.domain_settings
cache = md.point_cache_high
+ layout.label(text="Compression:")
+ layout.prop(md, "smoke_cache_high_comp", expand=True)
+
point_cache_ui(self, context, cache, (cache.baked is False), 'SMOKE')
@@ -231,7 +226,7 @@ class PHYSICS_PT_smoke_field_weights(PhysicButtonsPanel):
def poll(self, context):
smoke = context.smoke
- return (smoke and smoke.smoke_type == 'TYPE_DOMAIN')
+ return (smoke and smoke.smoke_type == 'DOMAIN')
def draw(self, context):
domain = context.smoke.domain_settings