Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fredrikaverpil/c9e8fc601025b8fc11646c18563c853b to your computer and use it in GitHub Desktop.
Save fredrikaverpil/c9e8fc601025b8fc11646c18563c853b to your computer and use it in GitHub Desktop.
Maya render layer collection callables

Index

acceptImport activate addAttribute addExternalContentForFileAttr addItemObserver addListObserver addOpaqueData ancestorCollections ancestors appendChild apply attachChild attributeAffects clearListObservers compute connectionBroken connectionMade copyInternalData createAbsoluteOverride createCollection createOverride createRelativeOverride creator deactivate decode dependsOn detachChild doNotWrite enabledChanged encode findChild forceCache getBack getChild getChildren getCollectionByName getCollections getExternalContent getFilesToArchive getFront getImportedStatus getInternalValueInContext getLayerNumIsolatedChildren getNext getNotes getNumIsolatedAncestors getNumIsolatedChildren getOpaqueData getOverrides getPrevious getRenderLayer getSelector getSelectorType hasChildren hasIsolatedAncestors hasIsolatedChildren hasItemObserver hasOpaqueData inheritAttributesFrom initListItems initializer internalArrayCount isAbstractClass isAcceptableChild isEnabled isIsolateSelected isPassiveOutput isSelfAcceptableChild isSelfEnabled isTopLevel isolateSelectedChanged itemAdded itemChanged itemRemoved legalConnection legalDisconnection name parent passThroughToMany passThroughToOne postApply postConstructor pullEnabled removeItemObserver removeListObserver removeOpaqueData setBack setDependentsDirty setDoNotWrite setExternalContent setExternalContentForFileAttr setFront setImportedStatus setInternalValueInContext setIsolateSelected setMPSafe setName setNext setNotes setParent setPrevious setSelectorType setSelfEnabled shouldSave thisMObject type typeId typeName unapply

Callable

acceptImport

<type 'instancemethod'>

Help on method acceptImport in module maya.app.renderSetup.model.collection:

acceptImport(self) method of maya.app.renderSetup.model.collection.Collection instance

None



activate

<type 'instancemethod'>

Help on method activate in module maya.app.renderSetup.model.collection:

activate(self) method of maya.app.renderSetup.model.collection.Collection instance
    Called when this list item is inserted into the list.
    Override this method to do any scene specific initialization.

None



addAttribute

<type 'builtin_function_or_method'>

Help on built-in function addAttribute:

addAttribute(...)
    addAttribute(attr) -> None
    
    This method adds a new attribute to a user defined node type during the type's initialization.
    
    This method will only work during the static initialization method of the user defined node class.  The initialization method is the one that is passed into  MFnPlugin.registerNode(). The attributes must first be created using one of the MFnAttribute classes, and can then be added using this method.
    
    For compound attributes, the proper way to use this method is by calling it with the parent attribute. If a compound attribute is passed, this method will add all of its children.
    NOTE: A failure will occur if you attempt to call addAttribute() on the children of a compound attribute.
    
    * attr (MObject) - new attribute to add.

None



addExternalContentForFileAttr

<type 'builtin_function_or_method'>

Help on built-in function addExternalContentForFileAttr:

addExternalContentForFileAttr(...)
    addExternalContentForFileAttr(table, attr) -> bool
    
    This method is a helper for derived clases implementing getExternalContent().  It augments the external content info table passed in with an entry describing external content whose location is described by the specified attribute.
    
    The method will not overwrite existing items, i.e. items with the same key. (attribute name).  In this context, overwriting an item means the caller has called this function twice with the same attribute, or that two separate but identically named attributes were used.  If replacing an entry is the desired effect, it is the caller's responsibility to erase the previous item first.
    
    * table [OUT] (MExternalContentInfoTable) - table The table in which the new entry will be added.
    * attr (MObject) - The attribute for which the plug value will be queried for a location.
    
    Returns True if an item was sucessfully added to the table.  False if the attribute does not describe a non-empty location, or an item with the same key was already present in the table.

None



addItemObserver

<type 'instancemethod'>

Help on method addItemObserver in module maya.app.renderSetup.model.observable:

addItemObserver(self, obs) method of maya.app.renderSetup.model.collection.Collection instance
    Add an observers to this item.
    
    Observers must be bound methods (e.g. given an instance c of class
    C, c.methodName), and are kept as weak references.

None



addListObserver

<type 'instancemethod'>

Help on method addListObserver in module maya.app.renderSetup.model.nodeList:

addListObserver(self, obs) method of maya.app.renderSetup.model.collection.Collection instance
    Add an observer to this list.
    
    Observers are kept as weak references.  The order in which
    observers are called is unspecified.

None



addOpaqueData

<type 'instancemethod'>

Help on method addOpaqueData in module maya.app.renderSetup.model.childNode:

addOpaqueData(self, key, data) method of maya.app.renderSetup.model.collection.Collection instance

None



ancestorCollections

<type 'instancemethod'>

Help on method ancestorCollections in module maya.app.renderSetup.model.collection:

