├── .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 │ │ │ ├── puppet │ │ │ │ └── Red9_Pro_ikfk_match.doctree │ │ │ └── tools │ │ │ │ ├── Red9_Pro_anim_binder.doctree │ │ │ │ ├── Red9_Pro_anim_tools.doctree │ │ │ │ ├── Red9_Pro_health_manager.doctree │ │ │ │ ├── Red9_Pro_metahuman_tools.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 │ │ │ ├── puppet │ │ │ └── Red9_Pro_ikfk_match.rst.txt │ │ │ └── tools │ │ │ ├── Red9_Pro_anim_binder.rst.txt │ │ │ ├── Red9_Pro_anim_tools.rst.txt │ │ │ ├── Red9_Pro_health_manager.rst.txt │ │ │ ├── Red9_Pro_metahuman_tools.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 │ │ ├── puppet │ │ │ └── Red9_Pro_ikfk_match.html │ │ └── tools │ │ │ ├── Red9_Pro_anim_binder.html │ │ │ ├── Red9_Pro_anim_tools.html │ │ │ ├── Red9_Pro_health_manager.html │ │ │ ├── Red9_Pro_metahuman_tools.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 ├── red9_videos_youtube_error.png ├── red9_videos_youtube_unreleased.png ├── 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 │ │ ├── puppet │ │ └── Red9_Pro_ikfk_match.rst │ │ └── tools │ │ ├── Red9_Pro_anim_binder.rst │ │ ├── Red9_Pro_anim_tools.rst │ │ ├── Red9_Pro_health_manager.rst │ │ ├── Red9_Pro_metahuman_tools.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 ├── Shipped_35.png ├── api_30.png ├── blogspot_30.png ├── browser_35.png ├── bug_30.png ├── camera_30.png ├── copy_32.png ├── cpicker_30.png ├── dnahelix_32.png ├── domain_30.png ├── facebook_30.png ├── filter_curves.png ├── hand_with_pen_30.png ├── info_30.png ├── journey_30.png ├── knifeswiss_30.png ├── locationoff_32.png ├── locationon_30.png ├── lock_30.png ├── meta_node_30.png ├── mirror_30.png ├── paste_32.png ├── pose_30.png ├── radioactive_32.png ├── red9.jpg ├── red9.png ├── red9_update.png ├── saveload_anim_30.png ├── search_30.png ├── search_youtube_32.png ├── shuffle_30.png ├── sortBy.psd ├── sortByDate.bmp ├── sortByName.bmp ├── sound.png ├── sound_30.png ├── speedometer_30.png ├── tredmill.png ├── tredmill.psd ├── twitter_30.png ├── usergroup_32.png ├── vimeo_30.png ├── weightlifting_30.png ├── workflow_30.png └── youtube.png ├── installer ├── How To - ReadMe.txt └── userSetup.py ├── 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 ├── Index_Selected.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 │ ├── maya_2024 │ │ └── 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 ├── deleteMe.ma ├── filterTest.cfg └── mirrorData.mirrorMap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/.gitignore -------------------------------------------------------------------------------- /Codebase_Tracker.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/Codebase_Tracker.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/__init__.py -------------------------------------------------------------------------------- /changeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/changeLog.txt -------------------------------------------------------------------------------- /core/AnimationBinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/AnimationBinder.py -------------------------------------------------------------------------------- /core/Red9_AnimationUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/Red9_AnimationUtils.py -------------------------------------------------------------------------------- /core/Red9_Audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/Red9_Audio.py -------------------------------------------------------------------------------- /core/Red9_CoreUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/Red9_CoreUtils.py -------------------------------------------------------------------------------- /core/Red9_General.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/Red9_General.py -------------------------------------------------------------------------------- /core/Red9_MelCore.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/Red9_MelCore.mel -------------------------------------------------------------------------------- /core/Red9_Meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/Red9_Meta.py -------------------------------------------------------------------------------- /core/Red9_PoseSaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/Red9_PoseSaver.py -------------------------------------------------------------------------------- /core/Red9_Tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/Red9_Tools.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/core/__init__.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Red9 ProPack_release_notes/Red9 ProPack Manual - Pro_to_BND.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/Red9 ProPack_release_notes/Red9 ProPack Manual - Pro_to_BND.pdf -------------------------------------------------------------------------------- /docs/Red9 ProPack_release_notes/Red9 ProPack Manual - Pro_to_BND_2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/Red9 ProPack_release_notes/Red9 ProPack Manual - Pro_to_BND_2020.pdf -------------------------------------------------------------------------------- /docs/Red9 ProPack_release_notes/Red9 ProPack Release Notes - Jan 2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/Red9 ProPack_release_notes/Red9 ProPack Release Notes - Jan 2019.pdf -------------------------------------------------------------------------------- /docs/Red9 ProPack_release_notes/Red9 ProPack Release Notes - Sep 2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/Red9 ProPack_release_notes/Red9 ProPack Release Notes - Sep 2019.pdf -------------------------------------------------------------------------------- /docs/Red9-StudioTools Help.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/Red9-StudioTools Help.odt -------------------------------------------------------------------------------- /docs/Red9-StudioTools Help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/Red9-StudioTools Help.pdf -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9core_templates/Red9_AnimationUtils.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9core_templates/Red9_AnimationUtils.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9core_templates/Red9_Audio.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9core_templates/Red9_Audio.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9core_templates/Red9_Core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9core_templates/Red9_Core.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9core_templates/Red9_General.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9core_templates/Red9_General.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9core_templates/Red9_Meta.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9core_templates/Red9_Meta.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9core_templates/Red9_PoseSaver.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9core_templates/Red9_PoseSaver.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9core_templates/Red9_Setup.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9core_templates/Red9_Setup.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9core_templates/Red9_Tools.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9core_templates/Red9_Tools.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_anim_map.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_anim_map.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_animation.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_animation.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_audio.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_audio.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_export.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_export.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_general.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_general.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_importexport.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_importexport.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_meta .doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_meta .doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_metadata_pro .doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_metadata_pro .doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_metadata_pro.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_metadata_pro.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_optimiser.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_optimiser.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_project.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_project.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_r9data.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_r9data.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_r9skinning.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_r9skinning.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_rigutils.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_rigutils.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_skining.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_skining.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_skinning.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_skinning.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/Red9_Pro_uibase.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/Red9_Pro_uibase.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/puppet/Red9_Pro_ikfk_match.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/puppet/Red9_Pro_ikfk_match.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_anim_binder.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_anim_binder.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_anim_tools.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_anim_tools.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_health_manager.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_health_manager.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_metahuman_tools.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_metahuman_tools.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_project_manager.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_project_manager.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_rig_manager.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9pro_templates/tools/Red9_Pro_rig_manager.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9templates/Red9_AnimationUtils.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9templates/Red9_AnimationUtils.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9templates/Red9_Core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9templates/Red9_Core.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9templates/Red9_Meta.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9templates/Red9_Meta.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/red9templates/core.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/.doctrees/red9templates/core.doctree -------------------------------------------------------------------------------- /docs/html/_images/Red9_ProPack_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_images/Red9_ProPack_logo.png -------------------------------------------------------------------------------- /docs/html/_images/Red9_ProPack_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_images/Red9_ProPack_splash.png -------------------------------------------------------------------------------- /docs/html/_images/Red9_ProPack_strap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_images/Red9_ProPack_strap1.png -------------------------------------------------------------------------------- /docs/html/_images/Red9_ProPack_strap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_images/Red9_ProPack_strap2.png -------------------------------------------------------------------------------- /docs/html/_images/Red9_ProPack_strap_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_images/Red9_ProPack_strap_pro.png -------------------------------------------------------------------------------- /docs/html/_images/red9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_images/red9.png -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/index.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9core_templates/Red9_AnimationUtils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9core_templates/Red9_AnimationUtils.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9core_templates/Red9_Audio.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9core_templates/Red9_Audio.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9core_templates/Red9_Core.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9core_templates/Red9_Core.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9core_templates/Red9_General.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9core_templates/Red9_General.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9core_templates/Red9_Meta.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9core_templates/Red9_Meta.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9core_templates/Red9_PoseSaver.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9core_templates/Red9_PoseSaver.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9core_templates/Red9_Setup.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9core_templates/Red9_Setup.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9core_templates/Red9_Tools.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9core_templates/Red9_Tools.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_anim_map.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_anim_map.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_animation.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_animation.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_audio.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_audio.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_export.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_export.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_general.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_general.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_importexport.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_importexport.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_metadata_pro.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_metadata_pro.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_optimiser.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_optimiser.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_project.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_project.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_r9data.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_r9data.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_r9skinning.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_r9skinning.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_rigutils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_rigutils.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_skining.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_skining.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_skinning.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_skinning.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/Red9_Pro_uibase.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/Red9_Pro_uibase.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/puppet/Red9_Pro_ikfk_match.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/puppet/Red9_Pro_ikfk_match.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/tools/Red9_Pro_anim_binder.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/tools/Red9_Pro_anim_binder.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/tools/Red9_Pro_anim_tools.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/tools/Red9_Pro_anim_tools.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/tools/Red9_Pro_health_manager.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/tools/Red9_Pro_health_manager.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/tools/Red9_Pro_metahuman_tools.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/tools/Red9_Pro_metahuman_tools.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/tools/Red9_Pro_project_manager.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/tools/Red9_Pro_project_manager.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/red9pro_templates/tools/Red9_Pro_rig_manager.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_sources/red9pro_templates/tools/Red9_Pro_rig_manager.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/Red9_ProPack_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/Red9_ProPack_logo.png -------------------------------------------------------------------------------- /docs/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/comment.png -------------------------------------------------------------------------------- /docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/down.png -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/graphviz.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/graphviz.css -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/nature.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/nature.css -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/up.png -------------------------------------------------------------------------------- /docs/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/html/genindex-A.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-A.html -------------------------------------------------------------------------------- /docs/html/genindex-B.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-B.html -------------------------------------------------------------------------------- /docs/html/genindex-C.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-C.html -------------------------------------------------------------------------------- /docs/html/genindex-D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-D.html -------------------------------------------------------------------------------- /docs/html/genindex-E.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-E.html -------------------------------------------------------------------------------- /docs/html/genindex-F.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-F.html -------------------------------------------------------------------------------- /docs/html/genindex-G.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-G.html -------------------------------------------------------------------------------- /docs/html/genindex-H.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-H.html -------------------------------------------------------------------------------- /docs/html/genindex-I.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-I.html -------------------------------------------------------------------------------- /docs/html/genindex-J.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-J.html -------------------------------------------------------------------------------- /docs/html/genindex-K.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-K.html -------------------------------------------------------------------------------- /docs/html/genindex-L.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-L.html -------------------------------------------------------------------------------- /docs/html/genindex-M.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-M.html -------------------------------------------------------------------------------- /docs/html/genindex-N.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-N.html -------------------------------------------------------------------------------- /docs/html/genindex-O.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-O.html -------------------------------------------------------------------------------- /docs/html/genindex-P.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-P.html -------------------------------------------------------------------------------- /docs/html/genindex-R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-R.html -------------------------------------------------------------------------------- /docs/html/genindex-S.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-S.html -------------------------------------------------------------------------------- /docs/html/genindex-T.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-T.html -------------------------------------------------------------------------------- /docs/html/genindex-U.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-U.html -------------------------------------------------------------------------------- /docs/html/genindex-V.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-V.html -------------------------------------------------------------------------------- /docs/html/genindex-W.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-W.html -------------------------------------------------------------------------------- /docs/html/genindex-Z.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-Z.html -------------------------------------------------------------------------------- /docs/html/genindex-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex-all.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/red9core_templates/Red9_AnimationUtils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9core_templates/Red9_AnimationUtils.html -------------------------------------------------------------------------------- /docs/html/red9core_templates/Red9_Audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9core_templates/Red9_Audio.html -------------------------------------------------------------------------------- /docs/html/red9core_templates/Red9_Core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9core_templates/Red9_Core.html -------------------------------------------------------------------------------- /docs/html/red9core_templates/Red9_General.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9core_templates/Red9_General.html -------------------------------------------------------------------------------- /docs/html/red9core_templates/Red9_Meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9core_templates/Red9_Meta.html -------------------------------------------------------------------------------- /docs/html/red9core_templates/Red9_PoseSaver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9core_templates/Red9_PoseSaver.html -------------------------------------------------------------------------------- /docs/html/red9core_templates/Red9_Setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9core_templates/Red9_Setup.html -------------------------------------------------------------------------------- /docs/html/red9core_templates/Red9_Tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9core_templates/Red9_Tools.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_anim_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_anim_map.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_animation.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_audio.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_export.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_general.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_importexport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_importexport.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_meta .html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_meta .html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_metadata_pro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_metadata_pro.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_optimiser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_optimiser.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_project.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_r9data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_r9data.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_rigutils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_rigutils.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_skining.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_skining.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_skinning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_skinning.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/Red9_Pro_uibase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/Red9_Pro_uibase.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/puppet/Red9_Pro_ikfk_match.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/puppet/Red9_Pro_ikfk_match.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/tools/Red9_Pro_anim_binder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/tools/Red9_Pro_anim_binder.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/tools/Red9_Pro_anim_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/tools/Red9_Pro_anim_tools.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/tools/Red9_Pro_health_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/tools/Red9_Pro_health_manager.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/tools/Red9_Pro_metahuman_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/tools/Red9_Pro_metahuman_tools.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/tools/Red9_Pro_project_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/tools/Red9_Pro_project_manager.html -------------------------------------------------------------------------------- /docs/html/red9pro_templates/tools/Red9_Pro_rig_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/red9pro_templates/tools/Red9_Pro_rig_manager.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/images/AnimationUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/AnimationUI.jpg -------------------------------------------------------------------------------- /docs/images/AnimationUI_Pose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/AnimationUI_Pose.jpg -------------------------------------------------------------------------------- /docs/images/AnimationUI_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/AnimationUI_filter.jpg -------------------------------------------------------------------------------- /docs/images/AnimationUI_main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/AnimationUI_main.jpg -------------------------------------------------------------------------------- /docs/images/CopyKeys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/CopyKeys.jpg -------------------------------------------------------------------------------- /docs/images/FilterUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/FilterUI.jpg -------------------------------------------------------------------------------- /docs/images/LocknHide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/LocknHide.jpg -------------------------------------------------------------------------------- /docs/images/NodeName_re.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/NodeName_re.jpg -------------------------------------------------------------------------------- /docs/images/PoseManager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/PoseManager.jpg -------------------------------------------------------------------------------- /docs/images/SnapTransforms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/SnapTransforms.jpg -------------------------------------------------------------------------------- /docs/images/TimeOffset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/TimeOffset.jpg -------------------------------------------------------------------------------- /docs/images/TimeRange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/TimeRange.jpg -------------------------------------------------------------------------------- /docs/images/Track and Stabilize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/images/Track and Stabilize.jpg -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/red9_videos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/red9_videos.json -------------------------------------------------------------------------------- /docs/red9_videos_youtube_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/red9_videos_youtube_error.png -------------------------------------------------------------------------------- /docs/red9_videos_youtube_unreleased.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/red9_videos_youtube_unreleased.png -------------------------------------------------------------------------------- /docs/source/Red9_ProPack_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/Red9_ProPack_logo.png -------------------------------------------------------------------------------- /docs/source/Red9_ProPack_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/Red9_ProPack_splash.png -------------------------------------------------------------------------------- /docs/source/Red9_ProPack_strap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/Red9_ProPack_strap1.png -------------------------------------------------------------------------------- /docs/source/Red9_ProPack_strap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/Red9_ProPack_strap2.png -------------------------------------------------------------------------------- /docs/source/Red9_ProPack_strap_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/Red9_ProPack_strap_pro.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/red9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9.png -------------------------------------------------------------------------------- /docs/source/red9core_templates/Red9_AnimationUtils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9core_templates/Red9_AnimationUtils.rst -------------------------------------------------------------------------------- /docs/source/red9core_templates/Red9_Audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9core_templates/Red9_Audio.rst -------------------------------------------------------------------------------- /docs/source/red9core_templates/Red9_Core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9core_templates/Red9_Core.rst -------------------------------------------------------------------------------- /docs/source/red9core_templates/Red9_General.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9core_templates/Red9_General.rst -------------------------------------------------------------------------------- /docs/source/red9core_templates/Red9_Meta.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9core_templates/Red9_Meta.rst -------------------------------------------------------------------------------- /docs/source/red9core_templates/Red9_PoseSaver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9core_templates/Red9_PoseSaver.rst -------------------------------------------------------------------------------- /docs/source/red9core_templates/Red9_Setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9core_templates/Red9_Setup.rst -------------------------------------------------------------------------------- /docs/source/red9core_templates/Red9_Tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9core_templates/Red9_Tools.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_anim_map.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_anim_map.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_animation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_animation.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_audio.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_export.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_general.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_importexport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_importexport.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_meta .rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_meta .rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_metadata_pro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_metadata_pro.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_optimiser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_optimiser.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_project.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_r9data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_r9data.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_rigutils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_rigutils.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_skining.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_skining.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_skinning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_skinning.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/Red9_Pro_uibase.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/Red9_Pro_uibase.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/puppet/Red9_Pro_ikfk_match.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/puppet/Red9_Pro_ikfk_match.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/tools/Red9_Pro_anim_binder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/tools/Red9_Pro_anim_binder.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/tools/Red9_Pro_anim_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/tools/Red9_Pro_anim_tools.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/tools/Red9_Pro_health_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/tools/Red9_Pro_health_manager.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/tools/Red9_Pro_metahuman_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/tools/Red9_Pro_metahuman_tools.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/tools/Red9_Pro_project_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/tools/Red9_Pro_project_manager.rst -------------------------------------------------------------------------------- /docs/source/red9pro_templates/tools/Red9_Pro_rig_manager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/source/red9pro_templates/tools/Red9_Pro_rig_manager.rst -------------------------------------------------------------------------------- /docs/sphinxme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/docs/sphinxme.py -------------------------------------------------------------------------------- /examples/MetaData_Getting_started.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/examples/MetaData_Getting_started.py -------------------------------------------------------------------------------- /examples/MetaData_subclassing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/examples/MetaData_subclassing.py -------------------------------------------------------------------------------- /examples/MetaRig_Morpheus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/examples/MetaRig_Morpheus.py -------------------------------------------------------------------------------- /examples/poseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/examples/poseHandler.py -------------------------------------------------------------------------------- /icons/Red9StudioPack.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/Red9StudioPack.ico -------------------------------------------------------------------------------- /icons/Red9_ProPack_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/Red9_ProPack_logo.png -------------------------------------------------------------------------------- /icons/Red9_StudioPack_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/Red9_StudioPack_logo.png -------------------------------------------------------------------------------- /icons/Rocket9_buttonStrap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/Rocket9_buttonStrap.bmp -------------------------------------------------------------------------------- /icons/Rocket9_buttonStrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/Rocket9_buttonStrap.png -------------------------------------------------------------------------------- /icons/Rocket9_buttonStrap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/Rocket9_buttonStrap2.bmp -------------------------------------------------------------------------------- /icons/Rocket9_buttonStrap_narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/Rocket9_buttonStrap_narrow.png -------------------------------------------------------------------------------- /icons/Shipped_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/Shipped_35.png -------------------------------------------------------------------------------- /icons/api_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/api_30.png -------------------------------------------------------------------------------- /icons/blogspot_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/blogspot_30.png -------------------------------------------------------------------------------- /icons/browser_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/browser_35.png -------------------------------------------------------------------------------- /icons/bug_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/bug_30.png -------------------------------------------------------------------------------- /icons/camera_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/camera_30.png -------------------------------------------------------------------------------- /icons/copy_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/copy_32.png -------------------------------------------------------------------------------- /icons/cpicker_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/cpicker_30.png -------------------------------------------------------------------------------- /icons/dnahelix_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/dnahelix_32.png -------------------------------------------------------------------------------- /icons/domain_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/domain_30.png -------------------------------------------------------------------------------- /icons/facebook_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/facebook_30.png -------------------------------------------------------------------------------- /icons/filter_curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/filter_curves.png -------------------------------------------------------------------------------- /icons/hand_with_pen_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/hand_with_pen_30.png -------------------------------------------------------------------------------- /icons/info_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/info_30.png -------------------------------------------------------------------------------- /icons/journey_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/journey_30.png -------------------------------------------------------------------------------- /icons/knifeswiss_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/knifeswiss_30.png -------------------------------------------------------------------------------- /icons/locationoff_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/locationoff_32.png -------------------------------------------------------------------------------- /icons/locationon_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/locationon_30.png -------------------------------------------------------------------------------- /icons/lock_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/lock_30.png -------------------------------------------------------------------------------- /icons/meta_node_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/meta_node_30.png -------------------------------------------------------------------------------- /icons/mirror_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/mirror_30.png -------------------------------------------------------------------------------- /icons/paste_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/paste_32.png -------------------------------------------------------------------------------- /icons/pose_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/pose_30.png -------------------------------------------------------------------------------- /icons/radioactive_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/radioactive_32.png -------------------------------------------------------------------------------- /icons/red9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/red9.jpg -------------------------------------------------------------------------------- /icons/red9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/red9.png -------------------------------------------------------------------------------- /icons/red9_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/red9_update.png -------------------------------------------------------------------------------- /icons/saveload_anim_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/saveload_anim_30.png -------------------------------------------------------------------------------- /icons/search_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/search_30.png -------------------------------------------------------------------------------- /icons/search_youtube_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/search_youtube_32.png -------------------------------------------------------------------------------- /icons/shuffle_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/shuffle_30.png -------------------------------------------------------------------------------- /icons/sortBy.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/sortBy.psd -------------------------------------------------------------------------------- /icons/sortByDate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/sortByDate.bmp -------------------------------------------------------------------------------- /icons/sortByName.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/sortByName.bmp -------------------------------------------------------------------------------- /icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/sound.png -------------------------------------------------------------------------------- /icons/sound_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/sound_30.png -------------------------------------------------------------------------------- /icons/speedometer_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/speedometer_30.png -------------------------------------------------------------------------------- /icons/tredmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/tredmill.png -------------------------------------------------------------------------------- /icons/tredmill.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/tredmill.psd -------------------------------------------------------------------------------- /icons/twitter_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/twitter_30.png -------------------------------------------------------------------------------- /icons/usergroup_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/usergroup_32.png -------------------------------------------------------------------------------- /icons/vimeo_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/vimeo_30.png -------------------------------------------------------------------------------- /icons/weightlifting_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/weightlifting_30.png -------------------------------------------------------------------------------- /icons/workflow_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/workflow_30.png -------------------------------------------------------------------------------- /icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/icons/youtube.png -------------------------------------------------------------------------------- /installer/How To - ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/installer/How To - ReadMe.txt -------------------------------------------------------------------------------- /installer/userSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/installer/userSetup.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/license.txt -------------------------------------------------------------------------------- /packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/__init__.py -------------------------------------------------------------------------------- /packages/configobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/configobj.py -------------------------------------------------------------------------------- /packages/pydub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/.gitignore -------------------------------------------------------------------------------- /packages/pydub/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/.travis.yml -------------------------------------------------------------------------------- /packages/pydub/API.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/API.markdown -------------------------------------------------------------------------------- /packages/pydub/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/AUTHORS -------------------------------------------------------------------------------- /packages/pydub/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/LICENSE -------------------------------------------------------------------------------- /packages/pydub/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/README.markdown -------------------------------------------------------------------------------- /packages/pydub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/__init__.py -------------------------------------------------------------------------------- /packages/pydub/pydub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/__init__.py -------------------------------------------------------------------------------- /packages/pydub/pydub/audio_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/audio_segment.py -------------------------------------------------------------------------------- /packages/pydub/pydub/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/effects.py -------------------------------------------------------------------------------- /packages/pydub/pydub/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/exceptions.py -------------------------------------------------------------------------------- /packages/pydub/pydub/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/generators.py -------------------------------------------------------------------------------- /packages/pydub/pydub/logging_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/logging_utils.py -------------------------------------------------------------------------------- /packages/pydub/pydub/playback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/playback.py -------------------------------------------------------------------------------- /packages/pydub/pydub/pyaudioop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/pyaudioop.py -------------------------------------------------------------------------------- /packages/pydub/pydub/silence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/silence.py -------------------------------------------------------------------------------- /packages/pydub/pydub/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/pydub/utils.py -------------------------------------------------------------------------------- /packages/pydub/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /packages/pydub/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pydub/setup.py -------------------------------------------------------------------------------- /packages/pyperclip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pyperclip/__init__.py -------------------------------------------------------------------------------- /packages/pyperclip/clipboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pyperclip/clipboards.py -------------------------------------------------------------------------------- /packages/pyperclip/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pyperclip/exceptions.py -------------------------------------------------------------------------------- /packages/pyperclip/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/packages/pyperclip/windows.py -------------------------------------------------------------------------------- /plug-ins/SnapRuntime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/plug-ins/SnapRuntime.py -------------------------------------------------------------------------------- /plug-ins/evalManager_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/plug-ins/evalManager_switch.py -------------------------------------------------------------------------------- /presets/ART_v1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/ART_v1.cfg -------------------------------------------------------------------------------- /presets/ART_v1.mirrorMap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/ART_v1.mirrorMap -------------------------------------------------------------------------------- /presets/Andy_Rig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Andy_Rig.cfg -------------------------------------------------------------------------------- /presets/Basic_Rig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Basic_Rig.cfg -------------------------------------------------------------------------------- /presets/Basic_Skeleton.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Basic_Skeleton.cfg -------------------------------------------------------------------------------- /presets/Default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Default.cfg -------------------------------------------------------------------------------- /presets/HumanIK.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/HumanIK.cfg -------------------------------------------------------------------------------- /presets/Index_Selected.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Index_Selected.cfg -------------------------------------------------------------------------------- /presets/MaxforMaya.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/MaxforMaya.cfg -------------------------------------------------------------------------------- /presets/MetaRig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/MetaRig.cfg -------------------------------------------------------------------------------- /presets/MorpheusRig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/MorpheusRig.cfg -------------------------------------------------------------------------------- /presets/Red9_DevRig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Red9_DevRig.cfg -------------------------------------------------------------------------------- /presets/Red9_MetaRig_unitTest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Red9_MetaRig_unitTest.cfg -------------------------------------------------------------------------------- /presets/Red9_PuppetRig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Red9_PuppetRig.cfg -------------------------------------------------------------------------------- /presets/Standard_Hierarchy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Standard_Hierarchy.cfg -------------------------------------------------------------------------------- /presets/Stewart_Rig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/Stewart_Rig.cfg -------------------------------------------------------------------------------- /presets/TSM.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/TSM.cfg -------------------------------------------------------------------------------- /presets/__red9animreset__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/__red9animreset__ -------------------------------------------------------------------------------- /presets/posehandlers/Red9_facial_poseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/posehandlers/Red9_facial_poseHandler.py -------------------------------------------------------------------------------- /presets/posehandlers/fingerMirrorID_poseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/posehandlers/fingerMirrorID_poseHandler.py -------------------------------------------------------------------------------- /presets/posehandlers/finger_poseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/posehandlers/finger_poseHandler.py -------------------------------------------------------------------------------- /presets/posehandlers/test_poseHandler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presets/resource_files/HIK_default.hikproperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/presets/resource_files/HIK_default.hikproperties -------------------------------------------------------------------------------- /startup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/__init__.py -------------------------------------------------------------------------------- /startup/language_packs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/language_packs/__init__.py -------------------------------------------------------------------------------- /startup/language_packs/language_english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/language_packs/language_english.py -------------------------------------------------------------------------------- /startup/maya_native/maya_2009/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2009/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2010/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2010/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2011/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2011/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2012/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2012/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2013/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2013/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2014/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2014/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2015/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2015/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2016.5/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2016.5/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2016/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2016/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2017/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2017/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2018/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2018/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2019/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2019/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2020/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2020/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2022/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2022/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2023/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2023/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/maya_2024/Maya_Hacked.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/maya_2024/Maya_Hacked.mel -------------------------------------------------------------------------------- /startup/maya_native/red9MayaHacks.mel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/maya_native/red9MayaHacks.mel -------------------------------------------------------------------------------- /startup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/startup/setup.py -------------------------------------------------------------------------------- /tests/Red9_AnimTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/Red9_AnimTest.py -------------------------------------------------------------------------------- /tests/Red9_AudioTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/Red9_AudioTest.py -------------------------------------------------------------------------------- /tests/Red9_CoreUtilTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/Red9_CoreUtilTests.py -------------------------------------------------------------------------------- /tests/Red9_MetaTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/Red9_MetaTests.py -------------------------------------------------------------------------------- /tests/Red9_PoseTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/Red9_PoseTests.py -------------------------------------------------------------------------------- /tests/testFiles/FilterNode_baseTests.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/FilterNode_baseTests.ma -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/T_Pose.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/T_Pose.bmp -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/T_Pose.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/T_Pose.pose -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/fingers/l_fingers_curled.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/fingers/l_fingers_curled.bmp -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/fingers/l_fingers_curled.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/fingers/l_fingers_curled.pose -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/fingers/lfingers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/fingers/lfingers.bmp -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/fingers/lfingers.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/fingers/lfingers.pose -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/fingers/poseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/fingers/poseHandler.py -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/jump_f218.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/jump_f218.bmp -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/jump_f218.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/jump_f218.pose -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/jump_f218_projected.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/jump_f218_projected.bmp -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/jump_f218_projected.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/jump_f218_projected.pose -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/jump_f9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/jump_f9.bmp -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/jump_f9.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/jump_f9.pose -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/jump_f9_absolute29.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/jump_f9_absolute29.bmp -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_Poses/jump_f9_absolute29.pose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_Poses/jump_f9_absolute29.pose -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_anim_jump.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_anim_jump.mb -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_baseTests.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_baseTests.ma -------------------------------------------------------------------------------- /tests/testFiles/MetaRig_baseTests_MetaWired.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/MetaRig_baseTests_MetaWired.ma -------------------------------------------------------------------------------- /tests/testFiles/Meta_Network_WalkTest.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/Meta_Network_WalkTest.ma -------------------------------------------------------------------------------- /tests/testFiles/bwav_test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/bwav_test.wav -------------------------------------------------------------------------------- /tests/testFiles/deleteMe.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/deleteMe.ma -------------------------------------------------------------------------------- /tests/testFiles/filterTest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/filterTest.cfg -------------------------------------------------------------------------------- /tests/testFiles/mirrorData.mirrorMap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markj3d/Red9_StudioPack/HEAD/tests/testFiles/mirrorData.mirrorMap --------------------------------------------------------------------------------