├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── icons ├── average.svg ├── between.svg ├── curve.svg ├── default.svg ├── keyhammer.svg ├── live-preview.svg ├── overshoot.svg ├── tick-normal.svg ├── tick-special.svg ├── towards.svg ├── tweener-icon.png ├── tweener-icon.svg ├── tweener-icon_150.png └── tweener-icon_200.png ├── images ├── tweener-demo.gif ├── tweener-options.png ├── tweener-overview.png └── tweener-screenshot.png ├── mods ├── __init__.py ├── animdata.py ├── animlayers.py ├── globals.py ├── keyhammer.py ├── options.py ├── tool.py ├── tween.py ├── ui.py └── utils.py ├── tweener-install.py └── tweener.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: o6q5vn9 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/README.md -------------------------------------------------------------------------------- /icons/average.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/average.svg -------------------------------------------------------------------------------- /icons/between.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/between.svg -------------------------------------------------------------------------------- /icons/curve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/curve.svg -------------------------------------------------------------------------------- /icons/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/default.svg -------------------------------------------------------------------------------- /icons/keyhammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/keyhammer.svg -------------------------------------------------------------------------------- /icons/live-preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/live-preview.svg -------------------------------------------------------------------------------- /icons/overshoot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/overshoot.svg -------------------------------------------------------------------------------- /icons/tick-normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/tick-normal.svg -------------------------------------------------------------------------------- /icons/tick-special.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/tick-special.svg -------------------------------------------------------------------------------- /icons/towards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/towards.svg -------------------------------------------------------------------------------- /icons/tweener-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/tweener-icon.png -------------------------------------------------------------------------------- /icons/tweener-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/tweener-icon.svg -------------------------------------------------------------------------------- /icons/tweener-icon_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/tweener-icon_150.png -------------------------------------------------------------------------------- /icons/tweener-icon_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/icons/tweener-icon_200.png -------------------------------------------------------------------------------- /images/tweener-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/images/tweener-demo.gif -------------------------------------------------------------------------------- /images/tweener-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/images/tweener-options.png -------------------------------------------------------------------------------- /images/tweener-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/images/tweener-overview.png -------------------------------------------------------------------------------- /images/tweener-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/images/tweener-screenshot.png -------------------------------------------------------------------------------- /mods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/animdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/animdata.py -------------------------------------------------------------------------------- /mods/animlayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/animlayers.py -------------------------------------------------------------------------------- /mods/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/globals.py -------------------------------------------------------------------------------- /mods/keyhammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/keyhammer.py -------------------------------------------------------------------------------- /mods/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/options.py -------------------------------------------------------------------------------- /mods/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/tool.py -------------------------------------------------------------------------------- /mods/tween.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/tween.py -------------------------------------------------------------------------------- /mods/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/ui.py -------------------------------------------------------------------------------- /mods/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/mods/utils.py -------------------------------------------------------------------------------- /tweener-install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/tweener-install.py -------------------------------------------------------------------------------- /tweener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monoteba/maya-tweener/HEAD/tweener.py --------------------------------------------------------------------------------