UNPKG

@types/three

Version:
16 lines (10 loc) 407 B
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;