Examples of HUD


Examples of org.spout.vanilla.component.entity.player.HUD

  /**
   * Hide bubbles in the GUI
   */
  public void hideBubbles() {
    HUD hud = owner.get(HUD.class);
    if (hud != null) {
      hud.getAirMeter().hide();
    }
  }
View Full Code Here

Examples of org.spout.vanilla.component.entity.player.HUD

  /**
   * Show bubbles in the GUI
   */
  public void showBubbles() {
    HUD hud = owner.get(HUD.class);
    if (hud != null) {
      hud.getAirMeter().show();
    }
  }
View Full Code Here

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

Examples of org.xith3d.ui.hud.HUD

     * 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
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.