UNPKG

@types/three

Version:
13 lines (10 loc) 362 B
import { Node } from "three/webgpu"; export interface RadialBlurOptions { center?: Node | undefined; weight?: Node | undefined; decay?: Node | undefined; count?: Node | undefined; exposure?: Node | undefined; premultipliedAlpha?: boolean | undefined; } export const radialBlur: (textureNode: Node, options?: RadialBlurOptions) => Node;