diff --git a/MaxNifTools.ini b/MaxNifTools.ini index 1501ffaf4485262dd0373f72fa0f9f29cb7df651..9d4d4597a36ec4e25f7041c2e83deaa041ea44ff 100644 --- a/MaxNifTools.ini +++ b/MaxNifTools.ini @@ -68,8 +68,8 @@ BonesPerPartition=18 UseTimeTags=0 AllowAccum=1 Creator= -; Collapse Transforms to final position. Default: 0 -CollapseTransforms=0 +; Collapse Transforms to final position. Default: 1 +CollapseTransforms=1 ; Add Tangent and Binormal Extra Data block. Default: 0 TangentAndBinormalExtraData=0 FixNormals=0 diff --git a/MaxNifTools.iss b/MaxNifTools.iss index a0140b84820e8701675014e8219e7d5701d6219f..095d0c417f77f75b7f88cec2c219d5b945b95ef3 100644 --- a/MaxNifTools.iss +++ b/MaxNifTools.iss @@ -96,25 +96,25 @@ begin case Param of 'gmax12': if not RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\gmax', 'uninstallpath', Result) then - Result := ExpandConstant('{sd}{\}gmax12}'); + Result := ExpandConstant('{sd}{\}gmax12'); 'max4': if not RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\3ds max 4', 'uninstallpath', Result) then - Result := ExpandConstant('{sd}{\}3dsmax4}'); + Result := ExpandConstant('{sd}{\}3dsmax4'); 'max42': if not RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\3ds max 4', 'uninstallpath', Result) then - Result := ExpandConstant('{sd}{\}3dsmax42}'); + Result := ExpandConstant('{sd}{\}3dsmax42'); 'max5': if not RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\3ds max 5', 'uninstallpath', Result) then - Result := ExpandConstant('{sd}{\}3dsmax5}'); + Result := ExpandConstant('{sd}{\}3dsmax5'); 'max6': if not RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Autodesk\3dsMax\6.0', 'InstallDir', Result) then - Result := ExpandConstant('{sd}{\}3dsmax6}'); + Result := ExpandConstant('{sd}{\}3dsmax6'); 'max7': if not RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Autodesk\3dsMax\7.0', 'InstallDir', Result) then - Result := ExpandConstant('{sd}{\}3dsmax7}'); + Result := ExpandConstant('{sd}{\}3dsmax7'); 'max8': if not RegQueryStringValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Autodesk\3dsMax\8.0', 'InstallDir', Result) then - Result := ExpandConstant('{sd}{\}3dsmax8}'); + Result := ExpandConstant('{sd}{\}3dsmax8'); 'max9': begin if RegGetSubkeyNames(HKEY_LOCAL_MACHINE, 'SOFTWARE\Autodesk\3dsMax\9.0', Names) then begin diff --git a/NifExport/Exporter.cpp b/NifExport/Exporter.cpp index 6a9c5796836fe4543be7436e59ae296742ad5d8b..19b3963bd041e2a84125ffea0b35ec27cf944640 100755 --- a/NifExport/Exporter.cpp +++ b/NifExport/Exporter.cpp @@ -40,7 +40,7 @@ bool Exporter::mUseTimeTags = false; bool Exporter::mAutoDetect = true; bool Exporter::mAllowAccum = true; string Exporter::mCreatorName; -bool Exporter::mCollapseTransforms = false; +bool Exporter::mCollapseTransforms = true; bool Exporter::mFixNormals = false; bool Exporter::mTangentAndBinormalExtraData = false; bool Exporter::mSupportPrnStrings = false;