Package org.terasology.rendering.nui.layers.ingame.inventory

Examples of org.terasology.rendering.nui.layers.ingame.inventory.TransferItemCursor


    private NUIManager nuiManager;

    @Override
    public void initialise() {
        nuiManager.getHUD().addHUDElement("toolbar");
        TransferItemCursor cursor = new TransferItemCursor();
        UIElement cursorElement = Assets.generateAsset(new AssetUri(AssetType.UI_ELEMENT, "engine:transferItemCursor"), new UIData(cursor), UIElement.class);
        nuiManager.addOverlay(cursorElement, ControlWidget.class);
    }
View Full Code Here

TOP

Related Classes of org.terasology.rendering.nui.layers.ingame.inventory.TransferItemCursor

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.