mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-06 03:50:04 +02:00
This commit is contained in:
parent
f0f62670c5
commit
7e26256cac
4563 changed files with 1246712 additions and 17558 deletions
33
node_modules/three/examples/jsm/nodes/effects/BlurNode.d.ts
generated
vendored
Normal file
33
node_modules/three/examples/jsm/nodes/effects/BlurNode.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
import { Vector2 } from '../../../../src/Three';
|
||||
|
||||
import { TempNode } from '../core/TempNode';
|
||||
import { NodeFrame } from '../core/NodeFrame';
|
||||
import { UVNode } from '../accessors/UVNode';
|
||||
import { Vector2Node } from '../inputs/Vector2Node';
|
||||
import { FloatNode } from '../inputs/FloatNode';
|
||||
import { FunctionNode } from '../core/FunctionNode';
|
||||
import { TextureNode } from '../inputs/TextureNode';
|
||||
|
||||
export class BlurNode extends TempNode {
|
||||
|
||||
constructor( value: TextureNode, uv?: UVNode, radius?: number, size?: Vector2 );
|
||||
|
||||
value: TextureNode;
|
||||
uv: UVNode;
|
||||
radius: Vector2Node;
|
||||
size: Vector2;
|
||||
blurX: boolean;
|
||||
blurY: boolean;
|
||||
horizontal: FloatNode;
|
||||
vertical: FloatNode;
|
||||
nodeType: string;
|
||||
|
||||
updateFrame( frame: NodeFrame ): void;
|
||||
copy( source: BlurNode ): this;
|
||||
|
||||
static Nodes: {
|
||||
blurX: FunctionNode;
|
||||
blurY: FunctionNode;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue