Skip to content

Commit 5fbbf14

Browse files
author
AJubrey
committed
[FIXED] was setting the wrong variable
[CHANGED] moved the option for binary/ascii to be up top with the other checkboxes
1 parent fce62f3 commit 5fbbf14

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ public override void OnInspectorGUI() {
4545
exportSettings.centerObjects
4646
);
4747

48+
exportSettings.ExportInBinary = EditorGUILayout.Toggle(
49+
new GUIContent("Export in Binary:",
50+
"If false, will export files in ASCII format."),
51+
exportSettings.ExportInBinary
52+
);
53+
4854
GUILayout.BeginHorizontal ();
4955
GUILayout.Label (new GUIContent (
5056
"Export Path:",
@@ -159,12 +165,6 @@ public override void OnInspectorGUI() {
159165
exportSettings.launchAfterInstallation
160166
);
161167

162-
exportSettings.launchAfterInstallation = EditorGUILayout.Toggle(
163-
new GUIContent("Export in Binary:",
164-
"If false, will export files in ASCII format."),
165-
exportSettings.ExportInBinary
166-
);
167-
168168
GUILayout.FlexibleSpace ();
169169
GUILayout.EndScrollView ();
170170
GUILayout.EndVertical();

0 commit comments

Comments
 (0)