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:
authorJanne Karhu <jhkarh@gmail.com>2010-11-23 18:16:19 +0300
committerJanne Karhu <jhkarh@gmail.com>2010-11-23 18:16:19 +0300
commitc51d075b0e36cad2c77ddd8d796f1311bb9eaa1f (patch)
treef549f6c22b9a4a4e3786bf14c5f30bccb0ab124d /release
parent513f0142fb113552b908ce174ef5eb614dd59db6 (diff)
Changed some ui names for smoke parameters to make things less ambiguous.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_physics_smoke.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/ui/properties_physics_smoke.py b/release/scripts/ui/properties_physics_smoke.py
index 536c1e09f44..4721eddbf37 100644
--- a/release/scripts/ui/properties_physics_smoke.py
+++ b/release/scripts/ui/properties_physics_smoke.py
@@ -80,7 +80,7 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel, bpy.types.Panel):
col = split.column()
col.label(text="Behavior:")
col.prop(domain, "alpha")
- col.prop(domain, "beta")
+ col.prop(domain, "beta", text="Temp. Diff.")
col.prop(domain, "vorticity")
col.prop(domain, "use_dissolve_smoke", text="Dissolve")
sub = col.column()
@@ -109,10 +109,10 @@ class PHYSICS_PT_smoke(PhysicButtonsPanel, bpy.types.Panel):
sub = split.column()
sub.active = not md.flow_settings.use_outflow
- sub.label(text="Behavior:")
- sub.prop(flow, "temperature")
- sub.prop(flow, "density")
+ sub.label(text="Initial Values:")
sub.prop(flow, "use_absolute")
+ sub.prop(flow, "density")
+ sub.prop(flow, "temperature")
#elif md.smoke_type == 'COLLISION':
# layout.separator()