├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cinema4d ├── README_C4D └── tradigiTOOLs │ ├── res │ ├── c4d_symbols.bak │ ├── c4d_symbols.h │ ├── dialogs │ │ └── TRADIGITOOLS_DIALOG.res │ ├── strings_us │ │ └── dialogs │ │ │ └── TRADIGITOOLS_DIALOG.str │ └── tradigiTOOLS_32X32_vs02.png │ └── tradigiTOOLs.pyp ├── cmake └── FindMaya.cmake ├── maya ├── ANIMTools.cpp ├── ANIMToolsUI.cpp ├── ANIMToolsUI.h ├── AboutCommand.cpp ├── AboutCommand.h ├── Breakdown.cpp ├── Breakdown.h ├── BreakdownCommand.cpp ├── BreakdownCommand.h ├── BreakdownList.cpp ├── BreakdownList.h ├── CMakeLists.txt ├── CurveCleanerCommand.cpp ├── CurveCleanerCommand.h ├── ErrorReporting.h ├── IncrementalSaveCommand.cpp ├── IncrementalSaveCommand.h ├── RetimingCommand.cpp ├── RetimingCommand.h ├── SetKeyCommand.cpp ├── SetKeyCommand.h ├── ShotMaskCommand.cpp ├── ShotMaskCommand.h ├── icons │ └── tradigitools_32x32.png ├── readme-1.3a.rtf ├── scripts │ └── cie_tradigitools.mel └── source │ └── SConscript └── tradigitools.mod /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/README.md -------------------------------------------------------------------------------- /cinema4d/README_C4D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/cinema4d/README_C4D -------------------------------------------------------------------------------- /cinema4d/tradigiTOOLs/res/c4d_symbols.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/cinema4d/tradigiTOOLs/res/c4d_symbols.bak -------------------------------------------------------------------------------- /cinema4d/tradigiTOOLs/res/c4d_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/cinema4d/tradigiTOOLs/res/c4d_symbols.h -------------------------------------------------------------------------------- /cinema4d/tradigiTOOLs/res/dialogs/TRADIGITOOLS_DIALOG.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/cinema4d/tradigiTOOLs/res/dialogs/TRADIGITOOLS_DIALOG.res -------------------------------------------------------------------------------- /cinema4d/tradigiTOOLs/res/strings_us/dialogs/TRADIGITOOLS_DIALOG.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/cinema4d/tradigiTOOLs/res/strings_us/dialogs/TRADIGITOOLS_DIALOG.str -------------------------------------------------------------------------------- /cinema4d/tradigiTOOLs/res/tradigiTOOLS_32X32_vs02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/cinema4d/tradigiTOOLs/res/tradigiTOOLS_32X32_vs02.png -------------------------------------------------------------------------------- /cinema4d/tradigiTOOLs/tradigiTOOLs.pyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/cinema4d/tradigiTOOLs/tradigiTOOLs.pyp -------------------------------------------------------------------------------- /cmake/FindMaya.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/cmake/FindMaya.cmake -------------------------------------------------------------------------------- /maya/ANIMTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/ANIMTools.cpp -------------------------------------------------------------------------------- /maya/ANIMToolsUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/ANIMToolsUI.cpp -------------------------------------------------------------------------------- /maya/ANIMToolsUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/ANIMToolsUI.h -------------------------------------------------------------------------------- /maya/AboutCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/AboutCommand.cpp -------------------------------------------------------------------------------- /maya/AboutCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/AboutCommand.h -------------------------------------------------------------------------------- /maya/Breakdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/Breakdown.cpp -------------------------------------------------------------------------------- /maya/Breakdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/Breakdown.h -------------------------------------------------------------------------------- /maya/BreakdownCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/BreakdownCommand.cpp -------------------------------------------------------------------------------- /maya/BreakdownCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/BreakdownCommand.h -------------------------------------------------------------------------------- /maya/BreakdownList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/BreakdownList.cpp -------------------------------------------------------------------------------- /maya/BreakdownList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/BreakdownList.h -------------------------------------------------------------------------------- /maya/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/CMakeLists.txt -------------------------------------------------------------------------------- /maya/CurveCleanerCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/CurveCleanerCommand.cpp -------------------------------------------------------------------------------- /maya/CurveCleanerCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/CurveCleanerCommand.h -------------------------------------------------------------------------------- /maya/ErrorReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/ErrorReporting.h -------------------------------------------------------------------------------- /maya/IncrementalSaveCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/IncrementalSaveCommand.cpp -------------------------------------------------------------------------------- /maya/IncrementalSaveCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/IncrementalSaveCommand.h -------------------------------------------------------------------------------- /maya/RetimingCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/RetimingCommand.cpp -------------------------------------------------------------------------------- /maya/RetimingCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/RetimingCommand.h -------------------------------------------------------------------------------- /maya/SetKeyCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/SetKeyCommand.cpp -------------------------------------------------------------------------------- /maya/SetKeyCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/SetKeyCommand.h -------------------------------------------------------------------------------- /maya/ShotMaskCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/ShotMaskCommand.cpp -------------------------------------------------------------------------------- /maya/ShotMaskCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/ShotMaskCommand.h -------------------------------------------------------------------------------- /maya/icons/tradigitools_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/icons/tradigitools_32x32.png -------------------------------------------------------------------------------- /maya/readme-1.3a.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/readme-1.3a.rtf -------------------------------------------------------------------------------- /maya/scripts/cie_tradigitools.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/scripts/cie_tradigitools.mel -------------------------------------------------------------------------------- /maya/source/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kattkieru/tradigitools/HEAD/maya/source/SConscript -------------------------------------------------------------------------------- /tradigitools.mod: -------------------------------------------------------------------------------- 1 | + tradigitools 1.5 ./module 2 | --------------------------------------------------------------------------------