Skip to content

Commit 3a2bf02

Browse files
committed
Fixed
1 parent e366f21 commit 3a2bf02

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Assets/FbxExporters/Editor/ExportModelSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class ExportModelSettingsEditor : UnityEditor.Editor
1010
private const float FieldOffset = 18;
1111

1212
private string[] exportFormatOptions = new string[]{ "ASCII", "Binary" };
13-
private string[] includeOptions = new string[]{"Model(s) Only", "Animation Only", "Model(s) + Animation"};
13+
private string[] includeOptions = new string[]{"FBX(s) Only", "Animation Only", "FBX(s) + Animation"};
1414
private string[] lodOptions = new string[]{"All Levels", "Highest", "Lowest"};
1515

1616
public const string singleHierarchyOption = "Local Pivot";

Assets/FbxExporters/Editor/FbxExporter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ public class ModelExporter : System.IDisposable
8484
// NOTE: The ellipsis at the end of the Menu Item name prevents the context
8585
// from being passed to command, thus resulting in OnContextItem()
8686
// being called only once regardless of what is selected.
87-
const string MenuItemName = "GameObject/Export Model...";
88-
const string ModelOnlyMenuItemName = "GameObject/Export Model Only...";
87+
const string MenuItemName = "GameObject/Export To FBX...";
88+
const string ModelOnlyMenuItemName = "GameObject/Export To FBX Only...";
8989

9090
const string ClipMenuItemName = "GameObject/Export All Recorded Animation Clips...";
9191
const string TimelineClipMenuItemName = "GameObject/Export Selected Timeline Clip...";
@@ -3152,7 +3152,7 @@ public static bool ValidateClipContextClick()
31523152
}
31533153

31543154
/// <summary>
3155-
/// Add a menu item "Export Model..." to a GameObject's context menu.
3155+
/// Add a menu item "Export To FBX..." to a GameObject's context menu.
31563156
/// </summary>
31573157
/// <param name="command">Command.</param>
31583158
[MenuItem (MenuItemName, false, 30)]

0 commit comments

Comments
 (0)