SpecularColor and Shininess

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
ColeZero
Posts: 20
Joined: Wed Jul 27, 2005 2:33 pm

SpecularColor and Shininess

Post by ColeZero »

Are those feature in Irrlicht 0.12 available?
I mean i have set the specularColor to 255,255,255,255 and the shininess to 255. But i cannot see any "plastic" effect.

Here is the code:

Code: Select all



->getMaterial(0).SpecularColor.set(255,255,255,255);
->getMaterial(0).Shininess = 255f;

The Light is near the Node.
The Renderer is OpenGl and the texture is a simple dark-red .bmp.
Guest

Post by Guest »

i think shininess works only for directx (in directx it works for me, in opengl not)
Post Reply