├── .gitattributes ├── .gitignore ├── .gitmodules ├── AUTHORS.TXT ├── Build └── Sheets │ ├── Debug_Settings.props │ ├── Debug_Settings.vsprops │ ├── Max_System_Default.props │ ├── Max_System_Default.vsprops │ ├── Max_System_Win32.props │ ├── Max_System_Win32.vsprops │ ├── Max_System_x64.props │ ├── Max_System_x64.vsprops │ ├── Max_Version_2008.props │ ├── Max_Version_2008.vsprops │ ├── Max_Version_2009.props │ ├── Max_Version_2009.vsprops │ ├── Max_Version_2010.props │ ├── Max_Version_2010.vsprops │ ├── Max_Version_2011.props │ ├── Max_Version_2011.vsprops │ ├── Max_Version_2012.props │ ├── Max_Version_2012.vsprops │ ├── Max_Version_4.vsprops │ ├── Max_Version_42.vsprops │ ├── Max_Version_5.vsprops │ ├── Max_Version_6.vsprops │ ├── Max_Version_7.vsprops │ ├── Max_Version_8.vsprops │ ├── Max_Version_9.props │ ├── Max_Version_9.vsprops │ ├── Niflib_Settings.props │ ├── Niflib_Settings.vsprops │ ├── Release_Settings.props │ ├── Release_Settings.vsprops │ └── gmax_Version_12.vsprops ├── CHANGELOG.TXT ├── LICENSE.TXT ├── MaxNifTools.ini ├── MaxNifTools.iss ├── NifCommon ├── 3dsmaxport.h ├── AnimKey.cpp ├── AnimKey.h ├── AppSettings.cpp ├── AppSettings.h ├── Hyperlinks.cpp ├── Hyperlinks.h ├── IniSection.h ├── MAX_Mem.h ├── MAX_MemDirect.h ├── NifCommon_VC80.vcproj ├── NifGui.cpp ├── NifGui.h ├── NifPlugins.cpp ├── NifPlugins.h ├── NifQHull.cpp ├── NifVersion.h ├── build.isi ├── config.h ├── config.h.in ├── nifversion.rc ├── nimorph.cpp ├── niutils.cpp ├── niutils.h ├── objectParams.h ├── pch.cpp └── pch.h ├── NifExport ├── Animation.cpp ├── Coll.cpp ├── Config.cpp ├── DllEntry.cpp ├── Exporter.cpp ├── Exporter.h ├── KfExport.cpp ├── Mesh.cpp ├── MtlTex.cpp ├── NifExport.cpp ├── NifExport.def ├── NifExport.h ├── NifExport.rc ├── NifExport.sln ├── NifExport.vcproj ├── NifExport_VC80.vcproj ├── NvTriStrip │ ├── NvTriStrip.cpp │ ├── NvTriStrip.h │ ├── NvTriStripObjects.cpp │ ├── NvTriStripObjects.h │ ├── VertexCache.cpp │ └── VertexCache.h ├── Strips.cpp ├── Util.cpp ├── pch.cpp ├── pch.h └── resource.h ├── NifFurniture ├── DllEntry.cpp ├── FurnitureMarkers.h ├── NifFurniture.cpp ├── NifFurniture.def ├── NifFurniture.h ├── NifFurniture.rc ├── NifFurniture.vcproj ├── NifFurniture_VC80.vcproj └── resource.h ├── NifImport ├── BaseImporter.h ├── DllEntry.cpp ├── ImportAnimation.cpp ├── ImportCollision.cpp ├── ImportLights.cpp ├── ImportMeshAndSkin.cpp ├── ImportMtlAndTex.cpp ├── ImportSkeleton.cpp ├── KFImporter.cpp ├── KFImporter.h ├── KFMImporter.cpp ├── KFMImporter.h ├── KfDialog.cpp ├── MaxNifImport.cpp ├── MaxNifImport.def ├── MaxNifImport.h ├── MaxNifImport.rc ├── MaxNifImport.vcproj ├── MaxNifImport_VC80.vcproj ├── NIFImport.cpp ├── NIFImporter.h ├── NifDialog.cpp ├── resource.h ├── stdafx.cpp └── stdafx.h ├── NifPlugins ├── DllEntry.cpp ├── NifPlugins.def ├── NifPlugins.rc ├── pch.cpp ├── pch.h └── resource.h ├── NifPlugins_Development_Readme.txt ├── NifPlugins_VC2010.sln ├── NifProps ├── DllEntry.cpp ├── Modifier │ ├── AddDel16.bmp │ ├── AddDelMask16.bmp │ ├── BSDismemberSkin.cpp │ ├── bmp00003.bmp │ └── selmask.bmp ├── NifProps.cpp ├── NifProps.def ├── NifProps.h ├── NifProps.rc ├── NifProps.vcproj ├── NifProps_VC80.vcproj ├── NifStrings.h ├── Shader │ ├── NifShader.cpp │ ├── shaderutil.cpp │ └── shaderutil.h ├── bhkBoxObj.cpp ├── bhkCapsuleObj.cpp ├── bhkHelperFuncs.cpp ├── bhkHelperFuncs.h ├── bhkHelperInterface.cpp ├── bhkHelperInterface.h ├── bhkListObj.cpp ├── bhkProxyObj.cpp ├── bhkRigidBodyInterface.cpp ├── bhkRigidBodyInterface.h ├── bhkRigidBodyModifer.cpp ├── bhkSphereObj.cpp ├── dds │ ├── ConvertColor.h │ ├── dds.cpp │ ├── dds.dep │ ├── dds.h │ ├── dds.rc │ ├── ddsTypes.h │ ├── ddsres.h │ ├── dxtlib.h │ ├── nvDXTlib.lib │ ├── nvErrorCodes.h │ ├── nvdxt_options.h │ ├── tPixel.h │ ├── tVector.h │ └── veroverrides.h ├── iNifProps.h └── resource.h ├── README.TXT ├── TODO.txt ├── User_Settings.props ├── User_Settings.vsprops ├── makeconfig.bat ├── makeconfig.sh ├── makezip.sh ├── nif_maxsdk.zip ├── stagenif.bat └── start_devenv.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS.TXT: -------------------------------------------------------------------------------- 1 | gundalf 2 | tazpn 3 | sacarrow 4 | 5 | -------------------------------------------------------------------------------- /Build/Sheets/Debug_Settings.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Debug_Settings.props -------------------------------------------------------------------------------- /Build/Sheets/Debug_Settings.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Debug_Settings.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_System_Default.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_System_Default.props -------------------------------------------------------------------------------- /Build/Sheets/Max_System_Default.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_System_Default.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_System_Win32.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_System_Win32.props -------------------------------------------------------------------------------- /Build/Sheets/Max_System_Win32.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_System_Win32.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_System_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_System_x64.props -------------------------------------------------------------------------------- /Build/Sheets/Max_System_x64.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_System_x64.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2008.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2008.props -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2008.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2008.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2009.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2009.props -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2009.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2009.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2010.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2010.props -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2010.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2010.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2011.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2011.props -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2011.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2011.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2012.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2012.props -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_2012.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_2012.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_4.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_4.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_42.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_42.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_5.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_5.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_6.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_6.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_7.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_7.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_8.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_8.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_9.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_9.props -------------------------------------------------------------------------------- /Build/Sheets/Max_Version_9.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Max_Version_9.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Niflib_Settings.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Niflib_Settings.props -------------------------------------------------------------------------------- /Build/Sheets/Niflib_Settings.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Niflib_Settings.vsprops -------------------------------------------------------------------------------- /Build/Sheets/Release_Settings.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Release_Settings.props -------------------------------------------------------------------------------- /Build/Sheets/Release_Settings.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/Release_Settings.vsprops -------------------------------------------------------------------------------- /Build/Sheets/gmax_Version_12.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/Build/Sheets/gmax_Version_12.vsprops -------------------------------------------------------------------------------- /CHANGELOG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/CHANGELOG.TXT -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /MaxNifTools.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/MaxNifTools.ini -------------------------------------------------------------------------------- /MaxNifTools.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/MaxNifTools.iss -------------------------------------------------------------------------------- /NifCommon/3dsmaxport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/3dsmaxport.h -------------------------------------------------------------------------------- /NifCommon/AnimKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/AnimKey.cpp -------------------------------------------------------------------------------- /NifCommon/AnimKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/AnimKey.h -------------------------------------------------------------------------------- /NifCommon/AppSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/AppSettings.cpp -------------------------------------------------------------------------------- /NifCommon/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/AppSettings.h -------------------------------------------------------------------------------- /NifCommon/Hyperlinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/Hyperlinks.cpp -------------------------------------------------------------------------------- /NifCommon/Hyperlinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/Hyperlinks.h -------------------------------------------------------------------------------- /NifCommon/IniSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/IniSection.h -------------------------------------------------------------------------------- /NifCommon/MAX_Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/MAX_Mem.h -------------------------------------------------------------------------------- /NifCommon/MAX_MemDirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/MAX_MemDirect.h -------------------------------------------------------------------------------- /NifCommon/NifCommon_VC80.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/NifCommon_VC80.vcproj -------------------------------------------------------------------------------- /NifCommon/NifGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/NifGui.cpp -------------------------------------------------------------------------------- /NifCommon/NifGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/NifGui.h -------------------------------------------------------------------------------- /NifCommon/NifPlugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/NifPlugins.cpp -------------------------------------------------------------------------------- /NifCommon/NifPlugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/NifPlugins.h -------------------------------------------------------------------------------- /NifCommon/NifQHull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/NifQHull.cpp -------------------------------------------------------------------------------- /NifCommon/NifVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/NifVersion.h -------------------------------------------------------------------------------- /NifCommon/build.isi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/build.isi -------------------------------------------------------------------------------- /NifCommon/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/config.h -------------------------------------------------------------------------------- /NifCommon/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/config.h.in -------------------------------------------------------------------------------- /NifCommon/nifversion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/nifversion.rc -------------------------------------------------------------------------------- /NifCommon/nimorph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/nimorph.cpp -------------------------------------------------------------------------------- /NifCommon/niutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/niutils.cpp -------------------------------------------------------------------------------- /NifCommon/niutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/niutils.h -------------------------------------------------------------------------------- /NifCommon/objectParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/objectParams.h -------------------------------------------------------------------------------- /NifCommon/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/pch.cpp -------------------------------------------------------------------------------- /NifCommon/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifCommon/pch.h -------------------------------------------------------------------------------- /NifExport/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/Animation.cpp -------------------------------------------------------------------------------- /NifExport/Coll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/Coll.cpp -------------------------------------------------------------------------------- /NifExport/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/Config.cpp -------------------------------------------------------------------------------- /NifExport/DllEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/DllEntry.cpp -------------------------------------------------------------------------------- /NifExport/Exporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/Exporter.cpp -------------------------------------------------------------------------------- /NifExport/Exporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/Exporter.h -------------------------------------------------------------------------------- /NifExport/KfExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/KfExport.cpp -------------------------------------------------------------------------------- /NifExport/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/Mesh.cpp -------------------------------------------------------------------------------- /NifExport/MtlTex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/MtlTex.cpp -------------------------------------------------------------------------------- /NifExport/NifExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NifExport.cpp -------------------------------------------------------------------------------- /NifExport/NifExport.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NifExport.def -------------------------------------------------------------------------------- /NifExport/NifExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NifExport.h -------------------------------------------------------------------------------- /NifExport/NifExport.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NifExport.rc -------------------------------------------------------------------------------- /NifExport/NifExport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NifExport.sln -------------------------------------------------------------------------------- /NifExport/NifExport.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NifExport.vcproj -------------------------------------------------------------------------------- /NifExport/NifExport_VC80.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NifExport_VC80.vcproj -------------------------------------------------------------------------------- /NifExport/NvTriStrip/NvTriStrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NvTriStrip/NvTriStrip.cpp -------------------------------------------------------------------------------- /NifExport/NvTriStrip/NvTriStrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NvTriStrip/NvTriStrip.h -------------------------------------------------------------------------------- /NifExport/NvTriStrip/NvTriStripObjects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NvTriStrip/NvTriStripObjects.cpp -------------------------------------------------------------------------------- /NifExport/NvTriStrip/NvTriStripObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NvTriStrip/NvTriStripObjects.h -------------------------------------------------------------------------------- /NifExport/NvTriStrip/VertexCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NvTriStrip/VertexCache.cpp -------------------------------------------------------------------------------- /NifExport/NvTriStrip/VertexCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/NvTriStrip/VertexCache.h -------------------------------------------------------------------------------- /NifExport/Strips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/Strips.cpp -------------------------------------------------------------------------------- /NifExport/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/Util.cpp -------------------------------------------------------------------------------- /NifExport/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/pch.cpp -------------------------------------------------------------------------------- /NifExport/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/pch.h -------------------------------------------------------------------------------- /NifExport/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifExport/resource.h -------------------------------------------------------------------------------- /NifFurniture/DllEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/DllEntry.cpp -------------------------------------------------------------------------------- /NifFurniture/FurnitureMarkers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/FurnitureMarkers.h -------------------------------------------------------------------------------- /NifFurniture/NifFurniture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/NifFurniture.cpp -------------------------------------------------------------------------------- /NifFurniture/NifFurniture.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/NifFurniture.def -------------------------------------------------------------------------------- /NifFurniture/NifFurniture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/NifFurniture.h -------------------------------------------------------------------------------- /NifFurniture/NifFurniture.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/NifFurniture.rc -------------------------------------------------------------------------------- /NifFurniture/NifFurniture.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/NifFurniture.vcproj -------------------------------------------------------------------------------- /NifFurniture/NifFurniture_VC80.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/NifFurniture_VC80.vcproj -------------------------------------------------------------------------------- /NifFurniture/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifFurniture/resource.h -------------------------------------------------------------------------------- /NifImport/BaseImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/BaseImporter.h -------------------------------------------------------------------------------- /NifImport/DllEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/DllEntry.cpp -------------------------------------------------------------------------------- /NifImport/ImportAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/ImportAnimation.cpp -------------------------------------------------------------------------------- /NifImport/ImportCollision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/ImportCollision.cpp -------------------------------------------------------------------------------- /NifImport/ImportLights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/ImportLights.cpp -------------------------------------------------------------------------------- /NifImport/ImportMeshAndSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/ImportMeshAndSkin.cpp -------------------------------------------------------------------------------- /NifImport/ImportMtlAndTex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/ImportMtlAndTex.cpp -------------------------------------------------------------------------------- /NifImport/ImportSkeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/ImportSkeleton.cpp -------------------------------------------------------------------------------- /NifImport/KFImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/KFImporter.cpp -------------------------------------------------------------------------------- /NifImport/KFImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/KFImporter.h -------------------------------------------------------------------------------- /NifImport/KFMImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/KFMImporter.cpp -------------------------------------------------------------------------------- /NifImport/KFMImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/KFMImporter.h -------------------------------------------------------------------------------- /NifImport/KfDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/KfDialog.cpp -------------------------------------------------------------------------------- /NifImport/MaxNifImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/MaxNifImport.cpp -------------------------------------------------------------------------------- /NifImport/MaxNifImport.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/MaxNifImport.def -------------------------------------------------------------------------------- /NifImport/MaxNifImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/MaxNifImport.h -------------------------------------------------------------------------------- /NifImport/MaxNifImport.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/MaxNifImport.rc -------------------------------------------------------------------------------- /NifImport/MaxNifImport.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/MaxNifImport.vcproj -------------------------------------------------------------------------------- /NifImport/MaxNifImport_VC80.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/MaxNifImport_VC80.vcproj -------------------------------------------------------------------------------- /NifImport/NIFImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/NIFImport.cpp -------------------------------------------------------------------------------- /NifImport/NIFImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/NIFImporter.h -------------------------------------------------------------------------------- /NifImport/NifDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/NifDialog.cpp -------------------------------------------------------------------------------- /NifImport/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/resource.h -------------------------------------------------------------------------------- /NifImport/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /NifImport/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifImport/stdafx.h -------------------------------------------------------------------------------- /NifPlugins/DllEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifPlugins/DllEntry.cpp -------------------------------------------------------------------------------- /NifPlugins/NifPlugins.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifPlugins/NifPlugins.def -------------------------------------------------------------------------------- /NifPlugins/NifPlugins.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifPlugins/NifPlugins.rc -------------------------------------------------------------------------------- /NifPlugins/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifPlugins/pch.cpp -------------------------------------------------------------------------------- /NifPlugins/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifPlugins/pch.h -------------------------------------------------------------------------------- /NifPlugins/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifPlugins/resource.h -------------------------------------------------------------------------------- /NifPlugins_Development_Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifPlugins_Development_Readme.txt -------------------------------------------------------------------------------- /NifPlugins_VC2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifPlugins_VC2010.sln -------------------------------------------------------------------------------- /NifProps/DllEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/DllEntry.cpp -------------------------------------------------------------------------------- /NifProps/Modifier/AddDel16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/Modifier/AddDel16.bmp -------------------------------------------------------------------------------- /NifProps/Modifier/AddDelMask16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/Modifier/AddDelMask16.bmp -------------------------------------------------------------------------------- /NifProps/Modifier/BSDismemberSkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/Modifier/BSDismemberSkin.cpp -------------------------------------------------------------------------------- /NifProps/Modifier/bmp00003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/Modifier/bmp00003.bmp -------------------------------------------------------------------------------- /NifProps/Modifier/selmask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/Modifier/selmask.bmp -------------------------------------------------------------------------------- /NifProps/NifProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/NifProps.cpp -------------------------------------------------------------------------------- /NifProps/NifProps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/NifProps.def -------------------------------------------------------------------------------- /NifProps/NifProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/NifProps.h -------------------------------------------------------------------------------- /NifProps/NifProps.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/NifProps.rc -------------------------------------------------------------------------------- /NifProps/NifProps.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/NifProps.vcproj -------------------------------------------------------------------------------- /NifProps/NifProps_VC80.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/NifProps_VC80.vcproj -------------------------------------------------------------------------------- /NifProps/NifStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/NifStrings.h -------------------------------------------------------------------------------- /NifProps/Shader/NifShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/Shader/NifShader.cpp -------------------------------------------------------------------------------- /NifProps/Shader/shaderutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/Shader/shaderutil.cpp -------------------------------------------------------------------------------- /NifProps/Shader/shaderutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/Shader/shaderutil.h -------------------------------------------------------------------------------- /NifProps/bhkBoxObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkBoxObj.cpp -------------------------------------------------------------------------------- /NifProps/bhkCapsuleObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkCapsuleObj.cpp -------------------------------------------------------------------------------- /NifProps/bhkHelperFuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkHelperFuncs.cpp -------------------------------------------------------------------------------- /NifProps/bhkHelperFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkHelperFuncs.h -------------------------------------------------------------------------------- /NifProps/bhkHelperInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkHelperInterface.cpp -------------------------------------------------------------------------------- /NifProps/bhkHelperInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkHelperInterface.h -------------------------------------------------------------------------------- /NifProps/bhkListObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkListObj.cpp -------------------------------------------------------------------------------- /NifProps/bhkProxyObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkProxyObj.cpp -------------------------------------------------------------------------------- /NifProps/bhkRigidBodyInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkRigidBodyInterface.cpp -------------------------------------------------------------------------------- /NifProps/bhkRigidBodyInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkRigidBodyInterface.h -------------------------------------------------------------------------------- /NifProps/bhkRigidBodyModifer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkRigidBodyModifer.cpp -------------------------------------------------------------------------------- /NifProps/bhkSphereObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/bhkSphereObj.cpp -------------------------------------------------------------------------------- /NifProps/dds/ConvertColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/ConvertColor.h -------------------------------------------------------------------------------- /NifProps/dds/dds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/dds.cpp -------------------------------------------------------------------------------- /NifProps/dds/dds.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/dds.dep -------------------------------------------------------------------------------- /NifProps/dds/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/dds.h -------------------------------------------------------------------------------- /NifProps/dds/dds.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/dds.rc -------------------------------------------------------------------------------- /NifProps/dds/ddsTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/ddsTypes.h -------------------------------------------------------------------------------- /NifProps/dds/ddsres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/ddsres.h -------------------------------------------------------------------------------- /NifProps/dds/dxtlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/dxtlib.h -------------------------------------------------------------------------------- /NifProps/dds/nvDXTlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/nvDXTlib.lib -------------------------------------------------------------------------------- /NifProps/dds/nvErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/nvErrorCodes.h -------------------------------------------------------------------------------- /NifProps/dds/nvdxt_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/nvdxt_options.h -------------------------------------------------------------------------------- /NifProps/dds/tPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/tPixel.h -------------------------------------------------------------------------------- /NifProps/dds/tVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/tVector.h -------------------------------------------------------------------------------- /NifProps/dds/veroverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/dds/veroverrides.h -------------------------------------------------------------------------------- /NifProps/iNifProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/iNifProps.h -------------------------------------------------------------------------------- /NifProps/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/NifProps/resource.h -------------------------------------------------------------------------------- /README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/README.TXT -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/TODO.txt -------------------------------------------------------------------------------- /User_Settings.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/User_Settings.props -------------------------------------------------------------------------------- /User_Settings.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/User_Settings.vsprops -------------------------------------------------------------------------------- /makeconfig.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/makeconfig.bat -------------------------------------------------------------------------------- /makeconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/makeconfig.sh -------------------------------------------------------------------------------- /makezip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/makezip.sh -------------------------------------------------------------------------------- /nif_maxsdk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/nif_maxsdk.zip -------------------------------------------------------------------------------- /stagenif.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/stagenif.bat -------------------------------------------------------------------------------- /start_devenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/max_nif_plugin/HEAD/start_devenv.bat --------------------------------------------------------------------------------