Skip to content

Commit 039d186

Browse files
change apply modifiers to modifier mode
1 parent 10834c5 commit 039d186

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ You can also find the add-on directly on [Blender Extensions](https://extensions
9393

9494
### Transform & Processing
9595
* **Zero Location:** Set object location to (0,0,0) before export
96-
* **Apply Modifiers:** Choose which modifiers to apply:
96+
* **Modifier Mode:** Choose which modifiers to apply:
9797
* **None:** Skip all modifiers (fastest, export base mesh only)
9898
* **Visible:** Apply viewport-visible modifiers (recommended)
9999
* **Render:** Apply render-enabled modifiers (most complete)

panels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def draw(self, context):
116116
col.prop(settings, "mesh_export_zero_location")
117117

118118
# Modifier application settings
119-
col = layout.column(heading="Apply Modifiers", align=True)
119+
col = layout.column(heading="Modifier Mode", align=True)
120120
row = col.row(align=True)
121121
row.prop(settings, "mesh_export_apply_modifiers", expand=True)
122122

properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ class MeshExporterSettings(PropertyGroup):
150150

151151
# Modifier application property
152152
mesh_export_apply_modifiers: EnumProperty(
153-
name="Apply Modifiers",
153+
name="Modifier Mode",
154154
description="Which modifiers to apply during export",
155155
items=[
156156
("NONE", "None", "Don't apply any modifiers to the exported copy"),

0 commit comments

Comments
 (0)