├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SWBF2Import ├── DefaultImportMaterial.mat ├── Editor │ ├── ImportWorldWindow.cs │ ├── MeshImportOptionsWindow.cs │ └── SWBF2Menu.cs ├── LibSWBF2.dll └── SWBF2Import.cs └── Screenshots ├── importer.jpg ├── menu.jpg ├── unity2.jpg └── unity3.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/README.md -------------------------------------------------------------------------------- /SWBF2Import/DefaultImportMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/SWBF2Import/DefaultImportMaterial.mat -------------------------------------------------------------------------------- /SWBF2Import/Editor/ImportWorldWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/SWBF2Import/Editor/ImportWorldWindow.cs -------------------------------------------------------------------------------- /SWBF2Import/Editor/MeshImportOptionsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/SWBF2Import/Editor/MeshImportOptionsWindow.cs -------------------------------------------------------------------------------- /SWBF2Import/Editor/SWBF2Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/SWBF2Import/Editor/SWBF2Menu.cs -------------------------------------------------------------------------------- /SWBF2Import/LibSWBF2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/SWBF2Import/LibSWBF2.dll -------------------------------------------------------------------------------- /SWBF2Import/SWBF2Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/SWBF2Import/SWBF2Import.cs -------------------------------------------------------------------------------- /Screenshots/importer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/Screenshots/importer.jpg -------------------------------------------------------------------------------- /Screenshots/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/Screenshots/menu.jpg -------------------------------------------------------------------------------- /Screenshots/unity2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/Screenshots/unity2.jpg -------------------------------------------------------------------------------- /Screenshots/unity3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ben1138/Unity-SWBF2-Import/HEAD/Screenshots/unity3.jpg --------------------------------------------------------------------------------