Lights and surfaces
-
- Posts: 12
- Joined: Sun May 17, 2009 1:54 am
Lights and surfaces
I know that in Q4 it was important to divide the brushes adequately so as keep the brush surfaces from being hit by too many lights. Is this also important in Q3?
Re: Lights and surfaces
No. The issue with Q4 was that with each additional light that affects a brush, it would add one extra rendering pass to the surface so many rendering passes would be a performance issue.
Q3 uses a completely different lighting system that is calculated during compile time. Lots of complex interacting lights in Q3 may increase compile time but has no direct effect on in-game performance.
There may be rare situations where you are required to split very large brushes down into smaller chunks to deal with limited size lightmap pages, but those are rare in common use. Perhaps only occurring with increased lightmap resolutions such as with "normal mapped" surfaces.
Q3 uses a completely different lighting system that is calculated during compile time. Lots of complex interacting lights in Q3 may increase compile time but has no direct effect on in-game performance.
There may be rare situations where you are required to split very large brushes down into smaller chunks to deal with limited size lightmap pages, but those are rare in common use. Perhaps only occurring with increased lightmap resolutions such as with "normal mapped" surfaces.
[size=85][url=http://gtkradiant.com]GtkRadiant[/url] | [url=http://q3map2.robotrenegade.com]Q3Map2[/url] | [url=http://q3map2.robotrenegade.com/docs/shader_manual/]Shader Manual[/url][/size]
-
- Posts: 12
- Joined: Sun May 17, 2009 1:54 am
Re: Lights and surfaces
Okay that clears things up. Thank you.