@@ -380,7 +380,7 @@ public void VendorLocationInstallationTest1 ()
380
380
private void VendorLocations_Setup ( List < string > paths )
381
381
{
382
382
//Preserve our environment variables for later
383
- originalVendorLocation = System . Environment . GetEnvironmentVariable ( "UNITY_FBX_3DAPP_VENDOR_LOCATIONS " ) ;
383
+ originalVendorLocation = System . Environment . GetEnvironmentVariable ( "UNITY_3DAPP_VENDOR_LOCATIONS " ) ;
384
384
originalMayaLocation = System . Environment . GetEnvironmentVariable ( "MAYA_LOCATION" ) ;
385
385
386
386
foreach ( var pathToExe in paths ) {
@@ -399,7 +399,7 @@ private void VendorLocations_Setup (List<string> paths)
399
399
private void VendorLocations_TearDown ( List < string > vendorInstallFolders )
400
400
{
401
401
//Put the environment variables back to what they were originally
402
- System . Environment . SetEnvironmentVariable ( "UNITY_FBX_3DAPP_VENDOR_LOCATIONS " , originalVendorLocation ) ;
402
+ System . Environment . SetEnvironmentVariable ( "UNITY_3DAPP_VENDOR_LOCATIONS " , originalVendorLocation ) ;
403
403
System . Environment . SetEnvironmentVariable ( "MAYA_LOCATION" , originalMayaLocation ) ;
404
404
405
405
//Clean up vendor location(s)
@@ -418,7 +418,7 @@ private void SetEnvironmentVariables (string vendorLocation, string mayaLocation
418
418
{
419
419
if ( ! string . IsNullOrEmpty ( vendorLocation ) ) {
420
420
//if the given vendor location isn't null, set the environment variable to it.
421
- System . Environment . SetEnvironmentVariable ( "UNITY_FBX_3DAPP_VENDOR_LOCATIONS " , vendorLocation ) ;
421
+ System . Environment . SetEnvironmentVariable ( "UNITY_3DAPP_VENDOR_LOCATIONS " , vendorLocation ) ;
422
422
}
423
423
if ( mayaLocationPath != null ) {
424
424
//if the given MAYA_LOCATION isn't null, set the environment variable to it
0 commit comments