Added shaders and doomscript from the build.

This commit is contained in:
Justin Marshall
2026-08-09 04:23:10 -07:00
parent 82cfb1972d
commit 1d0c9d6657
734 changed files with 19587 additions and 0 deletions
@@ -0,0 +1,27 @@
{
parms {
stageSort sortTrans
}
state {
blend GL_ONE GL_ONE
depthmask
depthfunc GL_LEQUAL
}
hlsl_vp {
#define VP_SINGLETEXCOORD
#include "particle_vp.inc"
result.color = vertColor * $exposure * fade * $color;
}
hlsl_fp {
float2 tc = screenPosToTexcoord( fragment.position.xy, $positionToViewTexture );
float noiseMap = tex2D( $transmap2, ( tc * $sMatrix.xy) + $tMatrix.xy ).x;
float2 rampCoords = tex2D( $transMap, fragment.texcoord0.xy ).xy;
float3 finalColor = tex2D( $transMap1, rampCoords * saturate( noiseMap * 0.98 + 0.03 ) ).xyz;
result.color.xyz = finalColor * fragment.color.xyz;
result.color.w = 1.0;
}
}