ancestorCollections(self) method of maya.app.renderSetup.model.collection.Collection instance
    Return this collection's ancestors.
    
    Neither the collection itself, nor the render layer, are included
    in the ancestors.  Therefore, a top-level collection has no
    ancestors.

None



ancestors

<type 'instancemethod'>

Help on method ancestors in module maya.app.renderSetup.model.nodeList:

ancestors(self, root=None) method of maya.app.renderSetup.model.collection.Collection instance
    Returns the inclusive list of parents of this node.
    
    The head (start) of the list is the root, and the tail (end) of the
    list is this node.  If a root argument is given, iteration will
    stop at and include this root node, if found.

None



appendChild

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.model.undo:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



apply

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.common.guard:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



attachChild

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.model.undo:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



attributeAffects

<type 'builtin_function_or_method'>

Help on built-in function attributeAffects:

attributeAffects(...)
    attributeAffects(whenChanges, isAffected) -> None
    
    This method specifies that a particular input attribute affects a specific output attribute.  This is required to make evaluation efficient.  When an input changes, only the affected outputs will be computed. Output attributes cannot be keyable - if they are keyable, this method will fail.
    
    This method must be called for every attribute dependency when initializing the node's attributes.  The attributes must first be added using the MPxNode.addAttribute() method.  Failing to call this method will cause the node not to update when its inputs change. If there are no calls to this method in a node's initialization, then the compute method will never be called.
    
    This method will only work during the static initialization method of the user defined node class.  The initialization method is the one that is passed into MFnPlugin.registerNode().  As a result, it does not work with dynamic attributes. For an alternate solution which handles dynamic as well as non-dynamic attributes refer to MPxNode.setDependentsDirty.()
    
    * whenChanges (MObject) - input attribute - MObject that points to an input attribute that has already been added.
    * isAffected (MObject) - affected output attribute - MObject that points to an output attribute that has already been added.

None



clearListObservers

<type 'instancemethod'>

Help on method clearListObservers in module maya.app.renderSetup.model.nodeList:

clearListObservers(self) method of maya.app.renderSetup.model.collection.Collection instance

None



compute

<type 'instancemethod'>

Help on method compute in module maya.app.renderSetup.model.collection:

compute(self, plug, dataBlock) method of maya.app.renderSetup.model.collection.Collection instance

None



connectionBroken

<type 'builtin_function_or_method'>

Help on built-in function connectionBroken:

connectionBroken(...)
    connectionBroken( plug, otherPlug, asSrc) -> self
    
    This method gets called when connections are broken with attributes of this node.
    
    * plug (MPlug) - attribute on this node.
    * otherPlug (MPlug) - attribute on other node.
    * asSrc (bool) - is this plug a source of the connection.

None



connectionMade

<type 'builtin_function_or_method'>

Help on built-in function connectionMade:

connectionMade(...)
    connectionMade(plug, otherPlug, asSrc) -> self
    
    This method gets called when connections are made to attributes of this node.
    
    * plug (MPlug) - attribute on this node.
    * otherPlug (MPlug) - attribute on other node.
    * asSrc (bool) - is this plug a source of the connection.

None



copyInternalData

<type 'builtin_function_or_method'>

Help on built-in function copyInternalData:

copyInternalData(...)
    copyInternalData(node) -> self
    
    This method is overriden by nodes that store attribute data in some internal format.
    
    On duplication this method is called on the duplicated node with the node being duplicated passed as the parameter.  Overriding this method gives your node a chance to duplicate any internal data you've been storing and manipulating outside of normal attribute data.
    
    * node (MPxNode) - the node that is being duplicated.

None



createAbsoluteOverride

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.model.undo:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



createCollection

<type 'instancemethod'>

Help on method createCollection in module maya.app.renderSetup.model.collection:

createCollection(self, collectionName) method of maya.app.renderSetup.model.collection.Collection instance
    Add a child collection to the Collection.

None



createOverride

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.model.undo:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



createRelativeOverride

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.model.undo:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



creator

<type 'function'>

Help on function creator in module maya.app.renderSetup.model.collection:

creator()

None



deactivate

<type 'instancemethod'>

Help on method deactivate in module maya.app.renderSetup.model.collection:

deactivate(self) method of maya.app.renderSetup.model.collection.Collection instance
    Called when this list item is removed from the list.
    Override this method to do any scene specific teardown.

None



decode

<type 'instancemethod'>

Help on method decode in module maya.app.renderSetup.model.serializableNode:

decode(self, dict, mergeType, prependToName) method of maya.app.renderSetup.model.collection.Collection instance

None



dependsOn

<type 'builtin_function_or_method'>

Help on built-in function dependsOn:

dependsOn(...)
    dependsOn( plug, otherPlug) -> bool/None
    
    This method may be overridden by the user defined node. It should only be required to override this on rare occasions.
    
    This method determines whether a specific attribute depends on another attribute.
    
    You should return None to specify that Maya should determines the dependency (default).
    
    This is mainly to define dependency of dynamic attributes, since attributeAffects does not work with dynamic attributes.
    
    * plug (MPlug) - attribute on this node.
    * otherPlug (MPlug) - attribute on other node.

