├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── __init__.py ├── crafty.py ├── install.sh ├── models.py ├── pack_addon.py ├── vmt.py └── vtf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/__init__.py -------------------------------------------------------------------------------- /crafty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/crafty.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/install.sh -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/models.py -------------------------------------------------------------------------------- /pack_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/pack_addon.py -------------------------------------------------------------------------------- /vmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/vmt.py -------------------------------------------------------------------------------- /vtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lasa01/blender-vmt/HEAD/vtf.py --------------------------------------------------------------------------------