Naming Lights

From Valve Developer Community
Jump to: navigation, search
English (en)
Edit

Giving a light entity a targetname makes VRAD compile a second lightmap "page" for the surfaces that its emitted light touches. This won't harm in-game performance, but it will increase compile time and BSP filesize, regardless of whether the light ever receives input to change its state.

However, the system can be overloaded if you try to make it handle a large number of overlapping named lights (since the number of pages needed increases exponentially). When this happens performance can be harmed and you may well see lighting anomalies.

VRAD attempts to avoid this with its hard-coded limits of two switchable lights affecting a brush face and 32 total pages per lightmap (a page exists for each possibility of combined states). More than this causes VRAD to throw a warning such as "Too many light styles on a face" and refuse to compute the lightmaps for those lights; this will make those areas appear as if they are not lit. You can help too by giving lights that will always change state at the same time a shared targetname, which makes VRAD merge their pages together.

Note.pngNote:Light styles will affect page growth exponentially. To calculate the number of pages a brush face will have, take 2n where n is the number of named lights affecting the brush face.
Note.pngNote:To reduce the number of pages created, light from named light entities is direct and won't bounce between surfaces. This can look very crude!
Note.pngNote:Setting an animated appearance for the light counts as naming it.
Icon-Bug.pngBug:There is a bug in the Left 4 Dead Left 4 Dead engine that affect the use of named lights. A named light, even if totally still will be considered fully dynamic by the engine and pump up a large chunk of frames per second until it is turned off and on for the first time. The workaround is to set the light to start turned off and to turn it on on map spawn using a logic_auto entity for instance. This could also affect Left 4 Dead 2 Left 4 Dead 2, but this has not been proven.

See also