None



detachChild

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.model.undo:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



doNotWrite

<type 'builtin_function_or_method'>

Help on built-in function doNotWrite:

doNotWrite(...)
    doNotWrite() -> bool
    
    use this method to query the "do not write" state of this proxy node. True is returned if this node will not be saved when the maya model is written out.

None



enabledChanged

<type 'instancemethod'>

Help on method enabledChanged in module maya.app.renderSetup.model.collection:

enabledChanged(self) method of maya.app.renderSetup.model.collection.Collection instance

None



encode

<type 'instancemethod'>

Help on method encode in module maya.app.renderSetup.model.serializableNode:

encode(self, notes=None) method of maya.app.renderSetup.model.collection.Collection instance

None



findChild

<type 'instancemethod'>

Help on method findChild in module maya.app.renderSetup.model.collection:

findChild(self, predicate, creator=None) method of maya.app.renderSetup.model.collection.Collection instance
    Find the child of this collection satisfying the predicate function or creates it
    with the creator function if not found and a creator function is specified.
    Function signatures are:
      predicate(childNode): returns boolean.
      creator(void) : returns the created node.

None



forceCache

<type 'builtin_function_or_method'>

Help on built-in function forceCache:

forceCache(...)
    forceCache(ctx=fsNormal) -> MDataBlock
    
    Get the datablock for this node. If there is no datablock then one will be created.
    NOTE: This should be used only in places where fast access to the datablock outside of a compute is critical such as the transformUsing method of MPxSurfaceShape.
    
    * ctx (MDGContext) - The context in which the node will evaluate.

None



getBack

<type 'instancemethod'>

Help on method getBack in module maya.app.renderSetup.model.nodeList:

getBack(self) method of maya.app.renderSetup.model.collection.Collection instance

None



getChild

<type 'instancemethod'>

Help on method getChild in module maya.app.renderSetup.model.collection:

getChild(self, childName, cls=<class 'maya.app.renderSetup.model.childNode.ChildNode'>) method of maya.app.renderSetup.model.collection.Collection instance
    Look for an existing child by name and optionally class.
    
    @type childName: string
    @param childName: Name of child to look for
    @type cls: class name
    @param cls: Class name for the type of class to look for
    @rtype: Child model instance
    @return: Found instance or throw an exception

None



getChildren

<type 'instancemethod'>

Help on method getChildren in module maya.app.renderSetup.model.collection:

getChildren(self, cls=<class 'maya.app.renderSetup.model.childNode.ChildNode'>) method of maya.app.renderSetup.model.collection.Collection instance
    Get the list of all children. 
    Optionally only the children matching the given class.

None



getCollectionByName

<type 'instancemethod'>

Help on method getCollectionByName in module maya.app.renderSetup.model.collection:

getCollectionByName(self, collectionName, nested=False) method of maya.app.renderSetup.model.collection.Collection instance

None



getCollections

<type 'instancemethod'>

Help on method getCollections in module maya.app.renderSetup.model.collection:

getCollections(self) method of maya.app.renderSetup.model.collection.Collection instance

None



getExternalContent

<type 'builtin_function_or_method'>

Help on built-in function getExternalContent:

getExternalContent(...)
    getExternalContent(table) -> self
    
    The table populated by this method must include the location of all the content (files) used by this node, including those that do not exist.  See MExternalContentInfoTable for details.
    
    Keys used to add items to this table will be the same that get passed to setExternalContent through its MExternalContentLocationTable parameter to perform a batched change of content location.
    
    When implementing getExternalContent, you are responsible for forwarding the call to the base class when it makes sense to do so, so that base classes  can also add their external content to the table.
    
    The default implementation does nothing.
    
    * table [OUT] (MExternalContentInfoTable) - Content information table that this method must populate.

None



getFilesToArchive

<type 'builtin_function_or_method'>

Help on built-in function getFilesToArchive:

getFilesToArchive(...)
    getFilesToArchive(shortName=False, unresolvedName=False, markCouldBeImageSequence=False) -> list of strings
    
    Use this method to return all external files used by this node. This file list will be used by the File > Archive zip feature, maya.exe -archive and the `file -q -list` mel command.
    
    Only include files that exist.
    
    If shortName is True, return just the filename portion of the path. Otherwise, return a full path.
    
    If unresolvedName is True, return the path before any resolution has been done (i.e leave it as a relative path, include unexpanded environment variables,  tildes, ".."s etc). Otherwise, resolve the file     path and return an absolute path (to resolve with standard Maya path resolution, use MFileObject.resolvedFullName()).
    
    * shortName (bool) - If True, only add the filename of the path.
    * unresolvedName (bool) - If True, add paths before any resolution, rather than absolute paths.
    * markCouldBeImageSequence (bool) - If True, append an asterisk after any file path that could be an image sequence (note: only used by maya.exe -archive).

None



getFront

<type 'instancemethod'>

Help on method getFront in module maya.app.renderSetup.model.nodeList:

