Package org.jdesktop.wonderland.client.cell

Examples of org.jdesktop.wonderland.client.cell.InteractionComponent


        Cell cell = SceneManager.getCellForEntity(e);
        if (cell == null) {
            return true;
        }

        InteractionComponent ic = cell.getComponent(InteractionComponent.class);
        if (ic == null) {
            return true;
        }

        return ic.isSelectable();
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.client.cell.InteractionComponent

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.