Skip to content

Commit 9154f7c

Browse files
author
AJubrey
committed
[REMOVED] references to blender
1 parent 170cc51 commit 9154f7c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Assets/FbxExporters/Editor/FbxExportSettings.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,11 @@ private static string TryFindDCC(string dccPath, string ext, ExportSettings.DCCT
248248
public class ExportSettings : ScriptableSingleton<ExportSettings>
249249
{
250250
public const string kDefaultSavePath = ".";
251-
private static List<string> s_PreferenceList = new List<string>() {kMayaOptionName, kMayaLtOptionName, kMaxOptionName, kBlenderOptionName };
251+
private static List<string> s_PreferenceList = new List<string>() {kMayaOptionName, kMayaLtOptionName, kMaxOptionName};
252252
//Any additional names require a space after the name
253253
public const string kMaxOptionName = "3ds Max ";
254254
public const string kMayaOptionName = "Maya ";
255255
public const string kMayaLtOptionName = "MayaLT ";
256-
public const string kBlenderOptionName = "Blender ";
257256

258257
/// <summary>
259258
/// The paths where all the different versions of Maya are installed
@@ -479,7 +478,7 @@ private static int FindDCCVersion(string AppName)
479478
else
480479
{
481480
float fVersion;
482-
//In case we are looking at a Blender version- the int parse will fail so we'll need to parse it as a float.
481+
//In case we are looking at something with a decimal based version- the int parse will fail so we'll need to parse it as a float.
483482
if (float.TryParse(number, out fVersion))
484483
{
485484
return (int)fVersion;

0 commit comments

Comments
 (0)