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:
authorCampbell Barton <ideasman42@gmail.com>2011-11-14 11:18:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-14 11:18:32 +0400
commitc8f374f4865f304ab972f89152878ad056961e93 (patch)
treeb711df2322a3f834dbb04e131ede659a54b79104 /release
parent972debc7eb7bd16e4f804dc70adffe5b534df3e8 (diff)
make ocean rna more consistent with existing rna names
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index b30958cbcc2..e685de416ed 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -415,7 +415,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
row.label()
def OCEAN(self, layout, ob, md):
- if not md.build_enabled:
+ if not md.is_build_enabled:
layout.label("Built without OceanSim modifier")
return
@@ -441,7 +441,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col = split.column()
col.prop(md, "choppiness")
col.prop(md, "wave_scale", text="Scale")
- col.prop(md, "smallest_wave")
+ col.prop(md, "wave_scale_min")
col.prop(md, "wind_velocity")
col = split.column()
@@ -449,16 +449,16 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
sub = col.column()
sub.active = md.wave_alignment > 0
sub.prop(md, "wave_direction", text="Direction")
- sub.prop(md, "damp")
+ sub.prop(md, "damping")
layout.separator()
- layout.prop(md, "generate_normals")
+ layout.prop(md, "use_normals")
row = layout.row()
- row.prop(md, "generate_foam")
+ row.prop(md, "use_foam")
sub = row.row()
- sub.active = md.generate_foam
+ sub.active = md.use_foam
sub.prop(md, "foam_coverage", text="Coverage")
layout.separator()
@@ -472,8 +472,8 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
split.enabled = not md.is_cached
col = split.column(align=True)
- col.prop(md, "bake_start", text="Start")
- col.prop(md, "bake_end", text="End")
+ col.prop(md, "frame_start", text="Start")
+ col.prop(md, "frame_end", text="End")
col = split.column(align=True)
col.label(text="Cache path:")