VRAD: Difference between revisions
Adrianilloo (talk | contribs) No edit summary |
m (Added new VRAD commands discovered by P2CE devs.) |
||
Line 84: | Line 84: | ||
{{IO|-realskylightscale|param=float|Scale factor of -realskylight intensity. Default: 1.0|only=BMS}} | {{IO|-realskylightscale|param=float|Scale factor of -realskylight intensity. Default: 1.0|only=BMS}} | ||
{{IO|-directsunlightisforadditivemode|Toggles direct sunlight for additive mode.|only=BMS}} | {{IO|-directsunlightisforadditivemode|Toggles direct sunlight for additive mode.|only=BMS}} | ||
{{IO|-ambient|param=vector|Sets the ambient term. Can be used to tweak lightmap color.|only=CSGO}} | |||
{{IO|-LeafAmbientSampleReduction|param=float|Reduction factor for ambien samples. Defaults to 1.0.|only=CSGO}} | |||
}} | }} | ||
Line 105: | Line 107: | ||
: slow: 16 (high quality); default: 4 (normal); fast: 0.25 (low quality) | : slow: 16 (high quality); default: 4 (normal); fast: 0.25 (low quality) | ||
: {{note|-final is the equivalent of having -StaticPropSampleScale 16.}}|only=CSGO}} | : {{note|-final is the equivalent of having -StaticPropSampleScale 16.}}|only=CSGO}} | ||
{{IO|-disppatchradius|param=float|Sets the maximum radius allowed for displacement patches.}} | |||
{{IO|-ambientfromleafcenters|Samples ambient lighting from the center of the leaf.|only=CSGO}} | |||
}} | }} | ||
Line 133: | Line 137: | ||
{{IO|-nossprops|Globally disable self-shadowing on static props.}} | {{IO|-nossprops|Globally disable self-shadowing on static props.}} | ||
{{IO|-dumppropmaps|Dump computed prop lightmaps.|only=2013MP}} | {{IO|-dumppropmaps|Dump computed prop lightmaps.|only=2013MP}} | ||
{{IO|-unlitdetail|Disables lighting for detail props.|only=CSGO}} | |||
}} | }} | ||
Revision as of 05:37, 8 July 2021
VRAD is the command-line tool that takes a compiled BSP map and embeds lighting data into it. VRAD's static and pre-compiled light is bounced around the world with a radiosity algorithm.
VRAD will:
- Generate lightmaps
- Generate ambient samples
- Generate per-object or per-vertex prop_static and detail prop lighting
VRAD is generally the slowest of the three compilers due to the many, many calculations it must perform. Lighting optimization can help, as can ensuring your map is free of leaks.

9...
this is usually because VRAD takes longer with each light bounce calculation.


.mdl
files that don't have .dx80.vtx
files with them will lead to VRAD skipping lighting for that prop. Copying the .dx90.vtx
file and renaming it to a .dx80.vtx
will fix the issue. [todo tested in ?]A windows batch file to do this automatically has been created here: [1] (place above model folder and run .bat)

.mdl
files that have the IDST1
header will fail to load for VBSP, and will give a error message stating the prop failed to load; this can be fixed by changing the header to IDST0
in a Hex Editor, or by recompiling the prop in a non-L4D branch Studiomdl application such as Source 2013. [todo tested in ?]

