Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+22
View File
@@ -0,0 +1,22 @@
import { BufferGeometry, Color, Mesh, ShaderMaterial, Side, Texture, Vector3 } from 'three'
export interface WaterOptions {
textureWidth?: number
textureHeight?: number
clipBias?: number
alpha?: number
time?: number
waterNormals?: Texture
sunDirection?: Vector3
sunColor?: Color | string | number
waterColor?: Color | string | number
eye?: Vector3
distortionScale?: number
side?: Side
fog?: boolean
}
export class Water extends Mesh {
material: ShaderMaterial
constructor(geometry: BufferGeometry, options: WaterOptions)
}