@@ -404,7 +404,7 @@ public void VendorLocationInstallationTest1 ()
404
404
private void VendorLocations_Setup ( List < string > paths )
405
405
{
406
406
//Preserve our environment variables for later
407
- originalVendorLocation = System . Environment . GetEnvironmentVariable ( "UNITY_FBX_3DAPP_VENDOR_LOCATIONS " ) ;
407
+ originalVendorLocation = System . Environment . GetEnvironmentVariable ( "UNITY_3DAPP_VENDOR_LOCATIONS " ) ;
408
408
originalMayaLocation = System . Environment . GetEnvironmentVariable ( "MAYA_LOCATION" ) ;
409
409
410
410
foreach ( var pathToExe in paths ) {
@@ -423,7 +423,7 @@ private void VendorLocations_Setup (List<string> paths)
423
423
private void VendorLocations_TearDown ( List < string > vendorInstallFolders )
424
424
{
425
425
//Put the environment variables back to what they were originally
426
- System . Environment . SetEnvironmentVariable ( "UNITY_FBX_3DAPP_VENDOR_LOCATIONS " , originalVendorLocation ) ;
426
+ System . Environment . SetEnvironmentVariable ( "UNITY_3DAPP_VENDOR_LOCATIONS " , originalVendorLocation ) ;
427
427
System . Environment . SetEnvironmentVariable ( "MAYA_LOCATION" , originalMayaLocation ) ;
428
428
429
429
//Clean up vendor location(s)
@@ -442,7 +442,7 @@ private void SetEnvironmentVariables (string vendorLocation, string mayaLocation
442
442
{
443
443
if ( ! string . IsNullOrEmpty ( vendorLocation ) ) {
444
444
//if the given vendor location isn't null, set the environment variable to it.
445
- System . Environment . SetEnvironmentVariable ( "UNITY_FBX_3DAPP_VENDOR_LOCATIONS " , vendorLocation ) ;
445
+ System . Environment . SetEnvironmentVariable ( "UNITY_3DAPP_VENDOR_LOCATIONS " , vendorLocation ) ;
446
446
}
447
447
if ( mayaLocationPath != null ) {
448
448
//if the given MAYA_LOCATION isn't null, set the environment variable to it
0 commit comments