getFront(self) method of maya.app.renderSetup.model.collection.Collection instance
    # List front and back operations.
    #
    # The list front and back are destination message plugs, so that there
    # can only be one connection to them, as there is only one front and
    # one back list item.  They are connected to the front and back list
    # items through the list item's message plug.

None



getImportedStatus

<type 'instancemethod'>

Help on method getImportedStatus in module maya.app.renderSetup.model.childNode:

getImportedStatus(self) method of maya.app.renderSetup.model.collection.Collection instance

None



getInternalValueInContext

<type 'builtin_function_or_method'>

Help on built-in function getInternalValueInContext:

getInternalValueInContext(...)
    getInternalValueInContext(plug, dataHandle, ctx) -> bool
    
    This method is overriden by nodes that store attribute data in some internal format.
    
    The internal state of attributes can be set or queried using the setInternal and internal methods of MFnAttribute.
    
    When internal attribute values are queried via getAttr or MPlug.getValue() this method is called.
    
    * plug (MPlug) - the attribute that is being queried.
    * dataHandle [OUT] (MDataHandle) - the dataHandle to store the attribute value.
    * ctx (MDGContext) - the context the method is being evaluated in.

None



getLayerNumIsolatedChildren

<type 'instancemethod'>

Help on method getLayerNumIsolatedChildren in module maya.app.renderSetup.model.collection:

getLayerNumIsolatedChildren(self) method of maya.app.renderSetup.model.collection.Collection instance

None



getNext

<type 'instancemethod'>

Help on method getNext in module maya.app.renderSetup.model.nodeList:

getNext(self) method of maya.app.renderSetup.model.collection.Collection instance
    Return the list item following this one.
    
    If there is no next item, returns None.

None



getNotes

<type 'instancemethod'>

Help on method getNotes in module maya.app.renderSetup.model.nodeNotes:

getNotes(self) method of maya.app.renderSetup.model.collection.Collection instance

None



getNumIsolatedAncestors

<type 'instancemethod'>

Help on method getNumIsolatedAncestors in module maya.app.renderSetup.model.collection:

getNumIsolatedAncestors(self) method of maya.app.renderSetup.model.collection.Collection instance

None



getNumIsolatedChildren

<type 'instancemethod'>

Help on method getNumIsolatedChildren in module maya.app.renderSetup.model.collection:

getNumIsolatedChildren(self, includeSelf=False) method of maya.app.renderSetup.model.collection.Collection instance

None



getOpaqueData

<type 'instancemethod'>

Help on method getOpaqueData in module maya.app.renderSetup.model.childNode:

getOpaqueData(self, key) method of maya.app.renderSetup.model.collection.Collection instance

None



getOverrides

<type 'instancemethod'>

Help on method getOverrides in module maya.app.renderSetup.model.collection:

getOverrides(self) method of maya.app.renderSetup.model.collection.Collection instance

None



getPrevious

<type 'instancemethod'>

Help on method getPrevious in module maya.app.renderSetup.model.nodeList:

getPrevious(self) method of maya.app.renderSetup.model.collection.Collection instance
    Return the list item before this one.
    
    If there is no previous item, returns None.

None



getRenderLayer

<type 'instancemethod'>

Help on method getRenderLayer in module maya.app.renderSetup.model.collection:

getRenderLayer(self) method of maya.app.renderSetup.model.collection.Collection instance

None



getSelector

<type 'instancemethod'>

Help on method getSelector in module maya.app.renderSetup.model.collection:

getSelector(self) method of maya.app.renderSetup.model.collection.Collection instance
    Return the selector user node for this collection.

None



getSelectorType

<type 'instancemethod'>

Help on method getSelectorType in module maya.app.renderSetup.model.collection:

getSelectorType(self) method of maya.app.renderSetup.model.collection.Collection instance

None



hasChildren

<type 'instancemethod'>

Help on method hasChildren in module maya.app.renderSetup.model.collection:

hasChildren(self) method of maya.app.renderSetup.model.collection.Collection instance

None



hasIsolatedAncestors

<type 'instancemethod'>

Help on method hasIsolatedAncestors in module maya.app.renderSetup.model.collection:

hasIsolatedAncestors(self, dataBlock=None) method of maya.app.renderSetup.model.collection.Collection instance

None



hasIsolatedChildren

<type 'instancemethod'>

Help on method hasIsolatedChildren in module maya.app.renderSetup.model.collection:

hasIsolatedChildren(self, dataBlock=None) method of maya.app.renderSetup.model.collection.Collection instance

None



hasItemObserver

<type 'instancemethod'>

Help on method hasItemObserver in module maya.app.renderSetup.model.observable:

hasItemObserver(self, obs) method of maya.app.renderSetup.model.collection.Collection instance
    Query whether this item has the argument observer.

None



hasOpaqueData

<type 'instancemethod'>

Help on method hasOpaqueData in module maya.app.renderSetup.model.childNode:

hasOpaqueData(self, key) method of maya.app.renderSetup.model.collection.Collection instance

None



inheritAttributesFrom

<type 'builtin_function_or_method'>

Help on built-in function inheritAttributesFrom:

