Panda3D
|
This object describes how the vertex animation, if any, represented in a GeomVertexData is encoded. More...
#include <pandadoc.hpp>
Public Member Functions | |
__init__ () | |
__init__ (const GeomVertexAnimationSpec other) | |
GeomEnums::AnimationType | getAnimationType () |
Returns the type of animation represented by this spec. | |
bool | getIndexedTransforms () |
This is only meaningful for animation_type AT_hardware. | |
int | getNumTransforms () |
This is only meaningful for animation_type AT_hardware. | |
GeomVertexAnimationSpec | operator= (const GeomVertexAnimationSpec other) |
output (Ostream out) | |
setHardware (int num_transforms, bool indexed_transforms) | |
Specifies that vertex animation is to be performed by the graphics hardware (or at least by the graphics backend API, which is actually still free to animate the vertices on the CPU). | |
setNone () | |
Specifies that no vertex animation is represented by this spec. | |
setPanda () | |
Specifies that vertex animation is to be performed by Panda. | |
![]() | |
__init__ () | |
__init__ (const GeomEnums) | |
Public Attributes | |
GeomEnums::AnimationType | animation_type |
Returns the type of animation represented by this spec. | |
bool | indexed_transforms |
This is only meaningful for animation_type AT_hardware. | |
int | num_transforms |
This is only meaningful for animation_type AT_hardware. | |
This object describes how the vertex animation, if any, represented in a GeomVertexData is encoded.
Vertex animation includes soft-skinned skeleton animation and morphs (blend shapes), and might be performed on the CPU by Panda, or passed down to the graphics backed to be performed on the hardware (depending on the hardware's advertised capabilities).
Changing this setting doesn't by itself change the way the animation is actually performed; this just specifies how the vertices are set up to be animated.
__init__ | ( | ) |
__init__ | ( | const GeomVertexAnimationSpec | other | ) |
GeomEnums::AnimationType getAnimationType | ( | ) |
Returns the type of animation represented by this spec.
bool getIndexedTransforms | ( | ) |
This is only meaningful for animation_type AT_hardware.
If true, it indicates that the format uses indexed animation tables. It is false if each vertex will reference the first _num_transforms table entries only.
int getNumTransforms | ( | ) |
This is only meaningful for animation_type AT_hardware.
It specifies the maximum number of transforms that might be simultaneously applied to any one vertex by the data in this format.
GeomVertexAnimationSpec operator= | ( | const GeomVertexAnimationSpec | other | ) |
output | ( | Ostream | out | ) |
setHardware | ( | int | num_transforms, |
bool | indexed_transforms ) |
Specifies that vertex animation is to be performed by the graphics hardware (or at least by the graphics backend API, which is actually still free to animate the vertices on the CPU).
This is only legal if the graphics hardware can support the specified limits on number of transforms and/or indexed transforms. Also, no current graphics API's support morphing.
setNone | ( | ) |
Specifies that no vertex animation is represented by this spec.
setPanda | ( | ) |
Specifies that vertex animation is to be performed by Panda.
This is the most general setting and can handle any kind of vertex animation represented.
GeomEnums::AnimationType animation_type |
Returns the type of animation represented by this spec.
bool indexed_transforms |
This is only meaningful for animation_type AT_hardware.
If true, it indicates that the format uses indexed animation tables. It is false if each vertex will reference the first _num_transforms table entries only.
int num_transforms |
This is only meaningful for animation_type AT_hardware.
It specifies the maximum number of transforms that might be simultaneously applied to any one vertex by the data in this format.