Image without lighting

Started by dear_stephen, March 28, 2007, 03:44:25 PM

Previous topic - Next topic

dear_stephen

Hi

I would like to display an image in my world. It should be rendered just as it is without any effects of lighting.

I have created a plane, add the image as a texture and am calling...

plane.setLighting(Object3D.LIGHTING_NO_LIGHTS);

The problem is that it is still effected by the worlds ambient light.

How can I prevent this?

cheers

EgonOlsen

Try yourObj.setAdditionalColor(Color.WHITE);

dear_stephen