inheritAttributesFrom(...)
    inheritAttributesFrom(parentClassName) -> None
    
    This method allows a class of plugin node to inherit all of the attributes of a second class of plugin node.
    
    This method will only work during the static initialization method of the user defined node class and must be called before any other attributes have been added.  The initialization method is the one that is passed into  MFnPlugin.registerNode().
    
    A plugin node may only inherit attributes from one other class of plugin node. Attempting to call this method multiple times within a node's initialization method will result in an error.
    
    Both node classes must be registered using the same MPxNode type, listed in MPxNode.type().
    
    * parentClassName (string) - class of node to inherit attributes from.

None



initListItems

<type 'instancemethod'>

Help on method initListItems in module maya.app.renderSetup.model.nodeList:

initListItems(cls) method of __builtin__.type instance
    Create and return a source message attribute that connects to all list items.

None



initializer

<type 'function'>

Help on function initializer in module maya.app.renderSetup.model.collection:

initializer()

None



internalArrayCount

<type 'builtin_function_or_method'>

Help on built-in function internalArrayCount:

internalArrayCount(...)
    internalArrayCount(plug, ctx) -> int
    
    This method is overriden by nodes that have internal array attributes which are not stored in Maya's datablock. This method is used by Maya to determine the non-sparse count of array elements during file io. If the internal array is stored sparsely, you should return the maximum index of the array plus one. If the internal array is non-sparse then return the length of the array.
    
    This method does not need to be implemented for attributes that are stored in the datablock since Maya will use the datablock size.
    
    If this method is overriden, it should return -1 for attributes which it does not handle. Maya will use the datablock size to determine the array length when -1 is returned.
    
    * plug (MPlug) - the array plug.
    * ctx (MDGContext) - the context.

None



isAbstractClass

<type 'instancemethod'>

Help on method isAbstractClass in module maya.app.renderSetup.model.collection:

isAbstractClass(self) method of maya.app.renderSetup.model.collection.Collection instance

None



isAcceptableChild

<type 'instancemethod'>

Help on method isAcceptableChild in module maya.app.renderSetup.model.collection:

isAcceptableChild(self, modelOrData) method of maya.app.renderSetup.model.collection.Collection instance
    Check if the model could be a child

None



isEnabled

<type 'instancemethod'>

Help on method isEnabled in module maya.app.renderSetup.model.collection:

isEnabled(self, dataBlock=None) method of maya.app.renderSetup.model.collection.Collection instance

None



isIsolateSelected

<type 'instancemethod'>

Help on method isIsolateSelected in module maya.app.renderSetup.model.collection:

isIsolateSelected(self, dataBlock=None) method of maya.app.renderSetup.model.collection.Collection instance
    Get if isolate selected. Will always return False in batch mode

None



isPassiveOutput

<type 'builtin_function_or_method'>

Help on built-in function isPassiveOutput:

isPassiveOutput(...)
    isPassiveOutput(plug) -> bool
    
    This method may be overridden by the user defined node if it wants to provide output attributes which do not prevent value modifications to the destination attribute. For example, output plugs on animation curve nodes are passive. This allows the attributes driven by the animation curves to be set to new values by the user.
    
    * plug (MPlug) - plug representing output in question.

None



isSelfAcceptableChild

<type 'instancemethod'>

Help on method isSelfAcceptableChild in module maya.app.renderSetup.model.collection:

isSelfAcceptableChild(self) method of maya.app.renderSetup.model.collection.Collection instance
    Overridden instances that return False, prevent copy/paste of the collection type to itself.

None



isSelfEnabled

<type 'instancemethod'>

Help on method isSelfEnabled in module maya.app.renderSetup.model.collection:

isSelfEnabled(self, dataBlock=None) method of maya.app.renderSetup.model.collection.Collection instance

None



isTopLevel

<type 'instancemethod'>

Help on method isTopLevel in module maya.app.renderSetup.model.collection:

isTopLevel(self) method of maya.app.renderSetup.model.collection.Collection instance
    Is the collection's parent a render layer?

None



isolateSelectedChanged

<type 'instancemethod'>

Help on method isolateSelectedChanged in module maya.app.renderSetup.model.collection:

isolateSelectedChanged(self) method of maya.app.renderSetup.model.collection.Collection instance

None



itemAdded

<type 'instancemethod'>

Help on method itemAdded in module maya.app.renderSetup.model.nodeList:

itemAdded(self, listItem) method of maya.app.renderSetup.model.collection.Collection instance
    Call the listItemAdded() methods on list item observers
    
    The order in which observers are called is not specified.

None



itemChanged

<type 'instancemethod'>

Help on method itemChanged in module maya.app.renderSetup.model.observable:

itemChanged(self, *posArgs, **kwArgs) method of maya.app.renderSetup.model.collection.Collection instance
    Call item changed callbacks.
    
    The order in which observers are called is not specified.

None



itemRemoved

<type 'instancemethod'>

Help on method itemRemoved in module maya.app.renderSetup.model.nodeList:

itemRemoved(self, listItem) method of maya.app.renderSetup.model.collection.Collection instance
    Call the listItemRemoved() methods on list item observers
    
    The order in which observers are called is not specified.

