qt designer set up gui to be imported into maya new > file > form > Main Window Layouts > Vertical Layout into the vertical layout drag two instances of ‘Push Button’ from Buttons in Widget Box. Rename to something that makes sense – “CreateSphere”, “ResizeSphere” add dynamic property to “CreateSphere” and to “ResizeSphere” first…
pymel, qt designer
qt designer with maya and pymel
by admin •
overview Use qt designer to create GUI in maya. qt designer saves out a .ui file which can either be free floating or a docked gui in maya. qt designer file > new > Main Window drag and drop ‘ push button’ click ‘green cross button’ to add dynamic property – type = string property…
pymel
Add Mask AOVS – 3delight
by admin •
# select all geo that you want to have a mask and run the script – this will create a 3delight mask aov for each piece. import pymel.core as pm selection = pm.ls(sl = True) for maskobject in selection: pm.createNode(‘3DelightMaskSet’,n=’Mask_’ + maskobject) cmds.sets( str(maskobject), add=’Mask_’ + maskobject )