Package org.mt4j.sceneManagement.transition

Examples of org.mt4j.sceneManagement.transition.SlideTransition


    getCanvas().addChild(nextSceneButton);
    nextSceneButton.setPositionGlobal(new Vector3D(mtApp.width - nextSceneButton.getWidthXY(TransformSpace.GLOBAL) - 5, mtApp.height - nextSceneButton.getHeightXY(TransformSpace.GLOBAL) - 5, 0));

    //Set a scene transition - Flip transition only available using opengl supporting the FBO extenstion
    if (MT4jSettings.getInstance().isOpenGlMode() && GLFBO.isSupported(mtApp))
      this.setTransition(new SlideTransition(mtApp, 700));
    else{
      this.setTransition(new FadeTransition(mtApp));
    }
  }
View Full Code Here

TOP

Related Classes of org.mt4j.sceneManagement.transition.SlideTransition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.