/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package pulpcore.scene;

import pulpcore.Stage;

/**
 *
 * @author eric
 */
public class CoverTransition extends TransitionScene {

    protected void transitionStart() {
        this.getMainLayer().moveToTop(toSprite);
        toSprite.x.animate(-Stage.getWidth(), 0, duration, easing);
    }

}