C++ API Reference
|
Register and deregister plug-in services with Maya. More...
#include <MFnPlugin.h>
Public Member Functions | |
MFnPlugin () | |
Default class constructor. More... | |
MFnPlugin (MObject &object, const char *vendor="Unknown", const char *version="Unknown", const char *requiredApiVersion="Any", MStatus *ReturnStatus=0L) | |
Class constructor that initializes the function set to the given MObject. More... | |
~MFnPlugin () override | |
The class destructor. | |
MFn::Type | type () const override |
Return the type of this function set. More... | |
MString | vendor (MStatus *ReturnStatus=nullptr) const |
Return the vendor string supplied in the MFnPlugin constructor. More... | |
MString | version (MStatus *ReturnStatus=nullptr) const |
Return the version string supplied in the MFnPlugin constructor. More... | |
MString | apiVersion (MStatus *ReturnStatus=nullptr) const |
Return the required API version string supplied in the MFnPlugin constructor. More... | |
MString | name (MStatus *ReturnStatus=nullptr) const |
Return the name by which Maya knows this plug-in. More... | |
MString | loadPath (MStatus *ReturnStatus=nullptr) const |
Determine the path where the plugin was loaded. More... | |
MStatus | setName (const MString &newName, bool allowRename=true) |
Set the name by which Maya knows this plug-in. More... | |
MStatus | setVersion (const MString &newVersion) |
Set the version name for this plug-in. More... | |
MStatus | registerCommand (const MString &commandName, MCreatorFunction creatorFunction, MCreateSyntaxFunction createSyntaxFunction=nullptr) |
Register a new command with Maya. More... | |
MStatus | deregisterCommand (const MString &commandName) |
Deregister the user defined command from Maya. More... | |
MStatus | registerControlCommand (const MString &commandName, MCreatorFunction creatorFunction) |
Register a new control command with Maya. More... | |
MStatus | deregisterControlCommand (const MString &commandName) |
Deregister the user defined control command from Maya. More... | |
MStatus | registerModelEditorCommand (const MString &commandName, MCreatorFunction creatorFunction, MCreatorFunction paneCreatorFunction) |
Register a new model editor command with Maya. More... | |
MStatus | deregisterModelEditorCommand (const MString &commandName) |
Deregister the user defined editor command from Maya. More... | |
MStatus | registerConstraintCommand (const MString &commandName, MCreatorFunction creatorFunction) |
Register a new constraint command with Maya. More... | |
MStatus | deregisterConstraintCommand (const MString &commandName) |
Deregister the user defined constraint command from Maya. More... | |
MStatus | registerContextCommand (const MString &commandName, MCreatorFunction creatorFunction) |
Register a new context command with Maya. More... | |
MStatus | registerContextCommand (const MString &commandName, MCreatorFunction creatorFunction, const MString &toolCmdName, MCreatorFunction toolCmdCreator, MCreateSyntaxFunction toolCmdSyntax=nullptr) |
Register a new context command and a new tool command with Maya. More... | |
MStatus | deregisterContextCommand (const MString &commandName) |
Deregister the given user defined context command from Maya. More... | |
MStatus | deregisterContextCommand (const MString &commandName, const MString &toolCmdName) |
Deregister the given user defined context command and tool command from Maya. More... | |
MStatus | registerNode (const MString &typeName, const MTypeId &typeId, MCreatorFunction creatorFunction, MInitializeFunction initFunction, MPxNode::Type type=MPxNode::kDependNode, const MString *classification=nullptr) |
Register a new dependency node with Maya. More... | |
MStatus | deregisterNode (const MTypeId &typeId) |
Deregister the given user defined dependency node type Maya. More... | |
MStatus | registerEvaluator (const MString &evaluatorName, unsigned int uniquePriority, MCustomEvaluatorCreatorFunction creatorFunction) |
Register a new evaluator with Maya. More... | |
MStatus | deregisterEvaluator (const MString &evaluatorName) |
Deregister the given user defined evaluator. More... | |
MStatus | registerTopologyEvaluator (const MString &evaluatorName, unsigned int uniquePriority, MTopologyEvaluatorCreatorFunction creatorFunction) |
Register a new evaluator with Maya. More... | |
MStatus | deregisterTopologyEvaluator (const MString &evaluatorName) |
Deregister the given user defined evaluator. More... | |
MStatus | registerShape (const MString &typeName, const MTypeId &typeId, MCreatorFunction creatorFunction, MInitializeFunction initFunction, MCreatorFunction uiCreatorFunction, const MString *classification=nullptr) |
Registers the given user defined shape node with Maya. More... | |
MStatus | registerTransform (const MString &typeName, const MTypeId &typeId, MCreatorFunction creatorFunction, MInitializeFunction initFunction, MCreateXformMatrixFunction xformCreatorFunction, const MTypeId &xformId, const MString *classification=nullptr) |
Registers the given user defined transform node with Maya. More... | |
MStatus | registerData (const MString &typeName, const MTypeId &typeId, MCreatorFunction creatorFunction, MPxData::Type type=MPxData::kData) |
Register a new data type with Maya. More... | |
MStatus | deregisterData (const MTypeId &typeId) |
Deregister the given user defined data type from Maya. More... | |
MStatus | registerDevice (const MString &deviceName, MCreatorFunction creatorFunction) |
Register a new input device with Maya. More... | |
MStatus | deregisterDevice (const MString &deviceName) |
Deregister the given user defined input device from Maya. More... | |
MStatus | registerFileTranslator (const MString &translatorName, const char *pixmapName, MCreatorFunction creatorFunction, const char *optionsScriptName=nullptr, const char *defaultOptionsString=nullptr, bool requiresFullMel=false, MString dataStorageLocation=MFnPlugin::kDefaultDataLocation) |
Register a new file translator with Maya. More... | |
MStatus | deregisterFileTranslator (const MString &translatorName) |
Deregister the specified file translator with Maya. More... | |
MStatus | registerURIFileResolver (const MString &fileResolverName, const MString &uriScheme, MCreatorFunction creatorFunction) |
Register a Custom URI File Resolver with Maya. More... | |
MStatus | deregisterURIFileResolver (const MString &fileResolverName) |
Deregister the specified URI file resolver with Maya. More... | |
MStatus | registerIkSolver (const MString &ikSolverName, MCreatorFunction creatorFunction) |
Register a new ik-solver with Maya. More... | |
MStatus | deregisterIkSolver (const MString &ikSolverName) |
Deregister the specified ik-solver with Maya. More... | |
MStatus | registerCacheFormat (const MString &cacheFormatName, MCreatorFunction creatorFunction) |
Register a new cache format with Maya. More... | |
MStatus | deregisterCacheFormat (const MString &cacheFormatName) |
Deregister the specified cache format with Maya. More... | |
MStatus | registerUIStrings (MInitializeFunction registerMStringResources, const MString &pluginStringsProc) |
Set the callback and procedure names of routines that register plugin string resources and optionally load localized values for them. More... | |
MStatus | registerUI (PyObject *creationProc, PyObject *deletionProc, PyObject *creationBatchProc=nullptr, PyObject *deletionBatchProc=nullptr) |
Sets the Python callable objects to be called to create and destroy any UI associated with the plugin. More... | |
MStatus | registerDragAndDropBehavior (const MString &behaviorName, MCreatorFunction creatorFunction) |
Register a new drag and drop behavior with Maya. More... | |
MStatus | deregisterDragAndDropBehavior (const MString &behaviorName) |
Deregister the given drag and drop behavior from Maya. More... | |
MStatus | registerImageFile (const MString &imageFormatName, MCreatorFunction creatorFunction, const MStringArray &imageFileExtensions, ImageFilePriority priority=kImageFilePriorityDefault) |
Register a new image file translator with Maya. More... | |
MStatus | deregisterImageFile (const MString &imageFormatName) |
Deregister the specified image file translator with Maya. More... | |
MStatus | registerRenderPassImpl (const MString &passImplId, MRenderPassDef *passDef, MCreatorFunction creatorFunction, bool overload=false) |
Register a new render pass implementation with Maya and associate with the given render pass definition. More... | |
MStatus | deregisterRenderPassImpl (const MString &passImplId) |
Deregister the specified render pass implementation with Maya. More... | |
MStatus | registerAttributePatternFactory (const MString &typeName, MCreatorFunction fnPtr) |
Registers a new attribute pattern factory type with Maya. More... | |
MStatus | deregisterAttributePatternFactory (const MString &typeName) |
Deregister the attribute pattern factory type with Maya. More... | |
MStatus | registerAnimCurveInterpolator (const MString &typeName, int typeId, MCreatorFunction creatorFunction, int flags=0) |
Register a new animation curve interpolator with Maya. More... | |
MStatus | deregisterAnimCurveInterpolator (const MString &typeName) |
Deregister the given user defined animation curve interpolator from Maya. More... | |
MStatus | registerDisplayFilter (const MString &name, const MString &label, const MString &classification) |
Register a new display filter with Maya. More... | |
MStatus | deregisterDisplayFilter (const MString &name) |
Deregister a display filter with Maya. More... | |
MStatus | registerRenderer (const MString &name, MCreatorFunction creatorFunction) |
Registers a new renderer identified by name. More... | |
MStatus | deregisterRenderer (const MString &name) |
Deregisters an renderer identified by name. More... | |
MTypeId | matrixTypeIdFromXformId (const MTypeId &xformTypeId, MStatus *ReturnStatus=nullptr) |
The function returns the MTypeId of the matrix when the MTypeId of the corresponding xform is given. More... | |
MStringArray | addMenuItem (const MString &menuItemName, const MString &parentName, const MString &commandName, const MString &commandParams, bool needOptionBox=false, const MString *optBoxFunction=nullptr, MStatus *retStatus=nullptr, const MString *extraMenuItemParams=nullptr) |
This method is obsolete. More... | |
MStringArray | addMenuItem (const MString &menuItemName, const MString &menuItemLabel, const MString &parentName, const MString &commandName, const MString &commandParams, bool needOptionBox=false, const MString *optBoxFunction=nullptr, MStatus *retStatus=nullptr, const MString *extraMenuItemParams=nullptr) |
The function adds the menuItem to the specified parent, and associates a command with it. More... | |
MStatus | removeMenuItem (MStringArray &menuItemNames) |
The function removes the menuItem and the corresponding option box, if exists, from the UI. More... | |
MStatus | registerMaterialInfo (const MString &type, MMaterialInfoFactoryFnPtr fnPtr) |
Registers a new material information type with Maya. More... | |
MStatus | unregisterMaterialInfo (const MString &typeName) |
Deregister the specified material info type with Maya. More... | |
MStatus | registerBakeEngine (const MString &typeName, MBakeEngineCreatorFnPtr fnPtr) |
Registers a new bake engine type with Maya. More... | |
MStatus | unregisterBakeEngine (const MString &typeName) |
Deregister the bake engine type with Maya. More... | |
void | setCallableInfo (MPluginCallableInfo *info) |
Set callback info to be passed as ClientData to scripts. | |
MPluginCallableInfo * | getCallableInfo () |
Get callback info to be passed as ClientData to scripts. | |
MStatus | registerTransform (const MString &typeName, const MTypeId &typeId, MCreatorFunction creatorFunction, MInitializeFunction initFunction, MCreatorFunction xformCreatorFunction, const MTypeId &xformId, const MString *classification=nullptr) |
This method is obsolete. More... | |
MStatus | registerUI (const MString &creationProc, const MString &deletionProc, const MString &creationBatchProc="", const MString &deletionBatchProc="") |
This method is not available in Python. More... | |
MStatus | registerEvaluator (const MString &evaluatorName, unsigned int uniquePriority, MCreatorFunction creatorFunction) |
This method is obsolete. More... | |
MStatus | registerTopologyEvaluator (const MString &evaluatorName, unsigned int uniquePriority, MCreatorFunction creatorFunction) |
This method is obsolete. More... | |
Public Member Functions inherited from MFnBase | |
virtual | ~MFnBase () |
Class Destructor. More... | |
bool | hasObj (MFn::Type) const |
Determines whether or not the Function Set is compatible with the specified Maya Object within the API RTTI system. More... | |
bool | hasObj (const MObject &) const |
Determines whether or not the Function Set is compatible with the specified Maya Object within the API RTTI system. More... | |
MObject | object (MStatus *ReturnStatus=nullptr) const |
Returns the MObject that is attached to the Function Set. More... | |
virtual MStatus | setObject (MObject &object) |
Attaches the Function Set to the specified Maya Object. More... | |
virtual MStatus | setObject (const MObject &object) |
NO SCRIPT SUPPORT. More... | |
Static Public Member Functions | |
static MObject | findPlugin (const MString &pluginName) |
Returns an MObject corresponding to the named plugin. More... | |
static bool | isNodeRegistered (const MString &typeName) |
Queries if the given typeName has been registered by maya or plugins. More... | |
static void | setRegisteringCallableScript () |
Mark this MFnPlugin object as one that will be passed callbacks defined in script. | |
static bool | registeringCallableScript () |
Return true if this MFnPlugin object has its callbacks defined in script. | |
static const char * | className () |
Returns the name of this class. More... | |
Static Public Member Functions inherited from MFnBase | |
static const char * | className () |
Returns the name of this class. More... | |
static const char * | typeString (MFn::Type) |
Returns the type string for a given type. More... | |
static bool | isValid (MFn::Type) |
Returns true if type is in the range of valid types. More... | |
Static Public Attributes | |
static const MString | kDefaultDataLocation = "data" |
Specifies the default storage location for registerFileTranslator, the default value is "data". | |
Register and deregister plug-in services with Maya.
This class is used in the initializePlugin and uninitializePlugin functions of a Maya plug-in to respectively register and deregister the plug-in's services (commands, node types, etc) with Maya. The constructor for this class must be passed the MObject that Maya provides as an argument to initializePlugin and uninitializePlugin.
MFnPlugin provides various registration methods for use inside initializePlugin, when the plug-in is being loaded, and deregistration methods for use inside uninitializePlugin, when the plug-in is being unloaded. In general it is good practice to have uninitializePlugin deregister the plug-in's services in the reverse order in which they were registered in initializePlugin. This ensures, for example, that a custom datatype is not deregistered before the node types which use it.
A plug-in's uninitializePlugin function is only called when the plug-in is explicitly unloaded. It is not called when Maya exits. Normally this is not a problem because system resources such as memory and open file handles are automatically released by the operating system when Maya exits. However, if there are cleanup tasks which a plug-in must perform even when Maya exits, for example deleting a temporary file, then the plug-in's initializePlugin can use the MSceneMessage::addCallback method with a message of "kMayaExiting" to register a callback function that will be executed when Maya is about to exit. The callback function can then handle any cleanup activities which the operating system won't handle automatically on exit.
A side effect of including MFnPlugin.h in a source file is to embed an API version string into the corresponding compiled object file. Because of this, including MFnPlugin.h in more than one source file in the same plug-in will lead to conflicts when the plug-in is linked. If it is necessary to include MFnPlugin.h in more than one of a plug-in's source files the preprocessor macro MNoVersionString should be defined in all but one of those files prior to the inclusion of MFnPlugin.h. Normally, this issue will not arise as only the file that contains the initializePlugin and uninitializePlugin routines should need to include MFnPlugin.h.
It is unusual, but possible, to instantiate several MFnPlugin objects within a single plug-in binary. In this case the vendor and version information that is set for the plug-in is taken from the first instance as this information works per binary rather than per command/node etc.
MFnPlugin | ( | MObject & | object, |
const char * | vendor = "Unknown" , |
||
const char * | version = "Unknown" , |
||
const char * | requiredApiVersion = "Any" , |
||
MStatus * | ReturnStatus = 0L |
||
) |
Class constructor that initializes the function set to the given MObject.
The MObject should the be one passed as an argument to either the initializePlugin or uninitializePlugin entry points of a Maya plug-in.
[in] | object | the MObject to attach the function set to |
[in] | vendor | a string identifying the vendor of this plug-in |
[in] | version | a string identifying the version number of this plug-in |
[in] | requiredApiVersion | if the plug-in is known to work with only a specify API version, that version can be specified here. This argument is current not used by the Maya API. |
[out] | ReturnStatus | the return status |
|
overridevirtual |
Set the name by which Maya knows this plug-in.
[in] | newName | the new name |
[in] | makeUnique | if true and the requested name is already in use, then Maya will create an unused name for this plug-in. If false, and the name is in use, do not change the current name. |
Set the version name for this plug-in.
[in] | newVersion | the new version |
MStatus registerCommand | ( | const MString & | commandName, |
MCreatorFunction | creatorFunction, | ||
MCreateSyntaxFunction | createSyntaxFunction = nullptr |
||
) |
Register a new command with Maya.
Once registered, the command can be invoked from MEL in a manner identical to built-in Maya commands.
[in] | commandName | the name of the command to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxCommand) that implements the new command. |
[in] | createSyntaxFunction | a pointer to a function that will return a new instance of a syntax object (MSyntax) that implements the syntax of the command. |
Deregister the user defined command from Maya.
Once deregistered the command can no longer be invoked from MEL.
[in] | commandName | the name of the command to deregister |
Register a new control command with Maya.
Once registered, the command can be invoked from MEL in a manner identical to built-in Maya commands.
[in] | commandName | the name of the control to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class(derived from MPxControlCommand) that implements the new command. |
Deregister the user defined control command from Maya.
Once deregistered the command can no longer be invoked from MEL.
[in] | commandName | the name of the command to deregister |
MStatus registerModelEditorCommand | ( | const MString & | commandName, |
MCreatorFunction | creatorFunction, | ||
MCreatorFunction | viewCreatorFunction | ||
) |
Register a new model editor command with Maya.
Once registered, the command can be invoked from MEL in a manner identical to built-in Maya commands.
[in] | commandName | the name of the command to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxEditorCommand) that implements the new command. |
[in] | viewCreatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPx3dModelView) that implemented the new view associated with this command. |
Deregister the user defined editor command from Maya.
Once deregistered the command can no longer be invoked from MEL.
[in] | commandName | the name of the command to deregister |
Register a new constraint command with Maya.
Once registered, the command can be invoked from MEL in a manner identical to built-in Maya commands.
[in] | commandName | the name of the command to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxConstraintCommand) that implements the new command. |
Deregister the user defined constraint command from Maya.
Once deregistered the command can no longer be invoked from MEL.
[in] | commandName | the name of the command to deregister |
Register a new context command with Maya.
Once registered, the context can be used to create a new tool that can be used in a manner identical to built-in Maya tools.
[in] | commandName | the name of the context command to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxToolCommand) that implements the new tool. |
MStatus registerContextCommand | ( | const MString & | commandName, |
MCreatorFunction | creatorFunction, | ||
const MString & | toolCmdName, | ||
MCreatorFunction | toolCmdCreator, | ||
MCreateSyntaxFunction | toolCmdSyntax = nullptr |
||
) |
Register a new context command and a new tool command with Maya.
This version of registerContextCommand must be used if a tool command (a class derived from MPxToolCommand) is used within the context. The method newToolCommand of MPxContext will return a new instance of the tool command that can be used in the context.
Once registered, the context can be used to create a new tool that can be used in a manner identical to built-in Maya tools. The tool command can also be used as a MEL command.
[in] | commandName | the name of the context command to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxContextCommand) that implements the new tool. |
[in] | toolCmdName | the name of the tool command to register |
[in] | toolCmdCreator | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxToolCommand) that implements the new command. |
[in] | toolCmdSyntax | a pointer to a function that will return a new instance of a syntax object (MSyntax) that implements the syntax of the command. |
Deregister the given user defined context command from Maya.
Once deregistered the user defined tool can no longer be used.
[in] | commandName | the name of the context command to deregister |
Deregister the given user defined context command and tool command from Maya.
Once deregistered the user defined tool can no longer be used and the tool command can no longer be invoked from MEL.
[in] | commandName | the name of the context command to deregister |
[in] | toolCmdName | the name of the command to deregister |
MStatus registerNode | ( | const MString & | typeName, |
const MTypeId & | typeId, | ||
MCreatorFunction | creatorFunction, | ||
MInitializeFunction | initFunction, | ||
MPxNode::Type | type = MPxNode::kDependNode , |
||
const MString * | classification = nullptr |
||
) |
Register a new dependency node with Maya.
Once registered, the node can be used from MEL in a manner identical to built-in Maya nodes.
[in] | typeName | the name of the new type of node |
[in] | typeId | a unique id that identifies this node |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxNode) that implements the new node type |
[in] | initFunction | a pointer to a function that will initialize all the attributes of the new node type |
[in] | type | the type of plugin node to be registered |
[in] | classification | a string that determines how the node will be categorized in various rendering-related UI, such as the Create Render Node and HyperShade windows. See the documentation for the getClassification command for a list of the supported classifications. If no string is supplied then the node will not be considered a rendering node and will not be displayed in those UI. The classification also allows the node type to be recognized as a shape with Viewport 2.0. A classification string which starts with "drawdb/geometry" (plus any further subclassifications) is required. Note that adding the subclassification "transform" immediately after "geometry" will indicate that this is a transform instead of shape. See the documentation for registerTransform(). |
Deregister the given user defined dependency node type Maya.
Once deregistered new instances of the user defined dependency node can no longer be created. Additionally, any existing instances of the node type will be changed to the special type Unknown and will no longer evaluate in the dependency graph although they will be saved correctly if the scene is written.
[in] | typeId | the unique type id of the node type to deregister |
MStatus registerEvaluator | ( | const MString & | evaluatorName, |
unsigned int | uniquePriority, | ||
MCustomEvaluatorCreatorFunction | creatorFunction | ||
) |
Register a new evaluator with Maya.
Once registered, the evaluator can be turned on and off via the command line like any other evaluator.
[in] | evaluatorName | the name of the evaluator |
[in] | uniquePriority | a priority that needs to be unique. The custom evaluator with highest priority order will get the chance to claim nodes first. |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the evaluator |
Deregister the given user defined evaluator.
Once deregistered, the evaluator can no longer be used until registered again.
[in] | evaluatorName | the name of the evaluator. |
MStatus registerTopologyEvaluator | ( | const MString & | evaluatorName, |
unsigned int | uniquePriority, | ||
MTopologyEvaluatorCreatorFunction | creatorFunction | ||
) |
Register a new evaluator with Maya.
Once registered, the evaluator can be turned on and off via the command line like any other evaluator.
[in] | evaluatorName | the name of the evaluator |
[in] | uniquePriority | a priority that needs to be unique. The custom evaluator with highest priority order will get the chance to claim nodes first. |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the evaluator |
Deregister the given user defined evaluator.
Once deregistered, the evaluator can no longer be used until registered again.
[in] | evaluatorName | the name of the evaluator. |
MStatus registerShape | ( | const MString & | typeName, |
const MTypeId & | typeId, | ||
MCreatorFunction | creatorFunction, | ||
MInitializeFunction | initFunction, | ||
MCreatorFunction | uiCreatorFunction, | ||
const MString * | classification = nullptr |
||
) |
Registers the given user defined shape node with Maya.
Once registered, the shape can be used from MEL in a manner identical to built-in Maya nodes.
To deregister the shape node use the MFnPlugin::deregisterNode() method.
[in] | typeName | the name of the new type of user defined shape node |
[in] | typeId | a unique id that identifies this node |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxSurfaceNode) that implements the new shape node type |
[in] | initFunction | a pointer to a function that will initialize all the attributes of the new shape node type |
[in] | uiCreatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MGxSurfaceShapeUI) that is used to implement the drawing and selection functions of the user defined shape. |
[in] | classification | a string that determines how the node will be categorized in various rendering-related UI, such as the Create Render Node and HyperShade windows. See the documentation for the getClassification command for a list of the supported classifications. If no string is supplied then the node will not be considered a rendering node and will not be displayed in those UI. The classification also allows the node type to be recognized as a shape with Viewport 2.0. A classification string which starts with "drawdb/geometry" (plus any further subclassifications) is required. Note that adding the subclassification "transform" immediately after "geometry" will indicate that this is a transform instead of shape. See the documentation for registerTransform(). |
MStatus registerTransform | ( | const MString & | typeName, |
const MTypeId & | typeId, | ||
MCreatorFunction | creatorFunction, | ||
MInitializeFunction | initFunction, | ||
MCreateXformMatrixFunction | xformCreatorFunction, | ||
const MTypeId & | xformId, | ||
const MString * | classification = nullptr |
||
) |
Registers the given user defined transform node with Maya.
Once registered, the transform can be used from MEL in a manner identical to built-in Maya nodes.
To deregister the transform node use the MFnPlugin::deregisterNode() method.
[in] | typeName | the name of the new type of user defined transform node |
[in] | typeId | a unique id that identifies this node |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxTransform) that implements the new transform node type |
[in] | initFunction | a pointer to a function that will initialize all the attributes of the new transform node type |
[in] | xformCreatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxTransformationMatrix) that is used to implement the matrix functions of the custom transform. For default behavior, use the MPxTransformationMatrix::creator method. |
[in] | xformId | a unique id that identifies this transformation matrix. If MPxTransformationMatrix::creator is used, then MPxTransformationMatrix::baseTransformationMatrixId should be used. |
[in] | classification | a string that determines how the node will be categorized in various rendering-related UI, such as the Create Render Node and HyperShade windows. See the documentation for the getClassification command for a list of the supported classifications. If no string is supplied then the node will not be considered a rendering node and will not be displayed in those UI. The classification also allows the node type to be recognized as a transform with Viewport 2.0. A classification string which starts with "drawdb/geometry/transform" (plus any further subclassifications) is required. If this classification is not specified then it will automatically be added for this node type. |
MStatus registerData | ( | const MString & | typeName, |
const MTypeId & | typeId, | ||
MCreatorFunction | creatorFunction, | ||
MPxData::Type | type = MPxData::kData |
||
) |
Register a new data type with Maya.
Once registered, the data type can be passed between dependency nodes in a manner identical to built-in Maya data types.
[in] | typeName | the name of the data type to register |
[in] | typeId | the unique type id of the data type to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxData) that implements the new data type. |
[in] | type | the type of data being registered, see the Type enum in MPxData.h for all available types |
/return Status code
Deregister the given user defined data type from Maya.
It is important to note that this method will always fail if there are any instances of the user-defined data in the scene. If the plug-in were to be allowed to deregister its implementation of the data, it would become impossible to save the scene since the writeASCII and writeBinary methods would no longer be accessible.
[in] | typeId | the unique type id of the data type to deregister |
Register a new input device with Maya.
Once registered, the new input device can be connected to Maya actions using the assignInputDevice command in MEL in a manner identical to built-in Maya devices. In Maya 1.0, only Midi input devices are supported and the creatorFunction must return a pointer to a MPxMidiInputDevice instance. This interface will be generalized in a future release.
[in] | deviceName | the name of the device to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxMidiInputDevice) that implements the new device. |
Deregister the given user defined input device from Maya.
[in] | deviceName | the name of the input device to deregister |
MStatus registerFileTranslator | ( | const MString & | translatorName, |
const char * | pixmapName, | ||
MCreatorFunction | creatorFunction, | ||
const char * | optionsScriptName = nullptr , |
||
const char * | defaultOptionsString = nullptr , |
||
bool | requiresFullMel = false , |
||
MString | dataStorageLocation = MFnPlugin::kDefaultDataLocation |
||
) |
Register a new file translator with Maya.
It requires a name string containing the "name" by which Maya will refer to this file type, and a pathname to an "icon" file which Maya will use in its file selection dialogs.
[in] | translatorName | the string by which Maya will refer to this file type |
[in] | pixmapName | the pathname of the icon used in file selection dialogs |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxFileTranslator) that implements the new file type. |
[in] | optionsScriptName | the name of a MEL script that will be used to display the contents of the options dialog during file open and save. |
[in] | defaultOptionsString | the default value of the options string that will be passed to the options script. |
[in] | requiresFullMel | this should be set to true if the reader method in the derived class intends to issue MEL commands via the MGlobal::executeCommand method. Setting this to true will slow down the creation of new objects, but allows MEL commands other than those that are part of the Maya Ascii file format to function correctly. This parameter defaults to false. |
[in] | dataStorageLocation | the default location where this translator will store its data relative to the current project. This defaults to MFnPlugin::kDefaultDataLocation The translator command parameter -defaultFileRule will return this value. |
Deregister the specified file translator with Maya.
[in] | translatorName | the name of the translator to deregister |
MStatus registerURIFileResolver | ( | const MString & | fileResolverName, |
const MString & | uriScheme, | ||
MCreatorFunction | creatorFunction | ||
) |
Register a Custom URI File Resolver with Maya.
[in] | fileResolverName | Name of new file resolver to register. |
[in] | uriScheme | URI scheme this resolver supports. |
[in] | creatorFunction | Pointer to a function that will return a pointer to a new instance of the class (derived from MPxFileResolver) that implements the new file type. |
Deregister the specified URI file resolver with Maya.
[in] | fileResolverName | the name of the file resolver to deregister |
Register a new ik-solver with Maya.
NOTE: this method is obsolete. Instead, register the IK solver as a node as described in the example plug-in simpleSolverNode.cpp.
[in] | ikSolverName | name of the new IK solver |
[in] | creatorFunction | pointer to a function that will return a pointer to a new instance of the class (derived from MPxIkSolver) that implements the new file type. |
Deregister the specified ik-solver with Maya.
NOTE: this method is obsolete. Instead, register the IK solver as a node as described in the example plug-in simpleSolverNode.cpp.
[in] | ikSolverName | the name of the ik solver to deregister |
Register a new cache format with Maya.
[in] | cacheFormatName | Name of the new cache format. |
[in] | creatorFunction | Pointer to a function that will return a pointer to a new instance of the class (derived from MPxCacheFormat) that implements the new file type. |
Deregister the specified cache format with Maya.
[in] | cacheFormatName | the name of the cache format to deregister |
MStatus registerUIStrings | ( | MInitializeFunction | registerMStringResources, |
const MString & | pluginStringsProc | ||
) |
Set the callback and procedure names of routines that register plugin string resources and optionally load localized values for them.
These procedures are called immediately upon plugin load. They are responsible for registering all string resources that can be referred to during the plugin execution. If the string resources are localized, the localized values are also loaded at this time.
Each string resource is given a default value when it is registered. If the plugin is localized, any localized values specified will override the registered default and will be used instead of the default value when the resource value is queried.
The registerMStringResources callback is a function which makes a series of calls to MStringResource::registerString for each MStringResourceId to be registered. Its signature is described by the MInitializeFunction typedef.
The pluginStringsProc is a mel procedure that will be evaluated to register any other strings resources for the plugin, i.e. those used in the plugin's scripts (see the registerPluginString command). It is also responsible for loading the localized resource overrides if they are available (see loadPluginLanguageResources).
See also the following classes: MStringResourceId, MStringResource.
[in] | registerMStringResources | This callback is used to register MStringResources that are used by the plugin code. The callback signature type is defined by MInitializeFunction. |
[in] | pluginStringsProc | The name of the mel procedure to be run during plugin load to register script-based resources. This script will also make the necessary calls to load localized string values if they exist. |
MStatus registerUI | ( | PyObject * | creationProc, |
PyObject * | deletionProc, | ||
PyObject * | creationBatchProc = nullptr , |
||
PyObject * | deletionBatchProc = nullptr |
||
) |
Sets the Python callable objects to be called to create and destroy any UI associated with the plugin.
[in] | creationProc | The name of the Python callable object to be run when the plug in is loaded |
[in] | deletionProc | The name of the Python callable object to be run when the plug in is unloaded |
[in] | creationBatchProc | The name of the Python callable object to be run when the plug in is loaded in batch mode. The procedure should not contain UI related code. |
[in] | deletionBatchProc | The name of the Python callable object to be run when the plug in is unloaded in batch mode. The procedure should not contain UI related code. |
MStatus registerDragAndDropBehavior | ( | const MString & | behaviorName, |
MCreatorFunction | creatorFunction | ||
) |
Register a new drag and drop behavior with Maya.
Once registered, the new behavior can be used to finish connections between node drag and drops from the hyperGraph/hyperShade to other nodes or Maya UI.
[in] | behaviorName | the name of the drag and drop behavior to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxDragAndDropBehavior) that implements the new behavior. |
Deregister the given drag and drop behavior from Maya.
[in] | behaviorName | the name of the behavior to deregister |
MStatus registerImageFile | ( | const MString & | imageFormatName, |
MCreatorFunction | creatorFunction, | ||
const MStringArray & | imageFileExtensions, | ||
ImageFilePriority | priority = kImageFilePriorityDefault |
||
) |
Register a new image file translator with Maya.
[in] | imageFormatName | the name of the image format to register |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MImageFile) that implements the new file type. |
[in] | imageFileExtensions | this list of file extensions this image file should be associated with. |
[in] | priority | Priority number that allow user to specify the plugin priority. The higher the number is, the lower the priority is. High priority plugin will be use before Maya internal code and low priority plugin will be use after Maya internal code. |
Deregister the specified image file translator with Maya.
[in] | imageFormatName | the name of the image format to deregister |
MStatus registerRenderPassImpl | ( | const MString & | passImplId, |
MRenderPassDef * | passDef, | ||
MCreatorFunction | creatorFunction, | ||
bool | overload = false |
||
) |
Register a new render pass implementation with Maya and associate with the given render pass definition.
If an implementation with id passImplId has already been registered and creatorFunction is the same as the already registered creator function then the existing implementation will also be used for the current pass (SAME instances). It is an error if the passImplId is already defined and a different creatorFunction is used. If you wish to associate DIFFERENT instances of the same pass implementation with different passes, then use unique passImplIds when registering each.
[in] | passImplId | a unique name identifying the pass implementation |
[in] | passDef | the render pass definition to associate this implementation with |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxRenderPassImpl) that implements the render pass definiton. |
[in] | overload | Override any existing implementation in the registry |
Deregister the specified render pass implementation with Maya.
This will remove the implementation from all passes it is associated with.
[in] | passImplId | the name identifying the pass implementation to remove |
MStatus registerAttributePatternFactory | ( | const MString & | patternFactoryName, |
MCreatorFunction | creatorFunction | ||
) |
Registers a new attribute pattern factory type with Maya.
[in] | patternFactoryName | the new attribute pattern factory name. |
[in] | creatorFunction | pointer to function that returns a new instance of an attribute pattern factory. |
Deregister the attribute pattern factory type with Maya.
[in] | attributePatternFactoryName | the attribute pattern factory name. |
MStatus registerAnimCurveInterpolator | ( | const MString & | typeName, |
int | typeId, | ||
MCreatorFunction | creatorFunction, | ||
int | flags = 0 |
||
) |
Register a new animation curve interpolator with Maya.
Once registered, the interpolator can be used in interpolating between keyframes.
[in] | typeName | the name of the interpolator to register |
[in] | typeId | the unique type id of the interpolator to register. See MPxAnimCurveInterpolator. |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxAnimCurveInterpolator) that implements the new interpolator. |
[in] | flags | an integer value containing a combination of enum values as specified in the InterpolatorFlags enumerated type (see MPxAnimCurveInterpolator). The default value is 0. |
Deregister the given user defined animation curve interpolator from Maya.
[in] | typeName | the unique type id of the interpolator to deregister |
MStatus registerDisplayFilter | ( | const MString & | name, |
const MString & | label, | ||
const MString & | classification | ||
) |
Register a new display filter with Maya.
A display filter with the same label and classification can be registered multiple times. There is a counter to maintain the registration. Each successful registration needs a call to deregisterDisplayFilter() to balance the counter.
See M3dView::setPluginObjectDisplay() for more details on plug-in display filters.
[in] | name | the new display filter name |
[in] | label | the UI display name of the display filter |
[in] | classification | the classification to filter objects in Viewport 2.0 |
Deregister a display filter with Maya.
[in] | name | the display filter name |
Registers a new renderer identified by name.
[in] | name | The name of the renderer |
[in] | creatorFunction | a pointer to a function that will return a pointer to a new instance of the class (derived from MPxRenderer) that implements the new renderer. |
Deregisters an renderer identified by name.
[in] | name | The name of the renderer |
Returns an MObject corresponding to the named plugin.
If the plugin isn't loaded, the MObject will be kNullObj. This MObject may be used in the same way as the MObject passed to the plugin's initializePlugin() function. Do not hold onto this MObject, if you need it again later, call findPlugin() again.
[in] | pluginName | the name of the plugin you want a handle for. |
|
static |
Queries if the given typeName has been registered by maya or plugins.
[in] | typeName | the type name of a depend graph node to query. |
MStringArray addMenuItem | ( | const MString & | menuItemName, |
const MString & | parentName, | ||
const MString & | commandName, | ||
const MString & | commandParams, | ||
bool | needOptionBox = false , |
||
const MString * | optBoxFunction = nullptr , |
||
MStatus * | retStatus = nullptr , |
||
const MString * | extraMenuItemParams = nullptr |
||
) |
This method is obsolete.
The function adds the menuItem to the specified parent, and associates a command with it.
[as of Maya 2022]
Additionally, an option box can be created and a MEL function/command can be added to it. The function returns the names of the new menuItem and the optionBox created.
[in] | menuItemName | This will be used as the label for the menuItem. It must be 7bit ASCII. |
[in] | parentName | Name of the parent to which the new menuItem needs to be attached. |
[in] | commandName | Command to be attached. |
[in] | commandParams | Parameters for the command. |
[in] | needOptionBox | Boolean indicating whether an option box is required. Default value is false. |
[in] | optBoxFunction | MEL Function to be attached to the option box. If the needOptionBox is false, then this argument will have no effect. |
[out] | retStatus | Return status. |
[in] | extraMenuItemParams | Parameters for creating the menuItem. |
MStringArray addMenuItem | ( | const MString & | menuItemName, |
const MString & | menuItemLabel, | ||
const MString & | parentName, | ||
const MString & | commandName, | ||
const MString & | commandParams, | ||
bool | needOptionBox = false , |
||
const MString * | optBoxFunction = nullptr , |
||
MStatus * | retStatus = nullptr , |
||
const MString * | extraMenuItemParams = nullptr |
||
) |
The function adds the menuItem to the specified parent, and associates a command with it.
Additionally, an option box can be created and a MEL function/command can be added to it. The function returns the names of the new menuItem and the optionBox created.
[in] | menuItemName | This will be used as the name for the menuItem. It must be 7bit ASCII. |
[in] | menuItemLabel | This will be used as the label for the menuItem. |
[in] | parentName | Name of the parent to which the new menuItem needs to be attached. |
[in] | commandName | Command to be attached. |
[in] | commandParams | Parameters for the command. |
[in] | needOptionBox | Boolean indicating whether an option box is required. Default value is false. |
[in] | optBoxFunction | MEL Function to be attached to the option box. If the needOptionBox is false, then this argument will have no effect. |
[out] | retStatus | Return status. |
[in] | extraMenuItemParams | Parameters for creating the menuItem. |
MStatus removeMenuItem | ( | MStringArray & | menuItemNames | ) |
The function removes the menuItem and the corresponding option box, if exists, from the UI.
[in] | menuItemNames | Names of the menuItem which needs to be removed. |
Registers a new material information type with Maya.
[in] | materialInfoName | the new material info generator name. |
[in] | fnPtr | pointer to function that return a new instance of material information node. |
Deregister the specified material info type with Maya.
[in] | materialInfoName | the material info generator name. |
Registers a new bake engine type with Maya.
[in] | bakeEngineGenName | the new bake engine generator name. |
[in] | fnPtr | pointer to function that return a new instance of bake engine generator node. |
Deregister the bake engine type with Maya.
[in] | bakeEngineGenName | the bake engine generator name. |
MStatus registerTransform | ( | const MString & | typeName, |
const MTypeId & | typeId, | ||
MCreatorFunction | creatorFunction, | ||
MInitializeFunction | initFunction, | ||
MCreatorFunction | xformCreatorFunction, | ||
const MTypeId & | xformId, | ||
const MString * | classification = nullptr |
||
) |
This method is obsolete.
This method is not available in Python.
[as of Maya 2019]
[in] | typeName | |
[in] | typeId | |
[in] | creatorFunction | |
[in] | initFunction | |
[in] | xformCreatorFunction | |
[in] | xformId | |
[in] | classification |
MStatus registerUI | ( | const MString & | creationProc, |
const MString & | deletionProc, | ||
const MString & | creationBatchProc = "" , |
||
const MString & | deletionBatchProc = "" |
||
) |
This method is not available in Python.
Sets the names of the mel procedures to be evaled to create and destroy any UI associated with the plugin.
You can use MEL procedure names as arguments to this method as long as the procedure is located in a file named procedure.mel. This works because, as described in the MEL documentation, when MEL is given a undefined procedure, it searchs MAYA_SCRIPT_PATH looking for a file with the name procedure.mel. If it finds such a file it is sourced and if the procedure was defined by the file, it is then executed.
Example: The procedure lassoToolCreateUI will be run when the plugin is loaded, the procedure lassoToolDeleteUI when the plugin is unloaded. This works as long as the MEL procedure lassoToolCreateUI is defined in a file called lassoToolCreateUI.mel and the procedure lassoToolDeleteUI is defined in a file called lassoToolDeleteUI.mel.
[in] | creationProc | The name of the procedure to be run when the plug in is loaded |
[in] | deletionProc | The name of the procedure to be run when the plug in is unloaded |
[in] | creationBatchProc | The name of the procedure to be run when the plug in is loaded in batch mode. The procedure should not contain UI related code. |
[in] | deletionBatchProc | The name of the procedure to be run when the plug in is unloaded in batch mode. The procedure should not contain UI related code. |
MStatus registerEvaluator | ( | const MString & | evaluatorName, |
unsigned int | uniquePriority, | ||
MCreatorFunction | creatorFunction | ||
) |
This method is obsolete.
This method is not available in Python.
[as of Maya 2020]
[in] | evaluatorName | Deprecated |
[in] | uniquePriority | Deprecated |
[in] | creatorFunction | Deprecated |
MStatus registerTopologyEvaluator | ( | const MString & | evaluatorName, |
unsigned int | uniquePriority, | ||
MCreatorFunction | creatorFunction | ||
) |
This method is obsolete.
This method is not available in Python.
[as of Maya 2020]
[in] | evaluatorName | Deprecated |
[in] | uniquePriority | Deprecated |
[in] | creatorFunction | Deprecated |
|
static |
Returns the name of this class.