DoTweenMaxTo使用例
import jp.progression.commands.Command;
import caurina.transitions.Equations;
var cmd:SerialList = new SerialList();
cmd.addCommand(
//座標(100,100)へ1秒で移動
new DoTweenMaxTo(target, 1, {
x: 100,
y: 100,
ease: Equations.easeOutExpo
})
);
cmd.excute();
DoTweenMaxFrom使用例
import jp.progression.commands.Command;
import caurina.transitions.Equations;
var cmd:SerialList = new SerialList();
cmd.addCommand(
//座標(100,100)から1秒で今の位置へ移動
new DoTweenMaxFrom(target, 1, {
x: 100,
y: 100,
ease: Equations.easeOutExpo
})
);
cmd.excute();
DoTweenMaxFromTo使用例
import jp.progression.commands.Command;
import caurina.transitions.Equations;
var cmd:SerialList = new SerialList();
cmd.addCommand(
//座標(0,0)から(100,100)へ1秒で移動
new DoTweenMaxFromTo(target, 1,
{
x: 0,
y: 0
},
{
x: 100,
y: 100,
ease: Equations.easeOutExpo
})
);
cmd.excute();
DoTweenLiteTo使用例
import jp.progression.commands.Command;
import caurina.transitions.Equations;
var cmd:SerialList = new SerialList();
cmd.addCommand(
//座標(100,100)へ1秒で移動
new DoTweenLiteTo(target, 1, {
x: 100,
y: 100,
ease: Equations.easeOutExpo
})
);
cmd.excute();
DoTweenLiteFrom使用例
import jp.progression.commands.Command;
import caurina.transitions.Equations;
var cmd:SerialList = new SerialList();
cmd.addCommand(
//座標(100,100)から1秒で今の位置へ移動
new DoTweenLiteFrom(target, 1, {
x: 100,
y: 100,
ease: Equations.easeOutExpo
})
);
cmd.excute();
- update: 2010/12/6 DoTweenMaxFromToにスクリプトエラーがあったのを修正。
- update: 2010/8/3 メソッドにコメントを追加。
- update: 2010/7/7 TweenLiteTo、TweenLiteFromを追加。
- create: 2010/7/2 とりあえず作成。