This reference page is linked to from the following overview topics: Supported Scene Elements, List of Python Fbx classes.
Base class for skin deformer (FbxSkin) and vertex cache deformer (FbxVertexCacheDeformer).
The corresponding deformer types are FbxDeformer::eSkin and FbxDeformer::eVertexCache. A deformer can be binded to a geometry (FbxGeometry) to act on its shape. Typically, some objects under the deformer are animated, and via the deformer, the geometry is animated too.
A skin deformer contains clusters (FbxCluster). Each cluster acts on a subset of the geometry's control points, with different weights. For example, a mesh of humanoid shape can have a skin attached, that describes the way the humanoid mesh is deformed by bones. When the bones are animated, the clusters act on the geometry to animate it too.
A vertex cache deformer contains a cache (FbxCache). The cache contains animation information for every control point of the geometry.
Definition at line 47 of file fbxdeformer.h.
#include <fbxdeformer.h>

Protected Member Functions |
|
| FbxDeformer (FbxManager &pManager, char const *pName) | |
| virtual FbxStringList | GetTypeFlags () const |
Protected Attributes |
|
| FbxError | mError |
| bool | mMultiLayer |
Friends |
|
| class | FbxGeometry |
| class | FbxScene |
Multi-Layer Flag |
|
| This flag is available
for backward compatibility with older version of FBX files and
should not be used anymore.All the animation layering system has
been moved to the FbxAnimLayer
and FbxAnimStack
classes. |
|
| void | SetMultiLayer (bool pMultiLayer) |
| Set multi-layer state flag. |
|
| bool | GetMultiLayer () const |
| Get multi-layer state. |
|
Deformer types |
|
| enum | EDeformerType { eUnknown, eSkin, eBlendShape, eVertexCache } |
|
Deformer types. More... |
|
| virtual EDeformerType | GetDeformerType () const |
| Get the deformer type. |
|
Error Management |
|
| enum | EErrorCode { eError, eErrorCount } |
|
Error identifiers. More... |
|
| FbxError & | GetError () |
| Retrieve error object. |
|
| EErrorCode | GetLastErrorID () const |
| Get last error code. |
|
| const char * | GetLastErrorString () const |
| Get last error string. |
|
| enum EDeformerType |
Deformer types.
| eUnknown |
Unknown deformer type. |
| eSkin |
Type FbxSkin. |
| eBlendShape |
Type FbxBlendShape. |
| eVertexCache |
Type FbxVertexCacheDeformer. |
Definition at line 76 of file fbxdeformer.h.
{
eUnknown,
eSkin,
eBlendShape,
eVertexCache
};
| enum EErrorCode |
| FbxDeformer | ( | FbxManager & | pManager, |
| char const * | pName | ||
| ) | [protected] |
| void SetMultiLayer | ( | bool | pMultiLayer | ) |
Set multi-layer state flag.
| pMultiLayer | Set to true to enable multi-layering. |
| bool GetMultiLayer | ( | ) | const |
Get multi-layer state.
| virtual EDeformerType GetDeformerType | ( | ) | const [inline, virtual] |
Get the deformer type.
Reimplemented in FbxBlendShape, FbxSkin, and FbxVertexCacheDeformer.
Definition at line 87 of file fbxdeformer.h.
{ return eUnknown; }
| FbxError& GetError | ( | ) |
| EErrorCode GetLastErrorID | ( | ) | const |
| const char* GetLastErrorString | ( | ) | const |
| virtual FbxStringList GetTypeFlags | ( | ) | const [inline, protected, virtual] |
Reimplemented from FbxObject.
Reimplemented in FbxBlendShape, FbxSkin, and FbxVertexCacheDeformer.
Definition at line 133 of file fbxdeformer.h.
{ return FbxStringList(); }
friend class FbxGeometry
[friend] |
Definition at line 139 of file fbxdeformer.h.
friend class FbxScene [friend] |
Reimplemented from FbxObject.
Reimplemented in FbxBlendShape, and FbxSkin.
Definition at line 140 of file fbxdeformer.h.
Definition at line 136 of file fbxdeformer.h.
bool mMultiLayer
[protected] |
Definition at line 137 of file fbxdeformer.h.