@@ -50,12 +50,6 @@ public override void OnInspectorGUI() {
50
50
exportSettings . centerObjects
51
51
) ;
52
52
53
- exportSettings . autoUpdaterEnabled = EditorGUILayout . Toggle (
54
- new GUIContent ( "Auto-Updater:" ,
55
- "Automatically updates prefabs with new fbx data that was imported." ) ,
56
- exportSettings . autoUpdaterEnabled
57
- ) ;
58
-
59
53
GUILayout . BeginHorizontal ( ) ;
60
54
EditorGUILayout . LabelField ( new GUIContent ( "Export Format:" , "Export the FBX file in the standard binary format." +
61
55
" Select ASCII to export the FBX file in ASCII format." ) , GUILayout . Width ( LabelWidth - FieldOffset ) ) ;
@@ -430,7 +424,6 @@ public static string[] DCCVendorLocations
430
424
// Note: default values are set in LoadDefaults().
431
425
public bool mayaCompatibleNames = true ;
432
426
public bool centerObjects = true ;
433
- public bool autoUpdaterEnabled = true ;
434
427
public bool launchAfterInstallation = true ;
435
428
public bool HideSendToUnityMenu = true ;
436
429
public int ExportFormatSelection ;
@@ -463,7 +456,6 @@ protected override void LoadDefaults()
463
456
{
464
457
mayaCompatibleNames = true ;
465
458
centerObjects = true ;
466
- autoUpdaterEnabled = true ;
467
459
launchAfterInstallation = true ;
468
460
HideSendToUnityMenu = true ;
469
461
ExportFormatSelection = 0 ;
0 commit comments