NormalMapShader.d.ts 230 B

1234567891011121314
  1. import {
  2. Uniform
  3. } from '../../../src/Three';
  4. export const NormalMapShader: {
  5. uniforms: {
  6. heightMap: Uniform;
  7. resolution: Uniform;
  8. scale: Uniform;
  9. height: Uniform;
  10. };
  11. vertexShader: string;
  12. fragmentShader: string;
  13. };