None



legalConnection

<type 'builtin_function_or_method'>

Help on built-in function legalConnection:

legalConnection(...)
    legalConnection(plug, otherPlug, asSrc) -> bool/None
    
    This method allows you to check for legal connections being made to attributes of this node.
    
    You should return None to specify that maya should handle this connection if you are unable to determine if it is legal.
    
    * plug (MPlug) - attribute on this node.
    * otherPlug (MPlug) - attribute on other node.
    * asSrc (bool) - is this plug a source of the connection.

None



legalDisconnection

<type 'builtin_function_or_method'>

Help on built-in function legalDisconnection:

legalDisconnection(...)
    legalDisconnection(plug, otherPlug, arsSrc) -> bool/None
    
    This method allows you to check for legal disconnections being made to attributes of this node.
    
    You should return None to specify that maya should handle this disconnection if you are unable to determine if it is legal.
    
    * plug (MPlug) - attribute on this node.
    * otherPlug (MPlug) - attribute on other node.
    * asSrc (boool) - is this plug a source of the connection.

None



name

<type 'builtin_function_or_method'>

Help on built-in function name:

name(...)
    name() -> string
    
    Returns the name of this particular instance of this class.  Each objectin the dependency graph has a name.  This name will be used by the UIand by MEL.
    
    It is not necessary to override this method.
    
    Returns the name of the node

None



parent

<type 'instancemethod'>

Help on method parent in module maya.app.renderSetup.model.nodeList:

parent(self) method of maya.app.renderSetup.model.collection.Collection instance
    Returns the list to which this item belongs.
    
    If the item belongs to no list, None is returned.  This method
    has O(1) time complexity.

None



passThroughToMany

<type 'builtin_function_or_method'>

Help on built-in function passThroughToMany:

passThroughToMany(...)
    passThroughToMany(plug, plugArray) -> bool
    
    This method is overriden by nodes that want to control the traversal behavior of some Maya search algorithms which traverse the history/future of shape nodes looking for directly related nodes. In particular, the Artisan paint code uses this method when searching for paintable nodes, and the disk cache code uses this method when searching for upstream cacheFile nodes.
    
    If this method is not implemented or returns False, the base class Maya implementation of this method calls passThroughToOne and returns the results of that call.
    
    * plug (MPlug) - the plug.
    * plugArray (MPlugArray) - the corresponding plugs.

None



passThroughToOne

<type 'builtin_function_or_method'>

Help on built-in function passThroughToOne:

passThroughToOne(...)
    passThroughToOne(plug) -> plug
    
    This method may be overriden by nodes that have a one-to-one relationship between an input attribute and a corresponding output attribute. This method is used by Maya to perform the following capabilities:
    
    - When this node is deleted, the delete command will rewire the source of the input attribute to the destination of the output attribute if the source and destination are connected to nodes that are not deleted.
    - History traversal algorithms such as the bakePartialHistory command use this method to direct its traversal through a shape's construction history.
    - The base class Maya implementation of passThroughToAll will call this method if passThroughToAll returns False.
    
    * plug (MPlug) - the plug.

None



postApply

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.common.guard:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



postConstructor

<type 'instancemethod'>

Help on method postConstructor in module maya.app.renderSetup.model.collection:

postConstructor(self) method of maya.app.renderSetup.model.collection.Collection instance

None



pullEnabled

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.common.guard:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



removeItemObserver

<type 'instancemethod'>

Help on method removeItemObserver in module maya.app.renderSetup.model.observable:

removeItemObserver(self, obs) method of maya.app.renderSetup.model.collection.Collection instance
    Remove an observer from this item.
    
    ValueError is raised by the remove item observer method if the
    argument observer is not found.

None



removeListObserver

<type 'instancemethod'>

Help on method removeListObserver in module maya.app.renderSetup.model.nodeList:

removeListObserver(self, obs) method of maya.app.renderSetup.model.collection.Collection instance
    Remove an observer from this list.
    
    Observers are kept as weak references.  ValueError is raised by the 
    remove listItem method if the argument observer is not found.

None



removeOpaqueData

<type 'instancemethod'>

Help on method removeOpaqueData in module maya.app.renderSetup.model.childNode:

removeOpaqueData(self, key) method of maya.app.renderSetup.model.collection.Collection instance

None



setBack

<type 'instancemethod'>

Help on method setBack in module maya.app.renderSetup.model.nodeList:

setBack(self, item) method of maya.app.renderSetup.model.collection.Collection instance

None



setDependentsDirty

<type 'builtin_function_or_method'>

Help on built-in function setDependentsDirty:

