差分発生行の前後
無視リスト:
コミット日時:
2009/09/09 03:07:22 (4 年前)
コミッタ:
yossy
ログメッセージ:

BetweenAS3: Fix: RangeError? has occurred when using bezier tween with Elastic or Back easing. (fixed #106)

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/BetweenAS3/trunk/tests/fp10/BezierTweenTest.as

    r3019 r3079  
    3434        import flash.events.MouseEvent; 
    3535        import org.libspark.betweenas3.BetweenAS3; 
    36         import org.libspark.betweenas3.easing.Cubic; 
     36        import org.libspark.betweenas3.easing.Elastic; 
    3737        import org.libspark.betweenas3.tweens.ITween; 
    3838         
     
    6666                        mc.y = 100; 
    6767                         
    68                         _t = BetweenAS3.bezier(mc, {x: 385, y: 207}, null, {x: [58.05, 145.9, 246.7, 345.55], y: [61.4, 80.65, 167.05, 209.3]}, 3.0, Cubic.easeOut); 
     68                        _t = BetweenAS3.bezier(mc, {x: 385, y: 207}, null, {x: [58.05, 145.9, 246.7, 345.55], y: [61.4, 80.65, 167.05, 209.3]}, 3.0, Elastic.easeOut); 
    6969                         
    7070                        _t.play();