Package org.xith3d.ui.hud

Examples of org.xith3d.ui.hud.HUD


        new MouseHandler(this, env.getView());
       
        /*
         * HUD
         */
        hud = new HUD(canvas, 800f);
        env.addHUD(hud);
        hud.getContentPane().addWidget(new Label(100f, 100f, "Terrain Editor", HUDFont.getFont("Arial", HUDFont.BOLD, 32), TextAlignment.TOP_CENTER), canvas.getWidth() / 2f - 100f / 2f, 0f, 1);
        label = new Label(200f, 600f,
                "Ctrl + O = Open a terrain\n" +
                "Ctrl + W = Save the terrain\n" +
View Full Code Here


     * Constructor
     * @param app
     */
    public UI(Application app, Sized2iRO resolution, JTabbedPane tabbedPane) {
    
        this.hud = new HUD(resolution, 800f);
        app.getSceneGraph().addHUD(hud);
       
        init();
       
        new DigibotInfo(app, hud);
View Full Code Here

TOP

Related Classes of org.xith3d.ui.hud.HUD

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.