pymel.core.context.ctxAbort

ctxAbort(*args, **kwargs)

This command tells the current context to reset itself, losing what has been done so far. If a escape context has been set it then makes that context current.

Derived from mel command maya.cmds.ctxAbort

Example:

import pymel.core as pm

import maya.cmds as cmds

# Create a new particle tool context, then switch to it
pm.dynParticleCtx('dynParticleCtx1')
pm.setToolTo('dynParticleCtx1')
# Click the positions where you want to place the particles

# This command will reset the particle tool, clear the particles you have just created
pm.ctxAbort();

Previous topic

pymel.core.context.createPolyTorusCtx

Next topic

pymel.core.context.ctxCompletion

Core

Core Modules

Other Modules

This Page