yum-archive/2ner

A toon shader for Unity's BIRP.

git clone https://git.yummers.dev/yum-archive/2ner

yumAdd anisotropic reflectionsd0c27e8

master
285 B19 linesraw
1#ifndef __DATA_INC
2#define __DATA_INC
3
4struct YumPbr {
5  float4 albedo;
6  float3 normal;
7  float3 emission;
8  float smoothness;
9  float roughness;
10  float roughness_perceptual;
11  float metallic;
12  float ao;
13#if defined(_ANISOTROPY)
14  float3 binormal;
15#endif
16};
17
18#endif  // __DATA_INC
19