クラス SlideInEffect

画面の外から現在の位置まで平行移動するエフェクト [詳細]

SlideInEffectに対する継承グラフ
Effect

すべてのメンバ一覧

Public メソッド

 SlideInEffect ()
 コンストラクタ
 SlideInEffect (Widget widget, float time, FourWayDirection direction, SlideInEffectInterpolator interpolator)
 コンストラクタ

Static Public メソッド

static SlideInEffect CreateAndStart (Widget widget, float time, FourWayDirection direction, SlideInEffectInterpolator interpolator)
 インスタンスを作成しエフェクトを開始する。

Protected メソッド

override void OnStart ()
 開始処理
override EffectUpdateResponse OnUpdate (float elapsedTime)
 更新処理
override void OnStop ()
 停止処理

プロパティ

float Time [get, set]
 持続時間を取得・設定する。(ミリ秒)
FourWayDirection MoveDirection [get, set]
 エフェクトの移動方向を取得・設定する。
SlideInEffectInterpolator Interpolator [get, set]
 補間関数の種類を取得・設定する。
AnimationInterpolator CustomInterpolator [get, set]
 カスタムの補間関数を取得・設定する。

説明

画面の外から現在の位置まで平行移動するエフェクト


コンストラクタとデストラクタ

SlideInEffect ( Widget  widget,
float  time,
FourWayDirection  direction,
SlideInEffectInterpolator  interpolator 
)

コンストラクタ

引数:
widgetエフェクト対象のウィジェット
time持続時間(ミリ秒)
directionエフェクトの移動方向
interpolator補間関数

メソッド

static SlideInEffect CreateAndStart ( Widget  widget,
float  time,
FourWayDirection  direction,
SlideInEffectInterpolator  interpolator 
) [static]

インスタンスを作成しエフェクトを開始する。

引数:
widgetエフェクト対象のウィジェット
time持続時間(ミリ秒)
directionエフェクトの移動方向
interpolator補間関数
戻り値:
エフェクトのインスタンス
override EffectUpdateResponse OnUpdate ( float  elapsedTime) [protected, virtual]

更新処理

引数:
elapsedTime前回のUpdateからの経過時間(ミリ秒)
戻り値:
エフェクトの更新の応答

Effectを実装しています。