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.
19 lines
375 B
19 lines
375 B
#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
|
|
|