You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
375 B
20 lines
375 B
2 years ago
|
#ifndef UNIVERSAL_SURFACE_DATA_INCLUDED
|
||
|
#define UNIVERSAL_SURFACE_DATA_INCLUDED
|
||
|
|
||
|
// Must match Universal ShaderGraph master node
|
||
|
struct SurfaceData
|
||
|
{
|
||
|
half3 albedo;
|
||
|
half3 specular;
|
||
|
half metallic;
|
||
|
half smoothness;
|
||
|
half3 normalTS;
|
||
|
half3 emission;
|
||
|
half occlusion;
|
||
|
half alpha;
|
||
|
half clearCoatMask;
|
||
|
half clearCoatSmoothness;
|
||
|
};
|
||
|
|
||
|
#endif
|