Today's progress. A whole lot of stuff added, and some cleanup too.

Fixed the sizes and offsets of player models.
Adjusted weapon offsets to be more in line with the originals.
Implemented all armors and most of the usable items.
Add lights to some item pickups. This might get done to DT too.
Key display on both HUD types, along with some fixes.
ASMD has complete animations. Other weapons will follow.
This commit is contained in:
Marisa the Magician 2019-08-16 03:22:58 +02:00
commit 8da5167e59
39 changed files with 1488 additions and 371 deletions

9
shaders/glsl/ShockSm.fp Normal file
View file

@ -0,0 +1,9 @@
vec4 ProcessTexel()
{
vec3 base = getTexel(vTexCoord.st).rgb;
vec2 scroll = vTexCoord.st*.5+vec2(.2,.5)*timer;
float smk = texture(smoketex,scroll).x;
scroll = vTexCoord.st*.9+vec2(-.2,.4)*timer;
smk *= texture(smoketex,scroll).x;
return vec4(base*smk,1.);
}