Package org.jdesktop.wonderland.modules.colladaloader.common.cell.state

Examples of org.jdesktop.wonderland.modules.colladaloader.common.cell.state.ColladaCellClientState


    @Override
    public CellClientState getClientState(CellClientState state, WonderlandClientID clientID, ClientCapabilities capabilities) {
        if (state != null) {
            logger.severe("ColladaCellMO does not support being overloaded in this version");
        }
        CellClientState ret = new ColladaCellClientState(this.modelURI.toExternalForm(), geometryTranslation, geometryRotation);
        super.getClientState(ret, clientID, capabilities);
        return ret;
    }
View Full Code Here


     */
    @Override
    public void setClientState(CellClientState config) {
        System.err.println("***** CONFIGURE");
        super.setClientState(config);
        ColladaCellClientState colladaConfig = (ColladaCellClientState) config;
        this.modelURI = colladaConfig.getModelURI();
        this.geometryRotation = colladaConfig.getGeometryRotation();
        this.geometryTranslation = colladaConfig.getGeometryTranslation();
        logger.warning("[CELL] COLLADA CELL " + this.modelURI);
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.colladaloader.common.cell.state.ColladaCellClientState

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.