Example usage for javax.media.j3d Material getLightingEnable

List of usage examples for javax.media.j3d Material getLightingEnable

Introduction

In this page you can find the example usage for javax.media.j3d Material getLightingEnable.

Prototype

public boolean getLightingEnable() 

Source Link

Document

Retrieves the state of the lighting enable flag.

Usage

From source file:AppearanceExplorer.java

public void actionPerformed(ActionEvent e) {
    Material copyMaterial = materialPresets[presetChooser.getValue()];

    lightingEnable = copyMaterial.getLightingEnable();
    copyMaterial.getAmbientColor(ambientColor);
    copyMaterial.getDiffuseColor(diffuseColor);
    copyMaterial.getEmissiveColor(emissiveColor);
    copyMaterial.getSpecularColor(specularColor);
    shininess = copyMaterial.getShininess();

    // update the GUI
    lightingEnableCheckBox.setSelected(lightingEnable);
    material.setLightingEnable(lightingEnable);
    ambientEditor.setValue(ambientColor);
    diffuseEditor.setValue(diffuseColor);
    emissiveEditor.setValue(emissiveColor);
    specularEditor.setValue(specularColor);
    shininessSlider.setValue(shininess);
}