Examples of MTProgressBar


Examples of org.mt4j.components.visibleComponents.widgets.progressBar.MTProgressBar

   
   
    //Set up the progressbar
//    progressBar = new MTProgressBar(p, p.loadFont(MT4jSettings.getInstance().getDefaultFontPath() + "Ziggurat.vlw"));
//    progressBar = new MTProgressBar(p, p.loadFont("arial"));
    progressBar = new MTProgressBar(p, p.createFont("arial", 18));
    progressBar.attachCamera(defaultCenterCam);
    progressBar.setDepthBufferDisabled(true);
    progressBar.setVisible(false);
    progressBar.setPickable(false);
    this.getCanvas().addChild(progressBar);
View Full Code Here

Examples of org.mt4j.components.visibleComponents.widgets.progressBar.MTProgressBar

//    keyboardButton.translateGlobal(new Vector3D(5,5,0));
    keyboardButton.translateGlobal(new Vector3D(-2,app.height-keyboardButton.getWidthXY(TransformSpace.GLOBAL)+2,0));
    topLayer.addChild(keyboardButton);

//    progressBar = new MTProgressBar(app, app.loadFont(MT4jSettings.getInstance().getDefaultFontPath()+ "Ziggurat.vlw"));
    progressBar = new MTProgressBar(app, app.createFont("arial", 18));
   
    progressBar.setDepthBufferDisabled(true);
    progressBar.setVisible(false);
    topLayer.addChild(progressBar);
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.