├── DNA ├── 2D │ ├── init.py │ ├── menu.py │ └── scripts │ │ └── shotAssembler.py ├── 3D │ ├── animManager.py │ ├── assetManager.py │ ├── attrManager.py │ ├── dataPublisher.py │ ├── dnaCore.py │ ├── exportABC.py │ ├── icons │ │ ├── MayaStartupImage.png │ │ ├── dnaANM.jpg │ │ ├── dnaASM.jpg │ │ ├── dnaATM.jpg │ │ ├── dnaEXP.jpg │ │ ├── dnaFTP.jpg │ │ ├── dnaFXM.jpg │ │ ├── dnaIMP.jpg │ │ ├── dnaPUB.jpg │ │ ├── dnaRND.jpg │ │ ├── dnaSHA.jpg │ │ ├── dnaSNV.jpg │ │ ├── iconDNA_A.ico │ │ ├── iconDNA_B.ico │ │ ├── iconDNA_C.ico │ │ └── iconDNA_D.ico │ ├── importABC.py │ ├── renderManager.py │ ├── setupMaya.py │ ├── setupProject.py │ ├── shelves │ │ └── shelf_DNA.mel │ ├── shotAssembler.py │ └── userSetup.mel └── DIC │ └── dataProject.json ├── README.md ├── runHoudini.bat ├── runHoudini.py ├── runMaya.bat ├── runMaya.py ├── runNuke.bat └── runNuke.py /DNA/2D/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/2D/init.py -------------------------------------------------------------------------------- /DNA/2D/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/2D/menu.py -------------------------------------------------------------------------------- /DNA/2D/scripts/shotAssembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/2D/scripts/shotAssembler.py -------------------------------------------------------------------------------- /DNA/3D/animManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/animManager.py -------------------------------------------------------------------------------- /DNA/3D/assetManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/assetManager.py -------------------------------------------------------------------------------- /DNA/3D/attrManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/attrManager.py -------------------------------------------------------------------------------- /DNA/3D/dataPublisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/dataPublisher.py -------------------------------------------------------------------------------- /DNA/3D/dnaCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/dnaCore.py -------------------------------------------------------------------------------- /DNA/3D/exportABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/exportABC.py -------------------------------------------------------------------------------- /DNA/3D/icons/MayaStartupImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/MayaStartupImage.png -------------------------------------------------------------------------------- /DNA/3D/icons/dnaANM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaANM.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaASM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaASM.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaATM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaATM.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaEXP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaEXP.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaFTP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaFTP.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaFXM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaFXM.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaIMP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaIMP.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaPUB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaPUB.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaRND.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaRND.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaSHA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaSHA.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/dnaSNV.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/dnaSNV.jpg -------------------------------------------------------------------------------- /DNA/3D/icons/iconDNA_A.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/iconDNA_A.ico -------------------------------------------------------------------------------- /DNA/3D/icons/iconDNA_B.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/iconDNA_B.ico -------------------------------------------------------------------------------- /DNA/3D/icons/iconDNA_C.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/iconDNA_C.ico -------------------------------------------------------------------------------- /DNA/3D/icons/iconDNA_D.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/icons/iconDNA_D.ico -------------------------------------------------------------------------------- /DNA/3D/importABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/importABC.py -------------------------------------------------------------------------------- /DNA/3D/renderManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/renderManager.py -------------------------------------------------------------------------------- /DNA/3D/setupMaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/setupMaya.py -------------------------------------------------------------------------------- /DNA/3D/setupProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/setupProject.py -------------------------------------------------------------------------------- /DNA/3D/shelves/shelf_DNA.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/shelves/shelf_DNA.mel -------------------------------------------------------------------------------- /DNA/3D/shotAssembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/shotAssembler.py -------------------------------------------------------------------------------- /DNA/3D/userSetup.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/3D/userSetup.mel -------------------------------------------------------------------------------- /DNA/DIC/dataProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/DNA/DIC/dataProject.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/README.md -------------------------------------------------------------------------------- /runHoudini.bat: -------------------------------------------------------------------------------- 1 | "C:\Program Files\Autodesk\Maya2017\bin\mayapy.exe" %cd%\runHoudini.py -------------------------------------------------------------------------------- /runHoudini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/runHoudini.py -------------------------------------------------------------------------------- /runMaya.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/runMaya.bat -------------------------------------------------------------------------------- /runMaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/runMaya.py -------------------------------------------------------------------------------- /runNuke.bat: -------------------------------------------------------------------------------- 1 | "C:\Program Files\Nuke9.0v7\python.exe" %cd%\runNuke.py 2 | -------------------------------------------------------------------------------- /runNuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kiryha/AnimationDNA/HEAD/runNuke.py --------------------------------------------------------------------------------