C# Class Amaoto.Animation.Animator

アニメーター抽象クラス、
显示文件 Open project: AioiLight/Amaoto

Public Methods

Method Description
Animator ( long startValue, long endValue, long tickInterval, bool isLoop )

アニメーターを初期化します。

GetAnimation ( ) : double

アニメーターの現在の値を返します。

Reset ( ) : void

アニメーターをリセットします。

Start ( ) : void

アニメーションを開始します。

Stop ( ) : void

アニメーションを停止します。

Tick ( ) : void

アニメーターの更新をします。

Method Details

Animator() public method

アニメーターを初期化します。
public Animator ( long startValue, long endValue, long tickInterval, bool isLoop )
startValue long 開始値。
endValue long 終了値。
tickInterval long Tick間隔。
isLoop bool ループするかどうか。

GetAnimation() public abstract method

アニメーターの現在の値を返します。
public abstract GetAnimation ( ) : double
return double

Reset() public method

アニメーターをリセットします。
public Reset ( ) : void
return void

Start() public method

アニメーションを開始します。
public Start ( ) : void
return void

Stop() public method

アニメーションを停止します。
public Stop ( ) : void
return void

Tick() public method

アニメーターの更新をします。
public Tick ( ) : void
return void