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

Examples of org.jdesktop.wonderland.modules.jmecolladaloader.common.cell.state.JmeColladaCellComponentServerState


            Vector3f modelTranslation,
            Quaternion modelRotation,
            Vector3f modelScale,
            Map<String, Object> properties) {
        ModelCellServerState cellSetup = new ModelCellServerState();
        JmeColladaCellComponentServerState setup = new JmeColladaCellComponentServerState();
        cellSetup.addComponentServerState(setup);

        setup.setModel(deployedURL);
        setup.setModelScale(modelScale);
        setup.setModelRotation(modelRotation);
        setup.setModelTranslation(modelTranslation);
        setup.setModelLoaderClassname(this.getClass().getName());

        return cellSetup;
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.jmecolladaloader.common.cell.state.JmeColladaCellComponentServerState

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.