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>2010-08-21 08:51:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-21 08:51:00 +0400
commit93ffe7d7f1cfcb639aca165d310ffed653385b8e (patch)
treee12b64820a8ede1405ab0e585e03143dd098331c /release/scripts/ui/properties_material.py
parentc8c2393310469dffe1f8881c7957c28036b22ecb (diff)
rna renaming (manual edits)
Diffstat (limited to 'release/scripts/ui/properties_material.py')
-rw-r--r--release/scripts/ui/properties_material.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/release/scripts/ui/properties_material.py b/release/scripts/ui/properties_material.py
index d4e07f8333b..265f7e08d3a 100644
--- a/release/scripts/ui/properties_material.py
+++ b/release/scripts/ui/properties_material.py
@@ -292,7 +292,7 @@ class MATERIAL_PT_shading(MaterialButtonsPanel, bpy.types.Panel):
sub = col.column()
sub.active = not mat.use_shadeless
sub.prop(mat, "use_tangent_shading")
- sub.prop(mat, "cubic")
+ sub.prop(mat, "use_cubic")
elif mat.type == 'HALO':
layout.prop(mat, "alpha")
@@ -348,7 +348,7 @@ class MATERIAL_PT_transp(MaterialButtonsPanel, bpy.types.Panel):
col.prop(rayt, "ior")
col.prop(rayt, "filter")
col.prop(rayt, "falloff")
- col.prop(rayt, "limit")
+ col.prop(rayt, "depth_max")
col.prop(rayt, "depth")
col = split.column()
@@ -493,28 +493,28 @@ class MATERIAL_PT_halo(MaterialButtonsPanel, bpy.types.Panel):
col.prop(halo, "hardness")
col.prop(halo, "add")
col.label(text="Options:")
- col.prop(halo, "texture")
+ col.prop(halo, "use_texture")
col.prop(halo, "use_vertex_normal")
col.prop(halo, "use_extreme_alpha")
- col.prop(halo, "shaded")
- col.prop(halo, "soft")
+ col.prop(halo, "use_shaded")
+ col.prop(halo, "use_soft")
col = split.column()
- col.prop(halo, "ring")
+ col.prop(halo, "use_ring")
sub = col.column()
- sub.active = halo.ring
+ sub.active = halo.use_ring
sub.prop(halo, "ring_count")
sub.prop(mat, "mirror_color", text="")
col.separator()
- col.prop(halo, "lines")
+ col.prop(halo, "use_lines")
sub = col.column()
- sub.active = halo.lines
+ sub.active = halo.use_lines
sub.prop(halo, "line_count", text="Lines")
sub.prop(mat, "specular_color", text="")
col.separator()
- col.prop(halo, "star")
+ col.prop(halo, "use_star")
sub = col.column()
- sub.active = halo.star
+ sub.active = halo.use_star
sub.prop(halo, "star_tip_count")
@@ -576,7 +576,7 @@ class MATERIAL_PT_physics(MaterialButtonsPanel, bpy.types.Panel):
col = split.column()
col.prop(phys, "force", slider=True)
col.prop(phys, "elasticity", slider=True)
- col.prop(phys, "damp", slider=True)
+ col.prop(phys, "damping", slider=True)
class MATERIAL_PT_strand(MaterialButtonsPanel, bpy.types.Panel):
@@ -690,7 +690,7 @@ class MATERIAL_PT_shadow(MaterialButtonsPanel, bpy.types.Panel):
split = layout.split()
col = split.column()
- col.prop(mat, "shadows", text="Receive")
+ col.prop(mat, "use_shadows", text="Receive")
col.prop(mat, "use_transparent_shadows", text="Receive Transparent")
col.prop(mat, "use_only_shadow", text="Shadows Only")
col.prop(mat, "use_cast_shadows_only", text="Cast Only")