Skip to content

Instantly share code, notes, and snippets.

View patwooky's full-sized avatar

Patrick Woo patwooky

View GitHub Profile
@patwooky
patwooky / 20190411_maya_nested_list_comprehensions_learn.py
Created April 11, 2019 09:13
An example of a working nested list comprehension
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
@patwooky
patwooky / 20190306_arnold_aiLightFiltersUtil_v02.py
Last active March 7, 2019 08:07
Maya Arnold light filters apply to many (Arnold compatible) lights with Maya UI
'''
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
@patwooky
patwooky / 20190227_lineupSolveGroupToCam_v001_01.py
Last active February 27, 2019 08:22
20190227 Maya Line up Solve Group to Cam
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
@patwooky
patwooky / 20190207_maya2017_renderLayers_enableToggle_V001_01.py
Created February 7, 2019 05:29
Toggles Render Layers renderable state on/off (for greater than Maya 2016 )
# 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]
@patwooky
patwooky / 20190204_maya2017_renderLayersReorder_v002.py
Last active December 3, 2020 18:26
this script reverses the order of render layers in the new Render Setup Window in Maya 2016 and above
# 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
@patwooky
patwooky / makeCards
Last active June 5, 2018 05:26
Maya PyMel - create planes at rotation pivot of each selected object
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
@patwooky
patwooky / createAssignAttrToSelectedShapes.py
Created October 1, 2017 10:02
Maya script. For each of the selected transform nodes, create a int type attr to the shape node, and set a running value to each.
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
@patwooky
patwooky / iterativeCubesTwist.py
Last active September 9, 2017 17:32
A PyMel script that creates a twisting line of cubes that gradually gets larger
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)
@patwooky
patwooky / respeedKeyframeTimings_v001.py
Created August 22, 2017 05:27
ReSpeed keyframe Timings
'''
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.
'''
@patwooky
patwooky / setAssignmentTransfer.py
Last active August 14, 2017 11:18
maya - Transfers ownership of elements in a set from one set to another
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