This file contains 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
from pymel.core import * | |
# an example of a working nested list comprehension | |
# this example is 2 levels deep | |
''' | |
-- Explanation -- | |
for each selected object, list all the connections of type 'animCurve' | |
for each of the connected animCurve nodes, shortlist those with 'rotateX' in their names |
This file contains 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
''' | |
connectAiLightFilters | |
Written by: Patrick Woo ([email protected]) | |
Version: v02 | |
Date: 20190307 | |
--- Description --- | |
This tool connects Arnold light filters (decay, gobo, blocker, barn door) to Arnold lights | |
This is especially useful when we want to duplicate many lights, which are all connected to the same |
This file contains 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
from pymel.core import * | |
def lineup_cam_grp(solveGrp, targetCamXform, startFrame=993): | |
''' | |
This function takes a freshly imported solve and lines it up to an existing camera, | |
matching position and rotation. | |
These are the things that happens in the script | |
- finds camera and cam shape in solve group |
This file contains 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
# 20190207_maya2017_renderLayersToggle_v001 | |
# Written by Patrick Woo ([email protected]) | |
# this script toggles the renderable state of all render layers depending on the first render layer's state | |
def render_layers_toggle(): | |
# code for querying render layers is taken from | |
# https://fredrikaverpil.github.io/2017/05/07/querying-render-setup-in-maya-2017/ | |
# [email protected] |
This file contains 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
# 20190204_maya2017_renderLayersReorder_v002 | |
# Written by Patrick Woo ([email protected]) | |
# this script reverses the order of render layers in the new Render Setup Window in Maya 2016 and above | |
# the scene must have at least 2 render layers to see the re-order effect | |
# changes: | |
# - the first item in the list can now be re-ordered just like the rest of the layers, by first detaching then re-attaching | |
# - this version allows re-ordering every render layer by first detaching them (previously there was no detaching) | |
# - if you have the Render Setup Window open, the layer order now reflects and refreshes without having to re-open the window |
This file contains 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
from pymel.core import * | |
def makeCards(myAxis=(1,0,0), divs=(2,2), wh=[20, 20]): | |
''' | |
create planes at rotation pivot of each selected object | |
select objects to create planes at their rotation pivots, then run this script | |
myAxis - <list3> the axis which the planes will be oriented | |
divs - <list2> divisions in with and height axes of created planes | |
wh - <list2> width and height units of created planes |
This file contains 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 | |
# select the transform for all your objects before running this script | |
objList = pm.ls(sl=True) # list of selected objects (transform nodes) | |
objShapesList = [] | |
attrName = 'myAttrName' # this is the name of the attribute | |
for obj in objList: | |
# loops through all selection |
This file contains 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 time | |
from pymel.core import * | |
def iterativeFunc(maxNum=20, size=(0.2, 1), rotAngle=(-20, 120)): | |
for n in range(maxNum): | |
myCube = polyCube(ch=False) | |
mySize = [size[0] + ((size[1] - size[0]) /float(maxNum) * n) for x in range(3)] | |
pos = [(size[1]*1.02) * n, 5, 0] | |
rot = [(float(rotAngle[1] - rotAngle[0])/maxNum)*n + rotAngle[0], 0, 0] | |
xform(myCube, t=pos, scale=mySize, rotation=rot) |
This file contains 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
''' | |
Problem: | |
keyframes from camera tx, ty, tz, rx, ry, rz ranging from 1001 to 1195 | |
need to have their timing remapped, such that the new timing is sped up by 2x | |
thus, the formula where kT = original frame, is ((kT - 1001) * 0.5) + 1001 | |
This will give us new keyframes from frames 1001 - 1098. | |
New frame range after re-speed is 1001 - 1093, we just truncate frames 1094 - 1098. | |
''' |
This file contains 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 maya.cmds as mc | |
from pymel.core import * | |
def setAssignmentTransfer(shaderCurr, shaderNew, module='pymel'): | |
''' | |
transfer ownership of elements in a set from one set to another | |
works on shaders and regular sets | |
shaderCurr - <objectSet> the current set that holds the collection of objects to be transferred over | |
shaderNew - <objectSet> the target set which to transfer the objects under |