View Single Post
  #1  
Old 02-03-2004, 08:27 AM
Plasma Plasma is offline
Member
 
Join Date: Jan 2004
Posts: 22
Lighting Problem

I'm having a problem getting lighting to work properly.

My environment consists of three hallways in an F configuration with lots of doorways other things to break up the wall into many smaller objects.

Ideally, I would like to simulate the fluorescent lights that exist in the real hallway, but right now I would settle for the whole thing being brighter.

I'm getting a lot of very dark areas despite the fact that there should be lights in these locations and very, very bright areas even though it seems like there are no lights placed anywhere near them. I am using this code to add omnidirectional lights:

mylight = viz.addlight()
mylight.enable()
mylight.position(0, 1, 0)
mylight.spread(180)
mylight.intensity(2)

Without lights, the whole environment is much too dark. I would be thrilled with a way to simply make the whole thing brighter, if possible.

Thanks!
Reply With Quote