pymel.core.rendering.renderPartition

renderPartition(*args, **kwargs)

Set or query the model’s current partition. When flag qis not used, a partion name must be passed as an argument. In this case the current partition is set to that name.

Flags:

Derived from mel command maya.cmds.renderPartition

Example:

import pymel.core as pm

import maya.cmds as cmds

# Query the current render partition
pm.renderPartition( q=True )
# Result: u'renderPartition' #

# Set the current render partition to "foofoo"
pm.renderPartition( 'foofoo' )

Previous topic

pymel.core.rendering.renderManip

Next topic

pymel.core.rendering.renderPassRegistry

Core

Core Modules

Other Modules

This Page