x_ite 12.0.3 → 12.0.5
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.
- package/README.md +4 -4
- package/dist/assets/components/AnnotationComponent.js +2 -2
- package/dist/assets/components/AnnotationComponent.min.js +2 -2
- package/dist/assets/components/CADGeometryComponent.js +2 -2
- package/dist/assets/components/CADGeometryComponent.min.js +2 -2
- package/dist/assets/components/CubeMapTexturingComponent.js +8 -8
- package/dist/assets/components/CubeMapTexturingComponent.min.js +2 -2
- package/dist/assets/components/DISComponent.js +2 -2
- package/dist/assets/components/DISComponent.min.js +2 -2
- package/dist/assets/components/EventUtilitiesComponent.js +2 -2
- package/dist/assets/components/EventUtilitiesComponent.min.js +2 -2
- package/dist/assets/components/Geometry2DComponent.js +2 -2
- package/dist/assets/components/Geometry2DComponent.min.js +2 -2
- package/dist/assets/components/GeospatialComponent.js +2 -2
- package/dist/assets/components/GeospatialComponent.min.js +2 -2
- package/dist/assets/components/HAnimComponent.js +2 -2
- package/dist/assets/components/HAnimComponent.min.js +2 -2
- package/dist/assets/components/KeyDeviceSensorComponent.js +20 -4
- package/dist/assets/components/KeyDeviceSensorComponent.min.js +2 -2
- package/dist/assets/components/LayoutComponent.js +2 -2
- package/dist/assets/components/LayoutComponent.min.js +2 -2
- package/dist/assets/components/NURBSComponent.js +2 -2
- package/dist/assets/components/NURBSComponent.min.js +2 -2
- package/dist/assets/components/ParticleSystemsComponent.js +7 -9
- package/dist/assets/components/ParticleSystemsComponent.min.js +2 -2
- package/dist/assets/components/PickingComponent.js +8 -10
- package/dist/assets/components/PickingComponent.min.js +2 -2
- package/dist/assets/components/RigidBodyPhysicsComponent.js +2 -2
- package/dist/assets/components/RigidBodyPhysicsComponent.min.js +2 -2
- package/dist/assets/components/ScriptingComponent.js +2 -2
- package/dist/assets/components/ScriptingComponent.min.js +2 -2
- package/dist/assets/components/TextComponent.js +2 -2
- package/dist/assets/components/TextComponent.min.js +2 -2
- package/dist/assets/components/TextureProjectionComponent.js +2 -2
- package/dist/assets/components/TextureProjectionComponent.min.js +2 -2
- package/dist/assets/components/Texturing3DComponent.js +25 -25
- package/dist/assets/components/Texturing3DComponent.min.js +2 -2
- package/dist/assets/components/VolumeRenderingComponent.js +2 -2
- package/dist/assets/components/VolumeRenderingComponent.min.js +2 -2
- package/dist/assets/components/WebXRComponent.js +2 -2
- package/dist/assets/components/WebXRComponent.min.js +2 -2
- package/dist/assets/components/X_ITEComponent.js +2 -4
- package/dist/assets/components/X_ITEComponent.min.js +2 -2
- package/dist/example.html +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.d.ts +87 -60
- package/dist/x_ite.js +50987 -52038
- package/dist/x_ite.min.js +2 -2
- package/dist/x_ite.min.mjs +2 -2
- package/dist/x_ite.mjs +50963 -52014
- package/dist/x_ite.zip +0 -0
- package/package.json +1 -1
package/dist/x_ite.d.ts
CHANGED
|
@@ -199,26 +199,10 @@ declare namespace X3D
|
|
|
199
199
|
* Sets a browser option with the corresponding *name* to the given value.
|
|
200
200
|
*/
|
|
201
201
|
setBrowserOption <T extends keyof BrowserOption> (name: T, value: BrowserOption [T]): void;
|
|
202
|
-
/**
|
|
203
|
-
* Adds a browser option callback function, if external browser interface is used. *key* is a custom key of any type associated with the *callback*, this key can later be used to remove the callback. *name* is the name of the browser option to which the callback should be connected. The callback is called when the property has been changed.
|
|
204
|
-
*/
|
|
205
|
-
addBrowserOptionCallback <T extends keyof BrowserOption> (key: any, name: T, callback: (value: BrowserOption [T]) => void): void;
|
|
206
|
-
/**
|
|
207
|
-
* Removes a browser option callback function associated with *key* and *name* from the browser option.
|
|
208
|
-
*/
|
|
209
|
-
removeBrowserOptionCallback <T extends keyof BrowserOption> (key: any, name: T): void;
|
|
210
202
|
/**
|
|
211
203
|
* Returns a rendering property with the corresponding *name*.
|
|
212
204
|
*/
|
|
213
205
|
getRenderingProperty <T extends keyof RenderingProperty> (name: T): RenderingProperty [T];
|
|
214
|
-
/**
|
|
215
|
-
* Adds a rendering property callback function, if external browser interface is used. *key* is a custom key of any type associated with the *callback*, this key can later be used to remove the callback. *name* is the name of the rendering property to which the callback should be connected. The callback is called when the property has been changed.
|
|
216
|
-
*/
|
|
217
|
-
addRenderingPropertyCallback <T extends keyof RenderingProperty> (key: any, name: T, callback: (value: RenderingProperty [T]) => void): void;
|
|
218
|
-
/**
|
|
219
|
-
* Removes a rendering property callback function associated with *key* and *name* from the rendering property.
|
|
220
|
-
*/
|
|
221
|
-
removeRenderingPropertyCallback <T extends keyof RenderingProperty> (key: any, name: T): void;
|
|
222
206
|
/**
|
|
223
207
|
* Returns context menu object.
|
|
224
208
|
*/
|
|
@@ -239,30 +223,37 @@ declare namespace X3D
|
|
|
239
223
|
*/
|
|
240
224
|
removeBrowserCallback (key: any, event?: number): void;
|
|
241
225
|
/**
|
|
242
|
-
* Modifies the current view to show the entire visible scene within *transitionTime* seconds. If *
|
|
226
|
+
* Modifies the current view to show the entire visible scene within *transitionTime* seconds. If *layer* is omitted, the active layer is used.
|
|
243
227
|
*/
|
|
244
|
-
viewAll (layer?:
|
|
228
|
+
viewAll (layer?: X3DLayerNodeProxy, transitionTime?: number): void;
|
|
245
229
|
/**
|
|
246
|
-
* Changes the bound viewpoint node to the next viewpoint in the list of user viewpoints of *
|
|
230
|
+
* Changes the bound viewpoint node to the next viewpoint in the list of user viewpoints of *layer*. If *layer* is omitted, the active layer is used.
|
|
247
231
|
*/
|
|
248
|
-
nextViewpoint (layer?:
|
|
232
|
+
nextViewpoint (layer?: X3DLayerNodeProxy): void;
|
|
249
233
|
/**
|
|
250
|
-
* Changes the bound viewpoint node to the previous viewpoint in the list of user viewpoints of *
|
|
234
|
+
* Changes the bound viewpoint node to the previous viewpoint in the list of user viewpoints of *layer*. If *layer* is omitted, the active layer is used.
|
|
251
235
|
*/
|
|
252
|
-
previousViewpoint (layer?:
|
|
236
|
+
previousViewpoint (layer?: X3DLayerNodeProxy): void;
|
|
253
237
|
/**
|
|
254
|
-
* Changes the bound viewpoint node to the first viewpoint in the list of user viewpoints of *
|
|
238
|
+
* Changes the bound viewpoint node to the first viewpoint in the list of user viewpoints of *layer*. If *layer* is omitted, the active layer is used.
|
|
255
239
|
*/
|
|
256
|
-
firstViewpoint (layer?:
|
|
240
|
+
firstViewpoint (layer?: X3DLayerNodeProxy): void;
|
|
257
241
|
/**
|
|
258
|
-
* Changes the bound viewpoint node to the last viewpoint in the list of user viewpoints of *
|
|
242
|
+
* Changes the bound viewpoint node to the last viewpoint in the list of user viewpoints of *layer*. If *layer* is omitted, the active layer is used.
|
|
259
243
|
*/
|
|
260
|
-
lastViewpoint (layer?:
|
|
244
|
+
lastViewpoint (layer?: X3DLayerNodeProxy): void;
|
|
261
245
|
/**
|
|
262
|
-
* Changes the bound viewpoint node to the viewpoint named *name*. The viewpoint must be available in *
|
|
246
|
+
* Changes the bound viewpoint node to the viewpoint named *name*. The viewpoint must be available in *layer*. If *layer* is omitted, the active layer is used.
|
|
263
247
|
*/
|
|
264
|
-
changeViewpoint (layer:
|
|
248
|
+
changeViewpoint (layer: X3DLayerNodeProxy, name: string): void;
|
|
265
249
|
changeViewpoint (name: string): void;
|
|
250
|
+
/**
|
|
251
|
+
* Returns the closest collidable object when looked in *direction*, measured from the active viewpoint position. The maximum detection radius is `2 * avatarHeight` (where *avatarHeight* is the second value of NavigationInfo *avatarSize*). Compare *distance* with *collisionRadius* (first value of NavigationInfo *avatarSize*) to detect if a collision with an object occurs. If *layer* is omitted, the active layer is used.
|
|
252
|
+
*
|
|
253
|
+
* The return value is an object with two properties *node* and *distance*.
|
|
254
|
+
*/
|
|
255
|
+
getClosestObject (layer: X3DLayerNodeProxy, direction: SFVec3d | SFVec3f): ClosestObject;
|
|
256
|
+
getClosestObject (direction: SFVec3d | SFVec3f): ClosestObject;
|
|
266
257
|
/**
|
|
267
258
|
* Start processing events.
|
|
268
259
|
*/
|
|
@@ -427,6 +418,12 @@ declare namespace X3D
|
|
|
427
418
|
XRSession: boolean,
|
|
428
419
|
}
|
|
429
420
|
|
|
421
|
+
type ClosestObject = {
|
|
422
|
+
node: X3DShapeNodeProxy | null,
|
|
423
|
+
distance: number,
|
|
424
|
+
// normal: SFVec3f,
|
|
425
|
+
};
|
|
426
|
+
|
|
430
427
|
class ContextMenu
|
|
431
428
|
{
|
|
432
429
|
userMenu: UserMenuCallback;
|
|
@@ -912,6 +909,14 @@ declare namespace X3D
|
|
|
912
909
|
* Always has the value of false. This property is read only.
|
|
913
910
|
*/
|
|
914
911
|
readonly isExternProto: false;
|
|
912
|
+
/**
|
|
913
|
+
* Short description or purpose of the prototype. This property is read only.
|
|
914
|
+
*/
|
|
915
|
+
readonly appInfo: string;
|
|
916
|
+
/**
|
|
917
|
+
* A string containing the documentation of this prototype. This property is read only.
|
|
918
|
+
*/
|
|
919
|
+
readonly documentation: string;
|
|
915
920
|
|
|
916
921
|
/**
|
|
917
922
|
* Creates a new default instance of the prototype.
|
|
@@ -963,6 +968,14 @@ declare namespace X3D
|
|
|
963
968
|
* Always has the value of true. This property is read only.
|
|
964
969
|
*/
|
|
965
970
|
readonly isExternProto: true;
|
|
971
|
+
/**
|
|
972
|
+
* Short description or purpose of the extern prototype. This property is read only.
|
|
973
|
+
*/
|
|
974
|
+
readonly appInfo: string;
|
|
975
|
+
/**
|
|
976
|
+
* A string containing the documentation of this extern prototype. This property is read only.
|
|
977
|
+
*/
|
|
978
|
+
readonly documentation: string;
|
|
966
979
|
/**
|
|
967
980
|
* The value is one of the *_STATE* properties defined in the X3DConstants object. This property is read only.
|
|
968
981
|
*/
|
|
@@ -1503,9 +1516,17 @@ declare namespace X3D
|
|
|
1503
1516
|
*/
|
|
1504
1517
|
readonly name: string;
|
|
1505
1518
|
/**
|
|
1506
|
-
*
|
|
1519
|
+
* The default value for this field. This property is read only.
|
|
1507
1520
|
*/
|
|
1508
|
-
readonly value: X3DField;
|
|
1521
|
+
readonly value: boolean | number | string | null | X3DField;
|
|
1522
|
+
/**
|
|
1523
|
+
* Short description or purpose of the field. This property is read only.
|
|
1524
|
+
*/
|
|
1525
|
+
readonly appInfo: string;
|
|
1526
|
+
/**
|
|
1527
|
+
* A string containing the documentation of this field. This property is read only.
|
|
1528
|
+
*/
|
|
1529
|
+
readonly documentation: string;
|
|
1509
1530
|
}
|
|
1510
1531
|
|
|
1511
1532
|
/**
|
|
@@ -2115,15 +2136,15 @@ declare namespace X3D
|
|
|
2115
2136
|
* *axis* is a SFVec3d/f object whose value is the axis of rotation.
|
|
2116
2137
|
* *angle* is the scalar angle of the rotation (in radians).
|
|
2117
2138
|
*/
|
|
2118
|
-
constructor (axis:
|
|
2139
|
+
constructor (axis: SFVec3d | SFVec3f, angle: number);
|
|
2119
2140
|
/**
|
|
2120
2141
|
* *fromVector* and *toVector* are SFVec3d/f valued objects. These vectors are normalized and the rotation value that would rotate from the *fromVector* to the *toVector* is stored in the object.
|
|
2121
2142
|
*/
|
|
2122
|
-
constructor (fromVector:
|
|
2143
|
+
constructor (fromVector: SFVec3d | SFVec3f, toVector: SFVec3);
|
|
2123
2144
|
/**
|
|
2124
2145
|
* *matrix* is an SFMatrix3d/f rotation matrix object whose value is converted into an SFRotation object.
|
|
2125
2146
|
*/
|
|
2126
|
-
constructor (matrix:
|
|
2147
|
+
constructor (matrix: SFMatrix3d | SFMatrix3f);
|
|
2127
2148
|
|
|
2128
2149
|
/**
|
|
2129
2150
|
* Returns the first value of the axis vector.
|
|
@@ -2162,13 +2183,13 @@ declare namespace X3D
|
|
|
2162
2183
|
*/
|
|
2163
2184
|
multiply (rotation: SFRotation): SFRotation;
|
|
2164
2185
|
/**
|
|
2165
|
-
* Returns a
|
|
2186
|
+
* Returns a SFVec3d/f whose value is the SFVec3d/f *vec* multiplied by the matrix corresponding to this object's rotation.
|
|
2166
2187
|
*/
|
|
2167
2188
|
multVec <T extends SFVec3d | SFVec3f> (vector: T): T;
|
|
2168
2189
|
/**
|
|
2169
2190
|
* Set the axis of rotation to the vector passed in *vec*.
|
|
2170
2191
|
*/
|
|
2171
|
-
setAxis (axis:
|
|
2192
|
+
setAxis (axis: SFVec3d | SFVec3f): void;
|
|
2172
2193
|
/**
|
|
2173
2194
|
* Set the value of this rotation to the rotation matrix passed in *matrix*.
|
|
2174
2195
|
*/
|
|
@@ -2851,7 +2872,7 @@ declare namespace X3D
|
|
|
2851
2872
|
specular: number;
|
|
2852
2873
|
}
|
|
2853
2874
|
|
|
2854
|
-
/** Analyser provides real-time frequency and time-domain analysis information, without any change to the input. */
|
|
2875
|
+
/** Analyser provides real-time frequency and time-domain analysis information, without any signal-processing change to the audio stream which is passed unprocessed from input to output. */
|
|
2855
2876
|
interface AnalyserProxy extends X3DSoundProcessingNodeProxy
|
|
2856
2877
|
{
|
|
2857
2878
|
/**
|
|
@@ -2909,7 +2930,7 @@ declare namespace X3D
|
|
|
2909
2930
|
*/
|
|
2910
2931
|
frequencyBinCount: number;
|
|
2911
2932
|
/**
|
|
2912
|
-
* The gain
|
|
2933
|
+
* The gain value only affects analysis, not output signal.
|
|
2913
2934
|
*
|
|
2914
2935
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
2915
2936
|
*/
|
|
@@ -3319,7 +3340,7 @@ declare namespace X3D
|
|
|
3319
3340
|
*/
|
|
3320
3341
|
readonly isPaused: boolean;
|
|
3321
3342
|
/**
|
|
3322
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
3343
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
3323
3344
|
*
|
|
3324
3345
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
3325
3346
|
*/
|
|
@@ -3432,7 +3453,7 @@ declare namespace X3D
|
|
|
3432
3453
|
*/
|
|
3433
3454
|
maxChannelCount: number;
|
|
3434
3455
|
/**
|
|
3435
|
-
* mediaDeviceID field provides
|
|
3456
|
+
* mediaDeviceID field provides a unique identifier for the active device that corresponds to deviceId functionality defined in W3C Web Audio API.
|
|
3436
3457
|
*
|
|
3437
3458
|
* This field is of access type 'inputOutput' and type SFString.
|
|
3438
3459
|
*/
|
|
@@ -4196,7 +4217,7 @@ declare namespace X3D
|
|
|
4196
4217
|
*/
|
|
4197
4218
|
readonly length: number;
|
|
4198
4219
|
/**
|
|
4199
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
4220
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
4200
4221
|
*
|
|
4201
4222
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
4202
4223
|
*/
|
|
@@ -6327,7 +6348,7 @@ declare namespace X3D
|
|
|
6327
6348
|
*/
|
|
6328
6349
|
children: MFNode <AnalyserProxy | AudioClipProxy | AudioDestinationProxy | BiquadFilterProxy | BufferAudioSourceProxy | ChannelMergerProxy | ChannelSelectorProxy | ChannelSplitterProxy | ConvolverProxy | DelayProxy | DynamicsCompressorProxy | GainProxy | ListenerPointSourceProxy | MicrophoneSourceProxy | MovieTextureProxy | OscillatorSourceProxy | SoundProxy | SpatialSoundProxy | StreamAudioDestinationProxy | StreamAudioSourceProxy | WaveShaperProxy>;
|
|
6329
6350
|
/**
|
|
6330
|
-
* delayTime is duration of delay (in seconds)
|
|
6351
|
+
* delayTime is duration of delay applied (in seconds).
|
|
6331
6352
|
*
|
|
6332
6353
|
* This field is of access type 'inputOutput' and type SFTime.
|
|
6333
6354
|
*/
|
|
@@ -6664,7 +6685,7 @@ declare namespace X3D
|
|
|
6664
6685
|
*/
|
|
6665
6686
|
kind: number;
|
|
6666
6687
|
/**
|
|
6667
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
6688
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
6668
6689
|
*
|
|
6669
6690
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
6670
6691
|
*/
|
|
@@ -8729,7 +8750,7 @@ declare namespace X3D
|
|
|
8729
8750
|
*/
|
|
8730
8751
|
description: string;
|
|
8731
8752
|
/**
|
|
8732
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
8753
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
8733
8754
|
*
|
|
8734
8755
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
8735
8756
|
*/
|
|
@@ -9955,7 +9976,7 @@ declare namespace X3D
|
|
|
9955
9976
|
*/
|
|
9956
9977
|
description: string;
|
|
9957
9978
|
/**
|
|
9958
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
9979
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
9959
9980
|
*
|
|
9960
9981
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
9961
9982
|
*/
|
|
@@ -10002,7 +10023,7 @@ declare namespace X3D
|
|
|
10002
10023
|
*/
|
|
10003
10024
|
description: string;
|
|
10004
10025
|
/**
|
|
10005
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
10026
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
10006
10027
|
*
|
|
10007
10028
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
10008
10029
|
*/
|
|
@@ -10061,7 +10082,7 @@ declare namespace X3D
|
|
|
10061
10082
|
*/
|
|
10062
10083
|
description: string;
|
|
10063
10084
|
/**
|
|
10064
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
10085
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
10065
10086
|
*
|
|
10066
10087
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
10067
10088
|
*/
|
|
@@ -10803,7 +10824,7 @@ declare namespace X3D
|
|
|
10803
10824
|
*/
|
|
10804
10825
|
global: boolean;
|
|
10805
10826
|
/**
|
|
10806
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
10827
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
10807
10828
|
*
|
|
10808
10829
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
10809
10830
|
*/
|
|
@@ -12306,7 +12327,7 @@ declare namespace X3D
|
|
|
12306
12327
|
*/
|
|
12307
12328
|
readonly isPaused: boolean;
|
|
12308
12329
|
/**
|
|
12309
|
-
* mediaDeviceID field provides
|
|
12330
|
+
* mediaDeviceID field provides a unique identifier for the active device that corresponds to deviceId functionality defined in W3C Web Audio API.
|
|
12310
12331
|
*
|
|
12311
12332
|
* This field is of access type 'inputOutput' and type SFString.
|
|
12312
12333
|
*/
|
|
@@ -12568,7 +12589,7 @@ declare namespace X3D
|
|
|
12568
12589
|
*/
|
|
12569
12590
|
readonly isPaused: boolean;
|
|
12570
12591
|
/**
|
|
12571
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
12592
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
12572
12593
|
*
|
|
12573
12594
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
12574
12595
|
*/
|
|
@@ -13922,7 +13943,7 @@ declare namespace X3D
|
|
|
13922
13943
|
*/
|
|
13923
13944
|
language: "Cg" | "GLSL" | "HLSL";
|
|
13924
13945
|
/**
|
|
13925
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
13946
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
13926
13947
|
*
|
|
13927
13948
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
13928
13949
|
*/
|
|
@@ -16288,7 +16309,7 @@ declare namespace X3D
|
|
|
16288
16309
|
*/
|
|
16289
16310
|
field: MFNode <SFNode>;
|
|
16290
16311
|
/**
|
|
16291
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
16312
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
16292
16313
|
*
|
|
16293
16314
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
16294
16315
|
*/
|
|
@@ -16453,7 +16474,7 @@ declare namespace X3D
|
|
|
16453
16474
|
*/
|
|
16454
16475
|
description: string;
|
|
16455
16476
|
/**
|
|
16456
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
16477
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
16457
16478
|
*
|
|
16458
16479
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
16459
16480
|
*/
|
|
@@ -16512,7 +16533,7 @@ declare namespace X3D
|
|
|
16512
16533
|
*/
|
|
16513
16534
|
field: MFNode <SFNode>;
|
|
16514
16535
|
/**
|
|
16515
|
-
* load=true means load immediately, load=false means defer loading or else unload a previously loaded
|
|
16536
|
+
* load=true means load immediately, load=false means defer loading or else unload a previously loaded asset.
|
|
16516
16537
|
*
|
|
16517
16538
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
16518
16539
|
*/
|
|
@@ -17160,7 +17181,7 @@ declare namespace X3D
|
|
|
17160
17181
|
*/
|
|
17161
17182
|
coneInnerAngle: number;
|
|
17162
17183
|
/**
|
|
17163
|
-
* coneOuterAngle is centered along direction and defines an outer conical volume, within which the sound gain decreases
|
|
17184
|
+
* coneOuterAngle is centered along direction and defines an outer conical volume, within which the sound gain decreases from full gain to coneOuterGain.
|
|
17164
17185
|
*
|
|
17165
17186
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
17166
17187
|
*/
|
|
@@ -17184,7 +17205,7 @@ declare namespace X3D
|
|
|
17184
17205
|
*/
|
|
17185
17206
|
direction: SFVec3f;
|
|
17186
17207
|
/**
|
|
17187
|
-
* distanceModel determines
|
|
17208
|
+
* distanceModel determines which algorithm to use for sound attenuation, corresponding to distance between an audio source and a listener, as it moves away from the listener.
|
|
17188
17209
|
*
|
|
17189
17210
|
* This field is of access type 'inputOutput' and type SFString.
|
|
17190
17211
|
*/
|
|
@@ -17893,7 +17914,7 @@ declare namespace X3D
|
|
|
17893
17914
|
*/
|
|
17894
17915
|
readonly isActive: boolean;
|
|
17895
17916
|
/**
|
|
17896
|
-
* mediaDeviceID field provides
|
|
17917
|
+
* mediaDeviceID field provides a unique identifier for the active device that corresponds to deviceId functionality defined in W3C Web Audio API.
|
|
17897
17918
|
*
|
|
17898
17919
|
* This field is of access type 'inputOutput' and type SFString.
|
|
17899
17920
|
*/
|
|
@@ -17907,9 +17928,9 @@ declare namespace X3D
|
|
|
17907
17928
|
/**
|
|
17908
17929
|
* Stream identification TBD Hint: W3C Media Capture and Streams https://www.
|
|
17909
17930
|
*
|
|
17910
|
-
* This field is of access type 'inputOutput' and type
|
|
17931
|
+
* This field is of access type 'inputOutput' and type MFString.
|
|
17911
17932
|
*/
|
|
17912
|
-
streamIdentifier:
|
|
17933
|
+
streamIdentifier: MFString;
|
|
17913
17934
|
}
|
|
17914
17935
|
|
|
17915
17936
|
/** StreamAudioSource operates as an audio source whose media is received from a MediaStream obtained using the WebRTC or Media Capture and Streams APIs. */
|
|
@@ -17996,9 +18017,9 @@ declare namespace X3D
|
|
|
17996
18017
|
/**
|
|
17997
18018
|
* Stream identification TBD Hint: W3C Media Capture and Streams https://www.
|
|
17998
18019
|
*
|
|
17999
|
-
* This field is of access type 'inputOutput' and type
|
|
18020
|
+
* This field is of access type 'inputOutput' and type MFString.
|
|
18000
18021
|
*/
|
|
18001
|
-
streamIdentifier:
|
|
18022
|
+
streamIdentifier: MFString;
|
|
18002
18023
|
}
|
|
18003
18024
|
|
|
18004
18025
|
/** StringSensor generates events as the user presses keys on the keyboard. */
|
|
@@ -20643,6 +20664,12 @@ declare namespace X3D
|
|
|
20643
20664
|
* This field is of access type 'inputOutput' and type MFNode.
|
|
20644
20665
|
*/
|
|
20645
20666
|
children: MFNode <AnalyserProxy | AudioClipProxy | AudioDestinationProxy | BiquadFilterProxy | BufferAudioSourceProxy | ChannelMergerProxy | ChannelSelectorProxy | ChannelSplitterProxy | ConvolverProxy | DelayProxy | DynamicsCompressorProxy | GainProxy | ListenerPointSourceProxy | MicrophoneSourceProxy | MovieTextureProxy | OscillatorSourceProxy | SoundProxy | SpatialSoundProxy | StreamAudioDestinationProxy | StreamAudioSourceProxy | WaveShaperProxy>;
|
|
20667
|
+
/**
|
|
20668
|
+
* The curve field is an array of floating-point numbers describing the distortion to apply.
|
|
20669
|
+
*
|
|
20670
|
+
* This field is of access type 'inputOutput' and type MFFloat.
|
|
20671
|
+
*/
|
|
20672
|
+
curve: MFFloat;
|
|
20646
20673
|
/**
|
|
20647
20674
|
* Author-provided prose that describes intended purpose of the url asset.
|
|
20648
20675
|
*
|