[SOLVED] Accessing default lighting

Greetings all!

Is there a way to access the default ambient lighting that Panda seems to have when no lights have been assigned? I’d like to tone that down a bit.

Thanks,
Mark

have a look at the lighting example. they turn off all lights and add a ambientlight. this sould do the job =)

Note that, when no lights have been assigned, Panda turns lighting off altogether. This is exactly the same effect as having a single ambient light with the color (1, 1, 1, 1). So if you want to darken the world with no lights assigned, you could do this by assigning a single ambient light with whatever color you like.

David

Excellent. Thank you both for your help!

-Mark