@types/three 0.170.0 → 0.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- three/README.md +1 -1
- three/build/three.core.d.ts +1 -0
- three/build/three.core.min.d.ts +1 -0
- three/build/three.tsl.d.ts +1 -0
- three/build/three.tsl.min.d.ts +1 -0
- three/examples/jsm/controls/ArcballControls.d.ts +5 -0
- three/examples/jsm/controls/TransformControls.d.ts +1 -1
- three/examples/jsm/csm/CSMShadowNode.d.ts +1 -2
- three/examples/jsm/exporters/GLTFExporter.d.ts +23 -7
- three/examples/jsm/geometries/DecalGeometry.d.ts +1 -1
- three/examples/jsm/materials/LDrawConditionalLineNodeMaterial.d.ts +1 -1
- three/examples/jsm/objects/SkyMesh.d.ts +2 -2
- three/examples/jsm/objects/Water2Mesh.d.ts +13 -2
- three/examples/jsm/objects/WaterMesh.d.ts +11 -2
- three/examples/jsm/tsl/display/AfterImageNode.d.ts +2 -1
- three/examples/jsm/tsl/display/AnaglyphPassNode.d.ts +1 -1
- three/examples/jsm/tsl/display/AnamorphicNode.d.ts +2 -2
- three/examples/jsm/tsl/display/BleachBypass.d.ts +2 -1
- three/examples/jsm/tsl/display/BloomNode.d.ts +2 -1
- three/examples/jsm/tsl/display/DenoiseNode.d.ts +3 -4
- three/examples/jsm/tsl/display/DepthOfFieldNode.d.ts +2 -1
- three/examples/jsm/tsl/display/DotScreenNode.d.ts +2 -2
- three/examples/jsm/tsl/display/FXAANode.d.ts +2 -1
- three/examples/jsm/tsl/display/FilmNode.d.ts +2 -1
- three/examples/jsm/tsl/display/GTAONode.d.ts +5 -8
- three/examples/jsm/tsl/display/GaussianBlurNode.d.ts +2 -2
- three/examples/jsm/tsl/display/LensflareNode.d.ts +2 -2
- three/examples/jsm/tsl/display/Lut3DNode.d.ts +2 -2
- three/examples/jsm/tsl/display/MotionBlur.d.ts +2 -1
- three/examples/jsm/tsl/display/OutlineNode.d.ts +2 -2
- three/examples/jsm/tsl/display/ParallaxBarrierPassNode.d.ts +1 -1
- three/examples/jsm/tsl/display/PixelationPassNode.d.ts +2 -2
- three/examples/jsm/tsl/display/RGBShiftNode.d.ts +2 -1
- three/examples/jsm/tsl/display/SMAANode.d.ts +2 -1
- three/examples/jsm/tsl/display/SSAAPassNode.d.ts +2 -2
- three/examples/jsm/tsl/display/SSRNode.d.ts +2 -2
- three/examples/jsm/tsl/display/Sepia.d.ts +2 -1
- three/examples/jsm/tsl/display/SobelOperatorNode.d.ts +2 -1
- three/examples/jsm/tsl/display/StereoCompositePassNode.d.ts +1 -2
- three/examples/jsm/tsl/display/StereoPassNode.d.ts +2 -2
- three/examples/jsm/tsl/display/TRAAPassNode.d.ts +2 -2
- three/examples/jsm/tsl/display/TransitionNode.d.ts +2 -1
- three/examples/jsm/tsl/display/hashBlur.d.ts +2 -1
- three/examples/jsm/tsl/lighting/TiledLightsNode.d.ts +2 -1
- three/package.json +4 -4
- three/src/Three.Core.d.ts +158 -0
- three/src/Three.TSL.d.ts +528 -0
- three/src/Three.WebGPU.Nodes.d.ts +14 -195
- three/src/Three.WebGPU.d.ts +13 -195
- three/src/Three.d.ts +2 -158
- three/src/animation/AnimationClip.d.ts +3 -1
- three/src/core/Clock.d.ts +4 -6
- three/src/core/InterleavedBuffer.d.ts +12 -0
- three/src/materials/Material.d.ts +6 -4
- three/src/materials/nodes/LineDashedNodeMaterial.d.ts +3 -0
- three/src/materials/nodes/NodeMaterial.d.ts +4 -1
- three/src/nodes/Nodes.d.ts +1 -1
- three/src/nodes/TSL.d.ts +8 -2
- three/src/nodes/accessors/Arrays.d.ts +6 -0
- three/src/nodes/accessors/BuiltinNode.d.ts +14 -0
- three/src/nodes/accessors/ClippingNode.d.ts +6 -0
- three/src/nodes/accessors/InstanceNode.d.ts +15 -3
- three/src/nodes/accessors/InstancedMeshNode.d.ts +11 -0
- three/src/nodes/accessors/Lights.d.ts +15 -0
- three/src/nodes/accessors/StorageBufferNode.d.ts +20 -11
- three/src/nodes/accessors/StorageTextureNode.d.ts +5 -3
- three/src/nodes/core/IndexNode.d.ts +2 -0
- three/src/nodes/core/NodeUtils.d.ts +7 -0
- three/src/nodes/core/StackNode.d.ts +6 -1
- three/src/nodes/core/constants.d.ts +6 -0
- three/src/nodes/display/BlendModes.d.ts +32 -0
- three/src/nodes/display/ScreenNode.d.ts +5 -0
- three/src/nodes/display/ViewportDepthNode.d.ts +3 -1
- three/src/nodes/gpgpu/AtomicFunctionNode.d.ts +88 -0
- three/src/nodes/gpgpu/BarrierNode.d.ts +12 -0
- three/src/nodes/gpgpu/ComputeBuiltinNode.d.ts +13 -0
- three/src/nodes/gpgpu/WorkgroupInfoNode.d.ts +17 -0
- three/src/nodes/lighting/AnalyticLightNode.d.ts +11 -0
- three/src/nodes/lighting/LightsNode.d.ts +2 -2
- three/src/nodes/lighting/PointLightNode.d.ts +3 -0
- three/src/nodes/lighting/PointShadowNode.d.ts +30 -0
- three/src/nodes/lighting/ShadowNode.d.ts +26 -3
- three/src/nodes/math/OperatorNode.d.ts +3 -0
- three/src/nodes/tsl/TSLBase.d.ts +5 -0
- three/src/nodes/tsl/TSLCore.d.ts +3 -0
- three/src/nodes/utils/SplitNode.d.ts +1 -1
- three/src/objects/BatchedMesh.d.ts +4 -4
- three/src/objects/ClippingGroup.d.ts +41 -0
- three/src/renderers/WebGLRenderer.d.ts +2 -0
- three/src/renderers/common/Animation.d.ts +11 -4
- three/src/renderers/common/ClippingContext.d.ts +16 -14
- three/src/renderers/common/RenderList.d.ts +5 -0
- three/src/renderers/common/RenderObject.d.ts +8 -4
- three/src/renderers/common/RenderObjects.d.ts +3 -0
- three/src/renderers/common/Renderer.d.ts +14 -1
- three/src/renderers/common/UniformsGroup.d.ts +1 -0
- three/src/renderers/common/extras/PMREMGenerator.d.ts +15 -1
- three/src/renderers/common/nodes/NodeLibrary.d.ts +2 -4
- three/src/renderers/common/nodes/NodeUniform.d.ts +7 -0
- three/src/renderers/webgl/WebGLState.d.ts +1 -1
- three/src/textures/Data3DTexture.d.ts +4 -2
- three/src/textures/DataArrayTexture.d.ts +1 -1
- three/src/textures/DataTexture.d.ts +6 -1
- three/src/nodes/display/BlendMode.d.ts +0 -10
- three/src/nodes/lighting/LightNode.d.ts +0 -18
- three/src/textures/types.d.ts +0 -9
three/src/Three.TSL.d.ts
ADDED
|
@@ -0,0 +1,528 @@
|
|
|
1
|
+
import * as TSL from "./nodes/TSL.js";
|
|
2
|
+
|
|
3
|
+
export const BRDF_GGX: typeof TSL.BRDF_GGX;
|
|
4
|
+
export const BRDF_Lambert: typeof TSL.BRDF_Lambert;
|
|
5
|
+
export const BasicShadowFilter: typeof TSL.BasicShadowFilter;
|
|
6
|
+
export const Break: typeof TSL.Break;
|
|
7
|
+
export const Continue: typeof TSL.Continue;
|
|
8
|
+
export const DFGApprox: typeof TSL.DFGApprox;
|
|
9
|
+
export const D_GGX: typeof TSL.D_GGX;
|
|
10
|
+
export const Discard: typeof TSL.Discard;
|
|
11
|
+
export const EPSILON: typeof TSL.EPSILON;
|
|
12
|
+
export const F_Schlick: typeof TSL.F_Schlick;
|
|
13
|
+
export const Fn: typeof TSL.Fn;
|
|
14
|
+
export const INFINITY: typeof TSL.INFINITY;
|
|
15
|
+
export const If: typeof TSL.If;
|
|
16
|
+
export const Loop: typeof TSL.Loop;
|
|
17
|
+
export const NodeShaderStage: typeof TSL.NodeShaderStage;
|
|
18
|
+
export const NodeType: typeof TSL.NodeType;
|
|
19
|
+
export const NodeUpdateType: typeof TSL.NodeUpdateType;
|
|
20
|
+
export const NodeAccess: typeof TSL.NodeAccess;
|
|
21
|
+
export const PCFShadowFilter: typeof TSL.PCFShadowFilter;
|
|
22
|
+
export const PCFSoftShadowFilter: typeof TSL.PCFSoftShadowFilter;
|
|
23
|
+
export const PI: typeof TSL.PI;
|
|
24
|
+
export const PI2: typeof TSL.PI2;
|
|
25
|
+
export const Return: typeof TSL.Return;
|
|
26
|
+
export const Schlick_to_F0: typeof TSL.Schlick_to_F0;
|
|
27
|
+
export const ScriptableNodeResources: typeof TSL.ScriptableNodeResources;
|
|
28
|
+
export const ShaderNode: typeof TSL.ShaderNode;
|
|
29
|
+
export const TBNViewMatrix: typeof TSL.TBNViewMatrix;
|
|
30
|
+
export const VSMShadowFilter: typeof TSL.VSMShadowFilter;
|
|
31
|
+
export const V_GGX_SmithCorrelated: typeof TSL.V_GGX_SmithCorrelated;
|
|
32
|
+
export const abs: typeof TSL.abs;
|
|
33
|
+
export const acesFilmicToneMapping: typeof TSL.acesFilmicToneMapping;
|
|
34
|
+
export const acos: typeof TSL.acos;
|
|
35
|
+
export const add: typeof TSL.add;
|
|
36
|
+
export const addMethodChaining: typeof TSL.addMethodChaining;
|
|
37
|
+
export const addNodeElement: typeof TSL.addNodeElement;
|
|
38
|
+
export const agxToneMapping: typeof TSL.agxToneMapping;
|
|
39
|
+
export const all: typeof TSL.all;
|
|
40
|
+
export const alphaT: typeof TSL.alphaT;
|
|
41
|
+
export const and: typeof TSL.and;
|
|
42
|
+
export const anisotropy: typeof TSL.anisotropy;
|
|
43
|
+
export const anisotropyB: typeof TSL.anisotropyB;
|
|
44
|
+
export const anisotropyT: typeof TSL.anisotropyT;
|
|
45
|
+
export const any: typeof TSL.any;
|
|
46
|
+
export const append: typeof TSL.append;
|
|
47
|
+
export const arrayBuffer: typeof TSL.arrayBuffer;
|
|
48
|
+
export const asin: typeof TSL.asin;
|
|
49
|
+
export const assign: typeof TSL.assign;
|
|
50
|
+
export const atan: typeof TSL.atan;
|
|
51
|
+
export const atan2: typeof TSL.atan2;
|
|
52
|
+
export const atomicAdd: typeof TSL.atomicAdd;
|
|
53
|
+
export const atomicAnd: typeof TSL.atomicAnd;
|
|
54
|
+
export const atomicFunc: typeof TSL.atomicFunc;
|
|
55
|
+
export const atomicMax: typeof TSL.atomicMax;
|
|
56
|
+
export const atomicMin: typeof TSL.atomicMin;
|
|
57
|
+
export const atomicOr: typeof TSL.atomicOr;
|
|
58
|
+
export const atomicStore: typeof TSL.atomicStore;
|
|
59
|
+
export const atomicSub: typeof TSL.atomicSub;
|
|
60
|
+
export const atomicXor: typeof TSL.atomicXor;
|
|
61
|
+
export const attenuationColor: typeof TSL.attenuationColor;
|
|
62
|
+
export const attenuationDistance: typeof TSL.attenuationDistance;
|
|
63
|
+
export const attribute: typeof TSL.attribute;
|
|
64
|
+
export const attributeArray: typeof TSL.attributeArray;
|
|
65
|
+
export const backgroundBlurriness: typeof TSL.backgroundBlurriness;
|
|
66
|
+
export const backgroundIntensity: typeof TSL.backgroundIntensity;
|
|
67
|
+
export const backgroundRotation: typeof TSL.backgroundRotation;
|
|
68
|
+
export const batch: typeof TSL.batch;
|
|
69
|
+
export const billboarding: typeof TSL.billboarding;
|
|
70
|
+
export const bitAnd: typeof TSL.bitAnd;
|
|
71
|
+
export const bitNot: typeof TSL.bitNot;
|
|
72
|
+
export const bitOr: typeof TSL.bitOr;
|
|
73
|
+
export const bitXor: typeof TSL.bitXor;
|
|
74
|
+
export const bitangentGeometry: typeof TSL.bitangentGeometry;
|
|
75
|
+
export const bitangentLocal: typeof TSL.bitangentLocal;
|
|
76
|
+
export const bitangentView: typeof TSL.bitangentView;
|
|
77
|
+
export const bitangentWorld: typeof TSL.bitangentWorld;
|
|
78
|
+
export const bitcast: typeof TSL.bitcast;
|
|
79
|
+
export const blendBurn: typeof TSL.blendBurn;
|
|
80
|
+
export const blendColor: typeof TSL.blendColor;
|
|
81
|
+
export const blendDodge: typeof TSL.blendDodge;
|
|
82
|
+
export const blendOverlay: typeof TSL.blendOverlay;
|
|
83
|
+
export const blendScreen: typeof TSL.blendScreen;
|
|
84
|
+
export const blur: typeof TSL.blur;
|
|
85
|
+
export const bool: typeof TSL.bool;
|
|
86
|
+
export const buffer: typeof TSL.buffer;
|
|
87
|
+
export const bufferAttribute: typeof TSL.bufferAttribute;
|
|
88
|
+
export const bumpMap: typeof TSL.bumpMap;
|
|
89
|
+
export const burn: typeof TSL.burn;
|
|
90
|
+
export const bvec2: typeof TSL.bvec2;
|
|
91
|
+
export const bvec3: typeof TSL.bvec3;
|
|
92
|
+
export const bvec4: typeof TSL.bvec4;
|
|
93
|
+
export const bypass: typeof TSL.bypass;
|
|
94
|
+
export const cache: typeof TSL.cache;
|
|
95
|
+
export const call: typeof TSL.call;
|
|
96
|
+
export const cameraFar: typeof TSL.cameraFar;
|
|
97
|
+
export const cameraNear: typeof TSL.cameraNear;
|
|
98
|
+
export const cameraNormalMatrix: typeof TSL.cameraNormalMatrix;
|
|
99
|
+
export const cameraPosition: typeof TSL.cameraPosition;
|
|
100
|
+
export const cameraProjectionMatrix: typeof TSL.cameraProjectionMatrix;
|
|
101
|
+
export const cameraProjectionMatrixInverse: typeof TSL.cameraProjectionMatrixInverse;
|
|
102
|
+
export const cameraViewMatrix: typeof TSL.cameraViewMatrix;
|
|
103
|
+
export const cameraWorldMatrix: typeof TSL.cameraWorldMatrix;
|
|
104
|
+
export const cbrt: typeof TSL.cbrt;
|
|
105
|
+
export const cdl: typeof TSL.cdl;
|
|
106
|
+
export const ceil: typeof TSL.ceil;
|
|
107
|
+
export const checker: typeof TSL.checker;
|
|
108
|
+
export const cineonToneMapping: typeof TSL.cineonToneMapping;
|
|
109
|
+
export const clamp: typeof TSL.clamp;
|
|
110
|
+
export const clearcoat: typeof TSL.clearcoat;
|
|
111
|
+
export const clearcoatRoughness: typeof TSL.clearcoatRoughness;
|
|
112
|
+
export const code: typeof TSL.code;
|
|
113
|
+
export const color: typeof TSL.color;
|
|
114
|
+
export const colorSpaceToWorking: typeof TSL.colorSpaceToWorking;
|
|
115
|
+
export const colorToDirection: typeof TSL.colorToDirection;
|
|
116
|
+
export const compute: typeof TSL.compute;
|
|
117
|
+
export const cond: typeof TSL.cond;
|
|
118
|
+
export const context: typeof TSL.context;
|
|
119
|
+
export const convert: typeof TSL.convert;
|
|
120
|
+
export const convertColorSpace: typeof TSL.convertColorSpace;
|
|
121
|
+
export const convertToTexture: typeof TSL.convertToTexture;
|
|
122
|
+
export const cos: typeof TSL.cos;
|
|
123
|
+
export const cross: typeof TSL.cross;
|
|
124
|
+
export const cubeTexture: typeof TSL.cubeTexture;
|
|
125
|
+
export const dFdx: typeof TSL.dFdx;
|
|
126
|
+
export const dFdy: typeof TSL.dFdy;
|
|
127
|
+
export const dashSize: typeof TSL.dashSize;
|
|
128
|
+
export const defaultBuildStages: typeof TSL.defaultBuildStages;
|
|
129
|
+
export const defaultShaderStages: typeof TSL.defaultShaderStages;
|
|
130
|
+
export const defined: typeof TSL.defined;
|
|
131
|
+
export const degrees: typeof TSL.degrees;
|
|
132
|
+
export const deltaTime: typeof TSL.deltaTime;
|
|
133
|
+
export const densityFog: typeof TSL.densityFog;
|
|
134
|
+
export const depth: typeof TSL.depth;
|
|
135
|
+
export const depthPass: typeof TSL.depthPass;
|
|
136
|
+
export const difference: typeof TSL.difference;
|
|
137
|
+
export const diffuseColor: typeof TSL.diffuseColor;
|
|
138
|
+
export const directPointLight: typeof TSL.directPointLight;
|
|
139
|
+
export const directionToColor: typeof TSL.directionToColor;
|
|
140
|
+
export const dispersion: typeof TSL.dispersion;
|
|
141
|
+
export const distance: typeof TSL.distance;
|
|
142
|
+
export const div: typeof TSL.div;
|
|
143
|
+
export const dodge: typeof TSL.dodge;
|
|
144
|
+
export const dot: typeof TSL.dot;
|
|
145
|
+
export const drawIndex: typeof TSL.drawIndex;
|
|
146
|
+
export const dynamicBufferAttribute: typeof TSL.dynamicBufferAttribute;
|
|
147
|
+
export const element: typeof TSL.element;
|
|
148
|
+
export const emissive: typeof TSL.emissive;
|
|
149
|
+
export const equal: typeof TSL.equal;
|
|
150
|
+
export const equals: typeof TSL.equals;
|
|
151
|
+
export const equirectUV: typeof TSL.equirectUV;
|
|
152
|
+
export const exp: typeof TSL.exp;
|
|
153
|
+
export const exp2: typeof TSL.exp2;
|
|
154
|
+
export const expression: typeof TSL.expression;
|
|
155
|
+
export const faceDirection: typeof TSL.faceDirection;
|
|
156
|
+
export const faceForward: typeof TSL.faceForward;
|
|
157
|
+
export const float: typeof TSL.float;
|
|
158
|
+
export const floor: typeof TSL.floor;
|
|
159
|
+
export const fog: typeof TSL.fog;
|
|
160
|
+
export const fract: typeof TSL.fract;
|
|
161
|
+
export const frameGroup: typeof TSL.frameGroup;
|
|
162
|
+
export const frameId: typeof TSL.frameId;
|
|
163
|
+
export const frontFacing: typeof TSL.frontFacing;
|
|
164
|
+
export const fwidth: typeof TSL.fwidth;
|
|
165
|
+
export const gain: typeof TSL.gain;
|
|
166
|
+
export const gapSize: typeof TSL.gapSize;
|
|
167
|
+
export const getConstNodeType: typeof TSL.getConstNodeType;
|
|
168
|
+
export const getCurrentStack: typeof TSL.getCurrentStack;
|
|
169
|
+
export const getDirection: typeof TSL.getDirection;
|
|
170
|
+
export const getDistanceAttenuation: typeof TSL.getDistanceAttenuation;
|
|
171
|
+
export const getGeometryRoughness: typeof TSL.getGeometryRoughness;
|
|
172
|
+
export const getNormalFromDepth: typeof TSL.getNormalFromDepth;
|
|
173
|
+
export const getParallaxCorrectNormal: typeof TSL.getParallaxCorrectNormal;
|
|
174
|
+
export const getRoughness: typeof TSL.getRoughness;
|
|
175
|
+
export const getScreenPosition: typeof TSL.getScreenPosition;
|
|
176
|
+
export const getShIrradianceAt: typeof TSL.getShIrradianceAt;
|
|
177
|
+
export const getTextureIndex: typeof TSL.getTextureIndex;
|
|
178
|
+
export const getViewPosition: typeof TSL.getViewPosition;
|
|
179
|
+
export const glsl: typeof TSL.glsl;
|
|
180
|
+
export const glslFn: typeof TSL.glslFn;
|
|
181
|
+
export const grayscale: typeof TSL.grayscale;
|
|
182
|
+
export const greaterThan: typeof TSL.greaterThan;
|
|
183
|
+
export const greaterThanEqual: typeof TSL.greaterThanEqual;
|
|
184
|
+
export const hash: typeof TSL.hash;
|
|
185
|
+
export const highPrecisionModelNormalViewMatrix: typeof TSL.highPrecisionModelNormalViewMatrix;
|
|
186
|
+
export const highPrecisionModelViewMatrix: typeof TSL.highPrecisionModelViewMatrix;
|
|
187
|
+
export const hue: typeof TSL.hue;
|
|
188
|
+
export const instance: typeof TSL.instance;
|
|
189
|
+
export const instanceIndex: typeof TSL.instanceIndex;
|
|
190
|
+
export const instancedArray: typeof TSL.instancedArray;
|
|
191
|
+
export const instancedBufferAttribute: typeof TSL.instancedBufferAttribute;
|
|
192
|
+
export const instancedDynamicBufferAttribute: typeof TSL.instancedDynamicBufferAttribute;
|
|
193
|
+
export const instancedMesh: typeof TSL.instancedMesh;
|
|
194
|
+
export const int: typeof TSL.int;
|
|
195
|
+
export const inverseSqrt: typeof TSL.inverseSqrt;
|
|
196
|
+
export const invocationLocalIndex: typeof TSL.invocationLocalIndex;
|
|
197
|
+
export const invocationSubgroupIndex: typeof TSL.invocationSubgroupIndex;
|
|
198
|
+
export const ior: typeof TSL.ior;
|
|
199
|
+
export const iridescence: typeof TSL.iridescence;
|
|
200
|
+
export const iridescenceIOR: typeof TSL.iridescenceIOR;
|
|
201
|
+
export const iridescenceThickness: typeof TSL.iridescenceThickness;
|
|
202
|
+
export const ivec2: typeof TSL.ivec2;
|
|
203
|
+
export const ivec3: typeof TSL.ivec3;
|
|
204
|
+
export const ivec4: typeof TSL.ivec4;
|
|
205
|
+
export const js: typeof TSL.js;
|
|
206
|
+
export const label: typeof TSL.label;
|
|
207
|
+
export const length: typeof TSL.length;
|
|
208
|
+
export const lengthSq: typeof TSL.lengthSq;
|
|
209
|
+
export const lessThan: typeof TSL.lessThan;
|
|
210
|
+
export const lessThanEqual: typeof TSL.lessThanEqual;
|
|
211
|
+
export const lightPosition: typeof TSL.lightPosition;
|
|
212
|
+
export const lightTargetDirection: typeof TSL.lightTargetDirection;
|
|
213
|
+
export const lightTargetPosition: typeof TSL.lightTargetPosition;
|
|
214
|
+
export const lightViewPosition: typeof TSL.lightViewPosition;
|
|
215
|
+
export const lightingContext: typeof TSL.lightingContext;
|
|
216
|
+
export const lights: typeof TSL.lights;
|
|
217
|
+
export const linearDepth: typeof TSL.linearDepth;
|
|
218
|
+
export const linearToneMapping: typeof TSL.linearToneMapping;
|
|
219
|
+
export const localId: typeof TSL.localId;
|
|
220
|
+
export const log: typeof TSL.log;
|
|
221
|
+
export const log2: typeof TSL.log2;
|
|
222
|
+
export const logarithmicDepthToViewZ: typeof TSL.logarithmicDepthToViewZ;
|
|
223
|
+
export const loop: typeof TSL.loop;
|
|
224
|
+
export const luminance: typeof TSL.luminance;
|
|
225
|
+
export const mat2: typeof TSL.mat2;
|
|
226
|
+
export const mat3: typeof TSL.mat3;
|
|
227
|
+
export const mat4: typeof TSL.mat4;
|
|
228
|
+
export const matcapUV: typeof TSL.matcapUV;
|
|
229
|
+
export const materialAOMap: typeof TSL.materialAOMap;
|
|
230
|
+
export const materialAlphaTest: typeof TSL.materialAlphaTest;
|
|
231
|
+
export const materialAnisotropy: typeof TSL.materialAnisotropy;
|
|
232
|
+
export const materialAnisotropyVector: typeof TSL.materialAnisotropyVector;
|
|
233
|
+
export const materialAttenuationColor: typeof TSL.materialAttenuationColor;
|
|
234
|
+
export const materialAttenuationDistance: typeof TSL.materialAttenuationDistance;
|
|
235
|
+
export const materialClearcoat: typeof TSL.materialClearcoat;
|
|
236
|
+
export const materialClearcoatNormal: typeof TSL.materialClearcoatNormal;
|
|
237
|
+
export const materialClearcoatRoughness: typeof TSL.materialClearcoatRoughness;
|
|
238
|
+
export const materialColor: typeof TSL.materialColor;
|
|
239
|
+
export const materialDispersion: typeof TSL.materialDispersion;
|
|
240
|
+
export const materialEmissive: typeof TSL.materialEmissive;
|
|
241
|
+
export const materialIOR: typeof TSL.materialIOR;
|
|
242
|
+
export const materialIridescence: typeof TSL.materialIridescence;
|
|
243
|
+
export const materialIridescenceIOR: typeof TSL.materialIridescenceIOR;
|
|
244
|
+
export const materialIridescenceThickness: typeof TSL.materialIridescenceThickness;
|
|
245
|
+
export const materialLightMap: typeof TSL.materialLightMap;
|
|
246
|
+
export const materialLineDashOffset: typeof TSL.materialLineDashOffset;
|
|
247
|
+
export const materialLineDashSize: typeof TSL.materialLineDashSize;
|
|
248
|
+
export const materialLineGapSize: typeof TSL.materialLineGapSize;
|
|
249
|
+
export const materialLineScale: typeof TSL.materialLineScale;
|
|
250
|
+
export const materialLineWidth: typeof TSL.materialLineWidth;
|
|
251
|
+
export const materialMetalness: typeof TSL.materialMetalness;
|
|
252
|
+
export const materialNormal: typeof TSL.materialNormal;
|
|
253
|
+
export const materialOpacity: typeof TSL.materialOpacity;
|
|
254
|
+
export const materialPointWidth: typeof TSL.materialPointWidth;
|
|
255
|
+
export const materialReference: typeof TSL.materialReference;
|
|
256
|
+
export const materialReflectivity: typeof TSL.materialReflectivity;
|
|
257
|
+
export const materialRefractionRatio: typeof TSL.materialRefractionRatio;
|
|
258
|
+
export const materialRotation: typeof TSL.materialRotation;
|
|
259
|
+
export const materialRoughness: typeof TSL.materialRoughness;
|
|
260
|
+
export const materialSheen: typeof TSL.materialSheen;
|
|
261
|
+
export const materialSheenRoughness: typeof TSL.materialSheenRoughness;
|
|
262
|
+
export const materialShininess: typeof TSL.materialShininess;
|
|
263
|
+
export const materialSpecular: typeof TSL.materialSpecular;
|
|
264
|
+
export const materialSpecularColor: typeof TSL.materialSpecularColor;
|
|
265
|
+
export const materialSpecularIntensity: typeof TSL.materialSpecularIntensity;
|
|
266
|
+
export const materialSpecularStrength: typeof TSL.materialSpecularStrength;
|
|
267
|
+
export const materialThickness: typeof TSL.materialThickness;
|
|
268
|
+
export const materialTransmission: typeof TSL.materialTransmission;
|
|
269
|
+
export const max: typeof TSL.max;
|
|
270
|
+
export const maxMipLevel: typeof TSL.maxMipLevel;
|
|
271
|
+
export const metalness: typeof TSL.metalness;
|
|
272
|
+
export const min: typeof TSL.min;
|
|
273
|
+
export const mix: typeof TSL.mix;
|
|
274
|
+
export const mixElement: typeof TSL.mixElement;
|
|
275
|
+
export const mod: typeof TSL.mod;
|
|
276
|
+
export const modInt: typeof TSL.modInt;
|
|
277
|
+
export const modelDirection: typeof TSL.modelDirection;
|
|
278
|
+
export const modelNormalMatrix: typeof TSL.modelNormalMatrix;
|
|
279
|
+
export const modelPosition: typeof TSL.modelPosition;
|
|
280
|
+
export const modelScale: typeof TSL.modelScale;
|
|
281
|
+
export const modelViewMatrix: typeof TSL.modelViewMatrix;
|
|
282
|
+
export const modelViewPosition: typeof TSL.modelViewPosition;
|
|
283
|
+
export const modelViewProjection: typeof TSL.modelViewProjection;
|
|
284
|
+
export const modelWorldMatrix: typeof TSL.modelWorldMatrix;
|
|
285
|
+
export const modelWorldMatrixInverse: typeof TSL.modelWorldMatrixInverse;
|
|
286
|
+
export const morphReference: typeof TSL.morphReference;
|
|
287
|
+
export const mrt: typeof TSL.mrt;
|
|
288
|
+
export const mul: typeof TSL.mul;
|
|
289
|
+
export const mx_aastep: typeof TSL.mx_aastep;
|
|
290
|
+
export const mx_cell_noise_float: typeof TSL.mx_cell_noise_float;
|
|
291
|
+
export const mx_contrast: typeof TSL.mx_contrast;
|
|
292
|
+
export const mx_fractal_noise_float: typeof TSL.mx_fractal_noise_float;
|
|
293
|
+
export const mx_fractal_noise_vec2: typeof TSL.mx_fractal_noise_vec2;
|
|
294
|
+
export const mx_fractal_noise_vec3: typeof TSL.mx_fractal_noise_vec3;
|
|
295
|
+
export const mx_fractal_noise_vec4: typeof TSL.mx_fractal_noise_vec4;
|
|
296
|
+
export const mx_hsvtorgb: typeof TSL.mx_hsvtorgb;
|
|
297
|
+
export const mx_noise_float: typeof TSL.mx_noise_float;
|
|
298
|
+
export const mx_noise_vec3: typeof TSL.mx_noise_vec3;
|
|
299
|
+
export const mx_noise_vec4: typeof TSL.mx_noise_vec4;
|
|
300
|
+
export const mx_ramplr: typeof TSL.mx_ramplr;
|
|
301
|
+
export const mx_ramptb: typeof TSL.mx_ramptb;
|
|
302
|
+
export const mx_rgbtohsv: typeof TSL.mx_rgbtohsv;
|
|
303
|
+
export const mx_safepower: typeof TSL.mx_safepower;
|
|
304
|
+
export const mx_splitlr: typeof TSL.mx_splitlr;
|
|
305
|
+
export const mx_splittb: typeof TSL.mx_splittb;
|
|
306
|
+
export const mx_srgb_texture_to_lin_rec709: typeof TSL.mx_srgb_texture_to_lin_rec709;
|
|
307
|
+
export const mx_transform_uv: typeof TSL.mx_transform_uv;
|
|
308
|
+
export const mx_worley_noise_float: typeof TSL.mx_worley_noise_float;
|
|
309
|
+
export const mx_worley_noise_vec2: typeof TSL.mx_worley_noise_vec2;
|
|
310
|
+
export const mx_worley_noise_vec3: typeof TSL.mx_worley_noise_vec3;
|
|
311
|
+
export const negate: typeof TSL.negate;
|
|
312
|
+
export const neutralToneMapping: typeof TSL.neutralToneMapping;
|
|
313
|
+
export const nodeArray: typeof TSL.nodeArray;
|
|
314
|
+
export const nodeImmutable: typeof TSL.nodeImmutable;
|
|
315
|
+
export const nodeObject: typeof TSL.nodeObject;
|
|
316
|
+
export const nodeObjects: typeof TSL.nodeObjects;
|
|
317
|
+
export const nodeProxy: typeof TSL.nodeProxy;
|
|
318
|
+
export const normalFlat: typeof TSL.normalFlat;
|
|
319
|
+
export const normalGeometry: typeof TSL.normalGeometry;
|
|
320
|
+
export const normalLocal: typeof TSL.normalLocal;
|
|
321
|
+
export const normalMap: typeof TSL.normalMap;
|
|
322
|
+
export const normalView: typeof TSL.normalView;
|
|
323
|
+
export const normalWorld: typeof TSL.normalWorld;
|
|
324
|
+
export const normalize: typeof TSL.normalize;
|
|
325
|
+
export const not: typeof TSL.not;
|
|
326
|
+
export const notEqual: typeof TSL.notEqual;
|
|
327
|
+
export const numWorkgroups: typeof TSL.numWorkgroups;
|
|
328
|
+
export const objectDirection: typeof TSL.objectDirection;
|
|
329
|
+
export const objectGroup: typeof TSL.objectGroup;
|
|
330
|
+
export const objectPosition: typeof TSL.objectPosition;
|
|
331
|
+
export const objectScale: typeof TSL.objectScale;
|
|
332
|
+
export const objectViewPosition: typeof TSL.objectViewPosition;
|
|
333
|
+
export const objectWorldMatrix: typeof TSL.objectWorldMatrix;
|
|
334
|
+
export const oneMinus: typeof TSL.oneMinus;
|
|
335
|
+
export const or: typeof TSL.or;
|
|
336
|
+
export const orthographicDepthToViewZ: typeof TSL.orthographicDepthToViewZ;
|
|
337
|
+
export const oscSawtooth: typeof TSL.oscSawtooth;
|
|
338
|
+
export const oscSine: typeof TSL.oscSine;
|
|
339
|
+
export const oscSquare: typeof TSL.oscSquare;
|
|
340
|
+
export const oscTriangle: typeof TSL.oscTriangle;
|
|
341
|
+
export const output: typeof TSL.output;
|
|
342
|
+
export const outputStruct: typeof TSL.outputStruct;
|
|
343
|
+
export const overlay: typeof TSL.overlay;
|
|
344
|
+
export const overloadingFn: typeof TSL.overloadingFn;
|
|
345
|
+
export const parabola: typeof TSL.parabola;
|
|
346
|
+
export const parallaxDirection: typeof TSL.parallaxDirection;
|
|
347
|
+
export const parallaxUV: typeof TSL.parallaxUV;
|
|
348
|
+
export const parameter: typeof TSL.parameter;
|
|
349
|
+
export const pass: typeof TSL.pass;
|
|
350
|
+
export const passTexture: typeof TSL.passTexture;
|
|
351
|
+
export const pcurve: typeof TSL.pcurve;
|
|
352
|
+
export const perspectiveDepthToViewZ: typeof TSL.perspectiveDepthToViewZ;
|
|
353
|
+
export const pmremTexture: typeof TSL.pmremTexture;
|
|
354
|
+
export const pointUV: typeof TSL.pointUV;
|
|
355
|
+
export const pointWidth: typeof TSL.pointWidth;
|
|
356
|
+
export const positionGeometry: typeof TSL.positionGeometry;
|
|
357
|
+
export const positionLocal: typeof TSL.positionLocal;
|
|
358
|
+
export const positionPrevious: typeof TSL.positionPrevious;
|
|
359
|
+
export const positionView: typeof TSL.positionView;
|
|
360
|
+
export const positionViewDirection: typeof TSL.positionViewDirection;
|
|
361
|
+
export const positionWorld: typeof TSL.positionWorld;
|
|
362
|
+
export const positionWorldDirection: typeof TSL.positionWorldDirection;
|
|
363
|
+
export const posterize: typeof TSL.posterize;
|
|
364
|
+
export const pow: typeof TSL.pow;
|
|
365
|
+
export const pow2: typeof TSL.pow2;
|
|
366
|
+
export const pow3: typeof TSL.pow3;
|
|
367
|
+
export const pow4: typeof TSL.pow4;
|
|
368
|
+
export const property: typeof TSL.property;
|
|
369
|
+
export const radians: typeof TSL.radians;
|
|
370
|
+
export const rand: typeof TSL.rand;
|
|
371
|
+
export const range: typeof TSL.range;
|
|
372
|
+
export const rangeFog: typeof TSL.rangeFog;
|
|
373
|
+
export const reciprocal: typeof TSL.reciprocal;
|
|
374
|
+
export const reference: typeof TSL.reference;
|
|
375
|
+
export const referenceBuffer: typeof TSL.referenceBuffer;
|
|
376
|
+
export const reflect: typeof TSL.reflect;
|
|
377
|
+
export const reflectVector: typeof TSL.reflectVector;
|
|
378
|
+
export const reflectView: typeof TSL.reflectView;
|
|
379
|
+
export const reflector: typeof TSL.reflector;
|
|
380
|
+
export const refract: typeof TSL.refract;
|
|
381
|
+
export const refractVector: typeof TSL.refractVector;
|
|
382
|
+
export const refractView: typeof TSL.refractView;
|
|
383
|
+
export const reinhardToneMapping: typeof TSL.reinhardToneMapping;
|
|
384
|
+
export const remainder: typeof TSL.remainder;
|
|
385
|
+
export const remap: typeof TSL.remap;
|
|
386
|
+
export const remapClamp: typeof TSL.remapClamp;
|
|
387
|
+
export const renderGroup: typeof TSL.renderGroup;
|
|
388
|
+
export const renderOutput: typeof TSL.renderOutput;
|
|
389
|
+
export const rendererReference: typeof TSL.rendererReference;
|
|
390
|
+
export const rotate: typeof TSL.rotate;
|
|
391
|
+
export const rotateUV: typeof TSL.rotateUV;
|
|
392
|
+
export const roughness: typeof TSL.roughness;
|
|
393
|
+
export const round: typeof TSL.round;
|
|
394
|
+
export const rtt: typeof TSL.rtt;
|
|
395
|
+
export const sRGBTransferEOTF: typeof TSL.sRGBTransferEOTF;
|
|
396
|
+
export const sRGBTransferOETF: typeof TSL.sRGBTransferOETF;
|
|
397
|
+
export const sampler: typeof TSL.sampler;
|
|
398
|
+
export const saturate: typeof TSL.saturate;
|
|
399
|
+
export const saturation: typeof TSL.saturation;
|
|
400
|
+
export const screen: typeof TSL.screen;
|
|
401
|
+
export const screenCoordinate: typeof TSL.screenCoordinate;
|
|
402
|
+
export const screenSize: typeof TSL.screenSize;
|
|
403
|
+
export const screenUV: typeof TSL.screenUV;
|
|
404
|
+
export const scriptable: typeof TSL.scriptable;
|
|
405
|
+
export const scriptableValue: typeof TSL.scriptableValue;
|
|
406
|
+
export const select: typeof TSL.select;
|
|
407
|
+
export const setCurrentStack: typeof TSL.setCurrentStack;
|
|
408
|
+
export const shaderStages: typeof TSL.shaderStages;
|
|
409
|
+
export const shadow: typeof TSL.shadow;
|
|
410
|
+
export const sharedUniformGroup: typeof TSL.sharedUniformGroup;
|
|
411
|
+
export const sheen: typeof TSL.sheen;
|
|
412
|
+
export const sheenRoughness: typeof TSL.sheenRoughness;
|
|
413
|
+
export const shiftLeft: typeof TSL.shiftLeft;
|
|
414
|
+
export const shiftRight: typeof TSL.shiftRight;
|
|
415
|
+
export const shininess: typeof TSL.shininess;
|
|
416
|
+
export const sign: typeof TSL.sign;
|
|
417
|
+
export const sin: typeof TSL.sin;
|
|
418
|
+
export const sinc: typeof TSL.sinc;
|
|
419
|
+
export const skinning: typeof TSL.skinning;
|
|
420
|
+
export const skinningReference: typeof TSL.skinningReference;
|
|
421
|
+
export const smoothstep: typeof TSL.smoothstep;
|
|
422
|
+
export const smoothstepElement: typeof TSL.smoothstepElement;
|
|
423
|
+
export const specularColor: typeof TSL.specularColor;
|
|
424
|
+
export const specularF90: typeof TSL.specularF90;
|
|
425
|
+
export const spherizeUV: typeof TSL.spherizeUV;
|
|
426
|
+
export const split: typeof TSL.split;
|
|
427
|
+
export const spritesheetUV: typeof TSL.spritesheetUV;
|
|
428
|
+
export const sqrt: typeof TSL.sqrt;
|
|
429
|
+
export const stack: typeof TSL.stack;
|
|
430
|
+
export const step: typeof TSL.step;
|
|
431
|
+
export const storage: typeof TSL.storage;
|
|
432
|
+
export const storageBarrier: typeof TSL.storageBarrier;
|
|
433
|
+
export const storageObject: typeof TSL.storageObject;
|
|
434
|
+
export const storageTexture: typeof TSL.storageTexture;
|
|
435
|
+
export const string: typeof TSL.string;
|
|
436
|
+
export const sub: typeof TSL.sub;
|
|
437
|
+
export const subgroupIndex: typeof TSL.subgroupIndex;
|
|
438
|
+
export const subgroupSize: typeof TSL.subgroupSize;
|
|
439
|
+
export const tan: typeof TSL.tan;
|
|
440
|
+
export const tangentGeometry: typeof TSL.tangentGeometry;
|
|
441
|
+
export const tangentLocal: typeof TSL.tangentLocal;
|
|
442
|
+
export const tangentView: typeof TSL.tangentView;
|
|
443
|
+
export const tangentWorld: typeof TSL.tangentWorld;
|
|
444
|
+
export const temp: typeof TSL.temp;
|
|
445
|
+
export const texture: typeof TSL.texture;
|
|
446
|
+
export const texture3D: typeof TSL.texture3D;
|
|
447
|
+
export const textureBarrier: typeof TSL.textureBarrier;
|
|
448
|
+
export const textureBicubic: typeof TSL.textureBicubic;
|
|
449
|
+
export const textureCubeUV: typeof TSL.textureCubeUV;
|
|
450
|
+
export const textureLoad: typeof TSL.textureLoad;
|
|
451
|
+
export const textureSize: typeof TSL.textureSize;
|
|
452
|
+
export const textureStore: typeof TSL.textureStore;
|
|
453
|
+
export const thickness: typeof TSL.thickness;
|
|
454
|
+
export const threshold: typeof TSL.threshold;
|
|
455
|
+
export const time: typeof TSL.time;
|
|
456
|
+
export const timerDelta: typeof TSL.timerDelta;
|
|
457
|
+
export const timerGlobal: typeof TSL.timerGlobal;
|
|
458
|
+
export const timerLocal: typeof TSL.timerLocal;
|
|
459
|
+
export const toOutputColorSpace: typeof TSL.toOutputColorSpace;
|
|
460
|
+
export const toWorkingColorSpace: typeof TSL.toWorkingColorSpace;
|
|
461
|
+
export const toneMapping: typeof TSL.toneMapping;
|
|
462
|
+
export const toneMappingExposure: typeof TSL.toneMappingExposure;
|
|
463
|
+
export const toonOutlinePass: typeof TSL.toonOutlinePass;
|
|
464
|
+
export const transformDirection: typeof TSL.transformDirection;
|
|
465
|
+
export const transformNormal: typeof TSL.transformNormal;
|
|
466
|
+
export const transformNormalToView: typeof TSL.transformNormalToView;
|
|
467
|
+
export const transformedBentNormalView: typeof TSL.transformedBentNormalView;
|
|
468
|
+
export const transformedBitangentView: typeof TSL.transformedBitangentView;
|
|
469
|
+
export const transformedBitangentWorld: typeof TSL.transformedBitangentWorld;
|
|
470
|
+
export const transformedClearcoatNormalView: typeof TSL.transformedClearcoatNormalView;
|
|
471
|
+
export const transformedNormalView: typeof TSL.transformedNormalView;
|
|
472
|
+
export const transformedNormalWorld: typeof TSL.transformedNormalWorld;
|
|
473
|
+
export const transformedTangentView: typeof TSL.transformedTangentView;
|
|
474
|
+
export const transformedTangentWorld: typeof TSL.transformedTangentWorld;
|
|
475
|
+
export const transmission: typeof TSL.transmission;
|
|
476
|
+
export const transpose: typeof TSL.transpose;
|
|
477
|
+
export const tri: typeof TSL.tri;
|
|
478
|
+
export const tri3: typeof TSL.tri3;
|
|
479
|
+
export const triNoise3D: typeof TSL.triNoise3D;
|
|
480
|
+
export const triplanarTexture: typeof TSL.triplanarTexture;
|
|
481
|
+
export const triplanarTextures: typeof TSL.triplanarTextures;
|
|
482
|
+
export const trunc: typeof TSL.trunc;
|
|
483
|
+
export const tslFn: typeof TSL.tslFn;
|
|
484
|
+
export const uint: typeof TSL.uint;
|
|
485
|
+
export const uniform: typeof TSL.uniform;
|
|
486
|
+
export const uniformArray: typeof TSL.uniformArray;
|
|
487
|
+
export const uniformGroup: typeof TSL.uniformGroup;
|
|
488
|
+
export const uniforms: typeof TSL.uniforms;
|
|
489
|
+
export const userData: typeof TSL.userData;
|
|
490
|
+
export const uv: typeof TSL.uv;
|
|
491
|
+
export const uvec2: typeof TSL.uvec2;
|
|
492
|
+
export const uvec3: typeof TSL.uvec3;
|
|
493
|
+
export const uvec4: typeof TSL.uvec4;
|
|
494
|
+
export const varying: typeof TSL.varying;
|
|
495
|
+
export const varyingProperty: typeof TSL.varyingProperty;
|
|
496
|
+
export const vec2: typeof TSL.vec2;
|
|
497
|
+
export const vec3: typeof TSL.vec3;
|
|
498
|
+
export const vec4: typeof TSL.vec4;
|
|
499
|
+
export const vectorComponents: typeof TSL.vectorComponents;
|
|
500
|
+
export const velocity: typeof TSL.velocity;
|
|
501
|
+
export const vertexColor: typeof TSL.vertexColor;
|
|
502
|
+
export const vertexIndex: typeof TSL.vertexIndex;
|
|
503
|
+
export const vibrance: typeof TSL.vibrance;
|
|
504
|
+
export const viewZToLogarithmicDepth: typeof TSL.viewZToLogarithmicDepth;
|
|
505
|
+
export const viewZToOrthographicDepth: typeof TSL.viewZToOrthographicDepth;
|
|
506
|
+
export const viewZToPerspectiveDepth: typeof TSL.viewZToPerspectiveDepth;
|
|
507
|
+
export const viewport: typeof TSL.viewport;
|
|
508
|
+
export const viewportBottomLeft: typeof TSL.viewportBottomLeft;
|
|
509
|
+
export const viewportCoordinate: typeof TSL.viewportCoordinate;
|
|
510
|
+
export const viewportDepthTexture: typeof TSL.viewportDepthTexture;
|
|
511
|
+
export const viewportLinearDepth: typeof TSL.viewportLinearDepth;
|
|
512
|
+
export const viewportMipTexture: typeof TSL.viewportMipTexture;
|
|
513
|
+
export const viewportResolution: typeof TSL.viewportResolution;
|
|
514
|
+
export const viewportSafeUV: typeof TSL.viewportSafeUV;
|
|
515
|
+
export const viewportSharedTexture: typeof TSL.viewportSharedTexture;
|
|
516
|
+
export const viewportSize: typeof TSL.viewportSize;
|
|
517
|
+
export const viewportTexture: typeof TSL.viewportTexture;
|
|
518
|
+
export const viewportTopLeft: typeof TSL.viewportTopLeft;
|
|
519
|
+
export const viewportUV: typeof TSL.viewportUV;
|
|
520
|
+
export const wgsl: typeof TSL.wgsl;
|
|
521
|
+
export const wgslFn: typeof TSL.wgslFn;
|
|
522
|
+
export const workgroupArray: typeof TSL.workgroupArray;
|
|
523
|
+
export const workgroupBarrier: typeof TSL.workgroupBarrier;
|
|
524
|
+
export const workgroupId: typeof TSL.workgroupId;
|
|
525
|
+
export const workingToColorSpace: typeof TSL.workingToColorSpace;
|
|
526
|
+
export const xor: typeof TSL.xor;
|
|
527
|
+
|
|
528
|
+
export type { NodeRepresentation, ProxiedObject, ShaderNodeObject, Swizzable } from "./nodes/TSL.js";
|