clearcoat_normal_fragment_begin.glsl.js 218 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
export default /* glsl */ `

#ifndef STANDARD

vec3 clearCoatNormal = clearCoatGeometryNormals ?
  geometryNormal: // use the unperturbed normal of the geometry
  normal; // Use the (maybe) perturbed normal

#endif
`;