Package org.xith3d.ui.hud.widgets

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


       
        // Add the foreground
        ( (Panel)hud.getContentPane() ).setForegroundTexture((Texture2D)ResBag.getTexture(ResourceNames.FOREGROUND));
       
        // Add the pause logo
        hourglass = new Image(332f / 2f, 161f / 2f,
                (Texture2D)ResBag.getTexture(ResourceNames.HOURGLASS));
        hourglass.setLocation(41.0f, 446.0f);
        hourglass.setVisible(false);
        hud.getContentPane().addWidget(hourglass);
       
        // Add a xith3d logo
        Widget xithLogo = new Image(100f, 100f, (Texture2D)ResBag.getTexture(ResourceNames.XITH3DLOGO));
        hud.getContentPane().addWidget(xithLogo);
        xithLogo.setLocation(680.29926f,26.688633f);
        xithLogo.setSize(101.99501f,72.32291f);
       
    }
View Full Code Here

TOP

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

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.