Template:KV BmNewLightCookieSpot: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 38: Line 38:
*0: Disabled
*0: Disabled
*1: Enabled}}
*1: Enabled}}
{{KV|ScrollSpeedU|intn=fScrollSpeedU|float|Scrolling speed along Y axis.
{{KV|ScrollSpeedU|intn=fScrollSpeedU|float|Scrolling speed along Y axis.}}
{{expand|title=Examples|
{{KV|ScrollSpeedV|intn=fScrollSpeedV|float|Scrolling speed along X axis.}}
<gallery mode=packed heights=500px>
File:ScrollSpeedU2.gif| thumb | left | 510px | ScrollSpeedU - 2
File:ScrollSpeedU-1.gif| thumb | left | 510px | ScrollSpeedU - -1
</gallery>
}}
}}
{{KV|ScrollSpeedV|intn=fScrollSpeedV|float|Scrolling speed along X axis.
{{expand|title=Examples|
<gallery mode=packed heights=500px>
File:ScrollSpeedV-1.gif| thumb | left | 510px | ScrollSpeedV - -1
File:ScrollSpeedV2.gif| thumb | left | 510px | ScrollSpeedV - 2
</gallery>
}}
}}

Revision as of 06:17, 23 February 2025


ShadowFOV (ShadowFOV) <float>
Fov used by shadowmap camera for this light. Keep it 0 to use Outer angle as the fov.
Icon-Bug.pngBug:If value lower than OuterAngle value, the lights will have visual issues.
Example


Enable Texture Light (bTexLight) <choices>
Sets lightcookie (texture lights) state, enabled or disabled.
  • 0: Disabled
  • 1: Enabled
Examples
Warning.pngWarning:This is one of the most expensive features, use wisely.
Texture name for TexLight (texName) <string>
Determines which texture will use the light source. Lightcookies are using .vtf (not .vmt) texture from files (just like env_projectedtexture).
.Enable Prop Only Mode (bNegLight) <choices> Obsolete
Deprecated.
Sets prop only mode, which supposed to disable shadows for world geometry. Doesn't work. The same effect can be achieved with shadow pass settings.
  • 0: Disabled
  • 1: Enabled
TexCookieFramesX (TexCookieFramesX) <integer>
Number of frames in 1 row of atlas.
Note.pngNote:If value lower than 1 - you'll get message in the developer console:

TexCookieFramesX for LightSpot - class C_NewLightSpot CookieName - TEXTURENAME.vtf is 0. Are you sure this light is using texcookie? If yes then set this property to at least 1.

TexCookieFramesY (TexCookieFramesY) <integer>
Number of frames in 1 column of atlas. Also sets scale for texture, with 2 and higher it allows TexCookieFps to animate texture.
Note.pngNote:If value lower than 1 - you'll get message in the developer console:

TexCookieFramesY for LightSpot - class C_NewLightSpot CookieName - TEXTURENAME.vtf is 0. Are you sure this light is using texcookie? If yes then set this property to at least 1.

Examples
TexCookieFps (TexCookieFps) <float>
Frame rate for animation. This entity divides texture into several parts (their count is indicated in TexCookieFramesY) and changes them in a specific sequence.
Tex Cookie Scroll Mode (bTexCookieScrollMode) <choices>
Sets texture scrolling function state, enabled or disabled. ScrollSpeedU and ScrollSpeedV sets scrolling speed and direction.
  • 0: Disabled
  • 1: Enabled
ScrollSpeedU (fScrollSpeedU) <float>
Scrolling speed along Y axis.
ScrollSpeedV (fScrollSpeedV) <float>
Scrolling speed along X axis.