This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pymel.core as pm | |
| # Get Selection Driver and Driven(s) | |
| selection = pm.ls(sl=True) | |
| driver = selection[0] | |
| driven = selection[1:] | |
| # Transfer the UVs | |
| #pm.transferAttributes(driver, driven[0], flipUVs=0, transferPositions=0, transferUVs=2, sourceUvSpace="map1", searchMethod=3, transferNormals=0, transferColors=2, targetUvSpace="map1", colorBorders=1, sampleSpace=5) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| mcChapterStamper.py | |
| Author: Michael Clavan | |
| https://gist.github.com/mclavan/27c0c204ff7ea721ee2cbcf9873d527e | |
| Description: | |
| Version 1.0 | |
| Creates a time stamp for youTubes chapter markers | |
| Chapters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| starter_toolset.py | |
| Description | |
| - Simple Toolset | |
| How to Use: | |
| import attr_toolset | |
| reload(attr_toolset) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| tagging_system.py | |
| https://gist.github.com/mclavan/bb630d550385e7590e8337bd4bebab71 | |
| How To Use: | |
| import tagging_system | |
| reload(tagging_system) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| How to run: | |
| import rename_test | |
| reload(rename_test) | |
| rename_test.joint_renamer_selected() | |
| ''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Coding Session 5/16/20 | |
| import session_5_16_20 | |
| reload(session_5_16_20) | |
| ''' | |
| print('Howdy!') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| toolset_template.py | |
| Description | |
| - Simple Toolset | |
| How to Use: | |
| import toolset_template | |
| reload(toolset_template) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # duplicate control, snap, and rename | |
| import pymel.core as pm | |
| # group and orient | |
| # assuming control is translated and scaled. | |
| # and that the joint chain is named. | |
| # Get selected | |
| joint, icon = pm.ls(sl=True) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Rabbit_Tools | |
| copy import and reload text below and paste into maya: | |
| import Rabbit_Tools | |
| reload(Rabbit_Tools) | |
| ''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| print("Welcome to the Coding Session 2.22.2020") |