@types/three
Version:
TypeScript definitions for three
16 lines (10 loc) • 407 B
TypeScript
import { Node, TempNode, TextureNode } from "three/webgpu";
export default class AfterImageNode extends TempNode {
textureNode: TextureNode;
textureNodeOld: Node;
damp: Node;
constructor(textureNode: Node, damp?: Node);
getTextureNode(): TextureNode;
setSize(width: number, height: number): void;
}
export const afterImage: (node: Node, damp?: Node | number) => AfterImageNode;