C# 클래스 Axiom.Animating.VertexPoseKeyFrame

상속: KeyFrame
파일 보기 프로젝트 열기: WolfgangSt/axiom 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
poseRefs List

공개 메소드들

메소드 설명
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.

메소드 상세

AddPoseReference() 공개 메소드

Add a new pose reference.
public AddPoseReference ( ushort poseIndex, float influence ) : void
poseIndex ushort
influence float
리턴 void

RemoveAllPoseReferences() 공개 메소드

Remove all pose references.
public RemoveAllPoseReferences ( ) : void
리턴 void

RemovePoseReference() 공개 메소드

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

UpdatePoseReference() 공개 메소드

Update the influence of a pose reference.
public UpdatePoseReference ( ushort poseIndex, float influence ) : void
poseIndex ushort
influence float
리턴 void

VertexPoseKeyFrame() 공개 메소드

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.
리턴 System

프로퍼티 상세

poseRefs 보호되어 있는 프로퍼티

A list of the pose references for this frame
protected List poseRefs
리턴 List