Go to: Synopsis. Return value. Flags. Python examples.
quit([abort=boolean], [exitCode=uint], [force=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
quit is undoable, NOT queryable, and NOT editable.
This command is used to exit the application.
None
abort, exitCode, force
Long name (short name) |
Argument types |
Properties |
|
abort(a)
|
boolean
|
|
|
Will quit without saving like -force, but will also prevent
preferences/hotkeys/colors from being saved. Use at
your own risk.
|
|
exitCode(ec)
|
uint
|
|
|
Specifies the exit code to be returned once the application
exits. The default exit code is 0.
|
|
force(f)
|
boolean
|
|
|
If specified, this flag will force a quit without saving
or prompting for saving changes. Use at
your own risk.
|
|
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.
|
import maya.cmds as cmds
cmds.quit()
cmds.quit(force=True)