Newer
Older
HuangJiPC / public / static / three / examples / jsm / nodes / postprocessing / NodePass.d.ts
@zhangdeliang zhangdeliang on 21 Jun 405 bytes update
import { NodeMaterial } from '../materials/NodeMaterial';
import { ShaderPass } from '../../postprocessing/ShaderPass';
import { ScreenNode } from '../inputs/ScreenNode';

export class NodePass extends ShaderPass {

	constructor();

	name: string;
	uuid: string;
	userData: object;
	input: ScreenNode;
	needsUpdate: boolean;

	copy( source: NodePass ): this;
	toJSON( meta?: object | string ): object;

}