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:
authorSebastián Barschkis <sebbas@sebbas.org>2020-02-19 19:34:58 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2020-02-19 19:35:15 +0300
commite77e6ba3089e9f88377151bfec0fbb27552024c2 (patch)
tree666814093e5af2fba9f9d613659648949e00a1f3 /release
parentd772c6ea315c5c34524aa3283ddc17eaf660798c (diff)
Fluid: Cleanup in fluid rna code
More descriptive names for secondary particle options.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_fluid.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_fluid.py b/release/scripts/startup/bl_ui/properties_physics_fluid.py
index 310f1d6f8dc..4d6d3d8f607 100644
--- a/release/scripts/startup/bl_ui/properties_physics_fluid.py
+++ b/release/scripts/startup/bl_ui/properties_physics_fluid.py
@@ -875,18 +875,18 @@ class PHYSICS_PT_particles(PhysicButtonsPanel, Panel):
col.separator()
col = flow.column(align=True)
- col.prop(domain, "sndparticle_tau_max_wc", text="Wave Crest Potential Maximum")
- col.prop(domain, "sndparticle_tau_min_wc", text="Minimum")
+ col.prop(domain, "sndparticle_potential_max_wavecrest", text="Wave Crest Potential Maximum")
+ col.prop(domain, "sndparticle_potential_min_wavecrest", text="Minimum")
col.separator()
col = flow.column(align=True)
- col.prop(domain, "sndparticle_tau_max_ta", text="Trapped Air Potential Maximum")
- col.prop(domain, "sndparticle_tau_min_ta", text="Minimum")
+ col.prop(domain, "sndparticle_potential_max_trappedair", text="Trapped Air Potential Maximum")
+ col.prop(domain, "sndparticle_potential_min_trappedair", text="Minimum")
col.separator()
col = flow.column(align=True)
- col.prop(domain, "sndparticle_tau_max_k", text="Kinetic Energy Potential Maximum")
- col.prop(domain, "sndparticle_tau_min_k", text="Minimum")
+ col.prop(domain, "sndparticle_potential_max_energy", text="Kinetic Energy Potential Maximum")
+ col.prop(domain, "sndparticle_potential_min_energy", text="Minimum")
col.separator()
col = flow.column(align=True)
@@ -895,18 +895,18 @@ class PHYSICS_PT_particles(PhysicButtonsPanel, Panel):
col.separator()
col = flow.column(align=True)
- col.prop(domain, "sndparticle_k_wc", text="Wave Crest Particle Sampling")
- col.prop(domain, "sndparticle_k_ta", text="Trapped Air Particle Sampling")
+ col.prop(domain, "sndparticle_sampling_wavecrest", text="Wave Crest Particle Sampling")
+ col.prop(domain, "sndparticle_sampling_trappedair", text="Trapped Air Particle Sampling")
col.separator()
col = flow.column(align=True)
- col.prop(domain, "sndparticle_l_max", text="Particle Life Maximum")
- col.prop(domain, "sndparticle_l_min", text="Minimum")
+ col.prop(domain, "sndparticle_life_max", text="Particle Life Maximum")
+ col.prop(domain, "sndparticle_life_min", text="Minimum")
col.separator()
col = flow.column(align=True)
- col.prop(domain, "sndparticle_k_b", text="Bubble Buoyancy")
- col.prop(domain, "sndparticle_k_d", text="Bubble Drag")
+ col.prop(domain, "sndparticle_bubble_buoyancy", text="Bubble Buoyancy")
+ col.prop(domain, "sndparticle_bubble_drag", text="Bubble Drag")
col.separator()
col = flow.column()