C# 클래스 WaveEngine.Components.GameActions.FloatAnimationGameAction

Game action of a single float value
상속: UpdatableGameAction
파일 보기 프로젝트 열기: WaveEngine/Components

보호된 프로퍼티들

프로퍼티 타입 설명
from float
to float
updateAction Action

공개 메소드들

메소드 설명
BackInEase ( float t, float b, float c, float d ) : float

Back in ease function

BackInOutEase ( float t, float b, float c, float d ) : float

Back in and out ease function

BackOutEase ( float t, float b, float c, float d ) : float

Back out ease function

BounceInEase ( float t, float b, float c, float d ) : float

Bounce in ease function

BounceInOutEase ( float t, float b, float c, float d ) : float

Bounce in and out ease function

BounceOutEase ( float t, float b, float c, float d ) : float

Bounce out ease function

CircleInEase ( float t, float b, float c, float d ) : float

Circle in ease function

CircleInOutEase ( float t, float b, float c, float d ) : float

Circle in and out ease function

CircleOutEase ( float t, float b, float c, float d ) : float

Circle out ease function

CubicInEase ( float t, float b, float c, float d ) : float

Cubic in ease function

CubicInOutEase ( float t, float b, float c, float d ) : float

Cubi in and out ease function

CubicOutEase ( float t, float b, float c, float d ) : float

Cubic out ease function

DeltaFunction ( EaseFunction function, float from, float to, float time, float totalTime ) : float

Delta Function method

ElasticInEase ( float t, float b, float c, float d ) : float

Elastic in ease function

ElasticInOutEase ( float t, float b, float c, float d ) : float

Elastic in and out ease function

ElasticOutEase ( float t, float b, float c, float d ) : float

Elastic out ease function

ExponentialInEase ( float t, float b, float c, float d ) : float

Exponential in ease function

ExponentialInOutEase ( float t, float b, float c, float d ) : float

Exponential in and out ease function

ExponentialOutEase ( float t, float b, float c, float d ) : float

Exponential out ease function

FloatAnimationGameAction ( System.Entity entity, float from, float to, System.TimeSpan time, EaseFunction ease, Action updateAction ) : System

Initializes a new instance of the FloatAnimationGameAction class.

LinearStep ( float from, float to, float lerp ) : float

Smooth Step method

QuadraticInEase ( float t, float b, float c, float d ) : float

Quadratic in ease function

QuadraticInOutEase ( float t, float b, float c, float d ) : float

Quadratic in and out ease function

QuadraticOutEase ( float t, float b, float c, float d ) : float

Quadratic out ease function

QuarticInEase ( float t, float b, float c, float d ) : float

Quartic in ease function

QuarticInOutEase ( float t, float b, float c, float d ) : float

Quartic in and out ease function

QuarticOutEase ( float t, float b, float c, float d ) : float

Quartic out ease function

QuinticInEase ( float t, float b, float c, float d ) : float

Quintic in ease function

QuinticInOutEase ( float t, float b, float c, float d ) : float

Quintic in and out ease function

QuinticOutEase ( float t, float b, float c, float d ) : float

Quintic out ease function

SineInEase ( float t, float b, float c, float d ) : float

Sine in ease function

SineInOutEase ( float t, float b, float c, float d ) : float

Sine in and out ease function

SineOutEase ( float t, float b, float c, float d ) : float

Sine out ease function

Update ( System.TimeSpan gameTime ) : void

Updates the single game action

보호된 메소드들

메소드 설명
FloatAnimationGameAction ( System.Entity entity, float from, float to, System.TimeSpan time, EaseFunction ease ) : System

Initializes a new instance of the FloatAnimationGameAction class.

PerformCancel ( ) : void

Cancels the game action

PerformRun ( ) : void

Ons the run.

PerformSkip ( ) : bool

Notifies the skip.

비공개 메소드들

메소드 설명
AssignValueTo ( float value ) : void

Assign value to method

메소드 상세

BackInEase() 공개 메소드

Back in ease function
public BackInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

BackInOutEase() 공개 메소드

Back in and out ease function
public BackInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

BackOutEase() 공개 메소드

Back out ease function
public BackOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

BounceInEase() 공개 메소드

Bounce in ease function
public BounceInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

BounceInOutEase() 공개 메소드

Bounce in and out ease function
public BounceInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

BounceOutEase() 공개 메소드

