WaterRefractionShader.d.ts 254 B

123456789101112131415
  1. import {
  2. Uniform
  3. } from '../../../src/Three';
  4. export const WaterRefractionShader: {
  5. uniforms: {
  6. color: Uniform;
  7. time: Uniform;
  8. tDiffuse: Uniform;
  9. tDudv: Uniform;
  10. textureMatrix: Uniform;
  11. };
  12. vertexShader: string;
  13. fragmentShader: string;
  14. };