- Changeable player skins. - Ammo LEDs are now 1:1 with UT by using canvas textures. - Integrate some add-ons, including reskins. - Various fixes (some backported from Demolitionist). - Migrated from libeye to Gutamatics.
6 lines
175 B
GLSL
6 lines
175 B
GLSL
void SetupMaterial( inout Material mat )
|
|
{
|
|
mat.Base = texture(scrtex,vec2(vTexCoord.s,1.-vTexCoord.t));
|
|
mat.Normal = ApplyNormalMap(vTexCoord.st);
|
|
mat.Bright = vec4(1.);
|
|
}
|