mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
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;
|
|
|
|
}
|