├── .gitignore ├── LICENSE ├── README.md └── import_bsp ├── BlenderBSP.py ├── BlenderEntities.py ├── BlenderImage.py ├── BlenderSurfaceFactory.py ├── Gamepacks.py ├── GridIcoSphere.py ├── MD3.py ├── MDR.py ├── QuakeLight.py ├── QuakeShader.py ├── QuakeSky.py ├── SKB.py ├── ShaderNodes.py ├── TAN.py ├── TIKI.py ├── UI.py ├── __init__.py ├── gamepacks └── Jedi Knight Jedi Academy SP.json └── idtech3lib ├── BSP.py ├── EF2BSP.py ├── FAKK.py ├── FBSP.py ├── GamePacks.py ├── Helpers.py ├── IBSP.py ├── ID3Brushes.py ├── ID3Image.py ├── ID3Model.py ├── ID3Object.py ├── ID3Shader.py ├── ID3VFS.py ├── ImportSettings.py ├── MAP.py ├── Parsing.py ├── RBSP.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/README.md -------------------------------------------------------------------------------- /import_bsp/BlenderBSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/BlenderBSP.py -------------------------------------------------------------------------------- /import_bsp/BlenderEntities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/BlenderEntities.py -------------------------------------------------------------------------------- /import_bsp/BlenderImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/BlenderImage.py -------------------------------------------------------------------------------- /import_bsp/BlenderSurfaceFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/BlenderSurfaceFactory.py -------------------------------------------------------------------------------- /import_bsp/Gamepacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/Gamepacks.py -------------------------------------------------------------------------------- /import_bsp/GridIcoSphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/GridIcoSphere.py -------------------------------------------------------------------------------- /import_bsp/MD3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/MD3.py -------------------------------------------------------------------------------- /import_bsp/MDR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/MDR.py -------------------------------------------------------------------------------- /import_bsp/QuakeLight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/QuakeLight.py -------------------------------------------------------------------------------- /import_bsp/QuakeShader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/QuakeShader.py -------------------------------------------------------------------------------- /import_bsp/QuakeSky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/QuakeSky.py -------------------------------------------------------------------------------- /import_bsp/SKB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/SKB.py -------------------------------------------------------------------------------- /import_bsp/ShaderNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/ShaderNodes.py -------------------------------------------------------------------------------- /import_bsp/TAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/TAN.py -------------------------------------------------------------------------------- /import_bsp/TIKI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/TIKI.py -------------------------------------------------------------------------------- /import_bsp/UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/UI.py -------------------------------------------------------------------------------- /import_bsp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/__init__.py -------------------------------------------------------------------------------- /import_bsp/gamepacks/Jedi Knight Jedi Academy SP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/gamepacks/Jedi Knight Jedi Academy SP.json -------------------------------------------------------------------------------- /import_bsp/idtech3lib/BSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/BSP.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/EF2BSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/EF2BSP.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/FAKK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/FAKK.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/FBSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/FBSP.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/GamePacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/GamePacks.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/Helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/Helpers.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/IBSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/IBSP.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/ID3Brushes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/ID3Brushes.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/ID3Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/ID3Image.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/ID3Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/ID3Model.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/ID3Object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/ID3Object.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/ID3Shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/ID3Shader.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/ID3VFS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/ID3VFS.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/ImportSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/ImportSettings.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/MAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/MAP.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/Parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/Parsing.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/RBSP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/RBSP.py -------------------------------------------------------------------------------- /import_bsp/idtech3lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SomaZ/Blender_BSP_Importer/HEAD/import_bsp/idtech3lib/__init__.py --------------------------------------------------------------------------------