Skip to content

Instantly share code, notes, and snippets.

View SatishGodaPearl's full-sized avatar

Satish Goda SatishGodaPearl

View GitHub Profile
@SatishGodaPearl
SatishGodaPearl / lunariaMod_mixer_gen.py
Created January 18, 2019 23:04
Modeling Temp Scripts
"""
This module provides functionality that enables an artist to choose a bunch of maya files for models, and then mix and match them to create variations.
"""
import pymel.core as pm
mix_model1 = pm.importFile("assets/lunariaMod_g03_27.v002.ma",
returnNewNodes=True)
@SatishGodaPearl
SatishGodaPearl / ShotBreakdown.py
Last active January 18, 2019 06:43
Previs Temp Scripts
import os
import pymel.core as pm
import sgtk
class BreakdownItemWarning(Warning):
pass
class BreakdownItemError(ValueError):
pass
@SatishGodaPearl
SatishGodaPearl / shelfBase.py
Created January 12, 2019 08:45 — forked from vshotarov/shelfBase.py
Maya base class for building custom shelves.
import maya.cmds as mc
def _null(*args):
pass
class _shelf():
'''A simple class to build shelves in maya. Since the build method is empty,
it should be extended by the derived class to build the necessary shelf elements.
The gist of the story is....