Bounce out ease function
public BounceOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

CircleInEase() 공개 메소드

Circle in ease function
public CircleInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

CircleInOutEase() 공개 메소드

Circle in and out ease function
public CircleInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

CircleOutEase() 공개 메소드

Circle out ease function
public CircleOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

CubicInEase() 공개 메소드

Cubic in ease function
public CubicInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

CubicInOutEase() 공개 메소드

Cubi in and out ease function
public CubicInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

CubicOutEase() 공개 메소드

Cubic out ease function
public CubicOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

DeltaFunction() 공개 메소드

Delta Function method
public DeltaFunction ( EaseFunction function, float from, float to, float time, float totalTime ) : float
function EaseFunction
from float Start value
to float End value
time float Current time
totalTime float Animation duration
리턴 float

ElasticInEase() 공개 메소드

Elastic in ease function
public ElasticInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

ElasticInOutEase() 공개 메소드

Elastic in and out ease function
public ElasticInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

ElasticOutEase() 공개 메소드

Elastic out ease function
public ElasticOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

ExponentialInEase() 공개 메소드

Exponential in ease function
public ExponentialInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

ExponentialInOutEase() 공개 메소드

Exponential in and out ease function
public ExponentialInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

ExponentialOutEase() 공개 메소드

Exponential out ease function
public ExponentialOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

FloatAnimationGameAction() 보호된 메소드

Initializes a new instance of the FloatAnimationGameAction class.
protected FloatAnimationGameAction ( System.Entity entity, float from, float to, System.TimeSpan time, EaseFunction ease ) : System
entity System.Entity The entity
from float Initial value
to float End value
time System.TimeSpan The time of the animation
ease EaseFunction Easing function
리턴 System

FloatAnimationGameAction() 공개 메소드

Initializes a new instance of the FloatAnimationGameAction class.
public FloatAnimationGameAction ( System.Entity entity, float from, float to, System.TimeSpan time, EaseFunction ease, Action updateAction ) : System
entity System.Entity The entity
from float Initial value
to float End value
time System.TimeSpan The time of the animation
ease EaseFunction Easing function
updateAction Action The action when needs to be updated
리턴 System

LinearStep() 공개 메소드

Smooth Step method
public LinearStep ( float from, float to, float lerp ) : float
from float Initial value
to float End value
lerp float The lerp value
리턴 float

PerformCancel() 보호된 메소드

Cancels the game action
protected PerformCancel ( ) : void
리턴 void

PerformRun() 보호된 메소드

Ons the run.
protected PerformRun ( ) : void
리턴 void

PerformSkip() 보호된 메소드

Notifies the skip.
protected PerformSkip ( ) : bool
리턴 bool

QuadraticInEase() 공개 메소드

Quadratic in ease function
public QuadraticInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

QuadraticInOutEase() 공개 메소드

Quadratic in and out ease function
public QuadraticInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

QuadraticOutEase() 공개 메소드

Quadratic out ease function
public QuadraticOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

QuarticInEase() 공개 메소드

Quartic in ease function
public QuarticInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

QuarticInOutEase() 공개 메소드

Quartic in and out ease function
public QuarticInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

QuarticOutEase() 공개 메소드

Quartic out ease function
public QuarticOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

QuinticInEase() 공개 메소드

Quintic in ease function
public QuinticInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

QuinticInOutEase() 공개 메소드

Quintic in and out ease function
public QuinticInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

QuinticOutEase() 공개 메소드

Quintic out ease function
public QuinticOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

SineInEase() 공개 메소드

Sine in ease function
public SineInEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

SineInOutEase() 공개 메소드

Sine in and out ease function
public SineInOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

SineOutEase() 공개 메소드

Sine out ease function
public SineOutEase ( float t, float b, float c, float d ) : float
t float Current time
b float Start value
c float End value
d float Animation duration
리턴 float

Update() 공개 메소드

Updates the single game action
public Update ( System.TimeSpan gameTime ) : void
gameTime System.TimeSpan The ellapsed gameTime
리턴 void

프로퍼티 상세

from 보호되어 있는 프로퍼티

Initial value
protected float from
리턴 float

to 보호되어 있는 프로퍼티

End value
protected float to
리턴 float

updateAction 보호되어 있는 프로퍼티

The update action of the
protected Action updateAction
리턴 Action