Unload plug-ins from Maya. After the successful execution of this command, plug-in services will no longer be available.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
addCallback (ac) | script | ||
|
|||
force (f) | bool | ||
Unload the plugin even if it is providing services. This is not recommended. If you unload a plug-in that implements a node or data type in the scene, those instances will be converted to unknown nodes or data and the scene will no longer behave properly. Maya may become unstable or even crash. If you use this flag you are advised to save your scene in MayaAscii format and restart Maya as soon as possible. |
|||
removeCallback (rc) | script | ||
Remove a procedure which was previously added with -addCallback.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
Derived from mel command maya.cmds.unloadPlugin
Example:
import pymel.core as pm
import maya.cmds as cmds
# Unload the plugin that has the internal name "newNode"
#
pm.unloadPlugin( 'newNode.py' )