Package org.xith3d.ui.hud.widgets

Examples of org.xith3d.ui.hud.widgets.Frame


        this.app = app;
        InputSystem.getInstance().getMouse().addMouseListener(this);
        app.getOperationScheduler().scheduleOperation(this);
       
        Panel panel = new Panel(300f, 180f, new Colorf(1f, 1f, 1f, .2f));
        frame = new Frame(panel, "Digibot Information");
        frame.setDefaultCloseOperation(null);
        frame.setCloseButtonVisible(false);
       
        genomeLabel = new Label(panel.getWidth(), panel.getHeight());
        panel.addWidget(genomeLabel, 6f, 6f);
View Full Code Here

TOP

Related Classes of org.xith3d.ui.hud.widgets.Frame

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.