$envmapmask: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (→‎Alternative methods: $normalmapalphaenvmapmask is probably the better option here)
(→‎Alternative methods: tip l4d2 specific $basealphaenvmapmask behaviour)
Line 38: Line 38:
{{MatParam|$basealphaenvmapmask|bool|Use the alpha channel of the {{code|$basetexture}} as the specular mask. {{note|Alpha channels embedded in {{code|$basetexture}} work in reverse. Transparent areas are reflective, opaque areas are matte. This is because, say, a window texture's alpha mask would be mostly black to allow for transparency -- yet that black part of the mask would also be the most reflective part. To avoid having to duplicate a texture file simply to invert the alpha mask, you can use this material parameter instead.}}
{{MatParam|$basealphaenvmapmask|bool|Use the alpha channel of the {{code|$basetexture}} as the specular mask. {{note|Alpha channels embedded in {{code|$basetexture}} work in reverse. Transparent areas are reflective, opaque areas are matte. This is because, say, a window texture's alpha mask would be mostly black to allow for transparency -- yet that black part of the mask would also be the most reflective part. To avoid having to duplicate a texture file simply to invert the alpha mask, you can use this material parameter instead.}}
: {{note|The alpha channel '''''isn't''''' inverted in the Source 2007 engine for models, but the alpha channel '''''is''''' inverted for brushes!}}}}
: {{note|The alpha channel '''''isn't''''' inverted in the Source 2007 engine for models, but the alpha channel '''''is''''' inverted for brushes!}}}}
: {{note|{{l4d2}} auto enables if '''$envmap''' is present. Opaque areas are reflective while transparent are matte. Set as [[bool|true]] to invert {{code|$basetexture}} alpha channel behaviour. This allow {{code|[[$bumpmap]]}} have a dedicated {{code|[[$phong]]}} mask, when material transparency is not needed.}}
: {{bug| In CSGO, this parameter breaks materials using $translucent, limiting its usefulness. Use {{code|$envmapmask}} instead.}}
: {{bug| In CSGO, this parameter breaks materials using $translucent, limiting its usefulness. Use {{code|$envmapmask}} instead.}}
: {{bug| It won't work in {{gmod}} and {{l4d2}} if {{code|[[$bumpmap]]}} is present. Use {{code|$normalmapalphaenvmapmask}} or {{code|$envmapmask}} as a workaround.}}
: {{bug| It won't work in {{gmod}} if {{code|[[$bumpmap]]}} is present. Use {{code|$normalmapalphaenvmapmask}} or {{code|$envmapmask}} as a workaround.}}
{{MatParam|$normalmapalphaenvmapmask|bool|Use the alpha channel of the {{code|$bumpmap}} or {{code|$normalmap}} as the specular mask.
{{MatParam|$normalmapalphaenvmapmask|bool|Use the alpha channel of the {{code|$bumpmap}} or {{code|$normalmap}} as the specular mask.
: {{note|Will not work if {{code|[[$phong|$basemapalphaphongmask]]}} or {{code|[[$phong|$basemapluminancephongmask]]}} are used.}}}}
: {{note|Will not work if {{code|[[$phong|$basemapalphaphongmask]]}} or {{code|[[$phong|$basemapluminancephongmask]]}} are used.}}}}

Revision as of 10:40, 17 December 2022

English (en)Français (fr)Русский (ru)中文 (zh)Translate (Translate)

Template:Shaderparam It defines a specular mask which affects how strongly each pixel of a material reflects light from the $envmap. The mask should be a grayscale image in which entirely reflective areas are white and entirely matte areas are black. For diffuse type specularity which does not rely on $envmap, see $phong.

Icon-Bug.pngBug:In Source 2007 games, using an $envmapmask which is not stored in a subfolder will cause the texture to fail loading in-game.  [todo tested in ?]
Warning.pngWarning:$envmapmask will not work with materials using $bumpmap. See #Alternative_methods.

VMT syntax example

$envmapmask <texture>
VertexLitGeneric
{
	$envmap			env_cubemap
	$envmapmask		"props/tvscreen_test"
}

Additional parameters

npc_cscanner's mask.

$envmapmasktransform $envmapmaskscale $envmapmaskframe

CS:GO WorldVertexTransition Parameters

$envmapmask2 $envmapmasktransform2 $envmapframe2

Alternative methods

Rather than creating a whole new texture for a specular mask, you can embed one into the alpha channel of the $basetexture or $bumpmap. Model materials with $bumpmap must do this. Unfortunately, it won't reduce memory usage.

If you do use these commands, transformations and other such parameters applied to $basetexture / $bumpmap will also apply to the specular mask.

$basealphaenvmapmask

Note.pngNote:Left 4 Dead 2 auto enables if $envmap is present. Opaque areas are reflective while transparent are matte. Set as true to invert $basetexture alpha channel behaviour. This allow $bumpmap have a dedicated $phong mask, when material transparency is not needed.
Icon-Bug.pngBug: In CSGO, this parameter breaks materials using $translucent, limiting its usefulness. Use $envmapmask instead.  [todo tested in ?]
Icon-Bug.pngBug: It won't work in Garry's Mod if $bumpmap is present. Use $normalmapalphaenvmapmask or $envmapmask as a workaround.  [todo tested in ?]

$normalmapalphaenvmapmask $selfillum_envmapmask_alpha $envmapmaskintintmasktexture

Merging Specular Level into Normal Alpha in 3ds Max

To merge a Specular Level map into the Normal Map alpha, you can create a Composite Map node with the normal map in Layer 1 and the specular map in Mask 1. Then right-click the composite map, click Render Map and save this new image to file (remembering to keep the Gamma at 1.0 and using 32 bits per pixel in the save options).

These steps are automated in the Alpha Spec tool in Wall Worm 2.72+.

See Also