Tip:Source Engine BSP Lightmap Editor can be used to manually correct a .bsp lightmap data.
Syntax
vrad [options...] <bsp file>
For example:
"Half-Life 2\bin\vrad.exe" -both -StaticPropLighting sdk_trainstation_01
This will generate and embed both standard and High Dynamic Range lighting data, at per-vertex detail for prop_static entities.
Options
Use these in combination with expert compile mode or a batch file.
Effects
- -ldr
- -hdr
- -both
- Whether to compile standard or High Dynamic Range lighting, or both.
- -fast
- Quick and dirty lighting. Don't ship with this.
Note:
-fast
will cause random and miscolored splotching to appear in darker areas.
- -final
- Increases the quality of light_environment and indirect lighting by spending more time firing rays.
Sets
-StaticPropSampleScale
to 16.
- -extrasky <integer >
- Trace N times as many rays for indirect light and sky ambient. (
-final
is equivalent to-extrasky 16
; normal is equivalent to-extrasky 1
)
- -lights <filename>.rad
- Load a custom lights file in addition to
lights.rad
and the map-specific lights file. Include the file extension in the parameter.
- -bounce <integer >
- Set the maximum number of light ray bounces. (default: 100).
- -smooth <integer >
- Set the threshold for smoothing groups, in degrees (default: 45).
- -luxeldensity <normal>
- Scale down all luxels. Default (and maximum) value is 1.
- -reflectivityScale <float >
- Scale the $reflectivity of all textures. Default 1.0
- -softsun <float >
- Treat the sun as an area light source of this many degrees. Produces soft shadows. Recommended values are 0-5, default is 0. Identical to the SunSpreadAngle parameter for
light_environment
, use that instead.
- -StaticPropLighting (in all games since
)
- Generate per-vertex lighting on prop_statics; always enabled for light_spot entities. Disables info_lighting entities on props without bump maps. Does not work on props with bump maps, except in
.
Warning:This can increase your map's filesize substantially. Disable vertex lighting for props that don't need it to keep filesize low.
- -StaticPropPolys (in all games since
)
- Use the actual meshes of static props to generate shadows instead of using their collision meshes. This results in far more accurate shadowing.
- -TextureShadows (in all games since
)
- Generates lightmap shadows from $translucent surfaces of models (NOT brushes) that are specified in a lights file and being used with
prop_static
. Usually requires-StaticPropPolys
to have any effect. Note:A surface will need a low lightmap scale for most texture shadows to be recognisable.
Note:For some strange reason this will not work if a translucent texture's VMT file contains the .vtf file ending in the basetexture lines.
- -aoscale <float > (in all games since
)
- Scales the intensity of VRAD's simulated ambient occlusion. 1.0 is default.
Tip:Valve uses 1.5 for the new Dust 2.
- -aoradius <float > (only in
)
- Set the radius of VRAD's simulated ambient occlusion. Todo: Figure out what exactly this does.
- -aosamples <integer > (only in
)
- How many samples to use for VRAD's simulated ambient occlusion.
- -StaticPropBounce <integer > (only in
)
- Number of static prop light bounces to simulate. The default is 0.
Tip:Valve uses 3 static prop bounces for the new Dust 2.
Note:Any static props that you want light to bounce off of must also have their "Enable Bounced Lighting" keyvalue set.
- -StaticPropLightingOld (only in
)
- Will use the old lighting algorithm on props, light affects them much more.
- -choptexlights (only in
)
- Enables chopping of texture lights generated from a lights file. Control texture light quality with lightmap density in Hammer. Dramatically increases both texture light quality and compile time.
- -transferscale <float > (only in
)
- This is the scale factor of light transfers. Increased values make surfaces transfer extra light (scale of 2-4 suggested). Default 1.0.
- -satthresh <float > (only in
)
- This is the threshold that checks how saturated a material color is. Used with
-satthreshscale
. Default 0.4.
- -satthreshscale <float > (only in
)
- The amount to scale light transfers from surfaces that pass the saturation threshold. Default 3.0.
- -cascadeshadows (only in
)
- indicates that lightmap alpha data is interleved in the lighting lump, required for CSM.
- -realskylight (only in
)
- Enables VRAD to compute skylight ambient color by using actual values from skybox.
- -realskylightscale <float > (only in
)
- Scale factor of -realskylight intensity. Default: 1.0
- -ambient <vector > (only in
)
- Sets the ambient term. Can be used to tweak lightmap color.
- -LeafAmbientSampleReduction <float > (only in
)
- Reduction factor for ambien samples. Defaults to 1.0.
Performance
- -low
- Run as a low-priority process.
- -threads <integer >
- Override the number of CPU threads used. Maximum is 16 threads. With a patched vrad_dll you can use 32 threads.
- -mpi
- Use VMPI to distribute computations.
- -mpi_pw <string >
- Use a password to choose a specific set of VMPI workers.
- -noextra
- Disable supersampling. This will lead to blockier, more inaccurate lighting.
- -maxchop <integer >
- Coarsest allowed number of luxel widths for a patch, used in face interiors. (Default: 4)
- -LargeDispSampleRadius
- This can be used if there are splotches of bounced light on terrain. The compile will take longer, but it will gather light across a wider area.
- -compressconstant <integer >
- Compress lightmaps whose color variation is less than this many units. Todo: Find out if this is branch specific, as it doesn't work with TF2.
- -fastambient
- Uses low quality per-leaf ambient sampling to save compute time.
- -LeafAmbientSampleReduction <float >
[Todo] Used on dz_sirocco.
- -StaticPropSampleScale <float > (only in
)
- Regulates the generated per-vertex prop_static lighting.
- slow: 16 (high quality); default: 4 (normal); fast: 0.25 (low quality)
Note:-final is the equivalent of having -StaticPropSampleScale 16.
- -disppatchradius <float >
- Sets the maximum radius allowed for displacement patches.
Debugging
- -rederrors
- Emit red light when "a luxel has no samples".
- -vproject <directory>
- -game <directory>
- Override the VPROJECT environment variable.
- -insert_search_path <directory>
- Includes an extra base directory for mounting additional content (like Gameinfo.txt entries). Useful if you want to separate some assets from the mod for whatever reason.
- -v
- -verbose
- Turn on verbose output.
- -novconfig
- Don't bring up graphical UI on vproject errors.
- -dump
- Dump patches to debug files.
- -dumpnormals
- Write normals to debug .txt files.
- -debugextra
- Places debugging data in lightmaps to visualize supersampling.
- -dlightmap
- Force direct lighting into different lightmap than radiosity.
- -stoponexit
- Wait for a keypress on exit.
- -nodetaillight
- Don't light detail props.
- -centersamples
- Move sample centers.
- -loghash
- Log the sample hash table to samplehash.txt.
- -onlydetail
- Only light detail props and per-leaf lighting.
- -maxdispsamplesize <integer >
- Set max displacement sample size (default: 512).
- -FullMinidump
- Write large minidumps on crash.
- -OnlyStaticProps
- Only perform direct static prop lighting.
- -StaticPropNormals
- When lighting static props, just show their normal vector.
- -noskyboxrecurse
- Turn off recursion into 3d skybox (skybox shadows on world).
- -nossprops
- Globally disable self-shadowing on static props.
Lights files
A light file is a plain text file that can be used to manipulate the way VRAD handles given materials when compiling static lighting. All lights files must have the .rad file extension and must be in the same folder as your gameinfo.txt.
There are:
lights.rad
, the global file.- An auto-loaded map light file, using the format
<map name>.rad
. The file must be placed in the same folder as<map name>.vmf
. - Any number of additional lights files that can be added with the
-lights
parameter.
Rules
Lights files perform these functions, one rule per line:
<material> <red> <green> <blue> <intensity> <hdr_red> <hdr_green> <hdr_blue> <hdr_intensity>
- Makes the material emit the given light value when applied to a brush face (
hdr_
values are optional). Texture scale has an effect on final intensity. Note:The material does not truly emit light, but instead, a light entity is generated across the surface. More technically, lights are placed at the center of every subdivision on the surface. The brightness of each light is distributed uniformly, by taking the area of each subdivision. Lower lightmap scales will increase subdivision and therefore more lights will be created. This will not occur on textures that are unlit, as no subdivision occurs on these textures. Leaf splits will still incur subdivision however, which might make the light creation unpredictable (using a func_detail will avoid this). It may be smarter and cheaper to instead manually place
light
entities near the material.Note:Materials that aren't in a folder must have a slash before their name.

noshadow <material name>
- Prevents the named material from casting shadows.
forcetextureshadow <model path>.mdl
- Enables translucency shadow testing for a model when VRAD is run with
-TextureShadows
. Path is relative to the models folder. ldr:
hdr:
- Prefixes to make any rule only apply to LDR or HDR lighting.
hdr:ldr:
- Lines beginning with both tags (in that order) will always be ignored by VRAD. Can be used to add comments or quickly disable some entries.
Console Output
See also
|