359

Lighting the environment
AmbientLight Example Code


TransformGroup group = new TransformGroup( );
. . .
AmbientLight light = new AmbientLight( );
light.setEnable( true );
light.setColor( new Color3f( 1.0f, 1.0f, 1.0f ) );
. . .
light.setInfluencingBounds( bounds );
group.addChild( light );