File size: 290 Bytes
d883ffe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #ifndef UNIVERSAL_DECAL_INPUT_INCLUDED
#define UNIVERSAL_DECAL_INPUT_INCLUDED
struct DecalSurfaceData
{
half4 baseColor;
half4 normalWS;
half3 emissive;
half metallic;
half occlusion;
half smoothness;
half MAOSAlpha;
};
#endif // UNIVERSAL_DECAL_INPUT_INCLUDED
|