ParallaxShader.d.ts 372 B

12345678910111213141516171819202122
  1. import {
  2. Uniform
  3. } from '../../../src/Three';
  4. export const ParallaxShader: {
  5. modes: {
  6. none: string;
  7. basic: string;
  8. steep: string;
  9. occlusion: string;
  10. relief: string;
  11. };
  12. uniforms: {
  13. bumpMap: Uniform;
  14. map: Uniform;
  15. parallaxScale: Uniform;
  16. parallaxMinLayers: Uniform;
  17. parallaxMaxLayers: Uniform;
  18. };
  19. vertexShader: string;
  20. fragmentShader: string;
  21. };