setDependentsDirty(...)
    setDependentsDirty(plug, plugArray) -> self
    
    This method can be overridden in user defined nodes to specify which plugs should be set dirty based upon an input plug which Maya is marking dirty. The list of plugs for Maya to mark dirty is returned by the plug array. This method handles both dynamic as well as non-dynamic plugs and is useful in the following ways:
    
    
    
    - Allows attributeAffects-style relationships to be handled for dynamically-added attributes. Since MPxNode.attributeAffects() can only be used with non-dynamic attributes, use of this method allows a way for all attributes of a node to affect one another, both dynamic and non-dynamic.
    
    - Provides more flexible relationships than what is available with MPxNode.attributeAffects(). For example, you may wish to not dirty plugs when the current frame is one. However, as the routine is called during dirty propagation, there are restrictions on what can be done within the routine, most importantly you must not cause any dependency graph computation. For details, see the IMPORTANT NOTE below.
    
    
    
    This method is designed to work harmoniously with MPxNode.attributeAffects() on the same node. Alternately, you can do all affects relationships within a yourNode.setDependentsDirty() implementation.
    
    The body of a user-implemented setDependentsDirty() implementation might look like the following example, which causes the plug called "B" to be set dirty whever plug "A" is changed, i.e. A affects B.
    
    * plug (MPlug) - plug which is being set dirty by Maya.
    * plugArray the programmer should add any plugs which they want to set dirty to this list.

None



setDoNotWrite

<type 'builtin_function_or_method'>

Help on built-in function setDoNotWrite:

setDoNotWrite(...)
    setDoNotWrite(bool) -> self
    
    Use this method to mark the "do not write" state of this proxy node.  If set, this node will not be saved when the Maya model is written out. 
    
    NOTES:
    1. Plug-in "requires" information will be written out with the model when saved.  But a subsequent reload and resave of the file will cause these to go away.
    2. If this node is a DAG and has a parent or children, the "do not write" flag of the parent or children will not be set. It is the developer's responsibility to ensure that the resulting scene file is capable of being read in without errors due to unwritten nodes.

None



setExternalContent

<type 'builtin_function_or_method'>

Help on built-in function setExternalContent:

setExternalContent(...)
    setExternalContent(table) -> self
    
    This is useful in the context of content relocation.  This will be called while the scene is being loaded to apply path changes performed externally. Consequently, interaction with the rest of the scene must be kept to a minimum.  It is however valid to call this method outside of scene loading contexts.
    
    The keys in the map must be the same as the ones provided by the node in getExternalContent.  The values are the new locations.
    
    When implementing setExternalContent, you are responsible for forwarding the call to the base class when it makes sense to do so, so that base classes  can also set their external content.
    
    The default implementation does nothing.
    
    * table Key->location table with new content locations.

None



setExternalContentForFileAttr

<type 'builtin_function_or_method'>

Help on built-in function setExternalContentForFileAttr:

setExternalContentForFileAttr(...)
    setExternalContentForFileAttr(attr, table) -> bool
    
    This method is a helper for derived clases implementing setExternalContent().  It assigns a value to a plug with the one from the table whose key is the same as the passed in attribute name.
    
    The method will not write to the plug if the attribute is not found in the  table.
    
    * attr (MObject) - The attribute of the plug we want to write to.
    * table (MExternalContentLocationTable) - A table which may hold or not the value for a given plug.
    
    Returns True if the plug was successfully written to. False if no entry in the table was named after the attribute or if no plug was found.

None



setFront

<type 'instancemethod'>

Help on method setFront in module maya.app.renderSetup.model.nodeList:

setFront(self, item) method of maya.app.renderSetup.model.collection.Collection instance

None



setImportedStatus

<type 'instancemethod'>

Help on method setImportedStatus in module maya.app.renderSetup.model.childNode:

setImportedStatus(self, value) method of maya.app.renderSetup.model.collection.Collection instance

None



setInternalValueInContext

<type 'builtin_function_or_method'>

Help on built-in function setInternalValueInContext:

setInternalValueInContext(...)
    setInternalValueInContext(plug, dataHandle, ctx) -> bool
    
    This method is overriden by nodes that store attribute data in some internal format.
    
    The internal state of attributes can be set or queried using the setInternal and internal methods of MFnAttribute.
    
    When internal attribute values are set via setAttr or MPlug.setValue() this method is called.
    
    Another use for this method is to impose attribute limits.
    
    * plug (MPlug) - the attribute that is being set.
    * dataHandle (MDataHandle) - the dataHandle containing the value to set.
    * ctx (MDGContext) - the context the method is being evaluated in.

None



setIsolateSelected

<type 'instancemethod'>

Help on method setIsolateSelected in module maya.app.renderSetup.model.collection:

setIsolateSelected(self, val) method of maya.app.renderSetup.model.collection.Collection instance

None



setMPSafe

<type 'builtin_function_or_method'>

Help on built-in function setMPSafe:

setMPSafe(...)
    setMPSafe(bool) -> self
    
    Set a flag to specify if a user defined shading node is safe for multi-processor rendering. For a shading node to be MP safe, it cannot access any shared global data and should only use attributes in the datablock to get input data and store output data. 
    
    This flag does NOT mark a node thread safe for parallel DG evaluation in Viewport 2.0.  To mark a node thread safe for parallel DG evaluation see the setNodeTypeFlag mel command. 
    
    NOTE: This should be called from the postConstructor() method for shading node plug-ins only. If a shading node is non-safe, then it will only be useful during single processor rendering.

None



setName

