C# Class Axiom.Animating.VertexPoseKeyFrame

Inheritance: KeyFrame
Afficher le fichier Open project: WolfgangSt/axiom Class Usage Examples

Protected Properties

Свойство Type Description
poseRefs List

Méthodes publiques

Méthode Description
AddPoseReference ( ushort poseIndex, float influence ) : void

Add a new pose reference.

RemoveAllPoseReferences ( ) : void

Remove all pose references.

RemovePoseReference ( ushort poseIndex ) : void

Remove reference to a given pose.

UpdatePoseReference ( ushort poseIndex, float influence ) : void

Update the influence of a pose reference.

VertexPoseKeyFrame ( AnimationTrack parent, float time ) : System

Creates a new keyframe with the specified time. Should really be created by AnimationTrack.CreateKeyFrame instead.

Method Details

AddPoseReference() public méthode

Add a new pose reference.
public AddPoseReference ( ushort poseIndex, float influence ) : void
poseIndex ushort
influence float
Résultat void

RemoveAllPoseReferences() public méthode

Remove all pose references.
public RemoveAllPoseReferences ( ) : void
Résultat void

RemovePoseReference() public méthode

Remove reference to a given pose.
public RemovePoseReference ( ushort poseIndex ) : void
poseIndex ushort The pose index (not the index of the reference)
Résultat void

UpdatePoseReference() public méthode

Update the influence of a pose reference.
public UpdatePoseReference ( ushort poseIndex, float influence ) : void
poseIndex ushort
influence float
Résultat void

VertexPoseKeyFrame() public méthode

Creates a new keyframe with the specified time. Should really be created by AnimationTrack.CreateKeyFrame instead.
public VertexPoseKeyFrame ( AnimationTrack parent, float time ) : System
parent AnimationTrack Animation track that this keyframe belongs to.
time float Time at which this keyframe begins.
Résultat System

Property Details

poseRefs protected_oe property

A list of the pose references for this frame
protected List poseRefs
Résultat List