Go to: Synopsis. Return value. Keywords. Flags. Python examples.

Synopsis

paintEffectsDisplay([meshDrawEnable=boolean])

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

paintEffectsDisplay is NOT undoable, queryable, and NOT editable.

Command to set the global display methods for paint effects items

Return value

None

In query mode, return type is based on queried flag.

Keywords

paintEffects, stroke, brush, pfxGeometry, pfxHair, pfxToon

Flags

meshDrawEnable
Long name (short name) Argument types Properties
meshDrawEnable(me) boolean createquery
Set whether mesh draw is enabled on objects

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can have multiple arguments, passed either as a tuple or a list.

Python examples

import maya.cmds as cmds

cmds.paintEffectsDisplay( meshDrawEnable=True )
meshDrawEnabled = cmds.paintEffectsDisplay(query=True, me=True)