File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Assets/FbxExporters/Editor Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ public override void OnInspectorGUI() {
120
120
if ( ! string . IsNullOrEmpty ( mayaPath ) ) {
121
121
// get the directory of the executable
122
122
var md = Directory . GetParent ( mayaPath ) ;
123
+ // UNI-29074 TODO: add Maya LT support
123
124
// Check that the executable is not in a MayaLT directory (thus being MayaLT instead of Maya executable).
124
125
// On Mac path resembles: /Applications/Autodesk/mayaLT2018/Maya.app
125
126
// On Windows path resembles: C:\Program Files\Autodesk\MayaLT2018\bin\maya.exe
@@ -316,6 +317,7 @@ private static void FindMayaInstalls() {
316
317
if ( ! product . StartsWith ( "maya" , StringComparison . InvariantCultureIgnoreCase ) ) {
317
318
continue ;
318
319
}
320
+ // UNI-29074 TODO: add Maya LT support
319
321
// Reject MayaLT -- it doesn't have plugins.
320
322
if ( product . StartsWith ( "mayalt" , StringComparison . InvariantCultureIgnoreCase ) ) {
321
323
continue ;
@@ -402,6 +404,7 @@ public static void AddMayaOption(string newOption){
402
404
// get the version
403
405
var version = AskMayaVersion ( newOption ) ;
404
406
407
+ // UNI-29074 TODO: add Maya LT support
405
408
// make sure this is not Maya LT
406
409
if ( version . ToLower ( ) . StartsWith ( "lt" ) ) {
407
410
Debug . LogError ( string . Format ( "Unity Integration does not support Maya LT: \" {0}\" " , newOption ) ) ;
You can’t perform that action at this time.
0 commit comments