We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c662f3 + e3abeaa commit 24a714dCopy full SHA for 24a714d
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -129,6 +129,13 @@ public override void OnInspectorGUI() {
129
130
// check that the path is valid and references the maya executable
131
if (!string.IsNullOrEmpty (mayaPath)) {
132
+ var md = Directory.GetParent (mayaPath);
133
+ if (md.Parent.Name.ToLower ().StartsWith ("mayalt")) {
134
+ Debug.LogError (string.Format("Unity Integration does not support Maya LT: \"{0}\"", md.FullName));
135
+ exportSettings.selectedMayaApp = oldValue;
136
+ return;
137
+ }
138
+
139
if (!Path.GetFileNameWithoutExtension (mayaPath).ToLower ().Equals ("maya")) {
140
// clicked on the wrong application, try to see if we can still find
141
// maya in this directory.
0 commit comments