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:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_modifier.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py40
1 files changed, 20 insertions, 20 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index 8e0021b64a8..668dd61315d 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -79,7 +79,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
split.prop(md, "use_multi_modifier")
- def ARRAY(self, layout, ob, md):
+ def ARRAY(self, layout, _ob, md):
layout.prop(md, "fit_type")
if md.fit_type == 'FIXED_COUNT':
@@ -171,7 +171,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
layout.row().prop(md, "miter_inner")
layout.row().prop(md, "spread")
- def BOOLEAN(self, layout, ob, md):
+ def BOOLEAN(self, layout, _ob, md):
split = layout.split()
col = split.column()
@@ -187,7 +187,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
if bpy.app.debug:
layout.prop(md, "debug_options")
- def BUILD(self, layout, ob, md):
+ def BUILD(self, layout, _ob, md):
split = layout.split()
col = split.column()
@@ -201,7 +201,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
sub.active = md.use_random_order
sub.prop(md, "seed")
- def MESH_CACHE(self, layout, ob, md):
+ def MESH_CACHE(self, layout, _ob, md):
layout.prop(md, "cache_format")
layout.prop(md, "filepath")
@@ -288,10 +288,10 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
if md.object:
col.prop(md, "use_transform")
- def CLOTH(self, layout, ob, md):
+ def CLOTH(self, layout, _ob, _md):
layout.label(text="Settings are inside the Physics tab")
- def COLLISION(self, layout, ob, md):
+ def COLLISION(self, layout, _ob, _md):
layout.label(text="Settings are inside the Physics tab")
def CURVE(self, layout, ob, md):
@@ -386,10 +386,10 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
row.prop(md, "mid_level")
row.prop(md, "strength")
- def DYNAMIC_PAINT(self, layout, ob, md):
+ def DYNAMIC_PAINT(self, layout, _ob, _md):
layout.label(text="Settings are inside the Physics tab")
- def EDGE_SPLIT(self, layout, ob, md):
+ def EDGE_SPLIT(self, layout, _ob, md):
split = layout.split()
col = split.column()
@@ -421,7 +421,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
layout.operator("object.explode_refresh", text="Refresh")
- def FLUID_SIMULATION(self, layout, ob, md):
+ def FLUID_SIMULATION(self, layout, _ob, _md):
layout.label(text="Settings are inside the Physics tab")
def HOOK(self, layout, ob, md):
@@ -575,7 +575,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
else:
layout.operator("object.meshdeform_bind", text="Bind")
- def MIRROR(self, layout, ob, md):
+ def MIRROR(self, layout, _ob, md):
axis_text = "XYZ"
split = layout.split(factor=0.33)
@@ -673,7 +673,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
row.operator("object.multires_external_save", text="Save External...")
row.label()
- def OCEAN(self, layout, ob, md):
+ def OCEAN(self, layout, _ob, md):
if not bpy.app.build_options.mod_oceansim:
layout.label(text="Built without OceanSim modifier")
return
@@ -809,10 +809,10 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.prop_search(md, "index_layer_name", ob.data, "vertex_colors", text="Index Layer")
col.prop_search(md, "value_layer_name", ob.data, "vertex_colors", text="Value Layer")
- def PARTICLE_SYSTEM(self, layout, ob, md):
+ def PARTICLE_SYSTEM(self, layout, _ob, _md):
layout.label(text="Settings can be found inside the Particle context")
- def SCREW(self, layout, ob, md):
+ def SCREW(self, layout, _ob, md):
split = layout.split()
col = split.column()
@@ -932,7 +932,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.prop(md, "angle")
col.prop(md, "limits", slider=True)
- def SMOKE(self, layout, ob, md):
+ def SMOKE(self, layout, _ob, _md):
layout.label(text="Settings are inside the Physics tab")
def SMOOTH(self, layout, ob, md):
@@ -950,7 +950,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.label(text="Vertex Group:")
col.prop_search(md, "vertex_group", ob, "vertex_groups", text="")
- def SOFT_BODY(self, layout, ob, md):
+ def SOFT_BODY(self, layout, _ob, _md):
layout.label(text="Settings are inside the Physics tab")
def SOLIDIFY(self, layout, ob, md):
@@ -1049,10 +1049,10 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
preview = max(scene.cycles.preview_dicing_rate * ob.cycles.dicing_rate, 0.1)
col.label(text=f"Render {render:.2f} px, Preview {preview:.2f} px")
- def SURFACE(self, layout, ob, md):
+ def SURFACE(self, layout, _ob, _md):
layout.label(text="Settings are inside the Physics tab")
- def SURFACE_DEFORM(self, layout, ob, md):
+ def SURFACE_DEFORM(self, layout, _ob, md):
col = layout.column()
col.active = not md.is_bound
@@ -1190,7 +1190,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.prop(md, "width", slider=True)
col.prop(md, "narrowness", slider=True)
- def REMESH(self, layout, ob, md):
+ def REMESH(self, layout, _ob, md):
if not bpy.app.build_options.mod_remesh:
layout.label(text="Built without Remesh modifier")
return
@@ -1331,7 +1331,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
layout.separator()
self.vertex_weight_mask(layout, ob, md)
- def SKIN(self, layout, ob, md):
+ def SKIN(self, layout, _ob, md):
row = layout.row()
row.operator("object.skin_armature_create", text="Create Armature")
row.operator("mesh.customdata_skin_add")
@@ -1360,7 +1360,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
col.prop(md, "use_y_symmetry")
col.prop(md, "use_z_symmetry")
- def TRIANGULATE(self, layout, ob, md):
+ def TRIANGULATE(self, layout, _ob, md):
row = layout.row()
col = row.column()