File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Assets/FbxExporters/Editor Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ public override void OnInspectorGUI() {
179
179
EditorGUILayout . Space ( ) ;
180
180
181
181
// disable button if no 3D application is available
182
- EditorGUI . BeginDisabledGroup ( ExportSettings . CanInstall ( ) ? true : false ) ;
182
+ EditorGUI . BeginDisabledGroup ( ! ExportSettings . CanInstall ( ) ) ;
183
183
var installIntegrationContent = new GUIContent (
184
184
"Install Unity Integration" ,
185
185
"Install and configure the Unity integration for the selected 3D application so that you can import and export directly with this project." ) ;
@@ -739,7 +739,7 @@ public static string GetSelectedDCCName()
739
739
740
740
public static bool CanInstall ( )
741
741
{
742
- return instance . dccOptionPaths . Count <= 0 ;
742
+ return instance . dccOptionPaths . Count > 0 ;
743
743
}
744
744
745
745
/// <summary>
You can’t perform that action at this time.
0 commit comments