0

私は現在、無限に回転するアニメーションを持っていますが、最初は速すぎます... fps を 12 に下げようとしましたが、スキップされるだけです.... このコードでアニメーションを遅くする可能性はありますか:

//Import TweenMax
import com.greensock.TweenMax;

//Save the horizontal center
var centerX:Number = stage.stageWidth / 2;

//Save the width of the whole gallery
var galleryWidth:Number = infiniteGallery.width;

//Speed of the movement (calculated by the mouse position in the moveGallery() function)
var speed:Number = 0.02;

//Add an ENTER_FRAME listener for the animation
addEventListener(Event.ENTER_FRAME, moveGallery);

function moveGallery(e:Event):void {

    //Calculate the new speed
    speed = -(0.02 * (mouseX - centerX));

    //Update the x coordinate
    infiniteGallery.x+=speed;

    //Check if we are too far on the right (no more stuff on the left edge)
    if (infiniteGallery.x>0) {

        //Update the gallery's coordinates
        infiniteGallery.x= (-galleryWidth/2);
    }

    //Check if we are too far on the left (no more stuff on the right edge)
    if (infiniteGallery.x<(-galleryWidth/2)) {

        //Update the gallery's coordinates
        infiniteGallery.x=0;
    }
}

デモはこちら»

4

1 に答える 1

1

0.02よりも小さい数を試してくださいspeed = -(0.02 * (mouseX - centerX));

于 2010-01-21T14:47:27.333 に答える