This article's documentation is for anything that uses the Source engine. Click here for more information.

$lod

From Valve Developer Community
Jump to: navigation, search

This is a QC command available in all Source Source games.

English (en)
Edit

It is also available in Half-Life (PS2) Half-Life (PS2). It is a QC command describing how to reduce the level of detail when rendering the model at a given size. It handles the removal or replacement of expensive parts of the model so it can be rendered more efficiently. There can be up to 8 levels.

Tip.pngTip:Studiomdl will transfer weightmapping and flexes from the reference mesh.

Limitations

Warning.pngWarning:New materials cannot be introduced in an LOD SMD. All mesh using newly introduced materials will not be compiled into the model and simply disappear.
Note.pngFix:Use replacematerial instead.
Warning.pngWarning:Counter-Strike: Global Offensive Counter-Strike: Global Offensive does not support level of detail. $lod will be ignored, but the model will still work. Try to avoid using this command in Counter-Strike: Global Offensive.
Confirm.pngConfirm: Was this broken in an update, or did LODs not work in the 2012 build (available as public beta)?
Warning.pngWarning:Edges that end up split or merged in a LOD, while it has not been like that in the original mesh, will cause the edge to disappear in the LOD.
In other words, Adding sharp edges to fix a smoothing issue on a LOD will cause that edge to not show up.
Confirm.pngConfirm: This doesn't always seem to be the case.
Warning.pngWarning:Each LOD will have its own model, even if it does not use $replacemodel. Those models add to the total polycount. If your model has very high polycount and you add a LOD just to collapse bones, it will double the overall polycount.
Therefore it might be best to either not have any LOD at all, or using a highly decimated version of the model.

Syntax

$lod <threshold>
{
	<options>
}

$shadowlod // Used to generate cheap render-to-texture shadows (not shadow maps)
{
	<options>
}
threshold
Defines when the LOD takes effect. Its value is (100 / screen pixels per unit) [1], which means that distance at which the transition happens depends on the size of the user's monitor and their FOV, not simply the model's distance from the camera. Someone with a truly massive screen may never see an LOD!
The threshold formula makes it difficult to determine what values to use, however. The best way of working things out is to load your model into HLMV, switch to the Model tab, enable Auto LOD, and use RMB to zoom in and out.
Note.pngNote:Floating point values can be used if wrapped in quotes. i.e. $lod "10.5"

Options

Note.pngNote:LOD blocks do not inherit from previous blocks. They always modify the reference mesh.
replacemodel <Reference smd> <LOD smd> [reverse]
Replaces the given reference SMD (can by anything from $body, $bodygroup or $model) with an LOD version.
Reverse is used to correct reversed normals on the LOD, which can be caused by SMD export problems.
Icon-Bug.pngBug:LOD meshes for Bodygroups defined outside the .qc file (i.e. via $include file.qci) or inside of $pushd/$popd blocks will not be correctly assigned.
Contents of .qci files must be merged into the main .qc file to work. Any usage of $pushd or $popd must be replaced with full relative paths, using ..\ and forward-slashes to work.
removemodel <Reference smd>
The specified SMD will not be rendered at all at this level of detail.
Icon-Bug.pngBug:Causes compiles to fail with an EXCEPTION_ACCESS_VIOLATION error in studiomdl builds later than 2006.
Instead, use "replacemodel" to swap the specified model for one that is a single tiny triangle hidden inside the mesh. Invisible textures can be used hide it better, should the little triangle ever be seen.
PlacementTip.pngWorkaround: See $no_draw.
replacematerial <Reference material> <LOD material>
Replaces all instances of the reference material with another. Useful for removing expensive processes like $bumpmap and disabling the Eye shader. Paths are relative to $cdmaterials.
Icon-Bug.pngBug:If you use replacemodel to replace the mesh, and then set replacematerial's 2nd argument to one of the materials found in the LOD mesh, it will cause the entire mesh to be removed.
removemesh <Reference material>
Removes all triangles attached to the named material. Unlike in replacematerial, paths are relative to the root materials folder.
Icon-Bug.pngBug:If a material's VMT is not present in the game's folder, studiomdl sees a material named "__error" instead; the compiler does not detect VMTs from mounted GCFs/games.
nofacial
Disables facial animation.
bonetreecollapse <Reference bone>
Causes children of the specified bone to be removed. Their attached vertices return to the reference position. This is commonly used on fingers. Remember that it only applies to clients!
Note.pngNote:This don't affect the bones with their parents that have an attachment.
This means that if you collapse bonetree from ValveBiped.Bip01_R_UpperArm but ValveBiped.Bip01_R_Hand has an attachment, such bones as ValveBiped.Bip01_R_Hand and ValveBiped.Bip01_R_Forearm will not be deleted.
replacebone <Reference bone> <LOD bone>
The precursor of bonetreecollapse. Replacing bones is much more complex, but allows all kinds of unusual bone optimisations that a simple collapse wouldn't achieve.

Example

$lod 12
{
	replacemodel "Police_reference.smd" "lod1_Police_reference.smd"
	replacemodel "Manhack_reference.smd" "lod1_Manhack_reference.smd"
}

$lod 18
{
	replacemodel "Police_reference.smd" "lod2_Police_reference.smd"
	replacemodel "Manhack_reference.smd" "lod2_Manhack_reference.smd"
	bonetreecollapse "ValveBiped.Bip01_R_Hand"
	bonetreecollapse "ValveBiped.Bip01_L_Hand"
}

$lod 42
{
	replacemodel "Police_reference.smd" "lod3_Police_reference.smd"
	replacemodel "Manhack_reference.smd" "lod3_Manhack_reference.smd"
	bonetreecollapse "ValveBiped.Bip01_R_Hand"
	bonetreecollapse "ValveBiped.Bip01_L_Hand"
}

See also