├── .gitignore ├── LICENSE ├── README.md ├── install.mel ├── install.py └── src └── witcher3 ├── .vscode ├── launch.json └── settings.json ├── ShaderFX └── witcher_3_hair.sfx ├── __init__.py ├── anims.py ├── clean_up.py ├── cutscenes.py ├── entity.py ├── fbx_util.py ├── import_rig.py ├── material_utils.py ├── read_json_w3.py ├── resource └── icons │ └── icon.png ├── tree.py ├── vendor ├── Qt.py └── __init__.py ├── w3_types.py └── w3tool.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/README.md -------------------------------------------------------------------------------- /install.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/install.mel -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/install.py -------------------------------------------------------------------------------- /src/witcher3/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/.vscode/launch.json -------------------------------------------------------------------------------- /src/witcher3/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/.vscode/settings.json -------------------------------------------------------------------------------- /src/witcher3/ShaderFX/witcher_3_hair.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/ShaderFX/witcher_3_hair.sfx -------------------------------------------------------------------------------- /src/witcher3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/__init__.py -------------------------------------------------------------------------------- /src/witcher3/anims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/anims.py -------------------------------------------------------------------------------- /src/witcher3/clean_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/clean_up.py -------------------------------------------------------------------------------- /src/witcher3/cutscenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/cutscenes.py -------------------------------------------------------------------------------- /src/witcher3/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/entity.py -------------------------------------------------------------------------------- /src/witcher3/fbx_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/fbx_util.py -------------------------------------------------------------------------------- /src/witcher3/import_rig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/import_rig.py -------------------------------------------------------------------------------- /src/witcher3/material_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/material_utils.py -------------------------------------------------------------------------------- /src/witcher3/read_json_w3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/read_json_w3.py -------------------------------------------------------------------------------- /src/witcher3/resource/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/resource/icons/icon.png -------------------------------------------------------------------------------- /src/witcher3/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/tree.py -------------------------------------------------------------------------------- /src/witcher3/vendor/Qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/vendor/Qt.py -------------------------------------------------------------------------------- /src/witcher3/vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/witcher3/w3_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/w3_types.py -------------------------------------------------------------------------------- /src/witcher3/w3tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dingdio/witcher3-maya-animation/HEAD/src/witcher3/w3tool.py --------------------------------------------------------------------------------