C# 클래스 Axiom.Animating.KeyFrame

A key frame in an animation sequence defined by an AnimationTrack.
This class can be used as a basis for all kinds of key frames. The unifying principle is that multiple KeyFrames define an animation sequence, with the exact state of the animation being an interpolation between these key frames.
파일 보기 프로젝트 열기: WolfgangSt/axiom 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
parentTrack AnimationTrack
time float

공개 메소드들

메소드 설명
KeyFrame ( AnimationTrack parent, float time ) : System

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

메소드 상세

KeyFrame() 공개 메소드

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

프로퍼티 상세

parentTrack 보호되어 있는 프로퍼티

Animation track that this key frame belongs to.
protected AnimationTrack,Axiom.Animating parentTrack
리턴 AnimationTrack

time 보호되어 있는 프로퍼티

Time of this keyframe.
protected float time
리턴 float