├── .gitattributes ├── .gitignore ├── README ├── cgm.wpr ├── mayaScratch ├── Morpheus │ ├── customTemplateBuilder.py │ ├── scratch_MorpheusFactory.py │ └── scratch_verifyDeformationIssues.py ├── blocks │ ├── scratch_handle.py │ ├── scratch_head.py │ ├── scratch_master.py │ ├── scratch_mirror.py │ ├── scratch_segment.py │ └── scratch_spine.py ├── characterEngineering │ ├── AndrezAguayo │ │ └── add_UV_grid_location_attr.py │ ├── placeholder.py │ └── samanehMomtazmand │ │ ├── findSurfaceIntersection_test.py │ │ ├── findSurfaceIntersections_test.py │ │ └── rayCasterFuncCls.py ├── coreMeta │ ├── scratch_ModuleControlFactory.py │ ├── scratch_ModuleCurveFactory.py │ ├── scratch_ModuleFactory.py │ ├── scratch_ModuleShapeCaster.py │ ├── scratch_RigBlocks.py │ ├── scratch_RigFactory.py │ ├── scratch_TemplateFactory.py │ ├── scratch_cgmBlendshape.py │ ├── scratch_cgmMeta.py │ ├── scratch_cgmModule.py │ ├── scratch_cgmPuppet.py │ ├── scratch_cgmRigMeta.py │ ├── scratch_meshMath.py │ ├── scratch_templateSettings_call.py │ └── scratch_trans_utils.py ├── genmayapi.py ├── modules │ ├── scratch_arm.py │ ├── scratch_brow.py │ ├── scratch_eyeball.py │ ├── scratch_eyelids.py │ ├── scratch_face.py │ ├── scratch_finger.py │ ├── scratch_leg.py │ ├── scratch_lowerFace.py │ ├── scratch_neckHead.py │ ├── scratch_simpleBSFace.py │ └── scratch_spine.py ├── play │ ├── debugTimeOptimization.py │ ├── matrixStuff.py │ ├── mk1_scratch.py │ └── surfaceAttach.py ├── scratch_April2018.py ├── scratch_CORERIGGEN.py ├── scratch_IK.py ├── scratch_NameFactory.py ├── scratch_SKIN.py ├── scratch_SnapFactory.py ├── scratch_brazenJuly2017.py ├── scratch_cgmMath.py ├── scratch_curveUtils.py ├── scratch_distance.py ├── scratch_draggerContextFactory.py ├── scratch_joints.py ├── scratch_nodeFactory.py ├── scratch_nodeTesting.py ├── scratch_playfulSpectra.py ├── scratch_rayCaster.py ├── scratch_rigUtils.py ├── scratch_segmentRework.py ├── scratch_snap_calls.py ├── scratch_snap_utils.py ├── scratch_strUtils.py ├── scratch_surfaceUtils.py └── scratch_uiIssues.py ├── mayaTools ├── Red9 │ ├── .gitignore │ ├── Codebase_Tracker.xlsx │ ├── 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 ProPack_release_notes │ │ │ ├── Red9 ProPack Manual - Pro_to_BND.pdf │ │ │ ├── Red9 ProPack Manual - Pro_to_BND_2020.pdf │ │ │ ├── Red9 ProPack Release Notes - Jan 2019.pdf │ │ │ └── Red9 ProPack Release Notes - Sep 2019.pdf │ │ ├── Red9-StudioTools Help.odt │ │ ├── Red9-StudioTools Help.pdf │ │ ├── html │ │ │ ├── .buildinfo │ │ │ ├── .doctrees │ │ │ │ ├── environment.pickle │ │ │ │ ├── index.doctree │ │ │ │ ├── red9core_templates │ │ │ │ │ ├── Red9_AnimationUtils.doctree │ │ │ │ │ ├── Red9_Audio.doctree │ │ │ │ │ ├── Red9_Core.doctree │ │ │ │ │ ├── Red9_General.doctree │ │ │ │ │ ├── Red9_Meta.doctree │ │ │ │ │ ├── Red9_PoseSaver.doctree │ │ │ │ │ ├── Red9_Setup.doctree │ │ │ │ │ └── Red9_Tools.doctree │ │ │ │ ├── red9pro_templates │ │ │ │ │ ├── Red9_Pro_anim_map.doctree │ │ │ │ │ ├── Red9_Pro_animation.doctree │ │ │ │ │ ├── Red9_Pro_audio.doctree │ │ │ │ │ ├── Red9_Pro_export.doctree │ │ │ │ │ ├── Red9_Pro_general.doctree │ │ │ │ │ ├── Red9_Pro_importexport.doctree │ │ │ │ │ ├── Red9_Pro_meta .doctree │ │ │ │ │ ├── Red9_Pro_metadata_pro .doctree │ │ │ │ │ ├── Red9_Pro_metadata_pro.doctree │ │ │ │ │ ├── Red9_Pro_optimiser.doctree │ │ │ │ │ ├── Red9_Pro_project.doctree │ │ │ │ │ ├── Red9_Pro_r9data.doctree │ │ │ │ │ ├── Red9_Pro_r9skinning.doctree │ │ │ │ │ ├── Red9_Pro_rigutils.doctree │ │ │ │ │ ├── Red9_Pro_skining.doctree │ │ │ │ │ ├── Red9_Pro_skinning.doctree │ │ │ │ │ ├── Red9_Pro_uibase.doctree │ │ │ │ │ └── tools │ │ │ │ │ │ ├── Red9_Pro_anim_binder.doctree │ │ │ │ │ │ ├── Red9_Pro_anim_tools.doctree │ │ │ │ │ │ ├── Red9_Pro_health_manager.doctree │ │ │ │ │ │ ├── Red9_Pro_project_manager.doctree │ │ │ │ │ │ └── Red9_Pro_rig_manager.doctree │ │ │ │ └── red9templates │ │ │ │ │ ├── Red9_AnimationUtils.doctree │ │ │ │ │ ├── Red9_Core.doctree │ │ │ │ │ ├── Red9_Meta.doctree │ │ │ │ │ └── core.doctree │ │ │ ├── _images │ │ │ │ ├── Red9_ProPack_logo.png │ │ │ │ ├── Red9_ProPack_splash.png │ │ │ │ ├── Red9_ProPack_strap1.png │ │ │ │ ├── Red9_ProPack_strap2.png │ │ │ │ ├── Red9_ProPack_strap_pro.png │ │ │ │ └── red9.png │ │ │ ├── _sources │ │ │ │ ├── index.rst.txt │ │ │ │ ├── index.txt │ │ │ │ ├── red9core_templates │ │ │ │ │ ├── Red9_AnimationUtils.rst.txt │ │ │ │ │ ├── Red9_Audio.rst.txt │ │ │ │ │ ├── Red9_Core.rst.txt │ │ │ │ │ ├── Red9_General.rst.txt │ │ │ │ │ ├── Red9_Meta.rst.txt │ │ │ │ │ ├── Red9_PoseSaver.rst.txt │ │ │ │ │ ├── Red9_Setup.rst.txt │ │ │ │ │ └── Red9_Tools.rst.txt │ │ │ │ └── red9pro_templates │ │ │ │ │ ├── Red9_Pro_anim_map.rst.txt │ │ │ │ │ ├── Red9_Pro_animation.rst.txt │ │ │ │ │ ├── Red9_Pro_audio.rst.txt │ │ │ │ │ ├── Red9_Pro_export.rst.txt │ │ │ │ │ ├── Red9_Pro_general.rst.txt │ │ │ │ │ ├── Red9_Pro_importexport.rst.txt │ │ │ │ │ ├── Red9_Pro_metadata_pro.rst.txt │ │ │ │ │ ├── Red9_Pro_optimiser.rst.txt │ │ │ │ │ ├── Red9_Pro_project.rst.txt │ │ │ │ │ ├── Red9_Pro_r9data.rst.txt │ │ │ │ │ ├── Red9_Pro_r9skinning.rst.txt │ │ │ │ │ ├── Red9_Pro_rigutils.rst.txt │ │ │ │ │ ├── Red9_Pro_skining.rst.txt │ │ │ │ │ ├── Red9_Pro_skinning.rst.txt │ │ │ │ │ ├── Red9_Pro_uibase.rst.txt │ │ │ │ │ └── tools │ │ │ │ │ ├── Red9_Pro_anim_binder.rst.txt │ │ │ │ │ ├── Red9_Pro_anim_tools.rst.txt │ │ │ │ │ ├── Red9_Pro_health_manager.rst.txt │ │ │ │ │ ├── Red9_Pro_project_manager.rst.txt │ │ │ │ │ └── Red9_Pro_rig_manager.rst.txt │ │ │ ├── _static │ │ │ │ ├── Red9_ProPack_logo.png │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── basic.css │ │ │ │ ├── comment-bright.png │ │ │ │ ├── comment-close.png │ │ │ │ ├── comment.png │ │ │ │ ├── css │ │ │ │ │ ├── badge_only.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ │ │ ├── lato-bold.woff │ │ │ │ │ │ ├── lato-bold.woff2 │ │ │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ │ │ ├── lato-normal.woff │ │ │ │ │ │ └── lato-normal.woff2 │ │ │ │ │ └── theme.css │ │ │ │ ├── doctools.js │ │ │ │ ├── documentation_options.js │ │ │ │ ├── down-pressed.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── graphviz.css │ │ │ │ ├── jquery-3.2.1.js │ │ │ │ ├── jquery.js │ │ │ │ ├── js │ │ │ │ │ ├── badge_only.js │ │ │ │ │ ├── html5shiv-printshiv.min.js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ └── theme.js │ │ │ │ ├── language_data.js │ │ │ │ ├── minus.png │ │ │ │ ├── nature.css │ │ │ │ ├── plus.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ ├── underscore-1.3.1.js │ │ │ │ ├── underscore.js │ │ │ │ ├── up-pressed.png │ │ │ │ ├── up.png │ │ │ │ └── websupport.js │ │ │ ├── genindex-A.html │ │ │ ├── genindex-B.html │ │ │ ├── genindex-C.html │ │ │ ├── genindex-D.html │ │ │ ├── genindex-E.html │ │ │ ├── genindex-F.html │ │ │ ├── genindex-G.html │ │ │ ├── genindex-H.html │ │ │ ├── genindex-I.html │ │ │ ├── genindex-J.html │ │ │ ├── genindex-K.html │ │ │ ├── genindex-L.html │ │ │ ├── genindex-M.html │ │ │ ├── genindex-N.html │ │ │ ├── genindex-O.html │ │ │ ├── genindex-P.html │ │ │ ├── genindex-R.html │ │ │ ├── genindex-S.html │ │ │ ├── genindex-T.html │ │ │ ├── genindex-U.html │ │ │ ├── genindex-V.html │ │ │ ├── genindex-W.html │ │ │ ├── genindex-Z.html │ │ │ ├── genindex-all.html │ │ │ ├── genindex.html │ │ │ ├── index.html │ │ │ ├── objects.inv │ │ │ ├── py-modindex.html │ │ │ ├── red9core_templates │ │ │ │ ├── Red9_AnimationUtils.html │ │ │ │ ├── Red9_Audio.html │ │ │ │ ├── Red9_Core.html │ │ │ │ ├── Red9_General.html │ │ │ │ ├── Red9_Meta.html │ │ │ │ ├── Red9_PoseSaver.html │ │ │ │ ├── Red9_Setup.html │ │ │ │ └── Red9_Tools.html │ │ │ ├── red9pro_templates │ │ │ │ ├── Red9_Pro_anim_map.html │ │ │ │ ├── Red9_Pro_animation.html │ │ │ │ ├── Red9_Pro_audio.html │ │ │ │ ├── Red9_Pro_export.html │ │ │ │ ├── Red9_Pro_general.html │ │ │ │ ├── Red9_Pro_importexport.html │ │ │ │ ├── Red9_Pro_meta .html │ │ │ │ ├── Red9_Pro_metadata_pro.html │ │ │ │ ├── Red9_Pro_optimiser.html │ │ │ │ ├── Red9_Pro_project.html │ │ │ │ ├── Red9_Pro_r9data.html │ │ │ │ ├── Red9_Pro_rigutils.html │ │ │ │ ├── Red9_Pro_skining.html │ │ │ │ ├── Red9_Pro_skinning.html │ │ │ │ ├── Red9_Pro_uibase.html │ │ │ │ └── tools │ │ │ │ │ ├── Red9_Pro_anim_binder.html │ │ │ │ │ ├── Red9_Pro_anim_tools.html │ │ │ │ │ ├── Red9_Pro_health_manager.html │ │ │ │ │ ├── Red9_Pro_project_manager.html │ │ │ │ │ └── Red9_Pro_rig_manager.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 │ │ ├── red9_videos.json │ │ ├── source │ │ │ ├── Red9_ProPack_logo.png │ │ │ ├── Red9_ProPack_splash.png │ │ │ ├── Red9_ProPack_strap1.png │ │ │ ├── Red9_ProPack_strap2.png │ │ │ ├── Red9_ProPack_strap_pro.png │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ ├── red9.png │ │ │ ├── red9core_templates │ │ │ │ ├── Red9_AnimationUtils.rst │ │ │ │ ├── Red9_Audio.rst │ │ │ │ ├── Red9_Core.rst │ │ │ │ ├── Red9_General.rst │ │ │ │ ├── Red9_Meta.rst │ │ │ │ ├── Red9_PoseSaver.rst │ │ │ │ ├── Red9_Setup.rst │ │ │ │ └── Red9_Tools.rst │ │ │ └── red9pro_templates │ │ │ │ ├── Red9_Pro_anim_map.rst │ │ │ │ ├── Red9_Pro_animation.rst │ │ │ │ ├── Red9_Pro_audio.rst │ │ │ │ ├── Red9_Pro_export.rst │ │ │ │ ├── Red9_Pro_general.rst │ │ │ │ ├── Red9_Pro_importexport.rst │ │ │ │ ├── Red9_Pro_meta .rst │ │ │ │ ├── Red9_Pro_metadata_pro.rst │ │ │ │ ├── Red9_Pro_optimiser.rst │ │ │ │ ├── Red9_Pro_project.rst │ │ │ │ ├── Red9_Pro_r9data.rst │ │ │ │ ├── Red9_Pro_rigutils.rst │ │ │ │ ├── Red9_Pro_skining.rst │ │ │ │ ├── Red9_Pro_skinning.rst │ │ │ │ ├── Red9_Pro_uibase.rst │ │ │ │ └── tools │ │ │ │ ├── Red9_Pro_anim_binder.rst │ │ │ │ ├── Red9_Pro_anim_tools.rst │ │ │ │ ├── Red9_Pro_health_manager.rst │ │ │ │ ├── Red9_Pro_project_manager.rst │ │ │ │ └── Red9_Pro_rig_manager.rst │ │ └── sphinxme.py │ ├── examples │ │ ├── MetaData_Getting_started.py │ │ ├── MetaData_subclassing.py │ │ ├── MetaRig_Morpheus.py │ │ └── poseHandler.py │ ├── icons │ │ ├── Red9StudioPack.ico │ │ ├── Red9_ProPack_logo.png │ │ ├── Red9_StudioPack_logo.png │ │ ├── Rocket9_buttonStrap.bmp │ │ ├── Rocket9_buttonStrap.png │ │ ├── Rocket9_buttonStrap2.bmp │ │ ├── Rocket9_buttonStrap_narrow.png │ │ ├── api_30.png │ │ ├── blogspot_30.png │ │ ├── bug_30.png │ │ ├── camera_30.png │ │ ├── domain_30.png │ │ ├── facebook_30.png │ │ ├── hand_with_pen_30.png │ │ ├── info_30.png │ │ ├── locationon_30.png │ │ ├── lock_30.png │ │ ├── meta_node_30.png │ │ ├── mirror_30.png │ │ ├── pose_30.png │ │ ├── red9.jpg │ │ ├── red9.png │ │ ├── red9_update.png │ │ ├── search_30.png │ │ ├── sortBy.psd │ │ ├── sortByDate.bmp │ │ ├── sortByName.bmp │ │ ├── sound.png │ │ ├── sound_30.png │ │ ├── twitter_30.png │ │ ├── vimeo_30.png │ │ ├── workflow_30.png │ │ └── youtube.png │ ├── installer │ │ └── How To - ReadMe.txt │ ├── license.txt │ ├── packages │ │ ├── __init__.py │ │ ├── configobj.py │ │ ├── pydub │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── API.markdown │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── __init__.py │ │ │ ├── pydub │ │ │ │ ├── __init__.py │ │ │ │ ├── audio_segment.py │ │ │ │ ├── effects.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── generators.py │ │ │ │ ├── logging_utils.py │ │ │ │ ├── playback.py │ │ │ │ ├── pyaudioop.py │ │ │ │ ├── silence.py │ │ │ │ └── utils.py │ │ │ ├── setup.cfg │ │ │ └── setup.py │ │ └── pyperclip │ │ │ ├── __init__.py │ │ │ ├── clipboards.py │ │ │ ├── exceptions.py │ │ │ └── windows.py │ ├── plug-ins │ │ ├── SnapRuntime.py │ │ └── evalManager_switch.py │ ├── presets │ │ ├── ART_v1.cfg │ │ ├── ART_v1.mirrorMap │ │ ├── Andy_Rig.cfg │ │ ├── Basic_Rig.cfg │ │ ├── Basic_Skeleton.cfg │ │ ├── Default.cfg │ │ ├── HumanIK.cfg │ │ ├── MaxforMaya.cfg │ │ ├── MetaRig.cfg │ │ ├── MorpheusRig.cfg │ │ ├── Red9_DevRig.cfg │ │ ├── Red9_MetaRig_unitTest.cfg │ │ ├── Red9_PuppetRig.cfg │ │ ├── Standard_Hierarchy.cfg │ │ ├── Stewart_Rig.cfg │ │ ├── TSM.cfg │ │ ├── __red9animreset__ │ │ ├── posehandlers │ │ │ ├── Red9_facial_poseHandler.py │ │ │ ├── fingerMirrorID_poseHandler.py │ │ │ ├── finger_poseHandler.py │ │ │ └── test_poseHandler.py │ │ └── resource_files │ │ │ └── HIK_default.hikproperties │ ├── startup │ │ ├── __init__.py │ │ ├── language_packs │ │ │ ├── __init__.py │ │ │ └── language_english.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 │ │ │ ├── maya_2015 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2016.5 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2016 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2017 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2018 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2019 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2020 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2022 │ │ │ │ └── Maya_Hacked.mel │ │ │ ├── maya_2023 │ │ │ │ └── Maya_Hacked.mel │ │ │ └── red9MayaHacks.mel │ │ └── setup.py │ └── tests │ │ ├── Red9_AnimTest.py │ │ ├── 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 │ │ └── mirrorData.mirrorMap ├── cgm │ ├── __init__.py │ ├── assets │ │ └── cgmController.mb │ ├── cgmDat │ │ └── mrs │ │ │ ├── human │ │ │ └── baseMale │ │ │ │ └── baseMale_gameToon.cgmBlockConfig │ │ │ ├── proximals │ │ │ └── elk.cgmBlockConfig │ │ │ └── shapeDat │ │ │ └── human │ │ │ ├── baseFemale │ │ │ ├── R_arm_limb.cgmShapeDat │ │ │ ├── R_index_limb.cgmShapeDat │ │ │ ├── R_leg_limb.cgmShapeDat │ │ │ ├── R_middle_limb.cgmShapeDat │ │ │ ├── R_pinky_limb.cgmShapeDat │ │ │ ├── R_ring_limb.cgmShapeDat │ │ │ ├── R_thumb_limb.cgmShapeDat │ │ │ └── spine_segment.cgmShapeDat │ │ │ └── baseMale │ │ │ ├── R_arm_limb.cgmShapeDat │ │ │ ├── R_index_limb.cgmShapeDat │ │ │ ├── R_leg_limb.cgmShapeDat │ │ │ ├── R_middle_limb.cgmShapeDat │ │ │ ├── R_pinky_limb.cgmShapeDat │ │ │ ├── R_ring_limb.cgmShapeDat │ │ │ ├── R_thumb_limb.cgmShapeDat │ │ │ └── spine_segment.cgmShapeDat │ ├── cgmInitialize.py │ ├── core │ │ ├── __init__.py │ │ ├── cgmPy │ │ │ ├── OM_Utils.py │ │ │ ├── __init__.py │ │ │ ├── dict_utils.py │ │ │ ├── os_Utils.py │ │ │ ├── path_Utils.py │ │ │ ├── str_Utils.py │ │ │ └── validateArgs.py │ │ ├── cgm_Dat.py │ │ ├── cgm_Deformers.py │ │ ├── cgm_General.py │ │ ├── cgm_Meta.py │ │ ├── cgm_PuppetMeta.py │ │ ├── cgm_RigMeta.py │ │ ├── classes │ │ │ ├── ControlFactory.py │ │ │ ├── DraggerContextFactory.py │ │ │ ├── GamePad.py │ │ │ ├── GuiFactory.py │ │ │ ├── HotkeyFactory.py │ │ │ ├── Keyboard.py │ │ │ ├── NodeFactory.py │ │ │ ├── PostBake.py │ │ │ ├── SnapFactory.py │ │ │ └── __init__.py │ │ ├── exampleForMark.py │ │ ├── examples │ │ │ ├── help_RigBlocks.py │ │ │ ├── help_cgmAttr.py │ │ │ ├── help_cgmBlendshape.py │ │ │ ├── help_cgmFuncCls.py │ │ │ ├── help_cgmNode.py │ │ │ ├── help_cgmObject.py │ │ │ ├── help_datList_msgList.py │ │ │ ├── help_introToMeta.py │ │ │ ├── help_logger.py │ │ │ ├── help_rayCasting.py │ │ │ └── help_unittesting.py │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── arrange_utils.py │ │ │ ├── asset_utils.py │ │ │ ├── attribute_utils.py │ │ │ ├── camera_utils.py │ │ │ ├── constraint_utils.py │ │ │ ├── control_utils.py │ │ │ ├── curve_Utils.py │ │ │ ├── distance_utils.py │ │ │ ├── ease_utils.py │ │ │ ├── euclid │ │ │ │ ├── PKG-INFO │ │ │ │ ├── README │ │ │ │ └── __init__.py │ │ │ ├── geo_Utils.py │ │ │ ├── hud_utils.py │ │ │ ├── inputs │ │ │ │ ├── LICENSE │ │ │ │ ├── README.rst │ │ │ │ └── __init__.py │ │ │ ├── list_utils.py │ │ │ ├── locator_utils.py │ │ │ ├── math_utils.py │ │ │ ├── mayaBeOdd_utils.py │ │ │ ├── mayaSettings_utils.py │ │ │ ├── meta_Utils.py │ │ │ ├── meta_utils │ │ │ │ └── __init__.py │ │ │ ├── ml_tools │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── icons │ │ │ │ │ ├── ml_animCurveEditor.png │ │ │ │ │ ├── ml_arcTracer.png │ │ │ │ │ ├── ml_breakdown.png │ │ │ │ │ ├── ml_cameraDepthDragger.png │ │ │ │ │ ├── ml_convertRotationOrder.png │ │ │ │ │ ├── ml_copyAnim.png │ │ │ │ │ ├── ml_deleteKey.png │ │ │ │ │ ├── ml_goToKeyframe.png │ │ │ │ │ ├── ml_hold.png │ │ │ │ │ ├── ml_keyValueDragger.png │ │ │ │ │ ├── ml_resetChannels.png │ │ │ │ │ ├── ml_selectKeyed.png │ │ │ │ │ ├── ml_setKey.png │ │ │ │ │ ├── ml_stopwatch.png │ │ │ │ │ ├── ml_tangentWeight.png │ │ │ │ │ ├── ml_toggleVisibility.png │ │ │ │ │ ├── ml_transferKeytimes.png │ │ │ │ │ └── ml_worldBake.png │ │ │ │ ├── ml_animCurveEditor.py │ │ │ │ ├── ml_arcTracer.py │ │ │ │ ├── ml_ballisticAnimation.py │ │ │ │ ├── ml_breakdown.py │ │ │ │ ├── ml_breakdownDragger.py │ │ │ │ ├── ml_cameraDepthDragger.py │ │ │ │ ├── ml_centerOfMass.py │ │ │ │ ├── ml_colorControl.py │ │ │ │ ├── ml_controlLibrary.py │ │ │ │ ├── ml_convertRotationOrder.py │ │ │ │ ├── ml_copyAnim.py │ │ │ │ ├── ml_copySkin.py │ │ │ │ ├── ml_deleteKey.py │ │ │ │ ├── ml_frameGraphEditor.py │ │ │ │ ├── ml_goToKeyframe.py │ │ │ │ ├── ml_graphEditorMask.py │ │ │ │ ├── ml_hold.py │ │ │ │ ├── ml_lockAndHideAttributes.py │ │ │ │ ├── ml_parentShape.py │ │ │ │ ├── ml_pivot.py │ │ │ │ ├── ml_puppet.py │ │ │ │ ├── ml_resetBind.py │ │ │ │ ├── ml_resetChannels.py │ │ │ │ ├── ml_selectKeyed.py │ │ │ │ ├── ml_setKey.py │ │ │ │ ├── ml_stopwatch.py │ │ │ │ ├── ml_tangentWeight.py │ │ │ │ ├── ml_toggleVisibility.py │ │ │ │ ├── ml_toolbox.py │ │ │ │ ├── ml_transferKeytimes.py │ │ │ │ ├── ml_utilities.py │ │ │ │ └── ml_worldBake.py │ │ │ ├── mouse_utils.py │ │ │ ├── nameTools.py │ │ │ ├── name_utils.py │ │ │ ├── node_utils.py │ │ │ ├── path_utils.py │ │ │ ├── playblast_utils.py │ │ │ ├── position_utils.py │ │ │ ├── rayCaster.py │ │ │ ├── rigging_utils.py │ │ │ ├── sdk_utils.py │ │ │ ├── search_utils.py │ │ │ ├── selection_Utils.py │ │ │ ├── shapeCaster.py │ │ │ ├── shape_utils.py │ │ │ ├── shared_data.py │ │ │ ├── skinDat.py │ │ │ ├── skin_utils.py │ │ │ ├── snap_utils.py │ │ │ ├── string_utils.py │ │ │ ├── surface_Utils.py │ │ │ ├── transform_utils.py │ │ │ ├── wing │ │ │ │ ├── __init__.py │ │ │ │ ├── executeWingCode.py │ │ │ │ ├── mayaWingServer.py │ │ │ │ ├── wingHotkeys.py │ │ │ │ └── wingdbstub.py │ │ │ └── zoo │ │ │ │ ├── __init__.py │ │ │ │ ├── apiExtensions.py │ │ │ │ ├── baseMelUI.py │ │ │ │ ├── cacheDecorators.py │ │ │ │ ├── exceptionHandlers.py │ │ │ │ ├── melUtils.py │ │ │ │ ├── misc.py │ │ │ │ ├── names.py │ │ │ │ ├── path.py │ │ │ │ ├── typeFactories.py │ │ │ │ └── vectors.py │ │ ├── mel │ │ │ ├── cgmMarkingMenu.mel │ │ │ ├── cgmRiggerMM.mel │ │ │ └── cgmTemplateMM.mel │ │ ├── mrs │ │ │ ├── Animate.py │ │ │ ├── Builder.py │ │ │ ├── Helpers.py │ │ │ ├── MRSDat.py │ │ │ ├── PoseManager.py │ │ │ ├── RigBlocks.py │ │ │ ├── Scene.py │ │ │ ├── Scene2.py │ │ │ ├── SceneDat.py │ │ │ ├── Shots.py │ │ │ ├── __init__.py │ │ │ ├── assets │ │ │ │ ├── __init__.py │ │ │ │ ├── headSimple_01.mtl │ │ │ │ └── headSimple_01.obj │ │ │ ├── blocks │ │ │ │ ├── __init__.py │ │ │ │ ├── example.py │ │ │ │ ├── master.py │ │ │ │ ├── organic │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── brow.py │ │ │ │ │ ├── eye.py │ │ │ │ │ ├── eye.py.orig │ │ │ │ │ ├── hand.py │ │ │ │ │ ├── head.py │ │ │ │ │ ├── limb.py │ │ │ │ │ ├── muzzle.py │ │ │ │ │ └── segment.py │ │ │ │ └── simple │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── doodad.py │ │ │ │ │ ├── eyeMain.py │ │ │ │ │ └── handle.py │ │ │ ├── help_master_intro.py │ │ │ ├── lib │ │ │ │ ├── ModuleControlFactory.py │ │ │ │ ├── ModuleShapeCaster.py │ │ │ │ ├── __init__.py │ │ │ │ ├── animate_utils.py │ │ │ │ ├── batch_utils.py │ │ │ │ ├── blockShapes_utils.py │ │ │ │ ├── block_utils.py │ │ │ │ ├── builder_utils.py │ │ │ │ ├── face_utils.py │ │ │ │ ├── general_utils.py │ │ │ │ ├── module_utils.py │ │ │ │ ├── post_utils.py │ │ │ │ ├── puppet_utils.py │ │ │ │ ├── rigBits.py │ │ │ │ ├── rigFrame_utils.py │ │ │ │ ├── rigShapes_utils.py │ │ │ │ ├── scene_utils.py │ │ │ │ └── shared_dat.py │ │ │ └── postScripts │ │ │ │ ├── __init__.py │ │ │ │ └── baseMale.py │ │ ├── presets │ │ │ ├── __init__.py │ │ │ └── cgmDynFK_presets.py │ │ ├── reloadFactory.py │ │ ├── rig │ │ │ ├── __init__.py │ │ │ ├── constraint_utils.py │ │ │ ├── create_utils.py │ │ │ ├── dynamic_utils.py │ │ │ ├── general_utils.py │ │ │ ├── ik_utils.py │ │ │ ├── joint_utils.py │ │ │ ├── lib │ │ │ │ └── __init__.py │ │ │ ├── segment_utils.py │ │ │ ├── shader_utils.py │ │ │ └── skin_utils.py │ │ ├── rigger │ │ │ ├── JointFactory.py │ │ │ ├── ModuleControlFactory.py │ │ │ ├── ModuleCurveFactory.py │ │ │ ├── ModuleFactory.py │ │ │ ├── ModuleShapeCaster.py │ │ │ ├── PuppetFactory.py │ │ │ ├── RigFactory.py │ │ │ ├── TemplateFactory.py │ │ │ ├── __init__.py │ │ │ └── lib │ │ │ │ ├── Face │ │ │ │ ├── __init__.py │ │ │ │ ├── eyeball.py │ │ │ │ ├── eyebrow.py │ │ │ │ ├── eyelids.py │ │ │ │ ├── faceMod_Utils.py │ │ │ │ ├── mouthNose.py │ │ │ │ └── mouthNose_plateBuild.py │ │ │ │ ├── Limb │ │ │ │ ├── __init__.py │ │ │ │ ├── arm.py │ │ │ │ ├── clavicle.py │ │ │ │ ├── finger.py │ │ │ │ ├── leg.py │ │ │ │ ├── neckHead.py │ │ │ │ ├── spine.py │ │ │ │ └── thumb.py │ │ │ │ ├── Limb_OPTIMIZING │ │ │ │ ├── __init__.py │ │ │ │ ├── arm.py │ │ │ │ ├── clavicle.py │ │ │ │ ├── finger.py │ │ │ │ ├── leg.py │ │ │ │ ├── neckHead.py │ │ │ │ ├── spine.py │ │ │ │ └── thumb.py │ │ │ │ ├── RigFactory_Utils.py │ │ │ │ ├── __init__.py │ │ │ │ ├── cgmRigs_sharedData.py │ │ │ │ ├── joint_Utils.py │ │ │ │ ├── joint_UtilsTIMED.py │ │ │ │ ├── module_Utils.py │ │ │ │ ├── rig_Utils.py │ │ │ │ ├── segment_utils.py │ │ │ │ └── spacePivot_utils.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── cgmMeta_test.py │ │ │ ├── cgmTests.py │ │ │ ├── mayaBeOdd.py │ │ │ ├── mayaBeOdd_r9ONLY.py │ │ │ ├── morphyTestTorso.ma │ │ │ ├── test_MRS │ │ │ │ ├── __init__.py │ │ │ │ └── test_RigBlocks.py │ │ │ ├── test_cgmMeta │ │ │ │ ├── __init__.py │ │ │ │ ├── test_PuppetMeta.py │ │ │ │ ├── test_base.py │ │ │ │ └── test_mClasses.py │ │ │ └── test_coreLib │ │ │ │ ├── __init__.py │ │ │ │ ├── test_ATTR.py │ │ │ │ ├── test_NODEFACTORY.py │ │ │ │ ├── test_PATH.py │ │ │ │ └── test_VALID.py │ │ └── tools │ │ │ ├── Project.py │ │ │ ├── SVGator.py │ │ │ ├── __init__.py │ │ │ ├── animDraw.py │ │ │ ├── animDrawTool.py │ │ │ ├── animFilterTool.py │ │ │ ├── attrTools.py │ │ │ ├── bakeAndPrep.py │ │ │ ├── baseTool.py │ │ │ ├── controllerPuppet.py │ │ │ ├── controllerPuppetTool.py │ │ │ ├── dragger.py │ │ │ ├── dynFKTool.py │ │ │ ├── dynParentTool.py │ │ │ ├── jointTools.py │ │ │ ├── keyframeToMotionCurve.py │ │ │ ├── lib │ │ │ ├── __init__.py │ │ │ ├── annotations.py │ │ │ ├── cgmDeveloperLib.py │ │ │ ├── project_utils.py │ │ │ ├── snap_calls.py │ │ │ ├── tool_calls.py │ │ │ └── tool_chunks.py │ │ │ ├── lightLoomLite.py │ │ │ ├── liveRecord.py │ │ │ ├── locinator.py │ │ │ ├── markingMenus │ │ │ ├── __init__.py │ │ │ ├── cgmMMBase.py │ │ │ ├── cgmMMPuppet.py │ │ │ ├── cgmMMRigger.py │ │ │ ├── cgmMMTemplate.py │ │ │ ├── cgmMM_tool.py │ │ │ ├── cgmPuppetKey.py │ │ │ └── lib │ │ │ │ ├── __init__.py │ │ │ │ ├── contextual_utils.py │ │ │ │ └── mm_utils.py │ │ │ ├── meshTools.py │ │ │ ├── mocapBakeTools.py │ │ │ ├── setTools.py │ │ │ ├── snapTools.py │ │ │ ├── spring.py │ │ │ ├── toolbox.py │ │ │ ├── trajectoryAim.py │ │ │ ├── transformTools.py │ │ │ └── updateTool.py │ ├── images │ │ ├── __init__.py │ │ ├── cgmDefault.png │ │ ├── cgm_project.png │ │ ├── cgm_project_asset.png │ │ ├── cgm_project_commercial.png │ │ ├── cgm_project_template.psd │ │ ├── cgm_project_unity.png │ │ ├── cgm_project_unreal.png │ │ ├── cgm_uiFooter.bmp │ │ ├── cgm_uiFooter.png │ │ ├── cgm_uiFooter_gray.png │ │ ├── cgmonastery_uiFooter_gray.png │ │ └── icons │ │ │ ├── __init__.py │ │ │ ├── mrs │ │ │ ├── brow.png │ │ │ ├── eye.png │ │ │ ├── eyeMain.png │ │ │ ├── hand.png │ │ │ ├── handle.png │ │ │ ├── head.png │ │ │ ├── limb.png │ │ │ ├── master.png │ │ │ ├── muzzle.png │ │ │ └── segment.png │ │ │ ├── refresh.png │ │ │ ├── sortBy.psd │ │ │ ├── sortBy_date.png │ │ │ └── sortBy_name.png │ ├── lib │ │ ├── __init__.py │ │ ├── attributes.py │ │ ├── autoname.py │ │ ├── batch.py │ │ ├── bo │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── abPointLoft.py │ │ │ ├── boBatchFileMaker.py │ │ │ ├── boBatchFileProcessor.mel │ │ │ ├── boBlendShapes.mel │ │ │ ├── boCurveSlider.py │ │ │ ├── boGhosting.mel │ │ │ ├── boGraphEditor.mel │ │ │ ├── boMarkingMenus.mel │ │ │ ├── boMotion.mel │ │ │ ├── boMotion.py │ │ │ ├── boNClothPreroll.mel │ │ │ ├── boProjectViewer2.mel │ │ │ ├── boRandomizer.mel │ │ │ ├── boRenderStats.mel │ │ │ ├── boResetter.py │ │ │ ├── boRightClickManager.mel │ │ │ ├── boRightClickOverrides.mel │ │ │ ├── boScriptJobs.mel │ │ │ ├── boSliders.mel │ │ │ ├── boSmear.mel │ │ │ ├── boSmear.py │ │ │ ├── boTSMTools.mel │ │ │ ├── boTimers.mel │ │ │ ├── boTimers.py │ │ │ ├── boTimingCharts.mel │ │ │ ├── boTriggers.mel │ │ │ ├── boUVSnapshot.py │ │ │ ├── boUtilities.mel │ │ │ └── boZDepthShader.mel │ │ ├── cgmBaseMelUI.py │ │ ├── cgmDeveloperLib.py │ │ ├── cgmMath.py │ │ ├── cgmNames.conf │ │ ├── cgmSettings.conf │ │ ├── cgmTypes.conf │ │ ├── classes │ │ │ ├── AttrFactory.py │ │ │ ├── BufferFactory.py │ │ │ ├── ControlFactory.py │ │ │ ├── DraggerContextFactory.py │ │ │ ├── NameFactory.py │ │ │ ├── ObjectFactory.py │ │ │ ├── OptionVarFactory.py │ │ │ ├── SetFactory.py │ │ │ └── __init__.py │ │ ├── constraints.py │ │ ├── controlBuilder.py │ │ ├── curves.py │ │ ├── deformers.py │ │ ├── dictionary.py │ │ ├── distance.py │ │ ├── dynamics.py │ │ ├── geo.py │ │ ├── gigs │ │ │ └── project_02012.py │ │ ├── guiFactory.py │ │ ├── joints.py │ │ ├── lists.py │ │ ├── locators.py │ │ ├── logic.py │ │ ├── ml │ │ │ ├── __init__.py │ │ │ ├── euclid.py │ │ │ ├── ml_arcTracer.py │ │ │ ├── ml_breakdownDragger.py │ │ │ ├── ml_convertRotationOrder.py │ │ │ ├── ml_copyAnim.py │ │ │ ├── ml_deleteKey.py │ │ │ ├── ml_hold.py │ │ │ ├── ml_keyValueDragger.py │ │ │ ├── ml_resetChannels.py │ │ │ ├── ml_setKey.py │ │ │ ├── ml_stopwatch.py │ │ │ ├── ml_utilities.py │ │ │ └── ml_worldBake.py │ │ ├── modules.py │ │ ├── names.py │ │ ├── nodes.py │ │ ├── openSource │ │ │ ├── __init__.py │ │ │ └── euclid.py │ │ ├── optionVars.py │ │ ├── position.py │ │ ├── pyui.py │ │ ├── rigging.py │ │ ├── sdk.py │ │ ├── search.py │ │ ├── settings.py │ │ ├── skinning.py │ │ ├── specialCaseStuff.py │ │ ├── surfaces.py │ │ └── zoo │ │ │ ├── __init__.py │ │ │ ├── zooMel │ │ │ ├── CST │ │ │ │ ├── control.arrow.shape │ │ │ │ ├── control.band.shape │ │ │ │ ├── control.cone.shape │ │ │ │ ├── control.cube.shape │ │ │ │ ├── control.cylinder.shape │ │ │ │ ├── control.eye.shape │ │ │ │ ├── control.face.shape │ │ │ │ ├── control.hand.shape │ │ │ │ ├── control.hex.shape │ │ │ │ ├── control.locator.shape │ │ │ │ ├── control.pin.shape │ │ │ │ ├── control.pointer.shape │ │ │ │ ├── control.ring.shape │ │ │ │ ├── control.sphere.shape │ │ │ │ ├── control.sphere2.shape │ │ │ │ ├── control.starcircle.shape │ │ │ │ ├── control.target.shape │ │ │ │ ├── control.textall.shape │ │ │ │ ├── zooCST.mel │ │ │ │ ├── zooCSTBuildIKFK.mel │ │ │ │ ├── zooCSTBuildIKFK_altTwist.mel │ │ │ │ ├── zooCSTBuildMPath.mel │ │ │ │ ├── zooCSTBuildPrimArm.mel │ │ │ │ ├── zooCSTBuildPrimBasicSpine.mel │ │ │ │ ├── zooCSTBuildPrimEyes.mel │ │ │ │ ├── zooCSTBuildPrimFKSpine.mel │ │ │ │ ├── zooCSTBuildPrimFinger.mel │ │ │ │ ├── zooCSTBuildPrimHand.mel │ │ │ │ ├── zooCSTBuildPrimHaunch.mel │ │ │ │ ├── zooCSTBuildPrimHead.mel │ │ │ │ ├── zooCSTBuildPrimIKFKSpine.mel │ │ │ │ ├── zooCSTBuildPrimIKSpine.mel │ │ │ │ ├── zooCSTBuildPrimLeg.mel │ │ │ │ ├── zooCSTBuildPrimMoveableEyes.mel │ │ │ │ ├── zooCSTBuildPrimReverseSpine.mel │ │ │ │ ├── zooCSTBuildPrimRootSpine.mel │ │ │ │ ├── zooCSTBuildRoot.mel │ │ │ │ ├── zooCSTBuildSplineIK.mel │ │ │ │ ├── zooCSTBuildWorld.mel │ │ │ │ ├── zooCSTCtrlType.mel │ │ │ │ ├── zooCSTHelp_flags.zooHelp │ │ │ │ ├── zooCSTHelp_intro.zooHelp │ │ │ │ ├── zooCSTHelp_tech.zooHelp │ │ │ │ ├── zooCSTHelp_works.zooHelp │ │ │ │ ├── zooCSTInfo.mel │ │ │ │ ├── zooCSTMakeStretchy.mel │ │ │ │ ├── zooCSTMakeStretchy_limitsMethod.mel │ │ │ │ ├── zooCSTPrimitives.mel │ │ │ │ ├── zooCSTTips.txt │ │ │ │ ├── zooCSTUtils.mel │ │ │ │ ├── zooCSTValidateFlags.mel │ │ │ │ ├── zooCSTWin.mel │ │ │ │ └── zooEyeSwapper.mel │ │ │ ├── zooAddCameraMask.mel │ │ │ ├── zooAlign.mel │ │ │ ├── zooArrays_float.mel │ │ │ ├── zooArrays_int.mel │ │ │ ├── zooArrays_str.mel │ │ │ ├── zooAttrUtils.mel │ │ │ ├── zooAutoSave.mel │ │ │ ├── zooBGBlaster.mel │ │ │ ├── zooBGBlasterUtils.mel │ │ │ ├── zooBlendToSdk.mel │ │ │ ├── zooBodgeK.mel │ │ │ ├── zooBodgeK_help.zooHelp │ │ │ ├── zooBoltOnIK.mel │ │ │ ├── zooBoltOnIKWin.mel │ │ │ ├── zooBounds.mel │ │ │ ├── zooBrandTools.mel │ │ │ ├── zooBuildControl.mel │ │ │ ├── zooCam.mel │ │ │ ├── zooChangeRoo.mel │ │ │ ├── zooChangeSpace.mel │ │ │ ├── zooCurveLight.mel │ │ │ ├── zooDates.mel │ │ │ ├── zooDeleteStaticChannels.mel │ │ │ ├── zooDynChain.mel │ │ │ ├── zooEazelUtils.mel │ │ │ ├── zooFitTimeline.mel │ │ │ ├── zooFlags.mel │ │ │ ├── zooGetLookat.mel │ │ │ ├── zooGraphFilter.mel │ │ │ ├── zooGraphFilterUtils.mel │ │ │ ├── zooGreaseMonkey.mel │ │ │ ├── zooGreaseMonkeyUtils.mel │ │ │ ├── zooGreaseMonkey_help.zooHelp │ │ │ ├── zooHUDCtrl.mel │ │ │ ├── zooHeavy.mel │ │ │ ├── zooHeavyMenu.mel │ │ │ ├── zooHeavyUtils.mel │ │ │ ├── zooHelp.mel │ │ │ ├── zooHotkeyer.mel │ │ │ ├── zooKeyCommands.mel │ │ │ ├── zooKeyCommandsWin.mel │ │ │ ├── zooKeyCommands_help.zooHelp │ │ │ ├── zooKeyUtils.mel │ │ │ ├── zooKeymaster.mel │ │ │ ├── zooKeymasterMenu.mel │ │ │ ├── zooKeymasterWin.mel │ │ │ ├── zooKeymaster_help.zooHelp │ │ │ ├── zooLineOfAction.mel │ │ │ ├── zooLockFile.mel │ │ │ ├── zooNameSpacey.mel │ │ │ ├── zooNameSpaceyUtils.mel │ │ │ ├── zooNameSpacey_help.zooHelp │ │ │ ├── zooObjMenu.mel │ │ │ ├── zooObjMenuUtils.mel │ │ │ ├── zooObjMenu_help.zooHelp │ │ │ ├── zooPanelCycler.mel │ │ │ ├── zooParentToChild.mel │ │ │ ├── zooPickwalk.mel │ │ │ ├── zooPickwalkAuthor.mel │ │ │ ├── zooPickwalk_help.zooHelp │ │ │ ├── zooPosesToSliders.mel │ │ │ ├── zooReblender.mel │ │ │ ├── zooRegister.mel │ │ │ ├── zooRegisterWin.mel │ │ │ ├── zooRenamer.mel │ │ │ ├── zooRenamerUtils.mel │ │ │ ├── zooRenamer_help.zooHelp │ │ │ ├── zooReorderAttribs.mel │ │ │ ├── zooReorderAttrs.mel │ │ │ ├── zooReplaceShape.mel │ │ │ ├── zooResetAttrs.mel │ │ │ ├── zooResource.mel │ │ │ ├── zooSelecto.mel │ │ │ ├── zooSelectoMenu.mel │ │ │ ├── zooSelectoPresets.mel │ │ │ ├── zooSelectoUtils.mel │ │ │ ├── zooSetLookat.mel │ │ │ ├── zooSetMenu.mel │ │ │ ├── zooSetMenu_help.zooHelp │ │ │ ├── zooSetkey.mel │ │ │ ├── zooShaders.mel │ │ │ ├── zooShelveIt.mel │ │ │ ├── zooShots.mel │ │ │ ├── zooShotsHelp.zooHelp │ │ │ ├── zooShotsUtils.mel │ │ │ ├── zooSketchy.mel │ │ │ ├── zooSketchyUtils.mel │ │ │ ├── zooSortToHeirarchy.mel │ │ │ ├── zooSpaceSwitching.mel │ │ │ ├── zooStickToCurve.mel │ │ │ ├── zooStrUtils.mel │ │ │ ├── zooSurgeon.mel │ │ │ ├── zooSurgeonUtils.mel │ │ │ ├── zooTangentWks.mel │ │ │ ├── zooTangentWksUtils.mel │ │ │ ├── zooToggle.mel │ │ │ ├── zooToggleUI.mel │ │ │ ├── zooTriggerator.mel │ │ │ ├── zooTriggeratorUtils.mel │ │ │ ├── zooTriggered.mel │ │ │ ├── zooTriggeredHelp.zooHelp │ │ │ ├── zooTriggeredPresets.mel │ │ │ ├── zooTriggeredTech.zooHelp │ │ │ ├── zooTriggeredUtils.mel │ │ │ ├── zooUtils.mel │ │ │ ├── zooVectors.mel │ │ │ ├── zooVisMan.mel │ │ │ ├── zooVisManUtils.mel │ │ │ ├── zooWeightSave.mel │ │ │ ├── zooWeightSave_help.zooHelp │ │ │ └── zooXferAnim.mel │ │ │ ├── zooPy │ │ │ ├── __init__.py │ │ │ ├── binarySearchTree.py │ │ │ ├── cacheDecorators.py │ │ │ ├── colours.py │ │ │ ├── consoleChroma.py │ │ │ ├── dependencies.py │ │ │ ├── devTest.py │ │ │ ├── devTest_name.py │ │ │ ├── devTest_sobject.py │ │ │ ├── devTest_typeFactories.py │ │ │ ├── events.py │ │ │ ├── exceptionHandlers.py │ │ │ ├── kdTree.py │ │ │ ├── misc.py │ │ │ ├── moduleUtils.py │ │ │ ├── name.py │ │ │ ├── names.py │ │ │ ├── path.py │ │ │ ├── perforce.py │ │ │ ├── presets.py │ │ │ ├── profileDecorators.py │ │ │ ├── sobject.py │ │ │ ├── strUtils.py │ │ │ ├── typeFactories.py │ │ │ └── vectors.py │ │ │ ├── zooPyMaya │ │ │ ├── __init__.py │ │ │ ├── animClip.py │ │ │ ├── animLib.py │ │ │ ├── animLibUI.py │ │ │ ├── animUtils.py │ │ │ ├── apiExtensions.py │ │ │ ├── baseMelUI.py │ │ │ ├── baseRigPrimitive.py │ │ │ ├── baseSkeletonBuilder.py │ │ │ ├── baseSkeletonPreset.py │ │ │ ├── blendShapeTools.py │ │ │ ├── build_motionPath.py │ │ │ ├── change.py │ │ │ ├── changeIkFk.py │ │ │ ├── changeParent.py │ │ │ ├── changeRo.py │ │ │ ├── cmdStrResolver.py │ │ │ ├── constants.py │ │ │ ├── control.py │ │ │ ├── cstWrappers.py │ │ │ ├── devTestUI.py │ │ │ ├── devTest_animClip.py │ │ │ ├── devTest_base.py │ │ │ ├── devTest_skeletonBuilder.py │ │ │ ├── dynamicChain.py │ │ │ ├── fileUI.py │ │ │ ├── graphEditorUtils.py │ │ │ ├── mappingEditor.py │ │ │ ├── mappingUtils.py │ │ │ ├── mayaDecorators.py │ │ │ ├── mayaDependencies.py │ │ │ ├── melUtils.py │ │ │ ├── meshUtils.py │ │ │ ├── namespaceHelpers.py │ │ │ ├── picker.py │ │ │ ├── plugins │ │ │ │ └── zooMirror.py │ │ │ ├── posePropagator.py │ │ │ ├── poseSym.py │ │ │ ├── poseSymIcons.xcf │ │ │ ├── poseSymUI.py │ │ │ ├── poseSym_match.png │ │ │ ├── poseSym_swap.png │ │ │ ├── posesToSliders.py │ │ │ ├── presetsUI.py │ │ │ ├── refPropagation.py │ │ │ ├── referenceUtils.py │ │ │ ├── resetAttrs.py │ │ │ ├── rigPrim_bipedLimbs.py │ │ │ ├── rigPrim_curves.py │ │ │ ├── rigPrim_hands.py │ │ │ ├── rigPrim_heads.py │ │ │ ├── rigPrim_ikFkBase.py │ │ │ ├── rigPrim_misc.py │ │ │ ├── rigPrim_quadrupeds.py │ │ │ ├── rigPrim_root.py │ │ │ ├── rigPrim_spines.py │ │ │ ├── rigPrim_stretchy.py │ │ │ ├── rigPrimitives.py │ │ │ ├── rigUtils.py │ │ │ ├── skeletonBuilder.py │ │ │ ├── skeletonBuilderPresets.py │ │ │ ├── skeletonBuilderUI.py │ │ │ ├── skeletonPart_arbitraryChain.py │ │ │ ├── skeletonPart_arm.py │ │ │ ├── skeletonPart_hand.py │ │ │ ├── skeletonPart_head.py │ │ │ ├── skeletonPart_leg.py │ │ │ ├── skeletonPart_quadrupedLimbs.py │ │ │ ├── skeletonPart_spine.py │ │ │ ├── skinCluster.py │ │ │ ├── skinWeights.py │ │ │ ├── skinWeightsBase.py │ │ │ ├── skinWeightsUI.py │ │ │ ├── spaceSwitching.py │ │ │ ├── spaceSwitchingUI.py │ │ │ ├── triggered.py │ │ │ ├── triggeredPresets.py │ │ │ ├── triggeredUI.py │ │ │ ├── twistNode.py │ │ │ ├── visManager.py │ │ │ ├── visManagerUI.py │ │ │ ├── xferAnimUI.py │ │ │ └── zooMirror.py │ │ │ ├── zooToolbox.mel │ │ │ └── zooToolbox.py │ ├── license.txt │ ├── mel │ │ ├── JTDdynParent.mel │ │ ├── JTDdynParentUI.mel │ │ ├── __init__.py │ │ ├── abSymMesh.mel │ │ ├── abTwoFace.mel │ │ ├── abWeightLifter.mel │ │ ├── autoTangent.mel │ │ ├── cgmPuppetKeyMM.mel │ │ ├── cgmSetKeyMM.mel │ │ ├── cgmSetToolsMM.mel │ │ ├── cgmSnapMM.mel │ │ ├── cometJointOrient.mel │ │ ├── dbRandomizeAttr.mel │ │ ├── jbExportQSS.mel │ │ ├── jbGraphSetDrivenAttribute.mel │ │ ├── jbMirrorSelectedJoints.mel │ │ ├── seShapeTaper.mel │ │ ├── tweenMachine.mel │ │ ├── tweenMachine_docs.html │ │ └── xml_lib.mel │ ├── plugins │ │ └── __init__.py │ ├── projects │ │ ├── CGM.py │ │ ├── __init__.py │ │ ├── lbs │ │ │ ├── __init__.py │ │ │ └── lbs_utils.py │ │ ├── mk1 │ │ │ ├── __init__.py │ │ │ └── mk1_utils.py │ │ ├── morpheusForUnity │ │ │ ├── __init__.py │ │ │ ├── m_utils.py │ │ │ └── scratchpad.py │ │ ├── oldFish.py │ │ ├── projectAA.py │ │ ├── projectN.py │ │ ├── projectT.py │ │ ├── rigMRS.py │ │ └── specpl.py │ └── tools │ │ ├── __init__.py │ │ ├── animTools.py │ │ ├── attrTools.py │ │ ├── bufferTools.py │ │ ├── findTextures.py │ │ ├── lib │ │ ├── __init__.py │ │ ├── animToolsLib.py │ │ ├── attrToolsLib.py │ │ ├── bufferToolsLib.py │ │ ├── locinatorLib.py │ │ ├── namingToolsLib.py │ │ ├── puppetBoxLib.py │ │ ├── setToolsLib.py │ │ └── tdToolsLib.py │ │ ├── locinator.py │ │ ├── markingMenus │ │ ├── __init__.py │ │ ├── cgmSetKey.py │ │ ├── cgmSetMenu.py │ │ └── cgmSnap.py │ │ ├── namingTools.py │ │ ├── polyUniteTool.py │ │ ├── puppetBox.py │ │ ├── setTools.py │ │ └── tdTools.py ├── cgmToolbox.mel ├── cgmToolbox.py └── cgmUpdate.py └── pi-files ├── pi ├── PySide2 │ ├── QtCore.pi │ ├── QtGui.pi │ ├── QtHelp.pi │ ├── QtNetwork.pi │ ├── QtPrintSupport.pi │ ├── QtQml.pi │ ├── QtQuick.pi │ ├── QtQuickWidgets.pi │ ├── QtScript.pi │ ├── QtSql.pi │ ├── QtSvg.pi │ ├── QtTest.pi │ ├── QtUiTools.pi │ ├── QtWebChannel.pi │ ├── QtWebEngineWidgets.pi │ ├── QtWebKit.pi │ ├── QtWebKitWidgets.pi │ ├── QtWebSockets.pi │ ├── QtWidgets.pi │ ├── QtXml.pi │ ├── QtXmlPatterns.pi │ ├── __init__.pi │ └── _utils.pi ├── maya │ ├── OpenMaya.pi │ ├── OpenMayaAnim.pi │ ├── OpenMayaFX.pi │ ├── OpenMayaMPx.pi │ ├── OpenMayaRender.pi │ ├── OpenMayaUI.pi │ ├── _OpenMaya.pi │ ├── _OpenMayaAnim.pi │ ├── _OpenMayaFX.pi │ ├── _OpenMayaMPx.pi │ ├── _OpenMayaRender.pi │ ├── _OpenMayaUI.pi │ ├── __init__.pi │ ├── analytics │ │ ├── AnalyticStaticNodeTypes.pi │ │ ├── BaseAnalytic.pi │ │ ├── Logger.pi │ │ ├── ObjectNamer.pi │ │ ├── ProgressMatrix.pi │ │ ├── Runner.pi │ │ ├── __init__.pi │ │ ├── analyticAnimation.pi │ │ ├── analyticCharacter.pi │ │ ├── analyticConnections.pi │ │ ├── analyticDeformers.pi │ │ ├── analyticEvalManager.pi │ │ ├── analyticGPUClusters.pi │ │ ├── analyticGPUDeformers.pi │ │ ├── analyticGPUTweaks.pi │ │ ├── analyticHIK.pi │ │ ├── analyticIK.pi │ │ ├── analyticMesh.pi │ │ ├── analyticNodeTypes.pi │ │ ├── analyticScripts.pi │ │ ├── analyticSkinClusters.pi │ │ ├── analyticValues.pi │ │ ├── decorators.pi │ │ ├── dg_utilities.pi │ │ ├── maya_file_generator.pi │ │ └── utilities.pi │ ├── api │ │ ├── OpenMaya.pi │ │ ├── OpenMayaAnim.pi │ │ ├── OpenMayaRender.pi │ │ ├── OpenMayaUI.pi │ │ ├── _OpenMayaAnim_py2.pi │ │ ├── _OpenMayaRender_py2.pi │ │ ├── _OpenMayaUI_py2.pi │ │ ├── _OpenMaya_py2.pi │ │ └── __init__.pi │ ├── app │ │ ├── __init__.pi │ │ ├── baseUI.pi │ │ ├── baseUI_res.pi │ │ ├── colorMgt │ │ │ ├── __init__.pi │ │ │ ├── customTransformUI.pi │ │ │ ├── customTransformUI_res.pi │ │ │ ├── inputSpaceRulesUI.pi │ │ │ ├── inputSpaceRulesUI_res.pi │ │ │ └── reapplyRules.pi │ │ ├── commands.pi │ │ ├── edl │ │ │ ├── __init__.pi │ │ │ ├── fcp.pi │ │ │ ├── importExport.pi │ │ │ └── translator.pi │ │ ├── evaluationToolkit │ │ │ ├── __init__.pi │ │ │ ├── evaluationToolkit.pi │ │ │ └── evaluationToolkit_res.pi │ │ ├── general │ │ │ ├── CommandPort.pi │ │ │ ├── CommandPort_res.pi │ │ │ ├── ServerRegistryMMap.pi │ │ │ ├── ServerRegistryMMap_res.pi │ │ │ ├── __init__.pi │ │ │ ├── adjustBackgroundImageWin.pi │ │ │ ├── adjustBackgroundImageWin_res.pi │ │ │ ├── art3dPaintGetPaintableAttr.pi │ │ │ ├── art3dPaintGetPaintableAttr_res.pi │ │ │ ├── assemblyUtils.pi │ │ │ ├── creaseSetEditor.pi │ │ │ ├── creaseSetEditor_res.pi │ │ │ ├── createImageFormats.pi │ │ │ ├── createImageFormats_res.pi │ │ │ ├── editUtils.pi │ │ │ ├── editUtils_res.pi │ │ │ ├── fileTexturePathResolver.pi │ │ │ ├── greasePencilInterop.pi │ │ │ ├── greasePencilInterop_res.pi │ │ │ ├── mayaIsVP2Capable.pi │ │ │ ├── mayaMixin.pi │ │ │ ├── menuItemToShelf.pi │ │ │ ├── meshHeight.pi │ │ │ ├── nodeEditor.pi │ │ │ ├── nodeEditorBookmarks.pi │ │ │ ├── nodeEditorBookmarks_res.pi │ │ │ ├── nodeEditorMenus.pi │ │ │ ├── nodeEditorMenus_res.pi │ │ │ ├── nodeEditorRendererMenus.pi │ │ │ ├── nodeEditorRendererMenus_res.pi │ │ │ ├── pointOnPolyConstraint.pi │ │ │ ├── positionAlongCurve.pi │ │ │ ├── positionAlongCurve_res.pi │ │ │ ├── printStudio.pi │ │ │ ├── printStudio_res.pi │ │ │ ├── publishAttrToContainer.pi │ │ │ ├── publishAttrToContainer_res.pi │ │ │ ├── resourceBrowser.pi │ │ │ ├── resourceBrowser_res.pi │ │ │ ├── shelfEditorWindow_res.pi │ │ │ ├── tlfavorites.pi │ │ │ ├── tlfavorites_res.pi │ │ │ ├── zipScene.pi │ │ │ └── zipScene_res.pi │ │ ├── hik │ │ │ ├── __init__.pi │ │ │ ├── retargeter.pi │ │ │ ├── retargeter_res.pi │ │ │ └── timer.pi │ │ ├── mayabullet │ │ │ ├── AlembicExport_res.pi │ │ │ ├── BulletUtils_res.pi │ │ │ ├── CommandWithOptionVars.pi │ │ │ ├── CommandWithOptionVars_res.pi │ │ │ ├── MayaDynamicsIntegration.pi │ │ │ ├── MayaDynamicsIntegration_res.pi │ │ │ ├── MayaUtils_res.pi │ │ │ ├── Ragdoll_res.pi │ │ │ ├── RigidBodyConstraintUI_res.pi │ │ │ ├── RigidBodyConstraint_res.pi │ │ │ ├── RigidBodyUI_res.pi │ │ │ ├── RigidBody_res.pi │ │ │ ├── SoftBodyConstraint_res.pi │ │ │ ├── SoftBodyUI.pi │ │ │ ├── SoftBodyUI_res.pi │ │ │ ├── SoftBody_res.pi │ │ │ ├── SolverUI.pi │ │ │ ├── SolverUI_res.pi │ │ │ ├── Trace.pi │ │ │ └── __init__.pi │ │ ├── polygons │ │ │ ├── __init__.pi │ │ │ └── polyUtilMeshQuery.pi │ │ ├── quickRig │ │ │ ├── __init__.pi │ │ │ ├── quickRigUI.pi │ │ │ └── quickRigUI_res.pi │ │ ├── renderSetup │ │ │ ├── __init__.pi │ │ │ ├── common │ │ │ │ ├── __init__.pi │ │ │ │ ├── errorAndWarningDeferrer.pi │ │ │ │ ├── guard.pi │ │ │ │ ├── profiler.pi │ │ │ │ ├── test │ │ │ │ │ ├── __init__.pi │ │ │ │ │ ├── importExportUtils.pi │ │ │ │ │ └── sceneUtils.pi │ │ │ │ ├── utils.pi │ │ │ │ └── utils_res.pi │ │ │ ├── model │ │ │ │ ├── __init__.pi │ │ │ │ ├── aovs.pi │ │ │ │ ├── aovs_res.pi │ │ │ │ ├── applyOverride.pi │ │ │ │ ├── childNode.pi │ │ │ │ ├── childNode_res.pi │ │ │ │ ├── collection.pi │ │ │ │ ├── collection_res.pi │ │ │ │ ├── connectionOverride.pi │ │ │ │ ├── connectionOverride_res.pi │ │ │ │ ├── dragAndDropBehavior.pi │ │ │ │ ├── dragAndDropBehavior_res.pi │ │ │ │ ├── enabled.pi │ │ │ │ ├── fileLoadMonitor.pi │ │ │ │ ├── fileLoadMonitor_res.pi │ │ │ │ ├── initialize.pi │ │ │ │ ├── jsonTranslatorGlobals.pi │ │ │ │ ├── jsonTranslatorGlobals_res.pi │ │ │ │ ├── jsonTranslatorUtils.pi │ │ │ │ ├── legacyRenderLayer.pi │ │ │ │ ├── modelCmds.pi │ │ │ │ ├── modelCmds_res.pi │ │ │ │ ├── namespace.pi │ │ │ │ ├── nodeList.pi │ │ │ │ ├── nodeListPrivate.pi │ │ │ │ ├── nodeListPrivate_res.pi │ │ │ │ ├── nodeNotes.pi │ │ │ │ ├── nodeTypes.pi │ │ │ │ ├── observable.pi │ │ │ │ ├── override.pi │ │ │ │ ├── overrideManager.pi │ │ │ │ ├── override_res.pi │ │ │ │ ├── plug.pi │ │ │ │ ├── plug_res.pi │ │ │ │ ├── renderLayer.pi │ │ │ │ ├── renderLayer_res.pi │ │ │ │ ├── renderSettings.pi │ │ │ │ ├── renderSettings_res.pi │ │ │ │ ├── renderSetup.pi │ │ │ │ ├── renderSetupPreferences.pi │ │ │ │ ├── renderSetupPreferences_res.pi │ │ │ │ ├── renderSetupPrivate.pi │ │ │ │ ├── renderSetupPrivate_res.pi │ │ │ │ ├── renderSetup_res.pi │ │ │ │ ├── rendererCallbacks.pi │ │ │ │ ├── rendererCallbacks_res.pi │ │ │ │ ├── sceneObservable.pi │ │ │ │ ├── selector.pi │ │ │ │ ├── selector_res.pi │ │ │ │ ├── serializableNode.pi │ │ │ │ ├── traverse.pi │ │ │ │ ├── typeIDs.pi │ │ │ │ ├── undo.pi │ │ │ │ ├── utils.pi │ │ │ │ ├── utilsModelStrings.pi │ │ │ │ ├── utilsModelStrings_res.pi │ │ │ │ └── weakMethod.pi │ │ │ └── views │ │ │ │ ├── Test │ │ │ │ ├── __init__.pi │ │ │ │ └── dndTestUtils.pi │ │ │ │ ├── __init__.pi │ │ │ │ ├── baseDelegate.pi │ │ │ │ ├── frameLayout.pi │ │ │ │ ├── importExportUI.pi │ │ │ │ ├── importExportUI_res.pi │ │ │ │ ├── initialize.pi │ │ │ │ ├── lightEditor │ │ │ │ ├── __init__.pi │ │ │ │ ├── editor.pi │ │ │ │ ├── editor_res.pi │ │ │ │ ├── enterScope.pi │ │ │ │ ├── group.pi │ │ │ │ ├── group_res.pi │ │ │ │ ├── itemDelegate.pi │ │ │ │ ├── itemModel.pi │ │ │ │ ├── itemStyle.pi │ │ │ │ ├── lightSource.pi │ │ │ │ ├── lightSource_res.pi │ │ │ │ ├── lightTypeManager.pi │ │ │ │ ├── node.pi │ │ │ │ ├── test.pi │ │ │ │ └── utils.pi │ │ │ │ ├── modalUtils.pi │ │ │ │ ├── overrideUtils.pi │ │ │ │ ├── propertyEditor │ │ │ │ ├── __init__.pi │ │ │ │ ├── collection.pi │ │ │ │ ├── collectionFilterLineEdit.pi │ │ │ │ ├── collectionFilterLineEdit_res.pi │ │ │ │ ├── collectionPropertyEditorStrings.pi │ │ │ │ ├── collectionPropertyEditorStrings_res.pi │ │ │ │ ├── collectionStaticSelectionWidget.pi │ │ │ │ ├── collectionStaticSelectionWidget_res.pi │ │ │ │ ├── expressionLabels.pi │ │ │ │ ├── expressionLabels_res.pi │ │ │ │ ├── layout.pi │ │ │ │ ├── lightsCollection.pi │ │ │ │ ├── lightsCollection_res.pi │ │ │ │ ├── main.pi │ │ │ │ ├── main_res.pi │ │ │ │ ├── override.pi │ │ │ │ ├── overridePropertyEditorStrings.pi │ │ │ │ ├── overridePropertyEditorStrings_res.pi │ │ │ │ ├── renderLayer.pi │ │ │ │ ├── staticCollection.pi │ │ │ │ └── staticCollection_res.pi │ │ │ │ ├── proxy │ │ │ │ ├── __init__.pi │ │ │ │ ├── renderSetup.pi │ │ │ │ ├── renderSetupProxyStrings.pi │ │ │ │ ├── renderSetupProxyStrings_res.pi │ │ │ │ ├── renderSetupRoles.pi │ │ │ │ ├── scene.pi │ │ │ │ └── scene_res.pi │ │ │ │ ├── pySide │ │ │ │ ├── __init__.pi │ │ │ │ ├── action.pi │ │ │ │ ├── cursors.pi │ │ │ │ ├── menu.pi │ │ │ │ └── standardItem.pi │ │ │ │ ├── renderSetup.pi │ │ │ │ ├── renderSetupButton.pi │ │ │ │ ├── renderSetupDelegate.pi │ │ │ │ ├── renderSetupDelegate_res.pi │ │ │ │ ├── renderSetupPreferences.pi │ │ │ │ ├── renderSetupPreferencesViewsStrings.pi │ │ │ │ ├── renderSetupPreferencesViewsStrings_res.pi │ │ │ │ ├── renderSetupStyle.pi │ │ │ │ ├── renderSetupWindow.pi │ │ │ │ ├── renderSetupWindow_res.pi │ │ │ │ ├── sceneDelegate.pi │ │ │ │ ├── sceneDelegate_res.pi │ │ │ │ ├── utils.pi │ │ │ │ ├── viewCmds.pi │ │ │ │ └── viewCmds_res.pi │ │ ├── sceneAssembly │ │ │ ├── __init__.pi │ │ │ ├── __init___res.pi │ │ │ ├── adskPrepareRender.pi │ │ │ ├── adskPrepareRender_res.pi │ │ │ └── assemblyReferenceInitialRep.pi │ │ ├── selectionSet │ │ │ ├── __init__.pi │ │ │ ├── controller │ │ │ │ └── __init__.pi │ │ │ └── model │ │ │ │ ├── __init__.pi │ │ │ │ └── selectionSet.pi │ │ ├── startup │ │ │ ├── __init__.pi │ │ │ ├── basic.pi │ │ │ ├── batch.pi │ │ │ └── gui.pi │ │ ├── stereo │ │ │ ├── __init__.pi │ │ │ ├── cameraSetTool_res.pi │ │ │ ├── multiRig_res.pi │ │ │ ├── stereoCameraComplexRig.pi │ │ │ ├── stereoCameraCustomPanel.pi │ │ │ ├── stereoCameraDefaultRig.pi │ │ │ ├── stereoCameraErrors.pi │ │ │ ├── stereoCameraErrors_res.pi │ │ │ ├── stereoCameraFetchMelVar.pi │ │ │ ├── stereoCameraMenus_res.pi │ │ │ ├── stereoCameraProxyRig.pi │ │ │ ├── stereoCameraRig.pi │ │ │ ├── stereoCameraSets.pi │ │ │ ├── stereoCameraSettings_res.pi │ │ │ ├── stereoCameraUILabel.pi │ │ │ ├── stereoCameraUtil.pi │ │ │ ├── stereoRigToolEditor.pi │ │ │ └── stereoRigToolEditor_res.pi │ │ └── type │ │ │ ├── AEtypeTemplate.pi │ │ │ ├── AEtypeTemplate_res.pi │ │ │ ├── __init__.pi │ │ │ ├── svgSetup.pi │ │ │ ├── svgUtils.pi │ │ │ ├── svgUtils_res.pi │ │ │ ├── typeToolSetup.pi │ │ │ └── typeUtilityScripts.pi │ ├── cmds │ │ └── __init__.pi │ ├── colorManagementUtilities.pi │ ├── common │ │ ├── __init__.pi │ │ ├── ui.pi │ │ ├── ui_res.pi │ │ └── utils.pi │ ├── debug │ │ ├── DGState.pi │ │ ├── PlaybackOptionsManager.pi │ │ ├── TODO.pi │ │ ├── __init__.pi │ │ ├── cacheCorrectnessTest.pi │ │ ├── closeness.pi │ │ ├── correctnessUtils.pi │ │ ├── dbtrace_ui.pi │ │ ├── dbtrace_ui_res.pi │ │ ├── dirtyState.pi │ │ ├── emConsistencyTest.pi │ │ ├── emCorrectnessTest.pi │ │ ├── emModeManager.pi │ │ ├── emPerformanceTest.pi │ │ ├── frozenUtilities.pi │ │ ├── graphStructure.pi │ │ ├── measureMPxTransformPerformance.pi │ │ └── playbackModeManager.pi │ ├── decorators.pi │ ├── maya_to_py_itr.pi │ ├── mel │ │ ├── __init__.pi │ │ └── melutils.pi │ ├── plugin │ │ ├── __init__.pi │ │ └── evaluator │ │ │ ├── __init__.pi │ │ │ └── customEvaluatorUI.pi │ ├── precomp.pi │ ├── standalone.pi │ ├── unsupported │ │ ├── __init__.pi │ │ └── convertToPre2009Workspace.pi │ └── utils.pi ├── pymel │ ├── __init__.pi │ ├── all.pi │ ├── api │ │ ├── __init__.pi │ │ ├── allapi.pi │ │ └── plugins.pi │ ├── core │ │ ├── __init__.pi │ │ ├── animation.pi │ │ ├── context.pi │ │ ├── datatypes.pi │ │ ├── effects.pi │ │ ├── general.pi │ │ ├── language.pi │ │ ├── modeling.pi │ │ ├── nodetypes.pi │ │ ├── other.pi │ │ ├── rendering.pi │ │ ├── runtime.pi │ │ ├── system.pi │ │ ├── uitypes.pi │ │ └── windows.pi │ ├── internal │ │ ├── __init__.pi │ │ ├── apicache.pi │ │ ├── cmdcache.pi │ │ ├── factories.pi │ │ ├── parsers.pi │ │ ├── plogging.pi │ │ ├── pmcmds.pi │ │ ├── pwarnings.pi │ │ └── startup.pi │ ├── mayautils.pi │ ├── tools │ │ ├── __init__.pi │ │ ├── envparse.pi │ │ ├── ipymel.pi │ │ ├── loggingControl.pi │ │ ├── mel2py │ │ │ ├── __init__.pi │ │ │ ├── mellex.pi │ │ │ ├── melparse.pi │ │ │ └── melscan.pi │ │ ├── mel2pyCommand.pi │ │ ├── py2mel.pi │ │ └── upgradeScripts.pi │ ├── util │ │ ├── __init__.pi │ │ ├── arguments.pi │ │ ├── arrays.pi │ │ ├── common.pi │ │ ├── conditions.pi │ │ ├── decoration.pi │ │ ├── enum.pi │ │ ├── external │ │ │ ├── BeautifulSoup.pi │ │ │ ├── __init__.pi │ │ │ └── ply │ │ │ │ ├── __init__.pi │ │ │ │ ├── cpp.pi │ │ │ │ ├── ctokens.pi │ │ │ │ ├── lex.pi │ │ │ │ └── yacc.pi │ │ ├── mathutils.pi │ │ ├── namedtuple.pi │ │ ├── nameparse.pi │ │ ├── objectParser.pi │ │ ├── path.pi │ │ ├── picklezip.pi │ │ ├── scanf.pi │ │ ├── shell.pi │ │ ├── testing.pi │ │ ├── trees.pi │ │ └── utilitytypes.pi │ └── versions.pi └── shiboken2.pi ├── py ├── PySide2 │ ├── QtCore.py │ ├── QtGui.py │ ├── QtHelp.py │ ├── QtNetwork.py │ ├── QtPrintSupport.py │ ├── QtQml.py │ ├── QtQuick.py │ ├── QtQuickWidgets.py │ ├── QtScript.py │ ├── QtSql.py │ ├── QtSvg.py │ ├── QtTest.py │ ├── QtUiTools.py │ ├── QtWebChannel.py │ ├── QtWebEngineWidgets.py │ ├── QtWebKit.py │ ├── QtWebKitWidgets.py │ ├── QtWebSockets.py │ ├── QtWidgets.py │ ├── QtXml.py │ ├── QtXmlPatterns.py │ ├── __init__.py │ └── _utils.py ├── maya │ ├── OpenMaya.py │ ├── OpenMayaAnim.py │ ├── OpenMayaFX.py │ ├── OpenMayaMPx.py │ ├── OpenMayaRender.py │ ├── OpenMayaUI.py │ ├── _OpenMaya.py │ ├── _OpenMayaAnim.py │ ├── _OpenMayaFX.py │ ├── _OpenMayaMPx.py │ ├── _OpenMayaRender.py │ ├── _OpenMayaUI.py │ ├── __init__.py │ ├── analytics │ │ ├── AnalyticStaticNodeTypes.py │ │ ├── BaseAnalytic.py │ │ ├── Logger.py │ │ ├── ObjectNamer.py │ │ ├── ProgressMatrix.py │ │ ├── Runner.py │ │ ├── __init__.py │ │ ├── analyticAnimation.py │ │ ├── analyticCharacter.py │ │ ├── analyticConnections.py │ │ ├── analyticDeformers.py │ │ ├── analyticEvalManager.py │ │ ├── analyticGPUClusters.py │ │ ├── analyticGPUDeformers.py │ │ ├── analyticGPUTweaks.py │ │ ├── analyticHIK.py │ │ ├── analyticIK.py │ │ ├── analyticMesh.py │ │ ├── analyticNodeTypes.py │ │ ├── analyticScripts.py │ │ ├── analyticSkinClusters.py │ │ ├── analyticValues.py │ │ ├── decorators.py │ │ ├── dg_utilities.py │ │ ├── maya_file_generator.py │ │ └── utilities.py │ ├── api │ │ ├── OpenMaya.py │ │ ├── OpenMayaAnim.py │ │ ├── OpenMayaRender.py │ │ ├── OpenMayaUI.py │ │ ├── _OpenMayaAnim_py2.py │ │ ├── _OpenMayaRender_py2.py │ │ ├── _OpenMayaUI_py2.py │ │ ├── _OpenMaya_py2.py │ │ └── __init__.py │ ├── app │ │ ├── __init__.py │ │ ├── baseUI.py │ │ ├── baseUI_res.py │ │ ├── colorMgt │ │ │ ├── __init__.py │ │ │ ├── customTransformUI.py │ │ │ ├── customTransformUI_res.py │ │ │ ├── inputSpaceRulesUI.py │ │ │ ├── inputSpaceRulesUI_res.py │ │ │ └── reapplyRules.py │ │ ├── commands.py │ │ ├── edl │ │ │ ├── __init__.py │ │ │ ├── fcp.py │ │ │ ├── importExport.py │ │ │ └── translator.py │ │ ├── evaluationToolkit │ │ │ ├── __init__.py │ │ │ ├── evaluationToolkit.py │ │ │ └── evaluationToolkit_res.py │ │ ├── general │ │ │ ├── CommandPort.py │ │ │ ├── CommandPort_res.py │ │ │ ├── ServerRegistryMMap.py │ │ │ ├── ServerRegistryMMap_res.py │ │ │ ├── __init__.py │ │ │ ├── adjustBackgroundImageWin.py │ │ │ ├── adjustBackgroundImageWin_res.py │ │ │ ├── art3dPaintGetPaintableAttr.py │ │ │ ├── art3dPaintGetPaintableAttr_res.py │ │ │ ├── assemblyUtils.py │ │ │ ├── creaseSetEditor.py │ │ │ ├── creaseSetEditor_res.py │ │ │ ├── createImageFormats.py │ │ │ ├── createImageFormats_res.py │ │ │ ├── editUtils.py │ │ │ ├── editUtils_res.py │ │ │ ├── fileTexturePathResolver.py │ │ │ ├── greasePencilInterop.py │ │ │ ├── greasePencilInterop_res.py │ │ │ ├── mayaIsVP2Capable.py │ │ │ ├── mayaMixin.py │ │ │ ├── menuItemToShelf.py │ │ │ ├── meshHeight.py │ │ │ ├── nodeEditor.py │ │ │ ├── nodeEditorBookmarks.py │ │ │ ├── nodeEditorBookmarks_res.py │ │ │ ├── nodeEditorMenus.py │ │ │ ├── nodeEditorMenus_res.py │ │ │ ├── nodeEditorRendererMenus.py │ │ │ ├── nodeEditorRendererMenus_res.py │ │ │ ├── pointOnPolyConstraint.py │ │ │ ├── positionAlongCurve.py │ │ │ ├── positionAlongCurve_res.py │ │ │ ├── printStudio.py │ │ │ ├── printStudio_res.py │ │ │ ├── publishAttrToContainer.py │ │ │ ├── publishAttrToContainer_res.py │ │ │ ├── resourceBrowser.py │ │ │ ├── resourceBrowser_res.py │ │ │ ├── shelfEditorWindow_res.py │ │ │ ├── tlfavorites.py │ │ │ ├── tlfavorites_res.py │ │ │ ├── zipScene.py │ │ │ └── zipScene_res.py │ │ ├── hik │ │ │ ├── __init__.py │ │ │ ├── retargeter.py │ │ │ ├── retargeter_res.py │ │ │ └── timer.py │ │ ├── mayabullet │ │ │ ├── AlembicExport_res.py │ │ │ ├── BulletUtils_res.py │ │ │ ├── CommandWithOptionVars.py │ │ │ ├── CommandWithOptionVars_res.py │ │ │ ├── MayaDynamicsIntegration.py │ │ │ ├── MayaDynamicsIntegration_res.py │ │ │ ├── MayaUtils_res.py │ │ │ ├── Ragdoll_res.py │ │ │ ├── RigidBodyConstraintUI_res.py │ │ │ ├── RigidBodyConstraint_res.py │ │ │ ├── RigidBodyUI_res.py │ │ │ ├── RigidBody_res.py │ │ │ ├── SoftBodyConstraint_res.py │ │ │ ├── SoftBodyUI.py │ │ │ ├── SoftBodyUI_res.py │ │ │ ├── SoftBody_res.py │ │ │ ├── SolverUI.py │ │ │ ├── SolverUI_res.py │ │ │ ├── Trace.py │ │ │ └── __init__.py │ │ ├── polygons │ │ │ ├── __init__.py │ │ │ └── polyUtilMeshQuery.py │ │ ├── quickRig │ │ │ ├── __init__.py │ │ │ ├── quickRigUI.py │ │ │ └── quickRigUI_res.py │ │ ├── renderSetup │ │ │ ├── __init__.py │ │ │ ├── common │ │ │ │ ├── __init__.py │ │ │ │ ├── errorAndWarningDeferrer.py │ │ │ │ ├── guard.py │ │ │ │ ├── profiler.py │ │ │ │ ├── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── importExportUtils.py │ │ │ │ │ └── sceneUtils.py │ │ │ │ ├── utils.py │ │ │ │ └── utils_res.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── aovs.py │ │ │ │ ├── aovs_res.py │ │ │ │ ├── applyOverride.py │ │ │ │ ├── childNode.py │ │ │ │ ├── childNode_res.py │ │ │ │ ├── collection.py │ │ │ │ ├── collection_res.py │ │ │ │ ├── connectionOverride.py │ │ │ │ ├── connectionOverride_res.py │ │ │ │ ├── dragAndDropBehavior.py │ │ │ │ ├── dragAndDropBehavior_res.py │ │ │ │ ├── enabled.py │ │ │ │ ├── fileLoadMonitor.py │ │ │ │ ├── fileLoadMonitor_res.py │ │ │ │ ├── initialize.py │ │ │ │ ├── jsonTranslatorGlobals.py │ │ │ │ ├── jsonTranslatorGlobals_res.py │ │ │ │ ├── jsonTranslatorUtils.py │ │ │ │ ├── legacyRenderLayer.py │ │ │ │ ├── modelCmds.py │ │ │ │ ├── modelCmds_res.py │ │ │ │ ├── namespace.py │ │ │ │ ├── nodeList.py │ │ │ │ ├── nodeListPrivate.py │ │ │ │ ├── nodeListPrivate_res.py │ │ │ │ ├── nodeNotes.py │ │ │ │ ├── nodeTypes.py │ │ │ │ ├── observable.py │ │ │ │ ├── override.py │ │ │ │ ├── overrideManager.py │ │ │ │ ├── override_res.py │ │ │ │ ├── plug.py │ │ │ │ ├── plug_res.py │ │ │ │ ├── renderLayer.py │ │ │ │ ├── renderLayer_res.py │ │ │ │ ├── renderSettings.py │ │ │ │ ├── renderSettings_res.py │ │ │ │ ├── renderSetup.py │ │ │ │ ├── renderSetupPreferences.py │ │ │ │ ├── renderSetupPreferences_res.py │ │ │ │ ├── renderSetupPrivate.py │ │ │ │ ├── renderSetupPrivate_res.py │ │ │ │ ├── renderSetup_res.py │ │ │ │ ├── rendererCallbacks.py │ │ │ │ ├── rendererCallbacks_res.py │ │ │ │ ├── sceneObservable.py │ │ │ │ ├── selector.py │ │ │ │ ├── selector_res.py │ │ │ │ ├── serializableNode.py │ │ │ │ ├── traverse.py │ │ │ │ ├── typeIDs.py │ │ │ │ ├── undo.py │ │ │ │ ├── utils.py │ │ │ │ ├── utilsModelStrings.py │ │ │ │ ├── utilsModelStrings_res.py │ │ │ │ └── weakMethod.py │ │ │ └── views │ │ │ │ ├── Test │ │ │ │ ├── __init__.py │ │ │ │ └── dndTestUtils.py │ │ │ │ ├── __init__.py │ │ │ │ ├── baseDelegate.py │ │ │ │ ├── frameLayout.py │ │ │ │ ├── importExportUI.py │ │ │ │ ├── importExportUI_res.py │ │ │ │ ├── initialize.py │ │ │ │ ├── lightEditor │ │ │ │ ├── __init__.py │ │ │ │ ├── editor.py │ │ │ │ ├── editor_res.py │ │ │ │ ├── enterScope.py │ │ │ │ ├── group.py │ │ │ │ ├── group_res.py │ │ │ │ ├── itemDelegate.py │ │ │ │ ├── itemModel.py │ │ │ │ ├── itemStyle.py │ │ │ │ ├── lightSource.py │ │ │ │ ├── lightSource_res.py │ │ │ │ ├── lightTypeManager.py │ │ │ │ ├── node.py │ │ │ │ ├── test.py │ │ │ │ └── utils.py │ │ │ │ ├── modalUtils.py │ │ │ │ ├── overrideUtils.py │ │ │ │ ├── propertyEditor │ │ │ │ ├── __init__.py │ │ │ │ ├── collection.py │ │ │ │ ├── collectionFilterLineEdit.py │ │ │ │ ├── collectionFilterLineEdit_res.py │ │ │ │ ├── collectionPropertyEditorStrings.py │ │ │ │ ├── collectionPropertyEditorStrings_res.py │ │ │ │ ├── collectionStaticSelectionWidget.py │ │ │ │ ├── collectionStaticSelectionWidget_res.py │ │ │ │ ├── expressionLabels.py │ │ │ │ ├── expressionLabels_res.py │ │ │ │ ├── layout.py │ │ │ │ ├── lightsCollection.py │ │ │ │ ├── lightsCollection_res.py │ │ │ │ ├── main.py │ │ │ │ ├── main_res.py │ │ │ │ ├── override.py │ │ │ │ ├── overridePropertyEditorStrings.py │ │ │ │ ├── overridePropertyEditorStrings_res.py │ │ │ │ ├── renderLayer.py │ │ │ │ ├── staticCollection.py │ │ │ │ └── staticCollection_res.py │ │ │ │ ├── proxy │ │ │ │ ├── __init__.py │ │ │ │ ├── renderSetup.py │ │ │ │ ├── renderSetupProxyStrings.py │ │ │ │ ├── renderSetupProxyStrings_res.py │ │ │ │ ├── renderSetupRoles.py │ │ │ │ ├── scene.py │ │ │ │ └── scene_res.py │ │ │ │ ├── pySide │ │ │ │ ├── __init__.py │ │ │ │ ├── action.py │ │ │ │ ├── cursors.py │ │ │ │ ├── menu.py │ │ │ │ └── standardItem.py │ │ │ │ ├── renderSetup.py │ │ │ │ ├── renderSetupButton.py │ │ │ │ ├── renderSetupDelegate.py │ │ │ │ ├── renderSetupDelegate_res.py │ │ │ │ ├── renderSetupPreferences.py │ │ │ │ ├── renderSetupPreferencesViewsStrings.py │ │ │ │ ├── renderSetupPreferencesViewsStrings_res.py │ │ │ │ ├── renderSetupStyle.py │ │ │ │ ├── renderSetupWindow.py │ │ │ │ ├── renderSetupWindow_res.py │ │ │ │ ├── sceneDelegate.py │ │ │ │ ├── sceneDelegate_res.py │ │ │ │ ├── utils.py │ │ │ │ ├── viewCmds.py │ │ │ │ └── viewCmds_res.py │ │ ├── sceneAssembly │ │ │ ├── __init__.py │ │ │ ├── __init___res.py │ │ │ ├── adskPrepareRender.py │ │ │ ├── adskPrepareRender_res.py │ │ │ └── assemblyReferenceInitialRep.py │ │ ├── selectionSet │ │ │ ├── __init__.py │ │ │ ├── controller │ │ │ │ └── __init__.py │ │ │ └── model │ │ │ │ ├── __init__.py │ │ │ │ └── selectionSet.py │ │ ├── startup │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ ├── batch.py │ │ │ └── gui.py │ │ ├── stereo │ │ │ ├── __init__.py │ │ │ ├── cameraSetTool_res.py │ │ │ ├── multiRig_res.py │ │ │ ├── stereoCameraComplexRig.py │ │ │ ├── stereoCameraCustomPanel.py │ │ │ ├── stereoCameraDefaultRig.py │ │ │ ├── stereoCameraErrors.py │ │ │ ├── stereoCameraErrors_res.py │ │ │ ├── stereoCameraFetchMelVar.py │ │ │ ├── stereoCameraMenus_res.py │ │ │ ├── stereoCameraProxyRig.py │ │ │ ├── stereoCameraRig.py │ │ │ ├── stereoCameraSets.py │ │ │ ├── stereoCameraSettings_res.py │ │ │ ├── stereoCameraUILabel.py │ │ │ ├── stereoCameraUtil.py │ │ │ ├── stereoRigToolEditor.py │ │ │ └── stereoRigToolEditor_res.py │ │ └── type │ │ │ ├── AEtypeTemplate.py │ │ │ ├── AEtypeTemplate_res.py │ │ │ ├── __init__.py │ │ │ ├── svgSetup.py │ │ │ ├── svgUtils.py │ │ │ ├── svgUtils_res.py │ │ │ ├── typeToolSetup.py │ │ │ └── typeUtilityScripts.py │ ├── cmds │ │ └── __init__.py │ ├── colorManagementUtilities.py │ ├── common │ │ ├── __init__.py │ │ ├── ui.py │ │ ├── ui_res.py │ │ └── utils.py │ ├── debug │ │ ├── DGState.py │ │ ├── PlaybackOptionsManager.py │ │ ├── TODO.py │ │ ├── __init__.py │ │ ├── cacheCorrectnessTest.py │ │ ├── closeness.py │ │ ├── correctnessUtils.py │ │ ├── dbtrace_ui.py │ │ ├── dbtrace_ui_res.py │ │ ├── dirtyState.py │ │ ├── emConsistencyTest.py │ │ ├── emCorrectnessTest.py │ │ ├── emModeManager.py │ │ ├── emPerformanceTest.py │ │ ├── frozenUtilities.py │ │ ├── graphStructure.py │ │ ├── measureMPxTransformPerformance.py │ │ └── playbackModeManager.py │ ├── decorators.py │ ├── maya_to_py_itr.py │ ├── mel │ │ ├── __init__.py │ │ └── melutils.py │ ├── plugin │ │ ├── __init__.py │ │ └── evaluator │ │ │ ├── __init__.py │ │ │ └── customEvaluatorUI.py │ ├── precomp.py │ ├── standalone.py │ ├── unsupported │ │ ├── __init__.py │ │ └── convertToPre2009Workspace.py │ └── utils.py ├── pymel │ ├── __init__.py │ ├── all.py │ ├── api │ │ ├── __init__.py │ │ ├── allapi.py │ │ └── plugins.py │ ├── core │ │ ├── __init__.py │ │ ├── animation.py │ │ ├── context.py │ │ ├── datatypes.py │ │ ├── effects.py │ │ ├── general.py │ │ ├── language.py │ │ ├── modeling.py │ │ ├── nodetypes.py │ │ ├── other.py │ │ ├── rendering.py │ │ ├── runtime.py │ │ ├── system.py │ │ ├── uitypes.py │ │ └── windows.py │ ├── internal │ │ ├── __init__.py │ │ ├── apicache.py │ │ ├── cmdcache.py │ │ ├── factories.py │ │ ├── parsers.py │ │ ├── plogging.py │ │ ├── pmcmds.py │ │ ├── pwarnings.py │ │ └── startup.py │ ├── mayautils.py │ ├── tools │ │ ├── __init__.py │ │ ├── envparse.py │ │ ├── ipymel.py │ │ ├── loggingControl.py │ │ ├── mel2py │ │ │ ├── __init__.py │ │ │ ├── mellex.py │ │ │ ├── melparse.py │ │ │ └── melscan.py │ │ ├── mel2pyCommand.py │ │ ├── py2mel.py │ │ └── upgradeScripts.py │ ├── util │ │ ├── __init__.py │ │ ├── arguments.py │ │ ├── arrays.py │ │ ├── common.py │ │ ├── conditions.py │ │ ├── decoration.py │ │ ├── enum.py │ │ ├── external │ │ │ ├── BeautifulSoup.py │ │ │ ├── __init__.py │ │ │ └── ply │ │ │ │ ├── __init__.py │ │ │ │ ├── cpp.py │ │ │ │ ├── ctokens.py │ │ │ │ ├── lex.py │ │ │ │ └── yacc.py │ │ ├── mathutils.py │ │ ├── namedtuple.py │ │ ├── nameparse.py │ │ ├── objectParser.py │ │ ├── path.py │ │ ├── picklezip.py │ │ ├── scanf.py │ │ ├── shell.py │ │ ├── testing.py │ │ ├── trees.py │ │ └── utilitytypes.py │ └── versions.py └── shiboken2.py └── pypredef ├── PySide2.QtCore.pypredef ├── PySide2.QtGui.pypredef ├── PySide2.QtHelp.pypredef ├── PySide2.QtNetwork.pypredef ├── PySide2.QtPrintSupport.pypredef ├── PySide2.QtQml.pypredef ├── PySide2.QtQuick.pypredef ├── PySide2.QtQuickWidgets.pypredef ├── PySide2.QtScript.pypredef ├── PySide2.QtSql.pypredef ├── PySide2.QtSvg.pypredef ├── PySide2.QtTest.pypredef ├── PySide2.QtUiTools.pypredef ├── PySide2.QtWebChannel.pypredef ├── PySide2.QtWebEngineWidgets.pypredef ├── PySide2.QtWebKit.pypredef ├── PySide2.QtWebKitWidgets.pypredef ├── PySide2.QtWebSockets.pypredef ├── PySide2.QtWidgets.pypredef ├── PySide2.QtXml.pypredef ├── PySide2.QtXmlPatterns.pypredef ├── PySide2._utils.pypredef ├── PySide2.pypredef ├── maya.OpenMaya.pypredef ├── maya.OpenMayaAnim.pypredef ├── maya.OpenMayaFX.pypredef ├── maya.OpenMayaMPx.pypredef ├── maya.OpenMayaRender.pypredef ├── maya.OpenMayaUI.pypredef ├── maya._OpenMaya.pypredef ├── maya._OpenMayaAnim.pypredef ├── maya._OpenMayaFX.pypredef ├── maya._OpenMayaMPx.pypredef ├── maya._OpenMayaRender.pypredef ├── maya._OpenMayaUI.pypredef ├── maya.analytics.AnalyticStaticNodeTypes.pypredef ├── maya.analytics.BaseAnalytic.pypredef ├── maya.analytics.Logger.pypredef ├── maya.analytics.ObjectNamer.pypredef ├── maya.analytics.ProgressMatrix.pypredef ├── maya.analytics.Runner.pypredef ├── maya.analytics.analyticAnimation.pypredef ├── maya.analytics.analyticCharacter.pypredef ├── maya.analytics.analyticConnections.pypredef ├── maya.analytics.analyticDeformers.pypredef ├── maya.analytics.analyticEvalManager.pypredef ├── maya.analytics.analyticGPUClusters.pypredef ├── maya.analytics.analyticGPUDeformers.pypredef ├── maya.analytics.analyticGPUTweaks.pypredef ├── maya.analytics.analyticHIK.pypredef ├── maya.analytics.analyticIK.pypredef ├── maya.analytics.analyticMesh.pypredef ├── maya.analytics.analyticNodeTypes.pypredef ├── maya.analytics.analyticScripts.pypredef ├── maya.analytics.analyticSkinClusters.pypredef ├── maya.analytics.analyticValues.pypredef ├── maya.analytics.decorators.pypredef ├── maya.analytics.dg_utilities.pypredef ├── maya.analytics.maya_file_generator.pypredef ├── maya.analytics.pypredef ├── maya.analytics.utilities.pypredef ├── maya.api.OpenMaya.pypredef ├── maya.api.OpenMayaAnim.pypredef ├── maya.api.OpenMayaRender.pypredef ├── maya.api.OpenMayaUI.pypredef ├── maya.api._OpenMayaAnim_py2.pypredef ├── maya.api._OpenMayaRender_py2.pypredef ├── maya.api._OpenMayaUI_py2.pypredef ├── maya.api._OpenMaya_py2.pypredef ├── maya.api.pypredef ├── maya.app.baseUI.pypredef ├── maya.app.baseUI_res.pypredef ├── maya.app.colorMgt.customTransformUI.pypredef ├── maya.app.colorMgt.customTransformUI_res.pypredef ├── maya.app.colorMgt.inputSpaceRulesUI.pypredef ├── maya.app.colorMgt.inputSpaceRulesUI_res.pypredef ├── maya.app.colorMgt.pypredef ├── maya.app.colorMgt.reapplyRules.pypredef ├── maya.app.commands.pypredef ├── maya.app.edl.fcp.pypredef ├── maya.app.edl.importExport.pypredef ├── maya.app.edl.pypredef ├── maya.app.edl.translator.pypredef ├── maya.app.evaluationToolkit.evaluationToolkit.pypredef ├── maya.app.evaluationToolkit.evaluationToolkit_res.pypredef ├── maya.app.evaluationToolkit.pypredef ├── maya.app.general.CommandPort.pypredef ├── maya.app.general.CommandPort_res.pypredef ├── maya.app.general.ServerRegistryMMap.pypredef ├── maya.app.general.ServerRegistryMMap_res.pypredef ├── maya.app.general.adjustBackgroundImageWin.pypredef ├── maya.app.general.adjustBackgroundImageWin_res.pypredef ├── maya.app.general.art3dPaintGetPaintableAttr.pypredef ├── maya.app.general.art3dPaintGetPaintableAttr_res.pypredef ├── maya.app.general.assemblyUtils.pypredef ├── maya.app.general.creaseSetEditor.pypredef ├── maya.app.general.creaseSetEditor_res.pypredef ├── maya.app.general.createImageFormats.pypredef ├── maya.app.general.createImageFormats_res.pypredef ├── maya.app.general.editUtils.pypredef ├── maya.app.general.editUtils_res.pypredef ├── maya.app.general.fileTexturePathResolver.pypredef ├── maya.app.general.greasePencilInterop.pypredef ├── maya.app.general.greasePencilInterop_res.pypredef ├── maya.app.general.mayaIsVP2Capable.pypredef ├── maya.app.general.mayaMixin.pypredef ├── maya.app.general.menuItemToShelf.pypredef ├── maya.app.general.meshHeight.pypredef ├── maya.app.general.nodeEditor.pypredef ├── maya.app.general.nodeEditorBookmarks.pypredef ├── maya.app.general.nodeEditorBookmarks_res.pypredef ├── maya.app.general.nodeEditorMenus.pypredef ├── maya.app.general.nodeEditorMenus_res.pypredef ├── maya.app.general.nodeEditorRendererMenus.pypredef ├── maya.app.general.nodeEditorRendererMenus_res.pypredef ├── maya.app.general.pointOnPolyConstraint.pypredef ├── maya.app.general.positionAlongCurve.pypredef ├── maya.app.general.positionAlongCurve_res.pypredef ├── maya.app.general.printStudio.pypredef ├── maya.app.general.printStudio_res.pypredef ├── maya.app.general.publishAttrToContainer.pypredef ├── maya.app.general.publishAttrToContainer_res.pypredef ├── maya.app.general.pypredef ├── maya.app.general.resourceBrowser.pypredef ├── maya.app.general.resourceBrowser_res.pypredef ├── maya.app.general.shelfEditorWindow_res.pypredef ├── maya.app.general.tlfavorites.pypredef ├── maya.app.general.tlfavorites_res.pypredef ├── maya.app.general.zipScene.pypredef ├── maya.app.general.zipScene_res.pypredef ├── maya.app.hik.pypredef ├── maya.app.hik.retargeter.pypredef ├── maya.app.hik.retargeter_res.pypredef ├── maya.app.hik.timer.pypredef ├── maya.app.mayabullet.AlembicExport_res.pypredef ├── maya.app.mayabullet.BulletUtils_res.pypredef ├── maya.app.mayabullet.CommandWithOptionVars.pypredef ├── maya.app.mayabullet.CommandWithOptionVars_res.pypredef ├── maya.app.mayabullet.MayaDynamicsIntegration.pypredef ├── maya.app.mayabullet.MayaDynamicsIntegration_res.pypredef ├── maya.app.mayabullet.MayaUtils_res.pypredef ├── maya.app.mayabullet.Ragdoll_res.pypredef ├── maya.app.mayabullet.RigidBodyConstraintUI_res.pypredef ├── maya.app.mayabullet.RigidBodyConstraint_res.pypredef ├── maya.app.mayabullet.RigidBodyUI_res.pypredef ├── maya.app.mayabullet.RigidBody_res.pypredef ├── maya.app.mayabullet.SoftBodyConstraint_res.pypredef ├── maya.app.mayabullet.SoftBodyUI.pypredef ├── maya.app.mayabullet.SoftBodyUI_res.pypredef ├── maya.app.mayabullet.SoftBody_res.pypredef ├── maya.app.mayabullet.SolverUI.pypredef ├── maya.app.mayabullet.SolverUI_res.pypredef ├── maya.app.mayabullet.Trace.pypredef ├── maya.app.mayabullet.pypredef ├── maya.app.polygons.polyUtilMeshQuery.pypredef ├── maya.app.polygons.pypredef ├── maya.app.pypredef ├── maya.app.quickRig.pypredef ├── maya.app.quickRig.quickRigUI.pypredef ├── maya.app.quickRig.quickRigUI_res.pypredef ├── maya.app.renderSetup.common.errorAndWarningDeferrer.pypredef ├── maya.app.renderSetup.common.guard.pypredef ├── maya.app.renderSetup.common.profiler.pypredef ├── maya.app.renderSetup.common.pypredef ├── maya.app.renderSetup.common.test.importExportUtils.pypredef ├── maya.app.renderSetup.common.test.pypredef ├── maya.app.renderSetup.common.test.sceneUtils.pypredef ├── maya.app.renderSetup.common.utils.pypredef ├── maya.app.renderSetup.common.utils_res.pypredef ├── maya.app.renderSetup.model.aovs.pypredef ├── maya.app.renderSetup.model.aovs_res.pypredef ├── maya.app.renderSetup.model.applyOverride.pypredef ├── maya.app.renderSetup.model.childNode.pypredef ├── maya.app.renderSetup.model.childNode_res.pypredef ├── maya.app.renderSetup.model.collection.pypredef ├── maya.app.renderSetup.model.collection_res.pypredef ├── maya.app.renderSetup.model.connectionOverride.pypredef ├── maya.app.renderSetup.model.connectionOverride_res.pypredef ├── maya.app.renderSetup.model.dragAndDropBehavior.pypredef ├── maya.app.renderSetup.model.dragAndDropBehavior_res.pypredef ├── maya.app.renderSetup.model.enabled.pypredef ├── maya.app.renderSetup.model.fileLoadMonitor.pypredef ├── maya.app.renderSetup.model.fileLoadMonitor_res.pypredef ├── maya.app.renderSetup.model.initialize.pypredef ├── maya.app.renderSetup.model.jsonTranslatorGlobals.pypredef ├── maya.app.renderSetup.model.jsonTranslatorGlobals_res.pypredef ├── maya.app.renderSetup.model.jsonTranslatorUtils.pypredef ├── maya.app.renderSetup.model.legacyRenderLayer.pypredef ├── maya.app.renderSetup.model.modelCmds.pypredef ├── maya.app.renderSetup.model.modelCmds_res.pypredef ├── maya.app.renderSetup.model.namespace.pypredef ├── maya.app.renderSetup.model.nodeList.pypredef ├── maya.app.renderSetup.model.nodeListPrivate.pypredef ├── maya.app.renderSetup.model.nodeListPrivate_res.pypredef ├── maya.app.renderSetup.model.nodeNotes.pypredef ├── maya.app.renderSetup.model.nodeTypes.pypredef ├── maya.app.renderSetup.model.observable.pypredef ├── maya.app.renderSetup.model.override.pypredef ├── maya.app.renderSetup.model.overrideManager.pypredef ├── maya.app.renderSetup.model.override_res.pypredef ├── maya.app.renderSetup.model.plug.pypredef ├── maya.app.renderSetup.model.plug_res.pypredef ├── maya.app.renderSetup.model.pypredef ├── maya.app.renderSetup.model.renderLayer.pypredef ├── maya.app.renderSetup.model.renderLayer_res.pypredef ├── maya.app.renderSetup.model.renderSettings.pypredef ├── maya.app.renderSetup.model.renderSettings_res.pypredef ├── maya.app.renderSetup.model.renderSetup.pypredef ├── maya.app.renderSetup.model.renderSetupPreferences.pypredef ├── maya.app.renderSetup.model.renderSetupPreferences_res.pypredef ├── maya.app.renderSetup.model.renderSetupPrivate.pypredef ├── maya.app.renderSetup.model.renderSetupPrivate_res.pypredef ├── maya.app.renderSetup.model.renderSetup_res.pypredef ├── maya.app.renderSetup.model.rendererCallbacks.pypredef ├── maya.app.renderSetup.model.rendererCallbacks_res.pypredef ├── maya.app.renderSetup.model.sceneObservable.pypredef ├── maya.app.renderSetup.model.selector.pypredef ├── maya.app.renderSetup.model.selector_res.pypredef ├── maya.app.renderSetup.model.serializableNode.pypredef ├── maya.app.renderSetup.model.traverse.pypredef ├── maya.app.renderSetup.model.typeIDs.pypredef ├── maya.app.renderSetup.model.undo.pypredef ├── maya.app.renderSetup.model.utils.pypredef ├── maya.app.renderSetup.model.utilsModelStrings.pypredef ├── maya.app.renderSetup.model.utilsModelStrings_res.pypredef ├── maya.app.renderSetup.model.weakMethod.pypredef ├── maya.app.renderSetup.pypredef ├── maya.app.renderSetup.views.Test.dndTestUtils.pypredef ├── maya.app.renderSetup.views.Test.pypredef ├── maya.app.renderSetup.views.baseDelegate.pypredef ├── maya.app.renderSetup.views.frameLayout.pypredef ├── maya.app.renderSetup.views.importExportUI.pypredef ├── maya.app.renderSetup.views.importExportUI_res.pypredef ├── maya.app.renderSetup.views.initialize.pypredef ├── maya.app.renderSetup.views.lightEditor.editor.pypredef ├── maya.app.renderSetup.views.lightEditor.editor_res.pypredef ├── maya.app.renderSetup.views.lightEditor.enterScope.pypredef ├── maya.app.renderSetup.views.lightEditor.group.pypredef ├── maya.app.renderSetup.views.lightEditor.group_res.pypredef ├── maya.app.renderSetup.views.lightEditor.itemDelegate.pypredef ├── maya.app.renderSetup.views.lightEditor.itemModel.pypredef ├── maya.app.renderSetup.views.lightEditor.itemStyle.pypredef ├── maya.app.renderSetup.views.lightEditor.lightSource.pypredef ├── maya.app.renderSetup.views.lightEditor.lightSource_res.pypredef ├── maya.app.renderSetup.views.lightEditor.lightTypeManager.pypredef ├── maya.app.renderSetup.views.lightEditor.node.pypredef ├── maya.app.renderSetup.views.lightEditor.pypredef ├── maya.app.renderSetup.views.lightEditor.test.pypredef ├── maya.app.renderSetup.views.lightEditor.utils.pypredef ├── maya.app.renderSetup.views.modalUtils.pypredef ├── maya.app.renderSetup.views.overrideUtils.pypredef ├── maya.app.renderSetup.views.propertyEditor.collection.pypredef ├── maya.app.renderSetup.views.propertyEditor.collectionFilterLineEdit.pypredef ├── maya.app.renderSetup.views.propertyEditor.collectionFilterLineEdit_res.pypredef ├── maya.app.renderSetup.views.propertyEditor.collectionPropertyEditorStrings.pypredef ├── maya.app.renderSetup.views.propertyEditor.collectionPropertyEditorStrings_res.pypredef ├── maya.app.renderSetup.views.propertyEditor.collectionStaticSelectionWidget.pypredef ├── maya.app.renderSetup.views.propertyEditor.collectionStaticSelectionWidget_res.pypredef ├── maya.app.renderSetup.views.propertyEditor.expressionLabels.pypredef ├── maya.app.renderSetup.views.propertyEditor.expressionLabels_res.pypredef ├── maya.app.renderSetup.views.propertyEditor.layout.pypredef ├── maya.app.renderSetup.views.propertyEditor.lightsCollection.pypredef ├── maya.app.renderSetup.views.propertyEditor.lightsCollection_res.pypredef ├── maya.app.renderSetup.views.propertyEditor.main.pypredef ├── maya.app.renderSetup.views.propertyEditor.main_res.pypredef ├── maya.app.renderSetup.views.propertyEditor.override.pypredef ├── maya.app.renderSetup.views.propertyEditor.overridePropertyEditorStrings.pypredef ├── maya.app.renderSetup.views.propertyEditor.overridePropertyEditorStrings_res.pypredef ├── maya.app.renderSetup.views.propertyEditor.pypredef ├── maya.app.renderSetup.views.propertyEditor.renderLayer.pypredef ├── maya.app.renderSetup.views.propertyEditor.staticCollection.pypredef ├── maya.app.renderSetup.views.propertyEditor.staticCollection_res.pypredef ├── maya.app.renderSetup.views.proxy.pypredef ├── maya.app.renderSetup.views.proxy.renderSetup.pypredef ├── maya.app.renderSetup.views.proxy.renderSetupProxyStrings.pypredef ├── maya.app.renderSetup.views.proxy.renderSetupProxyStrings_res.pypredef ├── maya.app.renderSetup.views.proxy.renderSetupRoles.pypredef ├── maya.app.renderSetup.views.proxy.scene.pypredef ├── maya.app.renderSetup.views.proxy.scene_res.pypredef ├── maya.app.renderSetup.views.pySide.action.pypredef ├── maya.app.renderSetup.views.pySide.cursors.pypredef ├── maya.app.renderSetup.views.pySide.menu.pypredef ├── maya.app.renderSetup.views.pySide.pypredef ├── maya.app.renderSetup.views.pySide.standardItem.pypredef ├── maya.app.renderSetup.views.pypredef ├── maya.app.renderSetup.views.renderSetup.pypredef ├── maya.app.renderSetup.views.renderSetupButton.pypredef ├── maya.app.renderSetup.views.renderSetupDelegate.pypredef ├── maya.app.renderSetup.views.renderSetupDelegate_res.pypredef ├── maya.app.renderSetup.views.renderSetupPreferences.pypredef ├── maya.app.renderSetup.views.renderSetupPreferencesViewsStrings.pypredef ├── maya.app.renderSetup.views.renderSetupPreferencesViewsStrings_res.pypredef ├── maya.app.renderSetup.views.renderSetupStyle.pypredef ├── maya.app.renderSetup.views.renderSetupWindow.pypredef ├── maya.app.renderSetup.views.renderSetupWindow_res.pypredef ├── maya.app.renderSetup.views.sceneDelegate.pypredef ├── maya.app.renderSetup.views.sceneDelegate_res.pypredef ├── maya.app.renderSetup.views.utils.pypredef ├── maya.app.renderSetup.views.viewCmds.pypredef ├── maya.app.renderSetup.views.viewCmds_res.pypredef ├── maya.app.sceneAssembly.__init___res.pypredef ├── maya.app.sceneAssembly.adskPrepareRender.pypredef ├── maya.app.sceneAssembly.adskPrepareRender_res.pypredef ├── maya.app.sceneAssembly.assemblyReferenceInitialRep.pypredef ├── maya.app.sceneAssembly.pypredef ├── maya.app.selectionSet.controller.pypredef ├── maya.app.selectionSet.model.pypredef ├── maya.app.selectionSet.model.selectionSet.pypredef ├── maya.app.selectionSet.pypredef ├── maya.app.startup.basic.pypredef ├── maya.app.startup.batch.pypredef ├── maya.app.startup.gui.pypredef ├── maya.app.startup.pypredef ├── maya.app.stereo.cameraSetTool_res.pypredef ├── maya.app.stereo.multiRig_res.pypredef ├── maya.app.stereo.pypredef ├── maya.app.stereo.stereoCameraComplexRig.pypredef ├── maya.app.stereo.stereoCameraCustomPanel.pypredef ├── maya.app.stereo.stereoCameraDefaultRig.pypredef ├── maya.app.stereo.stereoCameraErrors.pypredef ├── maya.app.stereo.stereoCameraErrors_res.pypredef ├── maya.app.stereo.stereoCameraFetchMelVar.pypredef ├── maya.app.stereo.stereoCameraMenus_res.pypredef ├── maya.app.stereo.stereoCameraProxyRig.pypredef ├── maya.app.stereo.stereoCameraRig.pypredef ├── maya.app.stereo.stereoCameraSets.pypredef ├── maya.app.stereo.stereoCameraSettings_res.pypredef ├── maya.app.stereo.stereoCameraUILabel.pypredef ├── maya.app.stereo.stereoCameraUtil.pypredef ├── maya.app.stereo.stereoRigToolEditor.pypredef ├── maya.app.stereo.stereoRigToolEditor_res.pypredef ├── maya.app.type.AEtypeTemplate.pypredef ├── maya.app.type.AEtypeTemplate_res.pypredef ├── maya.app.type.pypredef ├── maya.app.type.svgSetup.pypredef ├── maya.app.type.svgUtils.pypredef ├── maya.app.type.svgUtils_res.pypredef ├── maya.app.type.typeToolSetup.pypredef ├── maya.app.type.typeUtilityScripts.pypredef ├── maya.cmds.pypredef ├── maya.colorManagementUtilities.pypredef ├── maya.common.pypredef ├── maya.common.ui.pypredef ├── maya.common.ui_res.pypredef ├── maya.common.utils.pypredef ├── maya.debug.DGState.pypredef ├── maya.debug.PlaybackOptionsManager.pypredef ├── maya.debug.TODO.pypredef ├── maya.debug.cacheCorrectnessTest.pypredef ├── maya.debug.closeness.pypredef ├── maya.debug.correctnessUtils.pypredef ├── maya.debug.dbtrace_ui.pypredef ├── maya.debug.dbtrace_ui_res.pypredef ├── maya.debug.dirtyState.pypredef ├── maya.debug.emConsistencyTest.pypredef ├── maya.debug.emCorrectnessTest.pypredef ├── maya.debug.emModeManager.pypredef ├── maya.debug.emPerformanceTest.pypredef ├── maya.debug.frozenUtilities.pypredef ├── maya.debug.graphStructure.pypredef ├── maya.debug.measureMPxTransformPerformance.pypredef ├── maya.debug.playbackModeManager.pypredef ├── maya.debug.pypredef ├── maya.decorators.pypredef ├── maya.maya_to_py_itr.pypredef ├── maya.mel.melutils.pypredef ├── maya.mel.pypredef ├── maya.plugin.evaluator.customEvaluatorUI.pypredef ├── maya.plugin.evaluator.pypredef ├── maya.plugin.pypredef ├── maya.precomp.pypredef ├── maya.pypredef ├── maya.standalone.pypredef ├── maya.unsupported.convertToPre2009Workspace.pypredef ├── maya.unsupported.pypredef ├── maya.utils.pypredef ├── pymel.all.pypredef ├── pymel.api.allapi.pypredef ├── pymel.api.plugins.pypredef ├── pymel.api.pypredef ├── pymel.core.animation.pypredef ├── pymel.core.context.pypredef ├── pymel.core.datatypes.pypredef ├── pymel.core.effects.pypredef ├── pymel.core.general.pypredef ├── pymel.core.language.pypredef ├── pymel.core.modeling.pypredef ├── pymel.core.nodetypes.pypredef ├── pymel.core.other.pypredef ├── pymel.core.pypredef ├── pymel.core.rendering.pypredef ├── pymel.core.runtime.pypredef ├── pymel.core.system.pypredef ├── pymel.core.uitypes.pypredef ├── pymel.core.windows.pypredef ├── pymel.internal.apicache.pypredef ├── pymel.internal.cmdcache.pypredef ├── pymel.internal.factories.pypredef ├── pymel.internal.parsers.pypredef ├── pymel.internal.plogging.pypredef ├── pymel.internal.pmcmds.pypredef ├── pymel.internal.pwarnings.pypredef ├── pymel.internal.pypredef ├── pymel.internal.startup.pypredef ├── pymel.mayautils.pypredef ├── pymel.pypredef ├── pymel.tools.envparse.pypredef ├── pymel.tools.ipymel.pypredef ├── pymel.tools.loggingControl.pypredef ├── pymel.tools.mel2py.mellex.pypredef ├── pymel.tools.mel2py.melparse.pypredef ├── pymel.tools.mel2py.melscan.pypredef ├── pymel.tools.mel2py.pypredef ├── pymel.tools.mel2pyCommand.pypredef ├── pymel.tools.py2mel.pypredef ├── pymel.tools.pypredef ├── pymel.tools.upgradeScripts.pypredef ├── pymel.util.arguments.pypredef ├── pymel.util.arrays.pypredef ├── pymel.util.common.pypredef ├── pymel.util.conditions.pypredef ├── pymel.util.decoration.pypredef ├── pymel.util.enum.pypredef ├── pymel.util.external.BeautifulSoup.pypredef ├── pymel.util.external.ply.cpp.pypredef ├── pymel.util.external.ply.ctokens.pypredef ├── pymel.util.external.ply.lex.pypredef ├── pymel.util.external.ply.pypredef ├── pymel.util.external.ply.yacc.pypredef ├── pymel.util.external.pypredef ├── pymel.util.mathutils.pypredef ├── pymel.util.namedtuple.pypredef ├── pymel.util.nameparse.pypredef ├── pymel.util.objectParser.pypredef ├── pymel.util.path.pypredef ├── pymel.util.picklezip.pypredef ├── pymel.util.pypredef ├── pymel.util.scanf.pypredef ├── pymel.util.shell.pypredef ├── pymel.util.testing.pypredef ├── pymel.util.trees.pypredef ├── pymel.util.utilitytypes.pypredef ├── pymel.versions.pypredef └── shiboken2.pypredef /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/README -------------------------------------------------------------------------------- /cgm.wpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/cgm.wpr -------------------------------------------------------------------------------- /mayaScratch/blocks/scratch_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/blocks/scratch_handle.py -------------------------------------------------------------------------------- /mayaScratch/blocks/scratch_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/blocks/scratch_head.py -------------------------------------------------------------------------------- /mayaScratch/blocks/scratch_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/blocks/scratch_master.py -------------------------------------------------------------------------------- /mayaScratch/blocks/scratch_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/blocks/scratch_mirror.py -------------------------------------------------------------------------------- /mayaScratch/blocks/scratch_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/blocks/scratch_segment.py -------------------------------------------------------------------------------- /mayaScratch/blocks/scratch_spine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/blocks/scratch_spine.py -------------------------------------------------------------------------------- /mayaScratch/characterEngineering/placeholder.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaScratch/coreMeta/scratch_cgmMeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/coreMeta/scratch_cgmMeta.py -------------------------------------------------------------------------------- /mayaScratch/coreMeta/scratch_meshMath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/coreMeta/scratch_meshMath.py -------------------------------------------------------------------------------- /mayaScratch/genmayapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/genmayapi.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_arm.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_brow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_brow.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_eyeball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_eyeball.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_eyelids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_eyelids.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_face.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_finger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_finger.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_leg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_leg.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_lowerFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_lowerFace.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_neckHead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_neckHead.py -------------------------------------------------------------------------------- /mayaScratch/modules/scratch_spine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/modules/scratch_spine.py -------------------------------------------------------------------------------- /mayaScratch/play/matrixStuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/play/matrixStuff.py -------------------------------------------------------------------------------- /mayaScratch/play/mk1_scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/play/mk1_scratch.py -------------------------------------------------------------------------------- /mayaScratch/play/surfaceAttach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/play/surfaceAttach.py -------------------------------------------------------------------------------- /mayaScratch/scratch_April2018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_April2018.py -------------------------------------------------------------------------------- /mayaScratch/scratch_CORERIGGEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_CORERIGGEN.py -------------------------------------------------------------------------------- /mayaScratch/scratch_IK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_IK.py -------------------------------------------------------------------------------- /mayaScratch/scratch_NameFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_NameFactory.py -------------------------------------------------------------------------------- /mayaScratch/scratch_SKIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_SKIN.py -------------------------------------------------------------------------------- /mayaScratch/scratch_SnapFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_SnapFactory.py -------------------------------------------------------------------------------- /mayaScratch/scratch_brazenJuly2017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_brazenJuly2017.py -------------------------------------------------------------------------------- /mayaScratch/scratch_cgmMath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_cgmMath.py -------------------------------------------------------------------------------- /mayaScratch/scratch_curveUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_curveUtils.py -------------------------------------------------------------------------------- /mayaScratch/scratch_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_distance.py -------------------------------------------------------------------------------- /mayaScratch/scratch_joints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_joints.py -------------------------------------------------------------------------------- /mayaScratch/scratch_nodeFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_nodeFactory.py -------------------------------------------------------------------------------- /mayaScratch/scratch_nodeTesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_nodeTesting.py -------------------------------------------------------------------------------- /mayaScratch/scratch_playfulSpectra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_playfulSpectra.py -------------------------------------------------------------------------------- /mayaScratch/scratch_rayCaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_rayCaster.py -------------------------------------------------------------------------------- /mayaScratch/scratch_rigUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_rigUtils.py -------------------------------------------------------------------------------- /mayaScratch/scratch_segmentRework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_segmentRework.py -------------------------------------------------------------------------------- /mayaScratch/scratch_snap_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_snap_calls.py -------------------------------------------------------------------------------- /mayaScratch/scratch_snap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_snap_utils.py -------------------------------------------------------------------------------- /mayaScratch/scratch_strUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_strUtils.py -------------------------------------------------------------------------------- /mayaScratch/scratch_surfaceUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_surfaceUtils.py -------------------------------------------------------------------------------- /mayaScratch/scratch_uiIssues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaScratch/scratch_uiIssues.py -------------------------------------------------------------------------------- /mayaTools/Red9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/.gitignore -------------------------------------------------------------------------------- /mayaTools/Red9/Codebase_Tracker.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/Codebase_Tracker.xlsx -------------------------------------------------------------------------------- /mayaTools/Red9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/README.md -------------------------------------------------------------------------------- /mayaTools/Red9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/__init__.py -------------------------------------------------------------------------------- /mayaTools/Red9/changeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/changeLog.txt -------------------------------------------------------------------------------- /mayaTools/Red9/core/AnimationBinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/AnimationBinder.py -------------------------------------------------------------------------------- /mayaTools/Red9/core/Red9_Audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/Red9_Audio.py -------------------------------------------------------------------------------- /mayaTools/Red9/core/Red9_CoreUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/Red9_CoreUtils.py -------------------------------------------------------------------------------- /mayaTools/Red9/core/Red9_General.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/Red9_General.py -------------------------------------------------------------------------------- /mayaTools/Red9/core/Red9_MelCore.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/Red9_MelCore.mel -------------------------------------------------------------------------------- /mayaTools/Red9/core/Red9_Meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/Red9_Meta.py -------------------------------------------------------------------------------- /mayaTools/Red9/core/Red9_PoseSaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/Red9_PoseSaver.py -------------------------------------------------------------------------------- /mayaTools/Red9/core/Red9_Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/Red9_Tools.py -------------------------------------------------------------------------------- /mayaTools/Red9/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/core/__init__.py -------------------------------------------------------------------------------- /mayaTools/Red9/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/Makefile -------------------------------------------------------------------------------- /mayaTools/Red9/docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/html/.buildinfo -------------------------------------------------------------------------------- /mayaTools/Red9/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/html/index.html -------------------------------------------------------------------------------- /mayaTools/Red9/docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/html/objects.inv -------------------------------------------------------------------------------- /mayaTools/Red9/docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/html/search.html -------------------------------------------------------------------------------- /mayaTools/Red9/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/make.bat -------------------------------------------------------------------------------- /mayaTools/Red9/docs/red9_videos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/red9_videos.json -------------------------------------------------------------------------------- /mayaTools/Red9/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/source/conf.py -------------------------------------------------------------------------------- /mayaTools/Red9/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/source/index.rst -------------------------------------------------------------------------------- /mayaTools/Red9/docs/source/red9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/source/red9.png -------------------------------------------------------------------------------- /mayaTools/Red9/docs/sphinxme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/docs/sphinxme.py -------------------------------------------------------------------------------- /mayaTools/Red9/icons/api_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/api_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/blogspot_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/blogspot_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/bug_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/bug_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/camera_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/camera_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/domain_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/domain_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/facebook_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/facebook_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/info_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/info_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/lock_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/lock_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/meta_node_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/meta_node_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/mirror_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/mirror_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/pose_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/pose_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/red9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/red9.jpg -------------------------------------------------------------------------------- /mayaTools/Red9/icons/red9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/red9.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/red9_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/red9_update.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/search_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/search_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/sortBy.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/sortBy.psd -------------------------------------------------------------------------------- /mayaTools/Red9/icons/sortByDate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/sortByDate.bmp -------------------------------------------------------------------------------- /mayaTools/Red9/icons/sortByName.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/sortByName.bmp -------------------------------------------------------------------------------- /mayaTools/Red9/icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/sound.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/sound_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/sound_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/twitter_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/twitter_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/vimeo_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/vimeo_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/workflow_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/workflow_30.png -------------------------------------------------------------------------------- /mayaTools/Red9/icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/icons/youtube.png -------------------------------------------------------------------------------- /mayaTools/Red9/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/license.txt -------------------------------------------------------------------------------- /mayaTools/Red9/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/packages/__init__.py -------------------------------------------------------------------------------- /mayaTools/Red9/packages/configobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/packages/configobj.py -------------------------------------------------------------------------------- /mayaTools/Red9/packages/pydub/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/packages/pydub/AUTHORS -------------------------------------------------------------------------------- /mayaTools/Red9/packages/pydub/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/packages/pydub/LICENSE -------------------------------------------------------------------------------- /mayaTools/Red9/packages/pydub/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /mayaTools/Red9/presets/ART_v1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/presets/ART_v1.cfg -------------------------------------------------------------------------------- /mayaTools/Red9/presets/Andy_Rig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/presets/Andy_Rig.cfg -------------------------------------------------------------------------------- /mayaTools/Red9/presets/Basic_Rig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/presets/Basic_Rig.cfg -------------------------------------------------------------------------------- /mayaTools/Red9/presets/Default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/presets/Default.cfg -------------------------------------------------------------------------------- /mayaTools/Red9/presets/HumanIK.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/presets/HumanIK.cfg -------------------------------------------------------------------------------- /mayaTools/Red9/presets/MaxforMaya.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/presets/MaxforMaya.cfg -------------------------------------------------------------------------------- /mayaTools/Red9/presets/MetaRig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/presets/MetaRig.cfg -------------------------------------------------------------------------------- /mayaTools/Red9/presets/TSM.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/presets/TSM.cfg -------------------------------------------------------------------------------- /mayaTools/Red9/presets/posehandlers/test_poseHandler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/Red9/startup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/startup/__init__.py -------------------------------------------------------------------------------- /mayaTools/Red9/startup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/startup/setup.py -------------------------------------------------------------------------------- /mayaTools/Red9/tests/Red9_AnimTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/Red9/tests/Red9_AnimTest.py -------------------------------------------------------------------------------- /mayaTools/cgm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/__init__.py -------------------------------------------------------------------------------- /mayaTools/cgm/assets/cgmController.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/assets/cgmController.mb -------------------------------------------------------------------------------- /mayaTools/cgm/cgmInitialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/cgmInitialize.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/__init__.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgmPy/OM_Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgmPy/OM_Utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgmPy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgmPy/os_Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgmPy/os_Utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgmPy/str_Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgmPy/str_Utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgm_Dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgm_Dat.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgm_Deformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgm_Deformers.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgm_General.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgm_General.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgm_Meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgm_Meta.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgm_PuppetMeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgm_PuppetMeta.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/cgm_RigMeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/cgm_RigMeta.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/classes/GamePad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/classes/GamePad.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/exampleForMark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/exampleForMark.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/asset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/asset_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/curve_Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/curve_Utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/ease_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/ease_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/euclid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/euclid/README -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/geo_Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/geo_Utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/hud_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/hud_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/inputs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/inputs/LICENSE -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/list_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/list_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/math_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/meta_Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/meta_Utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/meta_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/ml_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/mouse_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/mouse_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/nameTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/nameTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/name_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/name_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/node_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/node_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/path_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/path_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/rayCaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/rayCaster.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/sdk_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/sdk_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/shapeCaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/shapeCaster.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/shape_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/shape_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/shared_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/shared_data.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/skinDat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/skinDat.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/skin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/skin_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/snap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/snap_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/wing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/zoo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/zoo/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/zoo/misc.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/zoo/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/zoo/names.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/zoo/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/zoo/path.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/lib/zoo/vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/lib/zoo/vectors.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/Animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/Animate.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/Builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/Builder.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/Helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/Helpers.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/MRSDat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/MRSDat.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/PoseManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/PoseManager.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/RigBlocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/RigBlocks.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/Scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/Scene.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/Scene2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/Scene2.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/SceneDat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/SceneDat.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/Shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/Shots.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/blocks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/blocks/organic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/blocks/simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/lib/rigBits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/mrs/lib/rigBits.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/mrs/postScripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/presets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/reloadFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/reloadFactory.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/rig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/rig/ik_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/rig/ik_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/rig/joint_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/rig/joint_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/rig/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/rig/skin_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/rig/skin_utils.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/rigger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/rigger/lib/Face/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/rigger/lib/Limb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/rigger/lib/Limb_OPTIMIZING/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/rigger/lib/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/tests/cgmTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tests/cgmTests.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tests/mayaBeOdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tests/mayaBeOdd.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tests/test_MRS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/Project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/Project.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/SVGator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/SVGator.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/animDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/animDraw.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/attrTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/attrTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/baseTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/baseTool.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/dragger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/dragger.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/dynFKTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/dynFKTool.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/locinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/locinator.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/markingMenus/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/markingMenus/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/meshTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/meshTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/setTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/setTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/snapTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/snapTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/spring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/spring.py -------------------------------------------------------------------------------- /mayaTools/cgm/core/tools/toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/core/tools/toolbox.py -------------------------------------------------------------------------------- /mayaTools/cgm/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/images/cgmDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/images/cgmDefault.png -------------------------------------------------------------------------------- /mayaTools/cgm/images/cgm_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/images/cgm_project.png -------------------------------------------------------------------------------- /mayaTools/cgm/images/cgm_uiFooter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/images/cgm_uiFooter.bmp -------------------------------------------------------------------------------- /mayaTools/cgm/images/cgm_uiFooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/images/cgm_uiFooter.png -------------------------------------------------------------------------------- /mayaTools/cgm/images/icons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/images/icons/sortBy.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/images/icons/sortBy.psd -------------------------------------------------------------------------------- /mayaTools/cgm/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/attributes.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/autoname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/autoname.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/batch.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/abPointLoft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/abPointLoft.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boCurveSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boCurveSlider.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boGhosting.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boGhosting.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boMotion.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boMotion.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boMotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boMotion.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boRandomizer.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boRandomizer.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boResetter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boResetter.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boScriptJobs.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boScriptJobs.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boSliders.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boSliders.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boSmear.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boSmear.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boSmear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boSmear.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boTSMTools.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boTSMTools.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boTimers.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boTimers.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boTimers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boTimers.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boTriggers.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boTriggers.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boUVSnapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boUVSnapshot.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/bo/boUtilities.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/bo/boUtilities.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/cgmBaseMelUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/cgmBaseMelUI.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/cgmDeveloperLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/cgmDeveloperLib.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/cgmMath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/cgmMath.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/cgmNames.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/cgmNames.conf -------------------------------------------------------------------------------- /mayaTools/cgm/lib/cgmSettings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/cgmSettings.conf -------------------------------------------------------------------------------- /mayaTools/cgm/lib/cgmTypes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/cgmTypes.conf -------------------------------------------------------------------------------- /mayaTools/cgm/lib/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/constraints.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/controlBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/controlBuilder.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/curves.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/deformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/deformers.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/dictionary.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/distance.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/dynamics.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/geo.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/guiFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/guiFactory.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/joints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/joints.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/lists.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/locators.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/logic.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/euclid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/euclid.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/ml_arcTracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/ml_arcTracer.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/ml_copyAnim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/ml_copyAnim.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/ml_deleteKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/ml_deleteKey.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/ml_hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/ml_hold.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/ml_setKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/ml_setKey.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/ml_stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/ml_stopwatch.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/ml_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/ml_utilities.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/ml/ml_worldBake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/ml/ml_worldBake.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/modules.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/names.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/nodes.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/openSource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/optionVars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/optionVars.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/position.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/pyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/pyui.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/rigging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/rigging.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/sdk.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/search.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/settings.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/skinning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/skinning.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/specialCaseStuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/specialCaseStuff.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/surfaces.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPy/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | #end 4 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPy/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/zoo/zooPy/events.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPy/kdTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/zoo/zooPy/kdTree.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPy/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/zoo/zooPy/misc.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPy/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/zoo/zooPy/name.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPy/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/zoo/zooPy/names.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPy/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/zoo/zooPy/path.py -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPyMaya/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | #end 4 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPyMaya/skeletonBuilderPresets.py: -------------------------------------------------------------------------------- 1 | 2 | from baseSkeletonPreset import * 3 | 4 | 5 | #end 6 | -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooPyMaya/skinCluster.py: -------------------------------------------------------------------------------- 1 | from meshUtils import * 2 | 3 | 4 | #end -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooToolbox.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/zoo/zooToolbox.mel -------------------------------------------------------------------------------- /mayaTools/cgm/lib/zoo/zooToolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/lib/zoo/zooToolbox.py -------------------------------------------------------------------------------- /mayaTools/cgm/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/license.txt -------------------------------------------------------------------------------- /mayaTools/cgm/mel/JTDdynParent.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/JTDdynParent.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/JTDdynParentUI.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/JTDdynParentUI.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/mel/abSymMesh.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/abSymMesh.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/abTwoFace.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/abTwoFace.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/abWeightLifter.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/abWeightLifter.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/autoTangent.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/autoTangent.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/cgmPuppetKeyMM.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/cgmPuppetKeyMM.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/cgmSetKeyMM.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/cgmSetKeyMM.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/cgmSetToolsMM.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/cgmSetToolsMM.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/cgmSnapMM.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/cgmSnapMM.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/dbRandomizeAttr.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/dbRandomizeAttr.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/jbExportQSS.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/jbExportQSS.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/seShapeTaper.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/seShapeTaper.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/tweenMachine.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/tweenMachine.mel -------------------------------------------------------------------------------- /mayaTools/cgm/mel/xml_lib.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/mel/xml_lib.mel -------------------------------------------------------------------------------- /mayaTools/cgm/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/projects/CGM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/projects/CGM.py -------------------------------------------------------------------------------- /mayaTools/cgm/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/projects/lbs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/projects/mk1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/projects/morpheusForUnity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/projects/oldFish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/projects/oldFish.py -------------------------------------------------------------------------------- /mayaTools/cgm/projects/projectAA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/projects/projectAA.py -------------------------------------------------------------------------------- /mayaTools/cgm/projects/projectN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/projects/projectN.py -------------------------------------------------------------------------------- /mayaTools/cgm/projects/projectT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/projects/projectT.py -------------------------------------------------------------------------------- /mayaTools/cgm/projects/rigMRS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/projects/rigMRS.py -------------------------------------------------------------------------------- /mayaTools/cgm/projects/specpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/projects/specpl.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/tools/animTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/animTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/attrTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/attrTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/bufferTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/bufferTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/findTextures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/findTextures.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/tools/lib/tdToolsLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/lib/tdToolsLib.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/locinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/locinator.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/markingMenus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayaTools/cgm/tools/namingTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/namingTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/polyUniteTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/polyUniteTool.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/puppetBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/puppetBox.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/setTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/setTools.py -------------------------------------------------------------------------------- /mayaTools/cgm/tools/tdTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgm/tools/tdTools.py -------------------------------------------------------------------------------- /mayaTools/cgmToolbox.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgmToolbox.mel -------------------------------------------------------------------------------- /mayaTools/cgmToolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgmToolbox.py -------------------------------------------------------------------------------- /mayaTools/cgmUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/mayaTools/cgmUpdate.py -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtCore.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtCore.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtGui.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtGui.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtHelp.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtHelp.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtNetwork.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtNetwork.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtPrintSupport.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtPrintSupport.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtQml.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtQml.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtQuick.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtQuick.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtQuickWidgets.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtQuickWidgets.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtScript.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtScript.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtSql.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtSql.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtSvg.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtSvg.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtTest.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtTest.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtUiTools.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtUiTools.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtWebChannel.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtWebChannel.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtWebKit.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtWebKit.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtWebSockets.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtWebSockets.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtWidgets.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtWidgets.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtXml.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtXml.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/QtXmlPatterns.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/QtXmlPatterns.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/PySide2/_utils.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/PySide2/_utils.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/OpenMaya.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/OpenMaya.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/OpenMayaAnim.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/OpenMayaAnim.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/OpenMayaFX.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/OpenMayaFX.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/OpenMayaMPx.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/OpenMayaMPx.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/OpenMayaRender.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/OpenMayaRender.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/OpenMayaUI.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/OpenMayaUI.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/_OpenMaya.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/_OpenMaya.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/_OpenMayaAnim.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/_OpenMayaAnim.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/_OpenMayaFX.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/_OpenMayaFX.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/_OpenMayaMPx.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/_OpenMayaMPx.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/_OpenMayaRender.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/_OpenMayaRender.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/_OpenMayaUI.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/_OpenMayaUI.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/__init__.pi: -------------------------------------------------------------------------------- 1 | stringTable = None 2 | 3 | 4 | -------------------------------------------------------------------------------- /pi-files/pi/maya/analytics/Logger.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/analytics/Logger.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/analytics/Runner.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/analytics/Runner.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/api/OpenMaya.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/api/OpenMaya.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/api/OpenMayaAnim.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/api/OpenMayaAnim.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/api/OpenMayaUI.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/api/OpenMayaUI.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/api/_OpenMaya_py2.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/api/_OpenMaya_py2.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/api/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/baseUI.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/baseUI.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/baseUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/colorMgt/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/colorMgt/customTransformUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/colorMgt/inputSpaceRulesUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/commands.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/commands.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/edl/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/edl/fcp.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/edl/fcp.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/evaluationToolkit/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/evaluationToolkit/evaluationToolkit_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/CommandPort_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/ServerRegistryMMap_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/adjustBackgroundImageWin_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/art3dPaintGetPaintableAttr_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/creaseSetEditor_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/createImageFormats_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/editUtils_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/greasePencilInterop_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/nodeEditorBookmarks_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/nodeEditorMenus_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/nodeEditorRendererMenus_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/positionAlongCurve_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/printStudio_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/publishAttrToContainer_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/resourceBrowser_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/shelfEditorWindow_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/tlfavorites_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/general/zipScene_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/hik/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/hik/retargeter_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/hik/timer.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/hik/timer.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/AlembicExport_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/BulletUtils_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/CommandWithOptionVars_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/MayaDynamicsIntegration_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/MayaUtils_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/Ragdoll_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/RigidBodyConstraintUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/RigidBodyConstraint_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/RigidBodyUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/RigidBody_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/SoftBodyConstraint_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/SoftBodyUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/SoftBody_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/mayabullet/SolverUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/polygons/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/quickRig/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/quickRig/quickRigUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/common/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/common/test/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/common/utils_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/aovs_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/childNode_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/collection_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/connectionOverride_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/dragAndDropBehavior_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/fileLoadMonitor_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/jsonTranslatorGlobals_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/modelCmds_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/nodeListPrivate_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/override_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/plug_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/renderLayer_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/renderSettings_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/renderSetupPreferences_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/renderSetupPrivate_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/renderSetup_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/rendererCallbacks_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/selector_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/model/utilsModelStrings_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/Test/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/importExportUI_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/lightEditor/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/lightEditor/editor_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/lightEditor/group_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/lightEditor/lightSource_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/collectionFilterLineEdit_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/collectionPropertyEditorStrings_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/collectionStaticSelectionWidget_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/expressionLabels_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/lightsCollection_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/main_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/overridePropertyEditorStrings_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/propertyEditor/staticCollection_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/proxy/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/proxy/renderSetupProxyStrings_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/proxy/scene_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/pySide/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/renderSetupDelegate_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/renderSetupPreferencesViewsStrings_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/renderSetupWindow_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/sceneDelegate_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/renderSetup/views/viewCmds_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/sceneAssembly/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/sceneAssembly/__init___res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/sceneAssembly/adskPrepareRender_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/selectionSet/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/selectionSet/controller/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/selectionSet/model/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/startup/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/startup/basic.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/startup/basic.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/startup/batch.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/startup/gui.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/startup/gui.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/stereo/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/stereo/cameraSetTool_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/stereo/multiRig_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/stereo/stereoCameraErrors_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/stereo/stereoCameraMenus_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/stereo/stereoCameraSettings_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/stereo/stereoRigToolEditor_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/type/AEtypeTemplate_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/type/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/app/type/svgSetup.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/type/svgSetup.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/type/svgUtils.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/app/type/svgUtils.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/app/type/svgUtils_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/cmds/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/cmds/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/common/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/common/ui.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/common/ui.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/common/ui_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/common/utils.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/common/utils.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/debug/DGState.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/debug/DGState.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/debug/TODO.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/debug/TODO.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/debug/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/debug/closeness.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/debug/closeness.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/debug/dbtrace_ui.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/debug/dbtrace_ui.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/debug/dbtrace_ui_res.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/debug/dirtyState.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/debug/dirtyState.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/decorators.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/decorators.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/maya_to_py_itr.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/maya_to_py_itr.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/mel/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/mel/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/mel/melutils.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/mel/melutils.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/plugin/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/plugin/evaluator/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/precomp.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/precomp.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/standalone.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/standalone.pi -------------------------------------------------------------------------------- /pi-files/pi/maya/unsupported/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/maya/utils.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/maya/utils.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/all.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/all.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/api/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/api/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/api/allapi.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/api/allapi.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/api/plugins.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/api/plugins.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/animation.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/animation.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/context.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/context.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/datatypes.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/datatypes.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/effects.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/effects.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/general.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/general.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/language.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/language.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/modeling.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/modeling.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/nodetypes.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/nodetypes.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/other.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/other.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/rendering.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/rendering.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/runtime.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/runtime.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/system.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/system.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/uitypes.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/uitypes.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/core/windows.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/core/windows.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/internal/parsers.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/internal/parsers.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/internal/pmcmds.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/internal/pmcmds.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/internal/startup.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/internal/startup.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/mayautils.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/mayautils.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/tools/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/tools/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/tools/envparse.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/tools/envparse.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/tools/ipymel.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/tools/ipymel.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/tools/py2mel.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/tools/py2mel.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/__init__.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/__init__.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/arguments.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/arguments.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/arrays.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/arrays.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/common.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/common.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/conditions.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/conditions.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/decoration.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/decoration.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/enum.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/enum.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/external/__init__.pi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/mathutils.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/mathutils.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/namedtuple.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/namedtuple.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/nameparse.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/nameparse.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/path.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/path.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/picklezip.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/picklezip.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/scanf.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/scanf.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/shell.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/shell.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/testing.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/testing.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/util/trees.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/util/trees.pi -------------------------------------------------------------------------------- /pi-files/pi/pymel/versions.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/pymel/versions.pi -------------------------------------------------------------------------------- /pi-files/pi/shiboken2.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pi/shiboken2.pi -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtCore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtCore.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtGui.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtHelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtHelp.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtNetwork.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtPrintSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtPrintSupport.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtQml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtQml.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtQuick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtQuick.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtQuickWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtQuickWidgets.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtScript.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtSql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtSql.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtSvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtSvg.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtTest.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtUiTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtUiTools.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtWebChannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtWebChannel.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtWebKit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtWebKit.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtWebSockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtWebSockets.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtWidgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtWidgets.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtXml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtXml.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/QtXmlPatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/QtXmlPatterns.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/__init__.py -------------------------------------------------------------------------------- /pi-files/py/PySide2/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/PySide2/_utils.py -------------------------------------------------------------------------------- /pi-files/py/maya/OpenMaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/OpenMaya.py -------------------------------------------------------------------------------- /pi-files/py/maya/OpenMayaAnim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/OpenMayaAnim.py -------------------------------------------------------------------------------- /pi-files/py/maya/OpenMayaFX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/OpenMayaFX.py -------------------------------------------------------------------------------- /pi-files/py/maya/OpenMayaMPx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/OpenMayaMPx.py -------------------------------------------------------------------------------- /pi-files/py/maya/OpenMayaRender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/OpenMayaRender.py -------------------------------------------------------------------------------- /pi-files/py/maya/OpenMayaUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/OpenMayaUI.py -------------------------------------------------------------------------------- /pi-files/py/maya/_OpenMaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/_OpenMaya.py -------------------------------------------------------------------------------- /pi-files/py/maya/_OpenMayaAnim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/_OpenMayaAnim.py -------------------------------------------------------------------------------- /pi-files/py/maya/_OpenMayaFX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/_OpenMayaFX.py -------------------------------------------------------------------------------- /pi-files/py/maya/_OpenMayaMPx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/_OpenMayaMPx.py -------------------------------------------------------------------------------- /pi-files/py/maya/_OpenMayaRender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/_OpenMayaRender.py -------------------------------------------------------------------------------- /pi-files/py/maya/_OpenMayaUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/_OpenMayaUI.py -------------------------------------------------------------------------------- /pi-files/py/maya/__init__.py: -------------------------------------------------------------------------------- 1 | stringTable = None 2 | 3 | 4 | -------------------------------------------------------------------------------- /pi-files/py/maya/analytics/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/analytics/Logger.py -------------------------------------------------------------------------------- /pi-files/py/maya/analytics/Runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/analytics/Runner.py -------------------------------------------------------------------------------- /pi-files/py/maya/api/OpenMaya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/api/OpenMaya.py -------------------------------------------------------------------------------- /pi-files/py/maya/api/OpenMayaAnim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/api/OpenMayaAnim.py -------------------------------------------------------------------------------- /pi-files/py/maya/api/OpenMayaUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/api/OpenMayaUI.py -------------------------------------------------------------------------------- /pi-files/py/maya/api/_OpenMaya_py2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/api/_OpenMaya_py2.py -------------------------------------------------------------------------------- /pi-files/py/maya/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/__init__.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/baseUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/baseUI.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/baseUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/colorMgt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/colorMgt/customTransformUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/colorMgt/inputSpaceRulesUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/commands.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/edl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/edl/fcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/edl/fcp.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/evaluationToolkit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/evaluationToolkit/evaluationToolkit_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/CommandPort_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/ServerRegistryMMap_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/adjustBackgroundImageWin_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/art3dPaintGetPaintableAttr_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/creaseSetEditor_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/createImageFormats_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/editUtils_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/greasePencilInterop_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/nodeEditorBookmarks_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/nodeEditorMenus_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/nodeEditorRendererMenus_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/positionAlongCurve_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/printStudio_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/publishAttrToContainer_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/resourceBrowser_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/shelfEditorWindow_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/tlfavorites_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/general/zipScene_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/hik/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/hik/retargeter_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/hik/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/hik/timer.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/AlembicExport_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/BulletUtils_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/CommandWithOptionVars_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/MayaDynamicsIntegration_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/MayaUtils_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/Ragdoll_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/RigidBodyConstraintUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/RigidBodyConstraint_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/RigidBodyUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/RigidBody_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/SoftBodyConstraint_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/SoftBodyUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/SoftBody_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/mayabullet/SolverUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/polygons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/quickRig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/quickRig/quickRigUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/common/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/common/utils_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/aovs_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/childNode_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/collection_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/connectionOverride_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/dragAndDropBehavior_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/fileLoadMonitor_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/jsonTranslatorGlobals_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/modelCmds_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/nodeListPrivate_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/override_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/plug_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/renderLayer_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/renderSettings_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/renderSetupPreferences_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/renderSetupPrivate_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/renderSetup_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/rendererCallbacks_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/selector_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/model/utilsModelStrings_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/Test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/importExportUI_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/lightEditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/lightEditor/editor_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/lightEditor/group_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/lightEditor/lightSource_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/collectionFilterLineEdit_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/collectionPropertyEditorStrings_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/collectionStaticSelectionWidget_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/expressionLabels_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/lightsCollection_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/main_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/overridePropertyEditorStrings_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/propertyEditor/staticCollection_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/proxy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/proxy/renderSetupProxyStrings_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/proxy/scene_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/pySide/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/renderSetupDelegate_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/renderSetupPreferencesViewsStrings_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/renderSetupWindow_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/sceneDelegate_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/renderSetup/views/viewCmds_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/sceneAssembly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/sceneAssembly/__init___res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/sceneAssembly/adskPrepareRender_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/selectionSet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/selectionSet/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/selectionSet/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/startup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/startup/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/startup/basic.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/startup/batch.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/startup/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/startup/gui.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/stereo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/stereo/cameraSetTool_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/stereo/multiRig_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/stereo/stereoCameraErrors_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/stereo/stereoCameraMenus_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/stereo/stereoCameraSettings_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/stereo/stereoRigToolEditor_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/type/AEtypeTemplate_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/app/type/svgSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/type/svgSetup.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/type/svgUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/app/type/svgUtils.py -------------------------------------------------------------------------------- /pi-files/py/maya/app/type/svgUtils_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/cmds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/cmds/__init__.py -------------------------------------------------------------------------------- /pi-files/py/maya/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/common/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/common/ui.py -------------------------------------------------------------------------------- /pi-files/py/maya/common/ui_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/common/utils.py -------------------------------------------------------------------------------- /pi-files/py/maya/debug/DGState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/debug/DGState.py -------------------------------------------------------------------------------- /pi-files/py/maya/debug/TODO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/debug/TODO.py -------------------------------------------------------------------------------- /pi-files/py/maya/debug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/debug/closeness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/debug/closeness.py -------------------------------------------------------------------------------- /pi-files/py/maya/debug/dbtrace_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/debug/dbtrace_ui.py -------------------------------------------------------------------------------- /pi-files/py/maya/debug/dbtrace_ui_res.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/debug/dirtyState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/debug/dirtyState.py -------------------------------------------------------------------------------- /pi-files/py/maya/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/decorators.py -------------------------------------------------------------------------------- /pi-files/py/maya/maya_to_py_itr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/maya_to_py_itr.py -------------------------------------------------------------------------------- /pi-files/py/maya/mel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/mel/__init__.py -------------------------------------------------------------------------------- /pi-files/py/maya/mel/melutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/mel/melutils.py -------------------------------------------------------------------------------- /pi-files/py/maya/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/plugin/evaluator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/precomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/precomp.py -------------------------------------------------------------------------------- /pi-files/py/maya/standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/standalone.py -------------------------------------------------------------------------------- /pi-files/py/maya/unsupported/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/maya/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/maya/utils.py -------------------------------------------------------------------------------- /pi-files/py/pymel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/__init__.py -------------------------------------------------------------------------------- /pi-files/py/pymel/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/all.py -------------------------------------------------------------------------------- /pi-files/py/pymel/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/api/__init__.py -------------------------------------------------------------------------------- /pi-files/py/pymel/api/allapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/api/allapi.py -------------------------------------------------------------------------------- /pi-files/py/pymel/api/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/api/plugins.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/__init__.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/animation.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/context.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/datatypes.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/effects.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/general.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/language.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/modeling.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/nodetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/nodetypes.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/other.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/rendering.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/runtime.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/system.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/uitypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/uitypes.py -------------------------------------------------------------------------------- /pi-files/py/pymel/core/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/core/windows.py -------------------------------------------------------------------------------- /pi-files/py/pymel/internal/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/internal/parsers.py -------------------------------------------------------------------------------- /pi-files/py/pymel/internal/pmcmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/internal/pmcmds.py -------------------------------------------------------------------------------- /pi-files/py/pymel/internal/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/internal/startup.py -------------------------------------------------------------------------------- /pi-files/py/pymel/mayautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/mayautils.py -------------------------------------------------------------------------------- /pi-files/py/pymel/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/tools/__init__.py -------------------------------------------------------------------------------- /pi-files/py/pymel/tools/envparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/tools/envparse.py -------------------------------------------------------------------------------- /pi-files/py/pymel/tools/ipymel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/tools/ipymel.py -------------------------------------------------------------------------------- /pi-files/py/pymel/tools/py2mel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/tools/py2mel.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/__init__.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/arguments.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/arrays.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/common.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/conditions.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/decoration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/decoration.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/enum.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/py/pymel/util/mathutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/mathutils.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/namedtuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/namedtuple.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/nameparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/nameparse.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/path.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/picklezip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/picklezip.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/scanf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/scanf.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/shell.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/testing.py -------------------------------------------------------------------------------- /pi-files/py/pymel/util/trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/util/trees.py -------------------------------------------------------------------------------- /pi-files/py/pymel/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/pymel/versions.py -------------------------------------------------------------------------------- /pi-files/py/shiboken2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/py/shiboken2.py -------------------------------------------------------------------------------- /pi-files/pypredef/PySide2.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/PySide2.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/maya.api.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.baseUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.colorMgt.customTransformUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.colorMgt.inputSpaceRulesUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.colorMgt.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.edl.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.evaluationToolkit.evaluationToolkit_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.evaluationToolkit.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.CommandPort_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.ServerRegistryMMap_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.adjustBackgroundImageWin_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.art3dPaintGetPaintableAttr_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.creaseSetEditor_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.createImageFormats_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.editUtils_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.greasePencilInterop_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.nodeEditorBookmarks_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.nodeEditorMenus_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.nodeEditorRendererMenus_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.positionAlongCurve_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.printStudio_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.publishAttrToContainer_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.resourceBrowser_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.shelfEditorWindow_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.tlfavorites_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.general.zipScene_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.hik.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.hik.retargeter_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.AlembicExport_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.BulletUtils_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.CommandWithOptionVars_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.MayaDynamicsIntegration_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.MayaUtils_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.Ragdoll_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.RigidBodyConstraintUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.RigidBodyConstraint_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.RigidBodyUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.RigidBody_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.SoftBodyConstraint_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.SoftBodyUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.SoftBody_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.mayabullet.SolverUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.polygons.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/maya.app.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.quickRig.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.quickRig.quickRigUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.common.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.common.test.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.common.utils_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.aovs_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.childNode_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.collection_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.connectionOverride_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.dragAndDropBehavior_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.fileLoadMonitor_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.jsonTranslatorGlobals_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.modelCmds_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.nodeListPrivate_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.override_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.plug_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.renderLayer_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.renderSettings_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.renderSetupPreferences_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.renderSetupPrivate_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.renderSetup_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.rendererCallbacks_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.selector_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.model.utilsModelStrings_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.Test.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.importExportUI_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.lightEditor.editor_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.lightEditor.group_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.lightEditor.lightSource_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.lightEditor.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.collectionFilterLineEdit_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.collectionPropertyEditorStrings_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.collectionStaticSelectionWidget_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.expressionLabels_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.lightsCollection_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.main_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.overridePropertyEditorStrings_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.propertyEditor.staticCollection_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.proxy.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.proxy.renderSetupProxyStrings_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.proxy.scene_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.pySide.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.renderSetupDelegate_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.renderSetupPreferencesViewsStrings_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.renderSetupWindow_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.sceneDelegate_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.renderSetup.views.viewCmds_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.sceneAssembly.__init___res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.sceneAssembly.adskPrepareRender_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.sceneAssembly.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.selectionSet.controller.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.selectionSet.model.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.selectionSet.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.startup.batch.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.startup.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.stereo.cameraSetTool_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.stereo.multiRig_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.stereo.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.stereo.stereoCameraErrors_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.stereo.stereoCameraMenus_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.stereo.stereoCameraSettings_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.stereo.stereoRigToolEditor_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.type.AEtypeTemplate_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.type.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.app.type.svgUtils_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.cmds.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/maya.cmds.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/maya.common.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.common.ui_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.debug.dbtrace_ui_res.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.debug.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.mel.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/maya.mel.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/maya.plugin.evaluator.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.plugin.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.pypredef: -------------------------------------------------------------------------------- 1 | stringTable = None 2 | 3 | 4 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.unsupported.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/maya.utils.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/maya.utils.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/pymel.all.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/pymel.all.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/pymel.api.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/pymel.api.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/pymel.core.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/pymel.core.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/pymel.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/pymel.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/pymel.util.external.pypredef: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pi-files/pypredef/pymel.util.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/pymel.util.pypredef -------------------------------------------------------------------------------- /pi-files/pypredef/shiboken2.pypredef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jjburton/cgmTools/HEAD/pi-files/pypredef/shiboken2.pypredef --------------------------------------------------------------------------------