File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Assets/FbxExporters/Editor Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -45,12 +45,16 @@ public override void OnInspectorGUI() {
45
45
exportSettings . centerObjects
46
46
) ;
47
47
48
+ EditorGUILayout . Space ( ) ;
49
+
48
50
GUILayout . BeginHorizontal ( ) ;
49
51
GUILayout . Label ( new GUIContent ( "Export Format:" , "Export the FBX file in the standard binary format." +
50
52
" Select ASCII to export the FBX file in ASCII format." ) , GUILayout . Width ( LabelWidth - 3 ) ) ;
51
53
exportSettings . ExportFormatSelection = EditorGUILayout . Popup ( exportSettings . ExportFormatSelection , new string [ ] { "Binary" , "ASCII" } ) ;
52
54
GUILayout . EndHorizontal ( ) ;
53
55
56
+ EditorGUILayout . Space ( ) ;
57
+
54
58
GUILayout . BeginHorizontal ( ) ;
55
59
GUILayout . Label ( new GUIContent (
56
60
"Export Path:" ,
@@ -152,7 +156,9 @@ public override void OnInspectorGUI() {
152
156
}
153
157
GUILayout . EndHorizontal ( ) ;
154
158
155
- var installIntegrationContent = new GUIContent (
159
+ EditorGUILayout . Space ( ) ;
160
+
161
+ var installIntegrationContent = new GUIContent (
156
162
"Install Unity Integration" ,
157
163
"Install and configure the Unity integration for the selected 3D application so that you can import and export directly with this project." ) ;
158
164
if ( GUILayout . Button ( installIntegrationContent ) ) {
You can’t perform that action at this time.
0 commit comments