This command manages camera set nodes. Camera sets allow the users to break a single camera shot into layers. Instead of drawing all objects with a single camera, you can isolate the camera to only focus on certain objects and layer another camera into the viewport that draws the other objects. The situation to use camera sets primarily occurs when building stereoscopic scenes. For example, a set of stereo parameters may make the background objects divergent beyond the tolerable range of the human perceptual system. However, you like the settings because the main focus is in the foreground and the depth is important to the visual look of the scene. You can use camera sets to break apart the shot into a foreground stereo camera and background stereo camera. The foreground stereo camera will retain the original parameters; however, it will only focus on the foreground elements. The background stereo camera will have a different set of stereo parameters and will only draw the background element. Camera sets can be viewed using the stereo viewer and are currently only designed to work with stereo camera rigs.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
active (a) | bool | ||
|
|||
appendTo (atl) | bool | ||
Append a new camera and/or object set to then end of the cameraSet layer list. This flag cannot be used in conjunction with insert flag. Additionally, it requires the camera and/or objectSet flag to be used. |
|||
camera (cam) | PyNode | ||
|
|||
clearDepth (cd) | bool | ||
Specifies if the drawing buffer should be cleared before beginning the draw for that layer.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
|||
deleteAll (da) | bool | ||
|
|||
deleteLayer (d) | bool | ||
|
|||
insertAt (ins) | bool | ||
Inserts the specified camera and/or object set at the specified layer. This flag cannot be used in conjunction with the append flag. Additionally, this flag requires layer and camera (or objectSet) flag to be used. |
|||
layer (l) | int | ||
|
|||
name (n) | PyNode | ||
|
|||
numLayers (nl) | bool | ||
|
|||
objectSet (os) | PyNode | ||
|
|||
order (o) | int | ||
|
Derived from mel command maya.cmds.cameraSet
Example:
import pymel.core as pm
import maya.cmds as cmds
# create some objects
pm.sphere(n='sphere1')
# Result: [nt.Transform(u'sphere1'), nt.MakeNurbSphere(u'makeNurbSphere1')] #
pm.cone(n='cone1')
# Result: [nt.Transform(u'cone1'), nt.MakeNurbCone(u'makeNurbCone1')] #
# create a set with whatever is currently active
pm.select( 'sphere1', 'cone1')
newSet2 = pm.sets()
pm.loadPlugin( "stereoCamera", qt=True )
# Result: [u'stereoCamera'] #
from maya.app.stereo import stereoCameraRig
rig = stereoCameraRig.createStereoCameraRig('StereoCamera')
# Create a new cameraSet node.
pm.cameraSet()
# Result: nt.CameraSet(u'cameraSet1') #
# Add the cam " object set to the set
pm.cameraSet( 'cameraSet1', edit=True, appendTo=True, cam=rig[0], objectSet=newSet2 )