Examples of MaterialState


Examples of com.jme.scene.state.MaterialState

    /**
     * {@inheritDoc}
     */
    public ColorRGBA getColor() {
        MaterialState ms = null;
        if (quad != null) {
            ms = (MaterialState) quad.getRenderState(RenderState.RS_MATERIAL);
        }
        if (ms == null) {
            return new ColorRGBA(1f, 1f, 1f, 1f);
        } else {
            return ms.getDiffuse();
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.