C++ API Reference
|
Registration class for MPxGPUDeformer. More...
#include <MGPUDeformerRegistry.h>
Static Public Member Functions | |
static MStatus | registerGPUDeformerCreator (const MString &nodeClassName, const MString ®istrantId, MGPUDeformerRegistrationInfo *registrationInfo) |
This method is called to register an MPxGPUDeformer that overrides a specific type of deformer node. More... | |
static MStatus | deregisterGPUDeformerCreator (const MString &nodeClassName, const MString ®istrantId) |
This method is called to deregister an MPxGPUDeformer that overrides a specific type of deformer node. More... | |
static MStatus | addConditionalAttribute (const MString &nodeClassName, const MString ®istrantId, const MObject &conditionalAttribute) |
This method is called to add a conditional attribute to an already registered GPU Deformer. More... | |
Registration class for MPxGPUDeformer.
MGPUDeformerRegistry allows each class derived from MPxGPUDeformer to register the type of deformer it supports. Only one override registered at a time for each type of deformer node. Overrides provided by default are registered with registrantId "Maya".
|
static |
This method is called to register an MPxGPUDeformer that overrides a specific type of deformer node.
This method is passed the name of the override deformer type, an ID that represents the override provider, and a registration information class. Ownership of the registration information class remains with the caller. The registration information class must remain valid until after the override has been deregistered with deregisterGPUDeformerCreator().
[in] | nodeClassName | The name of the deformer type to be overridden. |
[in] | registrantId | The ID of the override provider. |
[in] | registrationInfo | A MGPUDeformerRegistrationInfo describing the override. |
|
static |
This method is called to deregister an MPxGPUDeformer that overrides a specific type of deformer node.
This method is passed the name of the override deformer type, along with an ID that represents the override provider.
[in] | nodeClassName | The name of the deformer type to be overridden. |
[in] | registrantId | The ID of the override provider. |
|
static |
This method is called to add a conditional attribute to an already registered GPU Deformer.
A conditional attribute is an attribute on a depend node where for some values of the attribute the MPxGPUDeformer is supported and for other values of the attribute the MPxGPUDeformer is not supported.
MPxGPUDeformer will automatically be unsupported if a conditional attribute on the underlying depend node is animated.
MPxGPUDeformer::evaluate() will not be called if the value of a conditional attribute on the underlying depend node changes and the change causes a call to MGPUDeformerRegistrationInfo::validateNodeValues() to return false.
[in] | nodeClassName | The name of the deformer type to be overridden. |
[in] | registrantId | The ID of the override provider. |
[in] | conditionalAttribute | The attribute which is conditionally supported by the MPxGPUDeformer |