├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── blender_manifest.toml ├── gtaLib ├── __init__.py ├── col.py ├── data │ ├── col_materials.py │ ├── map_data.py │ └── presets.py ├── dff.py ├── img.py ├── map.py ├── native_gc.py ├── native_ps2.py ├── native_psp.py ├── native_wdgl.py ├── native_xbox.py ├── pyffi │ └── utils │ │ ├── trianglemesh.py │ │ ├── trianglestripifier.py │ │ └── tristrip.py └── txd.py ├── gui ├── col_ot.py ├── cull_menus.py ├── dff_menus.py ├── dff_ot.py ├── ext_2dfx_menus.py ├── ext_2dfx_ot.py ├── gizmos.py ├── gui.py ├── map_menus.py └── map_ot.py └── ops ├── col_exporter.py ├── col_importer.py ├── cull_exporter.py ├── cull_importer.py ├── dff_exporter.py ├── dff_importer.py ├── ext_2dfx_exporter.py ├── ext_2dfx_importer.py ├── importer_common.py ├── ipl_exporter.py ├── map_importer.py ├── state.py ├── txd_exporter.py └── txd_importer.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: parik -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/__init__.py -------------------------------------------------------------------------------- /blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/blender_manifest.toml -------------------------------------------------------------------------------- /gtaLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gtaLib/col.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/col.py -------------------------------------------------------------------------------- /gtaLib/data/col_materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/data/col_materials.py -------------------------------------------------------------------------------- /gtaLib/data/map_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/data/map_data.py -------------------------------------------------------------------------------- /gtaLib/data/presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/data/presets.py -------------------------------------------------------------------------------- /gtaLib/dff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/dff.py -------------------------------------------------------------------------------- /gtaLib/img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/img.py -------------------------------------------------------------------------------- /gtaLib/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/map.py -------------------------------------------------------------------------------- /gtaLib/native_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/native_gc.py -------------------------------------------------------------------------------- /gtaLib/native_ps2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/native_ps2.py -------------------------------------------------------------------------------- /gtaLib/native_psp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/native_psp.py -------------------------------------------------------------------------------- /gtaLib/native_wdgl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/native_wdgl.py -------------------------------------------------------------------------------- /gtaLib/native_xbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/native_xbox.py -------------------------------------------------------------------------------- /gtaLib/pyffi/utils/trianglemesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/pyffi/utils/trianglemesh.py -------------------------------------------------------------------------------- /gtaLib/pyffi/utils/trianglestripifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/pyffi/utils/trianglestripifier.py -------------------------------------------------------------------------------- /gtaLib/pyffi/utils/tristrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/pyffi/utils/tristrip.py -------------------------------------------------------------------------------- /gtaLib/txd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gtaLib/txd.py -------------------------------------------------------------------------------- /gui/col_ot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/col_ot.py -------------------------------------------------------------------------------- /gui/cull_menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/cull_menus.py -------------------------------------------------------------------------------- /gui/dff_menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/dff_menus.py -------------------------------------------------------------------------------- /gui/dff_ot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/dff_ot.py -------------------------------------------------------------------------------- /gui/ext_2dfx_menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/ext_2dfx_menus.py -------------------------------------------------------------------------------- /gui/ext_2dfx_ot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/ext_2dfx_ot.py -------------------------------------------------------------------------------- /gui/gizmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/gizmos.py -------------------------------------------------------------------------------- /gui/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/gui.py -------------------------------------------------------------------------------- /gui/map_menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/map_menus.py -------------------------------------------------------------------------------- /gui/map_ot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/gui/map_ot.py -------------------------------------------------------------------------------- /ops/col_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/col_exporter.py -------------------------------------------------------------------------------- /ops/col_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/col_importer.py -------------------------------------------------------------------------------- /ops/cull_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/cull_exporter.py -------------------------------------------------------------------------------- /ops/cull_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/cull_importer.py -------------------------------------------------------------------------------- /ops/dff_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/dff_exporter.py -------------------------------------------------------------------------------- /ops/dff_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/dff_importer.py -------------------------------------------------------------------------------- /ops/ext_2dfx_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/ext_2dfx_exporter.py -------------------------------------------------------------------------------- /ops/ext_2dfx_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/ext_2dfx_importer.py -------------------------------------------------------------------------------- /ops/importer_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/importer_common.py -------------------------------------------------------------------------------- /ops/ipl_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/ipl_exporter.py -------------------------------------------------------------------------------- /ops/map_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/map_importer.py -------------------------------------------------------------------------------- /ops/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/state.py -------------------------------------------------------------------------------- /ops/txd_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/txd_exporter.py -------------------------------------------------------------------------------- /ops/txd_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parik27/DragonFF/HEAD/ops/txd_importer.py --------------------------------------------------------------------------------