Skip to content

Commit 75af8a0

Browse files
committed
CR fix no max installed
1 parent 8f1d3aa commit 75af8a0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public override void OnInspectorGUI() {
9292
GUILayout.BeginHorizontal ();
9393
GUILayout.Label (new GUIContent (
9494
"DCC Application:",
95-
"Select the DCC where you would like to install the Unity integration."));
95+
"Select the Digital Content Creation (DCC) Application for which you would like to install the Unity integration."));
9696

9797
// dropdown to select Maya version to use
9898
var options = ExportSettings.GetDCCOptions();
@@ -115,7 +115,7 @@ public override void OnInspectorGUI() {
115115
throw new System.NotImplementedException ();
116116
}
117117

118-
string dccPath = EditorUtility.OpenFilePanel ("Select DCC Application", ExportSettings.kDefaultAdskRoot, ext);
118+
string dccPath = EditorUtility.OpenFilePanel ("Select Digital Content Creation Application", ExportSettings.kDefaultAdskRoot, ext);
119119

120120
// check that the path is valid and references the maya executable
121121
if (!string.IsNullOrEmpty (dccPath)) {
@@ -158,7 +158,7 @@ public override void OnInspectorGUI() {
158158

159159
var installIntegrationContent = new GUIContent(
160160
"Install Unity Integration",
161-
"Install and configure the Unity integration for the selected DCC so that you can import and export directly to this project.");
161+
"Install and configure the Unity integration for the selected Digital Content Creation (DCC) application so that you can import and export directly with this project.");
162162
if (GUILayout.Button (installIntegrationContent)) {
163163
FbxExporters.Editor.IntegrationsUI.InstallDCCIntegration ();
164164
}
@@ -417,7 +417,7 @@ public static GUIContent[] GetDCCOptions(){
417417

418418
if (instance.dccOptionPaths.Count <= 0) {
419419
return new GUIContent[]{
420-
new GUIContent("<no DCC found>"),
420+
new GUIContent("<No DCC found>"),
421421
new GUIContent("Browse...")
422422
};
423423
}
@@ -514,7 +514,7 @@ public static bool IsMax2018OrLater(string exePath){
514514

515515
public static string GetSelectedDCCPath()
516516
{
517-
return instance.dccOptionPaths [instance.selectedDCCApp];
517+
return (instance.dccOptionPaths.Count>0) ? instance.dccOptionPaths [instance.selectedDCCApp] : "";
518518
}
519519

520520
/// <summary>

scripts/file-search-replace.py

100644100755
File mode changed.

0 commit comments

Comments
 (0)