├── .gitignore ├── README.md ├── environment ├── MAYA_PLUG_IN_PATH │ ├── basicPerlinDeformer.py │ └── jlCollisionDeformer.py └── PYTHONPATH │ ├── Red9 │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── changeLog.txt │ ├── core │ │ ├── AnimationBinder.py │ │ ├── Red9_AnimationUtils.py │ │ ├── Red9_Audio.py │ │ ├── Red9_CoreUtils.py │ │ ├── Red9_General.py │ │ ├── Red9_MelCore.mel │ │ ├── Red9_Meta.py │ │ ├── Red9_PoseSaver.py │ │ ├── Red9_Tools.py │ │ └── __init__.py │ ├── docs │ │ ├── Makefile │ │ ├── Red9-StudioTools Help.odt │ │ ├── Red9-StudioTools Help.pdf │ │ ├── html │ │ │ ├── .buildinfo │ │ │ ├── .doctrees │ │ │ │ ├── environment.pickle │ │ │ │ ├── index.doctree │ │ │ │ └── red9templates │ │ │ │ │ ├── Red9_AnimationUtils.doctree │ │ │ │ │ ├── Red9_Core.doctree │ │ │ │ │ ├── Red9_Meta.doctree │ │ │ │ │ └── core.doctree │ │ │ ├── _sources │ │ │ │ ├── index.txt │ │ │ │ └── red9templates │ │ │ │ │ ├── Red9_AnimationUtils.txt │ │ │ │ │ ├── Red9_Core.txt │ │ │ │ │ ├── Red9_Meta.txt │ │ │ │ │ └── core.txt │ │ │ ├── _static │ │ │ │ ├── basic.css │ │ │ │ ├── doctools.js │ │ │ │ ├── file.png │ │ │ │ ├── jquery.js │ │ │ │ ├── minus.png │ │ │ │ ├── nature.css │ │ │ │ ├── plus.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ └── underscore.js │ │ │ ├── genindex.html │ │ │ ├── index.html │ │ │ ├── objects.inv │ │ │ ├── py-modindex.html │ │ │ ├── red9templates │ │ │ │ ├── Red9_AnimationUtils.html │ │ │ │ ├── Red9_Audio.html │ │ │ │ ├── Red9_Core.html │ │ │ │ ├── Red9_General.html │ │ │ │ ├── Red9_Meta.html │ │ │ │ ├── Red9_PoseSaver.html │ │ │ │ ├── Red9_Tools.html │ │ │ │ └── core.html │ │ │ ├── search.html │ │ │ └── searchindex.js │ │ ├── images │ │ │ ├── AnimationUI.jpg │ │ │ ├── AnimationUI_Pose.jpg │ │ │ ├── AnimationUI_filter.jpg │ │ │ ├── AnimationUI_main.jpg │ │ │ ├── CopyKeys.jpg │ │ │ ├── FilterUI.jpg │ │ │ ├── LocknHide.jpg │ │ │ ├── NodeName_re.jpg │ │ │ ├── PoseManager.jpg │ │ │ ├── SnapTransforms.jpg │ │ │ ├── TimeOffset.jpg │ │ │ ├── TimeRange.jpg │ │ │ └── Track and Stabilize.jpg │ │ ├── make.bat │ │ ├── source │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ └── red9templates │ │ │ │ ├── Red9_AnimationUtils.rst │ │ │ │ ├── Red9_Audio.rst │ │ │ │ ├── Red9_Core.rst │ │ │ │ ├── Red9_General.rst │ │ │ │ ├── Red9_Meta.rst │ │ │ │ ├── Red9_PoseSaver.rst │ │ │ │ └── Red9_Tools.rst │ │ └── sphinxme.py │ ├── examples │ │ ├── MetaData_Getting_started.py │ │ ├── MetaData_subclassing.py │ │ ├── MetaRig_Morpheus.py │ │ └── poseHandler.py │ ├── icons │ │ ├── Red9StudioPack.ico │ │ ├── Rocket9_buttonStrap.bmp │ │ ├── Rocket9_buttonStrap2.bmp │ │ └── red9.jpg │ ├── installer │ │ ├── How To - ReadMe.txt │ │ └── userSetup.py │ ├── license.txt │ ├── packages │ │ ├── __init__.py │ │ ├── configobj.py │ │ ├── pydub │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── __init__.py │ │ │ └── pydub │ │ │ │ ├── __init__.py │ │ │ │ ├── audio_segment.py │ │ │ │ ├── effects.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── playback.py │ │ │ │ └── utils.py │ │ └── pyperclip.py │ ├── plug-ins │ │ └── SnapRuntime.py │ ├── presets │ │ ├── Andy_Rig.cfg │ │ ├── Basic_Rig.cfg │ │ ├── Default.cfg │ │ ├── HumanIK.cfg │ │ ├── MaxforMaya.cfg │ │ ├── MetaRig.cfg │ │ ├── MorpheusRig.cfg │ │ ├── Red9_MetaRig_unitTest.cfg │ │ ├── Standard_Hierarchy.cfg │ │ ├── Stewart_Rig.cfg │ │ ├── TSM.cfg │ │ └── __red9animreset__ │ ├── startup │ │ ├── __init__.py │ │ ├── maya_native │ │ │ ├── maya_2009 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2010 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2011 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2012 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2013 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2014 │ │ │ │ └── Maya_Hacked.mel │ │ │ └── red9MayaHacks.mel │ │ └── setup.py │ └── tests │ │ ├── Red9_AudioTest.py │ │ ├── Red9_CoreUtilTests.py │ │ ├── Red9_MetaTests.py │ │ ├── Red9_PoseTests.py │ │ └── testFiles │ │ ├── FilterNode_baseTests.ma │ │ ├── MetaRig_Poses │ │ ├── T_Pose.bmp │ │ ├── T_Pose.pose │ │ ├── fingers │ │ │ ├── l_fingers_curled.bmp │ │ │ ├── l_fingers_curled.pose │ │ │ ├── lfingers.bmp │ │ │ ├── lfingers.pose │ │ │ └── poseHandler.py │ │ ├── jump_f218.bmp │ │ ├── jump_f218.pose │ │ ├── jump_f218_projected.bmp │ │ ├── jump_f218_projected.pose │ │ ├── jump_f9.bmp │ │ ├── jump_f9.pose │ │ ├── jump_f9_absolute29.bmp │ │ └── jump_f9_absolute29.pose │ │ ├── MetaRig_anim_jump.mb │ │ ├── MetaRig_baseTests.ma │ │ ├── MetaRig_baseTests_MetaWired.ma │ │ ├── Meta_Network_WalkTest.ma │ │ ├── bwav_test.wav │ │ └── filterTest.cfg │ ├── UVDeluxe │ ├── __init__.py │ ├── uistates.py │ └── uvdeluxe.py │ ├── ZvParentMaster.py │ ├── userSetup.py │ └── zv │ └── parentmaster │ ├── pm_attach.xpm │ ├── pm_destroy.xpm │ ├── pm_detach.xpm │ ├── pm_fixsnap.xpm │ ├── pm_select.xpm │ └── pm_timeline.xpm └── tapp ├── __init__.py ├── app.py ├── maya ├── __init__.py ├── animation │ ├── __init__.py │ ├── dialog.py │ ├── dialog.ui │ ├── playblastQueue │ │ ├── __init__.py │ │ ├── dialog.py │ │ ├── dialog.ui │ │ └── utils.py │ ├── resetAttributes │ │ ├── __init__.py │ │ ├── dialog.py │ │ └── dialog.ui │ ├── setsSelector │ │ ├── __init__.py │ │ ├── dialog.py │ │ └── dialog.ui │ ├── timing │ │ ├── __init__.py │ │ ├── gui.py │ │ └── resources │ │ │ ├── __init__.py │ │ │ ├── dialog.py │ │ │ └── dialog.ui │ └── utils │ │ ├── RAT.mel │ │ ├── RAT_ui.ui │ │ ├── __init__.py │ │ ├── bhGhost.mel │ │ ├── deleteRedundantKeys.mel │ │ ├── face │ │ ├── __init__.py │ │ ├── gui.py │ │ └── utils.py │ │ ├── imageplane.py │ │ ├── ml_breakdownDragger.py │ │ ├── ml_hold.py │ │ ├── ml_keyValueDragger.py │ │ ├── ml_stopwatch.py │ │ ├── ml_utilities.py │ │ ├── paie.py │ │ ├── zooChangeRoo.mel │ │ └── zooUtils.mel ├── dialog.py ├── lighting │ ├── AddRimLight.py │ ├── FileTextureManager.mel │ ├── __init__.py │ ├── alembic │ │ ├── __init__.py │ │ └── utils.py │ ├── arnold.py │ ├── fgshooter.py │ ├── gui.py │ ├── region │ │ ├── __init__.py │ │ ├── gui.py │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── region.py │ │ │ └── region.ui │ │ └── utils.py │ ├── resources │ │ ├── __init__.py │ │ ├── dialog.py │ │ └── dialog.ui │ └── vray.py ├── modelling │ ├── RoadKill.mel │ ├── RoadKill1_1.exe │ ├── __init__.py │ ├── blendshapes.py │ ├── detachSeparate.mel │ ├── gui.py │ ├── icPolyScatter.mel │ ├── kk_symmetry.mel │ ├── resources │ │ ├── __init__.py │ │ ├── dialog.py │ │ └── dialog.ui │ └── utils.py ├── rigging │ ├── DoraSkinWeightImpExp.mel │ ├── ZvRadialBlendShape.py │ ├── __init__.py │ ├── bakeRadialBlendshape.py │ ├── connections.py │ ├── constraints.py │ ├── cylinderPreview.py │ ├── deformation.py │ ├── gui.py │ ├── joints.py │ ├── joysticker │ │ ├── __init__.py │ │ ├── gui.py │ │ ├── icons │ │ │ ├── icons.psd │ │ │ ├── sliderA.PNG │ │ │ ├── sliderB_east.png │ │ │ ├── sliderB_north.png │ │ │ ├── sliderB_south.png │ │ │ ├── sliderB_west.png │ │ │ ├── sliderC_east.png │ │ │ ├── sliderC_horizontal.png │ │ │ ├── sliderC_north.png │ │ │ ├── sliderC_south.png │ │ │ ├── sliderC_vertical.png │ │ │ ├── sliderC_west.png │ │ │ ├── sliderD_northeast.png │ │ │ ├── sliderD_northwest.png │ │ │ ├── sliderD_southeast.png │ │ │ └── sliderD_southwest.png │ │ └── utils.py │ ├── lattice.py │ ├── resources │ │ ├── __init__.py │ │ ├── dialog.py │ │ └── dialog.ui │ ├── sculptInbetweenEditor │ │ ├── __init__.py │ │ ├── dslDeltaOptions.py │ │ ├── dslReverseShape.py │ │ └── dslSculptInbetweenEditor.py │ ├── si_poseDeformer.mel │ ├── skinPropagation.py │ ├── spherePreview │ │ ├── README.md │ │ ├── __init__.py │ │ ├── gui.py │ │ └── resources │ │ │ ├── __init__.py │ │ │ ├── dialog.py │ │ │ └── dialog.ui │ ├── utils.py │ └── wireColor.py └── utils │ ├── __init__.py │ ├── framerate.py │ └── setProject.py └── utils ├── __init__.py ├── docked_widget.py ├── lib.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | .settings 4 | *.uvd 5 | ._* 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/README.md -------------------------------------------------------------------------------- /environment/MAYA_PLUG_IN_PATH/basicPerlinDeformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/MAYA_PLUG_IN_PATH/basicPerlinDeformer.py -------------------------------------------------------------------------------- /environment/MAYA_PLUG_IN_PATH/jlCollisionDeformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/MAYA_PLUG_IN_PATH/jlCollisionDeformer.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | 4 | -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/README.md -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/__init__.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/changeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/changeLog.txt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/AnimationBinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/AnimationBinder.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/Red9_AnimationUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/Red9_AnimationUtils.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/Red9_Audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/Red9_Audio.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/Red9_CoreUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/Red9_CoreUtils.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/Red9_General.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/Red9_General.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/Red9_MelCore.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/Red9_MelCore.mel -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/Red9_Meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/Red9_Meta.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/Red9_PoseSaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/Red9_PoseSaver.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/Red9_Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/Red9_Tools.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/core/__init__.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/Makefile -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/Red9-StudioTools Help.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/Red9-StudioTools Help.odt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/Red9-StudioTools Help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/Red9-StudioTools Help.pdf -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/.buildinfo -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/.doctrees/red9templates/Red9_AnimationUtils.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/.doctrees/red9templates/Red9_AnimationUtils.doctree -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/.doctrees/red9templates/Red9_Core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/.doctrees/red9templates/Red9_Core.doctree -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/.doctrees/red9templates/Red9_Meta.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/.doctrees/red9templates/Red9_Meta.doctree -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/.doctrees/red9templates/core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/.doctrees/red9templates/core.doctree -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_sources/index.txt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_sources/red9templates/Red9_AnimationUtils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_sources/red9templates/Red9_AnimationUtils.txt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_sources/red9templates/Red9_Core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_sources/red9templates/Red9_Core.txt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_sources/red9templates/Red9_Meta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_sources/red9templates/Red9_Meta.txt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_sources/red9templates/core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_sources/red9templates/core.txt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/basic.css -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/file.png -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/minus.png -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/nature.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/nature.css -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/plus.png -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/genindex.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/index.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/objects.inv -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/py-modindex.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_AnimationUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_AnimationUtils.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_Audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_Audio.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_Core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_Core.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_General.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_General.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_Meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_Meta.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_PoseSaver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_PoseSaver.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_Tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/red9templates/Red9_Tools.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/red9templates/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/red9templates/core.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/search.html -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/html/searchindex.js -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/AnimationUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/AnimationUI.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/AnimationUI_Pose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/AnimationUI_Pose.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/AnimationUI_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/AnimationUI_filter.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/AnimationUI_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/AnimationUI_main.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/CopyKeys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/CopyKeys.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/FilterUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/FilterUI.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/LocknHide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/LocknHide.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/NodeName_re.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/NodeName_re.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/PoseManager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/PoseManager.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/SnapTransforms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/SnapTransforms.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/TimeOffset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/TimeOffset.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/TimeRange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/TimeRange.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/images/Track and Stabilize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/images/Track and Stabilize.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/make.bat -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/conf.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/index.rst -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_AnimationUtils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_AnimationUtils.rst -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_Audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_Audio.rst -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_Core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_Core.rst -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_General.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_General.rst -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_Meta.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_Meta.rst -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_PoseSaver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_PoseSaver.rst -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_Tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/source/red9templates/Red9_Tools.rst -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/docs/sphinxme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/docs/sphinxme.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/examples/MetaData_Getting_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/examples/MetaData_Getting_started.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/examples/MetaData_subclassing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/examples/MetaData_subclassing.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/examples/MetaRig_Morpheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/examples/MetaRig_Morpheus.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/examples/poseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/examples/poseHandler.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/icons/Red9StudioPack.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/icons/Red9StudioPack.ico -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/icons/Rocket9_buttonStrap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/icons/Rocket9_buttonStrap.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/icons/Rocket9_buttonStrap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/icons/Rocket9_buttonStrap2.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/icons/red9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/icons/red9.jpg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/installer/How To - ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/installer/How To - ReadMe.txt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/installer/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/installer/userSetup.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/license.txt -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/__init__.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/configobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/configobj.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/.gitignore -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/AUTHORS -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/LICENSE -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/README.markdown -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/__init__.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/pydub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/pydub/__init__.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/pydub/audio_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/pydub/audio_segment.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/pydub/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/pydub/effects.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/pydub/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/pydub/exceptions.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/pydub/playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/pydub/playback.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pydub/pydub/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pydub/pydub/utils.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/packages/pyperclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/packages/pyperclip.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/plug-ins/SnapRuntime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/plug-ins/SnapRuntime.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/Andy_Rig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/Andy_Rig.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/Basic_Rig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/Basic_Rig.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/Default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/Default.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/HumanIK.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/HumanIK.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/MaxforMaya.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/MaxforMaya.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/MetaRig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/MetaRig.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/MorpheusRig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/MorpheusRig.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/Red9_MetaRig_unitTest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/Red9_MetaRig_unitTest.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/Standard_Hierarchy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/Standard_Hierarchy.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/Stewart_Rig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/Stewart_Rig.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/TSM.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/TSM.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/presets/__red9animreset__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/presets/__red9animreset__ -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/__init__.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/maya_native/maya_2009/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/maya_native/maya_2009/Maya_Hacked.mel -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/maya_native/maya_2010/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/maya_native/maya_2010/Maya_Hacked.mel -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/maya_native/maya_2011/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/maya_native/maya_2011/Maya_Hacked.mel -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/maya_native/maya_2012/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/maya_native/maya_2012/Maya_Hacked.mel -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/maya_native/maya_2013/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/maya_native/maya_2013/Maya_Hacked.mel -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/maya_native/maya_2014/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/maya_native/maya_2014/Maya_Hacked.mel -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/maya_native/red9MayaHacks.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/maya_native/red9MayaHacks.mel -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/startup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/startup/setup.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/Red9_AudioTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/Red9_AudioTest.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/Red9_CoreUtilTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/Red9_CoreUtilTests.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/Red9_MetaTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/Red9_MetaTests.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/Red9_PoseTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/Red9_PoseTests.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/FilterNode_baseTests.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/FilterNode_baseTests.ma -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/T_Pose.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/T_Pose.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/T_Pose.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/T_Pose.pose -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/l_fingers_curled.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/l_fingers_curled.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/l_fingers_curled.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/l_fingers_curled.pose -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/lfingers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/lfingers.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/lfingers.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/lfingers.pose -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/poseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/fingers/poseHandler.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f218.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f218.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f218.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f218.pose -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f218_projected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f218_projected.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f218_projected.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f218_projected.pose -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f9.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f9.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f9.pose -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f9_absolute29.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f9_absolute29.bmp -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f9_absolute29.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_Poses/jump_f9_absolute29.pose -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_anim_jump.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_anim_jump.mb -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_baseTests.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_baseTests.ma -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_baseTests_MetaWired.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/MetaRig_baseTests_MetaWired.ma -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/Meta_Network_WalkTest.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/Meta_Network_WalkTest.ma -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/bwav_test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/bwav_test.wav -------------------------------------------------------------------------------- /environment/PYTHONPATH/Red9/tests/testFiles/filterTest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/Red9/tests/testFiles/filterTest.cfg -------------------------------------------------------------------------------- /environment/PYTHONPATH/UVDeluxe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environment/PYTHONPATH/UVDeluxe/uistates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/UVDeluxe/uistates.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/UVDeluxe/uvdeluxe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/UVDeluxe/uvdeluxe.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/ZvParentMaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/ZvParentMaster.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/userSetup.py -------------------------------------------------------------------------------- /environment/PYTHONPATH/zv/parentmaster/pm_attach.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/zv/parentmaster/pm_attach.xpm -------------------------------------------------------------------------------- /environment/PYTHONPATH/zv/parentmaster/pm_destroy.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/zv/parentmaster/pm_destroy.xpm -------------------------------------------------------------------------------- /environment/PYTHONPATH/zv/parentmaster/pm_detach.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/zv/parentmaster/pm_detach.xpm -------------------------------------------------------------------------------- /environment/PYTHONPATH/zv/parentmaster/pm_fixsnap.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/zv/parentmaster/pm_fixsnap.xpm -------------------------------------------------------------------------------- /environment/PYTHONPATH/zv/parentmaster/pm_select.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/zv/parentmaster/pm_select.xpm -------------------------------------------------------------------------------- /environment/PYTHONPATH/zv/parentmaster/pm_timeline.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/environment/PYTHONPATH/zv/parentmaster/pm_timeline.xpm -------------------------------------------------------------------------------- /tapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/__init__.py -------------------------------------------------------------------------------- /tapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/app.py -------------------------------------------------------------------------------- /tapp/maya/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/animation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/animation/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/dialog.py -------------------------------------------------------------------------------- /tapp/maya/animation/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/animation/playblastQueue/__init__.py: -------------------------------------------------------------------------------- 1 | from dialog import * 2 | -------------------------------------------------------------------------------- /tapp/maya/animation/playblastQueue/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/playblastQueue/dialog.py -------------------------------------------------------------------------------- /tapp/maya/animation/playblastQueue/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/playblastQueue/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/animation/playblastQueue/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/playblastQueue/utils.py -------------------------------------------------------------------------------- /tapp/maya/animation/resetAttributes/__init__.py: -------------------------------------------------------------------------------- 1 | import dialog 2 | -------------------------------------------------------------------------------- /tapp/maya/animation/resetAttributes/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/resetAttributes/dialog.py -------------------------------------------------------------------------------- /tapp/maya/animation/resetAttributes/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/resetAttributes/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/animation/setsSelector/__init__.py: -------------------------------------------------------------------------------- 1 | import dialog 2 | -------------------------------------------------------------------------------- /tapp/maya/animation/setsSelector/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/setsSelector/dialog.py -------------------------------------------------------------------------------- /tapp/maya/animation/setsSelector/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/setsSelector/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/animation/timing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/animation/timing/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/timing/gui.py -------------------------------------------------------------------------------- /tapp/maya/animation/timing/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/animation/timing/resources/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/timing/resources/dialog.py -------------------------------------------------------------------------------- /tapp/maya/animation/timing/resources/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/timing/resources/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/animation/utils/RAT.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/RAT.mel -------------------------------------------------------------------------------- /tapp/maya/animation/utils/RAT_ui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/RAT_ui.ui -------------------------------------------------------------------------------- /tapp/maya/animation/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/animation/utils/bhGhost.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/bhGhost.mel -------------------------------------------------------------------------------- /tapp/maya/animation/utils/deleteRedundantKeys.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/deleteRedundantKeys.mel -------------------------------------------------------------------------------- /tapp/maya/animation/utils/face/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/animation/utils/face/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/face/gui.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/face/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/face/utils.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/imageplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/imageplane.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/ml_breakdownDragger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/ml_breakdownDragger.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/ml_hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/ml_hold.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/ml_keyValueDragger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/ml_keyValueDragger.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/ml_stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/ml_stopwatch.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/ml_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/ml_utilities.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/paie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/paie.py -------------------------------------------------------------------------------- /tapp/maya/animation/utils/zooChangeRoo.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/zooChangeRoo.mel -------------------------------------------------------------------------------- /tapp/maya/animation/utils/zooUtils.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/animation/utils/zooUtils.mel -------------------------------------------------------------------------------- /tapp/maya/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/dialog.py -------------------------------------------------------------------------------- /tapp/maya/lighting/AddRimLight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/AddRimLight.py -------------------------------------------------------------------------------- /tapp/maya/lighting/FileTextureManager.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/FileTextureManager.mel -------------------------------------------------------------------------------- /tapp/maya/lighting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/lighting/alembic/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import * 2 | -------------------------------------------------------------------------------- /tapp/maya/lighting/alembic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/alembic/utils.py -------------------------------------------------------------------------------- /tapp/maya/lighting/arnold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/arnold.py -------------------------------------------------------------------------------- /tapp/maya/lighting/fgshooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/fgshooter.py -------------------------------------------------------------------------------- /tapp/maya/lighting/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/gui.py -------------------------------------------------------------------------------- /tapp/maya/lighting/region/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/lighting/region/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/region/gui.py -------------------------------------------------------------------------------- /tapp/maya/lighting/region/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/lighting/region/resources/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/region/resources/region.py -------------------------------------------------------------------------------- /tapp/maya/lighting/region/resources/region.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/region/resources/region.ui -------------------------------------------------------------------------------- /tapp/maya/lighting/region/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/region/utils.py -------------------------------------------------------------------------------- /tapp/maya/lighting/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/lighting/resources/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/resources/dialog.py -------------------------------------------------------------------------------- /tapp/maya/lighting/resources/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/resources/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/lighting/vray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/lighting/vray.py -------------------------------------------------------------------------------- /tapp/maya/modelling/RoadKill.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/RoadKill.mel -------------------------------------------------------------------------------- /tapp/maya/modelling/RoadKill1_1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/RoadKill1_1.exe -------------------------------------------------------------------------------- /tapp/maya/modelling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/modelling/blendshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/blendshapes.py -------------------------------------------------------------------------------- /tapp/maya/modelling/detachSeparate.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/detachSeparate.mel -------------------------------------------------------------------------------- /tapp/maya/modelling/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/gui.py -------------------------------------------------------------------------------- /tapp/maya/modelling/icPolyScatter.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/icPolyScatter.mel -------------------------------------------------------------------------------- /tapp/maya/modelling/kk_symmetry.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/kk_symmetry.mel -------------------------------------------------------------------------------- /tapp/maya/modelling/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/modelling/resources/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/resources/dialog.py -------------------------------------------------------------------------------- /tapp/maya/modelling/resources/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/resources/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/modelling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/modelling/utils.py -------------------------------------------------------------------------------- /tapp/maya/rigging/DoraSkinWeightImpExp.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/DoraSkinWeightImpExp.mel -------------------------------------------------------------------------------- /tapp/maya/rigging/ZvRadialBlendShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/ZvRadialBlendShape.py -------------------------------------------------------------------------------- /tapp/maya/rigging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/rigging/bakeRadialBlendshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/bakeRadialBlendshape.py -------------------------------------------------------------------------------- /tapp/maya/rigging/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/connections.py -------------------------------------------------------------------------------- /tapp/maya/rigging/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/constraints.py -------------------------------------------------------------------------------- /tapp/maya/rigging/cylinderPreview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/cylinderPreview.py -------------------------------------------------------------------------------- /tapp/maya/rigging/deformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/deformation.py -------------------------------------------------------------------------------- /tapp/maya/rigging/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/gui.py -------------------------------------------------------------------------------- /tapp/maya/rigging/joints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joints.py -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/gui.py -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/icons.psd -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderA.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderA.PNG -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderB_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderB_east.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderB_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderB_north.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderB_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderB_south.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderB_west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderB_west.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderC_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderC_east.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderC_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderC_horizontal.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderC_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderC_north.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderC_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderC_south.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderC_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderC_vertical.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderC_west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderC_west.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderD_northeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderD_northeast.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderD_northwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderD_northwest.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderD_southeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderD_southeast.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/icons/sliderD_southwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/icons/sliderD_southwest.png -------------------------------------------------------------------------------- /tapp/maya/rigging/joysticker/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/joysticker/utils.py -------------------------------------------------------------------------------- /tapp/maya/rigging/lattice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/lattice.py -------------------------------------------------------------------------------- /tapp/maya/rigging/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/rigging/resources/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/resources/dialog.py -------------------------------------------------------------------------------- /tapp/maya/rigging/resources/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/resources/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/rigging/sculptInbetweenEditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/rigging/sculptInbetweenEditor/dslDeltaOptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/sculptInbetweenEditor/dslDeltaOptions.py -------------------------------------------------------------------------------- /tapp/maya/rigging/sculptInbetweenEditor/dslReverseShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/sculptInbetweenEditor/dslReverseShape.py -------------------------------------------------------------------------------- /tapp/maya/rigging/sculptInbetweenEditor/dslSculptInbetweenEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/sculptInbetweenEditor/dslSculptInbetweenEditor.py -------------------------------------------------------------------------------- /tapp/maya/rigging/si_poseDeformer.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/si_poseDeformer.mel -------------------------------------------------------------------------------- /tapp/maya/rigging/skinPropagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/skinPropagation.py -------------------------------------------------------------------------------- /tapp/maya/rigging/spherePreview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/spherePreview/README.md -------------------------------------------------------------------------------- /tapp/maya/rigging/spherePreview/__init__.py: -------------------------------------------------------------------------------- 1 | from gui import * 2 | -------------------------------------------------------------------------------- /tapp/maya/rigging/spherePreview/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/spherePreview/gui.py -------------------------------------------------------------------------------- /tapp/maya/rigging/spherePreview/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/rigging/spherePreview/resources/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/spherePreview/resources/dialog.py -------------------------------------------------------------------------------- /tapp/maya/rigging/spherePreview/resources/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/spherePreview/resources/dialog.ui -------------------------------------------------------------------------------- /tapp/maya/rigging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/utils.py -------------------------------------------------------------------------------- /tapp/maya/rigging/wireColor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/rigging/wireColor.py -------------------------------------------------------------------------------- /tapp/maya/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/maya/utils/framerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/utils/framerate.py -------------------------------------------------------------------------------- /tapp/maya/utils/setProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/maya/utils/setProject.py -------------------------------------------------------------------------------- /tapp/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tapp/utils/docked_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/utils/docked_widget.py -------------------------------------------------------------------------------- /tapp/utils/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/utils/lib.py -------------------------------------------------------------------------------- /tapp/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumpybox/Tapp/HEAD/tapp/utils/utils.py --------------------------------------------------------------------------------