Class THAnimHumanoidNode
Unit
X3DNodes
Declaration
type THAnimHumanoidNode = class(TAbstractChildNode, IAbstractBoundedObject, ITransformNode)
Description
Central node for moving the animated humanoid. It contains the skeleton, and other information necessary for animation.
Hierarchy
Overview
Methods
Properties
Description
Methods
 |
procedure CreateNode; override; |
|
 |
destructor Destroy; override; |
|
 |
class function ClassX3DType: string; override; |
|
 |
class function URNMatching(const URN: string): boolean; override; |
|
 |
function AnimateSkin: TMFVec3f; |
Change the skin (in skinCoord), to follow the animation of joints. Joints that changed are assumed to be already traversed by TX3DNode.Traverse (this prepares field values for AnimateSkinPoint call).
This method is used by TCastleSceneCore. Don't call this yourself.
Returns changed VRML/X3D coordinates field (or Nil if there is no skin). You should call TX3DField.Changed on it (unless you use it from some TCastleSceneCore initialization, when there's no point in notifying about this).
|
 |
procedure SetInfo(const Value: array of string); |
|
Properties
 |
property FdCenter: TSFVec3f read FFdCenter; |
|
 |
property FdJoints: TMFNode read FFdJoints; |
|
 |
property FdScale: TSFVec3f read FFdScale; |
|
 |
property FdScaleOrientation: TSFRotation read FFdScaleOrientation; |
|
 |
property FdSegments: TMFNode read FFdSegments; |
|
 |
property FdSites: TMFNode read FFdSites; |
|
 |
property FdSkeleton: TMFNode read FFdSkeleton; |
|
 |
property FdSkin: TMFNode read FFdSkin; |
|
 |
property FdSkinCoord: TSFNode read FFdSkinCoord; |
|
 |
property FdSkinNormal: TSFNode read FFdSkinNormal; |
|
 |
property FdTranslation: TSFVec3f read FFdTranslation; |
|
 |
property FdVersion: TSFString read FFdVersion; |
|
 |
property FdViewpoints: TMFNode read FFdViewpoints; |
|
 |
property FdBboxCenter: TSFVec3f read FFdBboxCenter; |
|
 |
property FdBboxSize: TSFVec3f read FFdBboxSize; |
|
 |
property Center: TVector3 read GetCenter write SetCenter; |
|
 |
property NameField: string read GetNameField write SetNameField; |
|
 |
property Rotation: TVector4 read GetRotation write SetRotation; |
|
 |
property Scale: TVector3 read GetScale write SetScale; |
|
 |
property ScaleOrientation: TVector4 read GetScaleOrientation write SetScaleOrientation; |
|
 |
property Translation: TVector3 read GetTranslation write SetTranslation; |
|
 |
property Version: string read GetVersion write SetVersion; |
|
 |
property BboxCenter: TVector3 read GetBboxCenter write SetBboxCenter; |
|
 |
property BboxSize: TVector3 read GetBboxSize write SetBboxSize; |
|
Generated by PasDoc 0.15.0.
|