This command is responsible for setting the display culling property of back faces of surfaces. In query mode, return type is based on queried flag.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
backFaceCulling (bfc) | bool | ||
|
Derived from mel command maya.cmds.displayCull
Example:
import pymel.core as pm
import maya.cmds as cmds
pm.displayCull( bfc=True )
pm.displayCull( bfc=False )
pm.displayCull( q=True, bfc=True )
# Returns 0 if the back-face-culling on the selected object is false.
# Returns 1 if the back-face-culling on the selected object is true.