Skip to content

Commit 22d3fc1

Browse files
author
AJubrey
committed
[ADDED] some space in between UI elements
1 parent e4e8a33 commit 22d3fc1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

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

48+
EditorGUILayout.Space();
49+
4850
GUILayout.BeginHorizontal();
4951
GUILayout.Label(new GUIContent("Export Format:", "Export the FBX file in the standard binary format." +
5052
" Select ASCII to export the FBX file in ASCII format."), GUILayout.Width(LabelWidth - 3));
5153
exportSettings.ExportFormatSelection = EditorGUILayout.Popup(exportSettings.ExportFormatSelection, new string[]{"Binary", "ASCII"});
5254
GUILayout.EndHorizontal();
5355

56+
EditorGUILayout.Space();
57+
5458
GUILayout.BeginHorizontal ();
5559
GUILayout.Label (new GUIContent (
5660
"Export Path:",
@@ -152,7 +156,9 @@ public override void OnInspectorGUI() {
152156
}
153157
GUILayout.EndHorizontal ();
154158

155-
var installIntegrationContent = new GUIContent(
159+
EditorGUILayout.Space();
160+
161+
var installIntegrationContent = new GUIContent(
156162
"Install Unity Integration",
157163
"Install and configure the Unity integration for the selected 3D application so that you can import and export directly with this project.");
158164
if (GUILayout.Button (installIntegrationContent)) {

0 commit comments

Comments
 (0)