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.
1 parent 0965581 commit e3abeaaCopy full SHA for e3abeaa
Assets/FbxExporters/Editor/FbxExportSettings.cs
@@ -122,6 +122,13 @@ public override void OnInspectorGUI() {
122
123
// check that the path is valid and references the maya executable
124
if (!string.IsNullOrEmpty (mayaPath)) {
125
+ var md = Directory.GetParent (mayaPath);
126
+ if (md.Parent.Name.ToLower ().StartsWith ("mayalt")) {
127
+ Debug.LogError (string.Format("Unity Integration does not support Maya LT: \"{0}\"", md.FullName));
128
+ exportSettings.selectedMayaApp = oldValue;
129
+ return;
130
+ }
131
+
132
if (!Path.GetFileNameWithoutExtension (mayaPath).ToLower ().Equals ("maya")) {
133
// clicked on the wrong application, try to see if we can still find
134
// maya in this directory.
0 commit comments