mirror of
https://github.com/muskit/H3VR-TNH-Quality-of-Life-Improvements.git
synced 2026-06-03 04:34:26 -07:00
33 lines
808 B
HLSL
33 lines
808 B
HLSL
|
|
// Alloy Physical Shader Framework
|
||
|
|
// Copyright 2013-2017 RUST LLC.
|
||
|
|
// http://www.alloy.rustltd.com/
|
||
|
|
|
||
|
|
/////////////////////////////////////////////////////////////////////////////////
|
||
|
|
/// @file Skin.cginc
|
||
|
|
/// @brief Skin surface shader definition.
|
||
|
|
/////////////////////////////////////////////////////////////////////////////////
|
||
|
|
|
||
|
|
#ifndef ALLOY_SHADERS_DEFINITION_SKIN_CGINC
|
||
|
|
#define ALLOY_SHADERS_DEFINITION_SKIN_CGINC
|
||
|
|
|
||
|
|
#define A_SKIN_TEXTURES_ON
|
||
|
|
|
||
|
|
#include "Assets/Alloy/Shaders/Lighting/Standard.cginc"
|
||
|
|
#include "Assets/Alloy/Shaders/Type/Standard.cginc"
|
||
|
|
|
||
|
|
void aSurfaceShader(
|
||
|
|
inout ASurface s)
|
||
|
|
{
|
||
|
|
aParallax(s);
|
||
|
|
aDissolve(s);
|
||
|
|
aSkinTextures(s);
|
||
|
|
aDetail(s);
|
||
|
|
aTeamColor(s);
|
||
|
|
aDecal(s);
|
||
|
|
aWetness(s);
|
||
|
|
aRim(s);
|
||
|
|
aEmission(s);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif // ALLOY_SHADERS_DEFINITION_SKIN_CGINC
|