File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Assets/FbxExporters/Editor Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,15 +36,15 @@ public override void OnInspectorGUI() {
36
36
37
37
GUILayout . BeginHorizontal ( ) ;
38
38
GUILayout . Label ( new GUIContent (
39
- "Convert To Model Save Path:" ,
40
- "Path to save fbx files created by Convert To Model. Path must be relative to Assets folder " ) ) ;
39
+ "Model Prefab Path:" ,
40
+ "Relative path for saving Model Prefabs. " ) ) ;
41
41
42
42
EditorGUILayout . SelectableLabel ( GetRelativePath ( exportSettings . convertToModelSavePath , Application . dataPath ) ,
43
43
EditorStyles . textField , GUILayout . MinWidth ( SelectableLabelMinWidth ) , GUILayout . Height ( EditorGUIUtility . singleLineHeight ) ) ;
44
44
45
45
if ( GUILayout . Button ( "Browse" , EditorStyles . miniButton , GUILayout . Width ( BrowseButtonWidth ) ) ) {
46
46
string path = EditorUtility . OpenFolderPanel (
47
- "Convert to Model Save Path" , Application . dataPath , null
47
+ "Select Model Prefabs Path" , Application . dataPath , null
48
48
) ;
49
49
// Make sure something is selected, and that it is in the Asset folder
50
50
if ( ! string . IsNullOrEmpty ( path ) && path . StartsWith ( Application . dataPath ) ) {
You can’t perform that action at this time.
0 commit comments