bumpVertexDeclaration.js 481 B

1234567891011121314
  1. // Do not edit.
  2. import { ShaderStore } from "../../Engines/shaderStore.js";
  3. const name = "bumpVertexDeclaration";
  4. const shader = `#if defined(BUMP) || defined(PARALLAX) || defined(CLEARCOAT_BUMP) || defined(ANISOTROPIC)
  5. #if defined(TANGENT) && defined(NORMAL)
  6. varying mat3 vTBN;
  7. #endif
  8. #endif
  9. `;
  10. // Sideeffect
  11. ShaderStore.IncludesShadersStore[name] = shader;
  12. /** @internal */
  13. export const bumpVertexDeclaration = { name, shader };
  14. //# sourceMappingURL=bumpVertexDeclaration.js.map