@types/three
Version:
TypeScript definitions for three
13 lines (10 loc) • 362 B
TypeScript
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;