Package com.badlogic.gdx.scenes.scene2d.ui

Examples of com.badlogic.gdx.scenes.scene2d.ui.ImageButton


            Label.LabelStyle style = new Label.LabelStyle();
            style.font = marker.getFont();

            actor = new Label(marker.getText(), style);
        } else if (marker.getImage() != null) {
            actor = new ImageButton(
                    new TextureRegionDrawable(
                    marker.getImage().getTextureRegion()));
        }

        if (actor != null) {
View Full Code Here

TOP

Related Classes of com.badlogic.gdx.scenes.scene2d.ui.ImageButton

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.