LFM2.5-1.2B-Thinking-WebGPU / src /utils /liquid1.min.d.ts
Xenova's picture
Xenova HF Staff
Upload 30 files
19431b6 verified
raw
history blame
379 Bytes
interface LiquidApp {
liquidPlane: {
material: {
metalness: number;
roughness: number;
};
uniforms: {
displacementScale: { value: number };
};
};
loadImage(url: string): void;
setRain(enabled: boolean): void;
dispose(): void;
}
declare function LiquidBackground(canvas: HTMLCanvasElement): LiquidApp;
export default LiquidBackground;