<type 'instancemethod'>

Help on method setName in module maya.app.renderSetup.model.childNode:

setName(self, newName) method of maya.app.renderSetup.model.collection.Collection instance
    Rename render setup node.

None



setNext

<type 'instancemethod'>

Help on method setNext in module maya.app.renderSetup.model.nodeList:

setNext(self, item) method of maya.app.renderSetup.model.collection.Collection instance

None



setNotes

<type 'instancemethod'>

Help on method setNotes in module maya.app.renderSetup.model.nodeNotes:

setNotes(self, string) method of maya.app.renderSetup.model.collection.Collection instance

None



setParent

<type 'instancemethod'>

Help on method setParent in module maya.app.renderSetup.model.nodeList:

setParent(self, parentListUserNode) method of maya.app.renderSetup.model.collection.Collection instance
    Set the list to which this item belongs.
    
    To remove this item from its list, the parent node argument must be
    None.

None



setPrevious

<type 'instancemethod'>

Help on method setPrevious in module maya.app.renderSetup.model.nodeList:

setPrevious(self, item) method of maya.app.renderSetup.model.collection.Collection instance

None



setSelectorType

<type 'instancemethod'>

Help on method setSelectorType in module maya.app.renderSetup.model.collection:

setSelectorType(self, typeName) method of maya.app.renderSetup.model.collection.Collection instance
    Sets the selector type of this collection.

None



setSelfEnabled

<type 'instancemethod'>

Help on method setSelfEnabled in module maya.app.renderSetup.model.collection:

setSelfEnabled(self, value) method of maya.app.renderSetup.model.collection.Collection instance

None



shouldSave

<type 'builtin_function_or_method'>

Help on built-in function shouldSave:

shouldSave(...)
    shouldSave(plug) -> bool/None
    
    This method may be overridden by the user defined node.  It should only be required to override this on rare occasions.
    
    This method determines whether a specific attribute of this node should be written out during a file save.  The default behavior is to only write the value if it differs from the default and is not being supplied by a connection.  This behavior should be sufficient in most cases.
    This method is not called for ramp attributes since they should always be written.
    
    * plug (MPlug) - plug representing the attribute to be saved.

None



thisMObject

<type 'builtin_function_or_method'>

Help on built-in function thisMObject:

thisMObject(...)
    thisMObject() -> MObject
    
    Returns the MObject associated with this user defined node.  This makes it possible to use MFnDependencyNode or to construct plugs to this node's attributes.

None



type

<type 'builtin_function_or_method'>

Help on built-in function type:

type(...)
    type() -> int
    
    Returns the type of node that this is.  This is used to differentiate user defined nodes that are derived off different MPx base classes.
    
    It is not necessary to override this method.
    
      kDependNode                    Custom node derived from MPxNode
      kLocatorNode                   Custom locator derived from MPxLocatorNode
      kDeformerNode                  Custom deformer derived from MPxDeformerNode
      kManipContainer                Custom container derived from MPxManipContainer
      kSurfaceShape                  Custom shape derived from MPxSurfaceShape
      kFieldNode                     Custom field derived from MPxFieldNode
      kEmitterNode                   Custom emitter derived from MPxEmitterNode
      kSpringNode                    Custom spring derived from MPxSpringNode
      kIkSolverNode                  Custom IK solver derived from MPxIkSolverNode
      kHardwareShader                Custom shader derived from MPxHardwareShader
      kHwShaderNode                  Custom shader derived from MPxHwShaderNode
      kTransformNode                 Custom transform derived from MPxTransform
      kObjectSet                     Custom set derived from MPxObjectSet
      kFluidEmitterNode              Custom fluid emitter derived from MpxFluidEmitterNode
      kImagePlaneNode                Custom image plane derived from MPxImagePlane
      kParticleAttributeMapperNode   Custom particle attribute mapper derived from MPxParticleAttributeMapperNode
      kCameraSetNode                 Custom director derived from MPxCameraSet
      kConstraintNode                Custom constraint derived from MPxConstraint
      kManipulatorNode               Custom manipulator derived from MPxManipulatorNode
      kClientDeviceNode              Custom threaded device derived from MPxThreadedDeviceNode
      kThreadedDeviceNode            Custom threaded device node
      kAssembly                      Custom assembly derived from MPxAssembly
      kSkinCluster                                  Custom deformer derived from MPxSkinCluster
      kGeometryFilter                               Custom deformer derived from MPxGeometryFilter
             kBlendShape                                    Custom deformer derived from MPxBlendShape

None



typeId

<type 'instancemethod'>

Help on method typeId in module maya.app.renderSetup.model.collection:

typeId(self) method of maya.app.renderSetup.model.collection.Collection instance

None



typeName

<type 'instancemethod'>

Help on method typeName in module maya.app.renderSetup.model.collection:

typeName(self) method of maya.app.renderSetup.model.collection.Collection instance

None



unapply

<type 'instancemethod'>

Help on method wrapper in module maya.app.renderSetup.common.guard:

wrapper(*args, **kwargs) method of maya.app.renderSetup.model.collection.Collection instance

None



Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment