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

$basetexture: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (No, Transform Parameters don't mess with Lightmaps)
Line 25: Line 25:


= <code>$basetexture2</code> =
= <code>$basetexture2</code> =
Some shaders (most notably {{Code|[[WorldVertexTransition]]}}) allow the use of two albedos. The second texture is handled by a mirrored set of commands with '2' in their name:
Some shaders (most notably {{Code|[[WorldVertexTransition]]}}) allow the use of two diffuse textures. The second texture is handled by a mirrored set of commands with '2' in their name:


{{MatParam|$basetexture2|texture}}
{{MatParam|$basetexture2|texture}}

Revision as of 20:50, 16 March 2025

English (en)Español (es)Русский (ru)Translate (Translate)

$basetexture is a material shader parameter available in all Source Source games. It typically defines a diffuse texture. It is very rare for a material not to use this parameter and some shaders will load a default texture if it stays undefined.

VMT Syntax

$basetexture	<texture without extension, relative to <game>/materials/>
LightmappedGeneric
{
	$basetexture	"brick/brickwall031b"
}

Additional Parameters

$basetexturetransform

$frame

$basetexture2

Some shaders (most notably WorldVertexTransition) allow the use of two diffuse textures. The second texture is handled by a mirrored set of commands with '2' in their name:

$basetexture2

$basetexturetransform2

$frame2

There are further '2' commands applying to various shader effects, which are each documented in their respective articles.

See also