x_ite 10.0.1 → 10.0.2

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.
Files changed (49) hide show
  1. package/README.md +4 -4
  2. package/dist/assets/components/Annotation.js +13 -13
  3. package/dist/assets/components/Annotation.min.js +1 -1
  4. package/dist/assets/components/CADGeometry.js +14 -14
  5. package/dist/assets/components/CADGeometry.min.js +1 -1
  6. package/dist/assets/components/CubeMapTexturing.js +25 -25
  7. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  8. package/dist/assets/components/DIS.js +13 -13
  9. package/dist/assets/components/DIS.min.js +1 -1
  10. package/dist/assets/components/EventUtilities.js +9 -9
  11. package/dist/assets/components/EventUtilities.min.js +1 -1
  12. package/dist/assets/components/Geometry2D.js +18 -18
  13. package/dist/assets/components/Geometry2D.min.js +1 -1
  14. package/dist/assets/components/Geospatial.js +33 -33
  15. package/dist/assets/components/Geospatial.min.js +1 -1
  16. package/dist/assets/components/HAnim.js +23 -23
  17. package/dist/assets/components/HAnim.min.js +1 -1
  18. package/dist/assets/components/KeyDeviceSensor.js +8 -8
  19. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  20. package/dist/assets/components/Layout.js +27 -27
  21. package/dist/assets/components/Layout.min.js +1 -1
  22. package/dist/assets/components/NURBS.js +23 -23
  23. package/dist/assets/components/NURBS.min.js +1 -1
  24. package/dist/assets/components/ParticleSystems.js +26 -26
  25. package/dist/assets/components/ParticleSystems.min.js +1 -1
  26. package/dist/assets/components/Picking.js +18 -18
  27. package/dist/assets/components/Picking.min.js +1 -1
  28. package/dist/assets/components/RigidBodyPhysics.js +17 -17
  29. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  30. package/dist/assets/components/Scripting.js +38 -38
  31. package/dist/assets/components/Scripting.min.js +1 -1
  32. package/dist/assets/components/Text.js +24 -24
  33. package/dist/assets/components/Text.min.js +1 -1
  34. package/dist/assets/components/TextureProjection.js +15 -15
  35. package/dist/assets/components/TextureProjection.min.js +1 -1
  36. package/dist/assets/components/Texturing3D.js +27 -27
  37. package/dist/assets/components/Texturing3D.min.js +1 -1
  38. package/dist/assets/components/VolumeRendering.js +19 -19
  39. package/dist/assets/components/VolumeRendering.min.js +1 -1
  40. package/dist/assets/components/X_ITE.js +38 -176
  41. package/dist/assets/components/X_ITE.min.js +1 -1
  42. package/dist/x_ite.css +1 -1
  43. package/dist/x_ite.d.ts +784 -65
  44. package/dist/x_ite.js +597 -608
  45. package/dist/x_ite.min.js +1 -1
  46. package/dist/x_ite.min.mjs +1 -1
  47. package/dist/x_ite.mjs +597 -608
  48. package/dist/x_ite.zip +0 -0
  49. package/package.json +1 -1
package/dist/x_ite.d.ts CHANGED
@@ -394,9 +394,11 @@ type BrowserOption = {
394
394
  TextureQuality: QualityLevels,
395
395
  AutoUpdate: boolean,
396
396
  Cache: boolean,
397
+ ColorSpace: ColorSpaceTypes,
397
398
  ContentScale: number,
398
399
  ContextMenu: boolean,
399
400
  Debug: boolean,
401
+ Exposure: number,
400
402
  Gravity: number,
401
403
  LogarithmicDepthBuffer: boolean,
402
404
  Multisampling: number,
@@ -404,10 +406,13 @@ type BrowserOption = {
404
406
  OrderIndependentTransparency: boolean,
405
407
  StraightenHorizon: boolean,
406
408
  Timings: boolean,
409
+ ToneMapping: ToneMappingTypes,
407
410
  }
408
411
 
412
+ type ColorSpaceTypes = "SRGB" | "LINEAR_WHEN_PHYSICAL_MATERIAL" | "LINEAR";
409
413
  type QualityLevels = "LOW" | "MEDIUM" | "HIGH";
410
414
  type ShadingTypes = "POINT" | "WIREFRAME" | "FLAT" | "GOURAUD" | "PHONG";
415
+ type ToneMappingTypes = "NONE" | "ACES_NARKOWICZ" | "ACES_HILL" | "ACES_HILL_EXPOSURE_BOOST" | "KHR_PBR_NEUTRAL";
411
416
 
412
417
  type RenderingProperty = {
413
418
  Shading: ShadingTypes,
@@ -1091,6 +1096,7 @@ interface X3DConstants
1091
1096
  readonly AcousticProperties: number;
1092
1097
  readonly Analyser: number;
1093
1098
  readonly Anchor: number;
1099
+ readonly AnisotropyMaterialExtension: number;
1094
1100
  readonly Appearance: number;
1095
1101
  readonly Arc2D: number;
1096
1102
  readonly ArcClose2D: number;
@@ -1119,6 +1125,7 @@ interface X3DConstants
1119
1125
  readonly ChannelSelector: number;
1120
1126
  readonly ChannelSplitter: number;
1121
1127
  readonly Circle2D: number;
1128
+ readonly ClearcoatMaterialExtension: number;
1122
1129
  readonly ClipPlane: number;
1123
1130
  readonly CollidableOffset: number;
1124
1131
  readonly CollidableShape: number;
@@ -1155,12 +1162,13 @@ interface X3DConstants
1155
1162
  readonly DISEntityManager: number;
1156
1163
  readonly DISEntityTypeMapping: number;
1157
1164
  readonly Disk2D: number;
1165
+ readonly DispersionMaterialExtension: number;
1158
1166
  readonly DoubleAxisHingeJoint: number;
1159
1167
  readonly DynamicsCompressor: number;
1160
1168
  readonly EaseInEaseOut: number;
1161
1169
  readonly EdgeEnhancementVolumeStyle: number;
1162
1170
  readonly ElevationGrid: number;
1163
- readonly EnvironmentLight: number;
1171
+ readonly EmissiveStrengthMaterialExtension: number;
1164
1172
  readonly EspduTransform: number;
1165
1173
  readonly ExplosionEmitter: number;
1166
1174
  readonly Extrusion: number;
@@ -1201,8 +1209,11 @@ interface X3DConstants
1201
1209
  readonly IndexedTriangleSet: number;
1202
1210
  readonly IndexedTriangleStripSet: number;
1203
1211
  readonly Inline: number;
1212
+ readonly InstancedShape: number;
1204
1213
  readonly IntegerSequencer: number;
1205
1214
  readonly IntegerTrigger: number;
1215
+ readonly IORMaterialExtension: number;
1216
+ readonly IridescenceMaterialExtension: number;
1206
1217
  readonly IsoSurfaceVolumeData: number;
1207
1218
  readonly KeySensor: number;
1208
1219
  readonly Layer: number;
@@ -1294,12 +1305,15 @@ interface X3DConstants
1294
1305
  readonly ShaderPart: number;
1295
1306
  readonly ShaderProgram: number;
1296
1307
  readonly Shape: number;
1308
+ readonly SheenMaterialExtension: number;
1297
1309
  readonly SignalPdu: number;
1298
1310
  readonly SilhouetteEnhancementVolumeStyle: number;
1299
1311
  readonly SingleAxisHingeJoint: number;
1300
1312
  readonly SliderJoint: number;
1301
1313
  readonly Sound: number;
1302
1314
  readonly SpatialSound: number;
1315
+ readonly SpecularGlossinessMaterial: number;
1316
+ readonly SpecularMaterialExtension: number;
1303
1317
  readonly Sphere: number;
1304
1318
  readonly SphereSensor: number;
1305
1319
  readonly SplinePositionInterpolator: number;
@@ -1334,6 +1348,7 @@ interface X3DConstants
1334
1348
  readonly TouchSensor: number;
1335
1349
  readonly Transform: number;
1336
1350
  readonly TransformSensor: number;
1351
+ readonly TransmissionMaterialExtension: number;
1337
1352
  readonly TransmitterPdu: number;
1338
1353
  readonly TriangleFanSet: number;
1339
1354
  readonly TriangleSet: number;
@@ -1342,12 +1357,14 @@ interface X3DConstants
1342
1357
  readonly TwoSidedMaterial: number;
1343
1358
  readonly UniversalJoint: number;
1344
1359
  readonly UnlitMaterial: number;
1360
+ readonly UnlitMaterialExtension: number;
1345
1361
  readonly Viewpoint: number;
1346
1362
  readonly ViewpointGroup: number;
1347
1363
  readonly Viewport: number;
1348
1364
  readonly VisibilitySensor: number;
1349
1365
  readonly VolumeData: number;
1350
1366
  readonly VolumeEmitter: number;
1367
+ readonly VolumeMaterialExtension: number;
1351
1368
  readonly VolumePickSensor: number;
1352
1369
  readonly WaveShaper: number;
1353
1370
  readonly WindPhysicsModel: number;
@@ -1574,6 +1591,14 @@ declare class SFColor extends X3DField
1574
1591
  * The saturation, and value component must be in the range 0–1, and the hue component must be in the range 0–2π.
1575
1592
  */
1576
1593
  setHSV (h: number, s: number, v: number): void;
1594
+ /**
1595
+ * Returns a SFColor object whose value is converted to sRGB color space.
1596
+ */
1597
+ linearToSRGB (): SFColor;
1598
+ /**
1599
+ * Returns a SFColor object whose value is converted to linear color space.
1600
+ */
1601
+ sRGBToLinear (): SFColor;
1577
1602
  /**
1578
1603
  * Linearly interpolates in HSV space between source color and destination color by an amount of t.
1579
1604
  */
@@ -1625,7 +1650,15 @@ declare class SFColorRGBA extends X3DField
1625
1650
  *
1626
1651
  * The saturation, and value component must be in the range 0–1, and the hue component must be in the range 0–2π.
1627
1652
  */
1628
- setHSVA (h: number, s: number, v: number): void;
1653
+ setHSVA (h: number, s: number, v: number, a: number): void;
1654
+ /**
1655
+ * Returns a SFColorRGBA object whose value is converted to sRGB color space.
1656
+ */
1657
+ linearToSRGB (): SFColorRGBA;
1658
+ /**
1659
+ * Returns a SFColorRGBA object whose value is converted to linear color space.
1660
+ */
1661
+ sRGBToLinear (): SFColorRGBA;
1629
1662
  /**
1630
1663
  * Linearly interpolates in HSVA space between source color and destination color by an amount of t.
1631
1664
  */
@@ -2890,6 +2923,41 @@ interface AnchorProxy extends X3DGroupingNodeProxy, X3DUrlObjectProxy
2890
2923
  visible: boolean;
2891
2924
  }
2892
2925
 
2926
+ /** AnisotropyMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
2927
+ interface AnisotropyMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
2928
+ {
2929
+ /**
2930
+ * The rotation of the anisotropy in tangent, bitangent space, measured in radians counter-clockwise from the tangent. When the anisotropy texture is present, this value provides additional rotation to the vectors in the texture.
2931
+ *
2932
+ * This field is of access type 'inputOutput' and type SFFloat.
2933
+ */
2934
+ anisotropyRotation: number;
2935
+ /**
2936
+ * The anisotropy strength. When the anisotropy texture is present, this value is multiplied by the texture's blue channel.
2937
+ *
2938
+ * This field is of access type 'inputOutput' and type SFFloat.
2939
+ */
2940
+ anisotropyStrength: number;
2941
+ /**
2942
+ * The anisotropy texture. Red and green channels represent the anisotropy direction in tangent, bitangent space to be rotated by the anisotropy rotation. The blue channel contains strength as to be multiplied by the anisotropy strength.
2943
+ *
2944
+ * This field is of access type 'inputOutput' and type SFNode.
2945
+ */
2946
+ anisotropyTexture: SFNode | null;
2947
+ /**
2948
+ * Input/Output field *anisotropyTextureMapping*.
2949
+ *
2950
+ * This field is of access type 'inputOutput' and type SFString.
2951
+ */
2952
+ anisotropyTextureMapping: string;
2953
+ /**
2954
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
2955
+ *
2956
+ * This field is of access type 'inputOutput' and type SFNode.
2957
+ */
2958
+ metadata: SFNode | null;
2959
+ }
2960
+
2893
2961
  /** Appearance specifies the visual properties of geometry by containing the Material, ImageTexture/MovieTexture/PixelTexture, FillProperties, LineProperties, programmable shader nodes (ComposedShader, PackagedShader, ProgramShader) and TextureTransform nodes. */
2894
2962
  interface AppearanceProxy extends X3DAppearanceNodeProxy
2895
2963
  {
@@ -2916,14 +2984,6 @@ interface AppearanceProxy extends X3DAppearanceNodeProxy
2916
2984
  */
2917
2985
  backMaterial: X3DMaterialNodeProxy | null;
2918
2986
  /**
2919
- * This field is of access type 'inputOutput' and type SFNode.
2920
- */
2921
- blendMode: BlendModeProxy | null;
2922
- /**
2923
- * This field is of access type 'inputOutput' and type SFNode.
2924
- */
2925
- depthMode: DepthModeProxy | null;
2926
- /**
2927
2987
  * Single contained FillProperties node that can specify additional visual attributes applied to polygonal areas of corresponding geometry, on top of whatever other appearance is already defined.
2928
2988
  *
2929
2989
  * This field is of access type 'inputOutput' and type SFNode.
@@ -3614,37 +3674,77 @@ interface BlendedVolumeStyleProxy extends X3DComposableVolumeRenderStyleNodeProx
3614
3674
  weightTransferFunction2: X3DTexture2DNodeProxy | null;
3615
3675
  }
3616
3676
 
3617
- /** undefined */
3677
+ /** BlendMode controls how pixels of an objects are drawn. Pixels can be drawn using a function that blends the incoming (source) RGBA values with the RGBA values that are already in the frame buffer (the destination values). BlendMode is an X3DAppearanceChildNode node that handles blend operations. */
3618
3678
  interface BlendModeProxy extends X3DAppearanceChildNodeProxy
3619
3679
  {
3620
3680
  /**
3681
+ * Specifies the alpha blend equation, how the alpha component of the source and destination colors are combined. It must be:
3682
+ - FUNC_ADD
3683
+ - FUNC_SUBTRACT
3684
+ - FUNC_REVERSE_SUBTRACT
3685
+ *
3621
3686
  * This field is of access type 'inputOutput' and type SFString.
3622
3687
  */
3623
- alphaEquation: "FUNC_ADD" | "FUNC_SUBTRACT" | "FUNC_REVERSE_SUBTRACT" | "MIN" | "MAX";
3688
+ alphaEquation: "FUNC_ADD" | "FUNC_SUBTRACT" | "FUNC_REVERSE_SUBTRACT";
3624
3689
  /**
3625
- * This field is of access type 'inputOutput' and type SFColor.
3690
+ * The *blendColor* may be used to calculate the source and destination blending factors.
3691
+ *
3692
+ * This field is of access type 'inputOutput' and type SFColorRGBA.
3626
3693
  */
3627
- blendColor: SFColor;
3694
+ blendColor: SFColorRGBA;
3628
3695
  /**
3696
+ * Specifies the RGB blend equation, how the red, green, and blue components of the source and destination colors are combined. It must be:
3697
+ - FUNC_ADD
3698
+ - FUNC_SUBTRACT
3699
+ - FUNC_REVERSE_SUBTRACT
3700
+ *
3629
3701
  * This field is of access type 'inputOutput' and type SFString.
3630
3702
  */
3631
- colorEquation: "FUNC_ADD" | "FUNC_SUBTRACT" | "FUNC_REVERSE_SUBTRACT" | "MIN" | "MAX";
3703
+ colorEquation: "FUNC_ADD" | "FUNC_SUBTRACT" | "FUNC_REVERSE_SUBTRACT";
3632
3704
  /**
3705
+ * Specifies how the alpha destination blending factors are computed.
3706
+ *
3633
3707
  * This field is of access type 'inputOutput' and type SFString.
3634
3708
  */
3635
- destinationAlphaFactor: "ZERO" | "ONE" | "SRC_COLOR" | "ONE_MINUS_SRC_COLOR" | "DST_COLOR" | "ONE_MINUS_DST_COLOR" | "SRC_ALPHA" | "ONE_MINUS_SRC_ALPHA" | "DST_ALPHA" | "ONE_MINUS_DST_ALPHA" | "SRC_ALPHA_SATURATE" | "CONSTANT_COLOR" | "ONE_MINUS_CONSTANT_COLOR" | "CONSTANT_ALPHA" | "ONE_MINUS_CONSTANT_ALPHA";
3709
+ destinationAlphaFactor: "ZERO" | "ONE" | "SRC_COLOR" | "ONE_MINUS_SRC_COLOR" | "DST_COLOR" | "ONE_MINUS_DST_COLOR" | "SRC_ALPHA" | "ONE_MINUS_SRC_ALPHA" | "DST_ALPHA" | "ONE_MINUS_DST_ALPHA" | "CONSTANT_COLOR" | "ONE_MINUS_CONSTANT_COLOR" | "CONSTANT_ALPHA" | "ONE_MINUS_CONSTANT_ALPHA";
3636
3710
  /**
3711
+ * Specifies how the red, green, and blue destination blending factors are computed.
3712
+ *
3637
3713
  * This field is of access type 'inputOutput' and type SFString.
3638
3714
  */
3639
- destinationColorFactor: "ZERO" | "ONE" | "SRC_COLOR" | "ONE_MINUS_SRC_COLOR" | "DST_COLOR" | "ONE_MINUS_DST_COLOR" | "SRC_ALPHA" | "ONE_MINUS_SRC_ALPHA" | "DST_ALPHA" | "ONE_MINUS_DST_ALPHA" | "SRC_ALPHA_SATURATE" | "CONSTANT_COLOR" | "ONE_MINUS_CONSTANT_COLOR" | "CONSTANT_ALPHA" | "ONE_MINUS_CONSTANT_ALPHA";
3715
+ destinationColorFactor: "ZERO" | "ONE" | "SRC_COLOR" | "ONE_MINUS_SRC_COLOR" | "DST_COLOR" | "ONE_MINUS_DST_COLOR" | "SRC_ALPHA" | "ONE_MINUS_SRC_ALPHA" | "DST_ALPHA" | "ONE_MINUS_DST_ALPHA" | "CONSTANT_COLOR" | "ONE_MINUS_CONSTANT_COLOR" | "CONSTANT_ALPHA" | "ONE_MINUS_CONSTANT_ALPHA";
3640
3716
  /**
3641
- * This field is of access type 'inputOutput' and type SFString.
3717
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
3718
+ *
3719
+ * This field is of access type 'inputOutput' and type SFNode.
3642
3720
  */
3643
- sourceAlphaFactor: "ZERO" | "ONE" | "SRC_COLOR" | "ONE_MINUS_SRC_COLOR" | "DST_COLOR" | "ONE_MINUS_DST_COLOR" | "SRC_ALPHA" | "ONE_MINUS_SRC_ALPHA" | "DST_ALPHA" | "ONE_MINUS_DST_ALPHA" | "SRC_ALPHA_SATURATE" | "CONSTANT_COLOR" | "ONE_MINUS_CONSTANT_COLOR" | "CONSTANT_ALPHA" | "ONE_MINUS_CONSTANT_ALPHA";
3721
+ metadata: SFNode | null;
3644
3722
  /**
3723
+ * Specifies how the alpha source blending factors are computed.
3724
+ *
3645
3725
  * This field is of access type 'inputOutput' and type SFString.
3646
3726
  */
3647
- sourceColorFactor: "ZERO" | "ONE" | "SRC_COLOR" | "ONE_MINUS_SRC_COLOR" | "DST_COLOR" | "ONE_MINUS_DST_COLOR" | "SRC_ALPHA" | "ONE_MINUS_SRC_ALPHA" | "DST_ALPHA" | "ONE_MINUS_DST_ALPHA" | "SRC_ALPHA_SATURATE" | "CONSTANT_COLOR" | "ONE_MINUS_CONSTANT_COLOR" | "CONSTANT_ALPHA" | "ONE_MINUS_CONSTANT_ALPHA";
3727
+ sourceAlphaFactor: "ZERO" | "ONE" | "SRC_COLOR" | "ONE_MINUS_SRC_COLOR" | "DST_COLOR" | "ONE_MINUS_DST_COLOR" | "SRC_ALPHA" | "ONE_MINUS_SRC_ALPHA" | "DST_ALPHA" | "ONE_MINUS_DST_ALPHA" | "CONSTANT_COLOR" | "ONE_MINUS_CONSTANT_COLOR" | "CONSTANT_ALPHA" | "ONE_MINUS_CONSTANT_ALPHA";
3728
+ /**
3729
+ * Specifies how the red, green, and blue source blending factors are computed.Source and destination parameters must be one of the following symbolic constants:
3730
+ - ZERO
3731
+ - ONE
3732
+ - SRC_COLOR
3733
+ - ONE_MINUS_SRC_COLOR
3734
+ - DST_COLOR
3735
+ - ONE_MINUS_DST_COLOR
3736
+ - SRC_ALPHA
3737
+ - ONE_MINUS_SRC_ALPHA
3738
+ - DST_ALPHA
3739
+ - ONE_MINUS_DST_ALPHA
3740
+ - CONSTANT_COLOR
3741
+ - ONE_MINUS_CONSTANT_COLOR
3742
+ - CONSTANT_ALPHA
3743
+ - ONE_MINUS_CONSTANT_ALPHA
3744
+ *
3745
+ * This field is of access type 'inputOutput' and type SFString.
3746
+ */
3747
+ sourceColorFactor: "ZERO" | "ONE" | "SRC_COLOR" | "ONE_MINUS_SRC_COLOR" | "DST_COLOR" | "ONE_MINUS_DST_COLOR" | "SRC_ALPHA" | "ONE_MINUS_SRC_ALPHA" | "DST_ALPHA" | "ONE_MINUS_DST_ALPHA" | "CONSTANT_COLOR" | "ONE_MINUS_CONSTANT_COLOR" | "CONSTANT_ALPHA" | "ONE_MINUS_CONSTANT_ALPHA";
3648
3748
  }
3649
3749
 
3650
3750
  /** BooleanFilter selectively passes true, false or negated events. */
@@ -4502,6 +4602,65 @@ interface Circle2DProxy extends X3DGeometryNodeProxy
4502
4602
  radius: number;
4503
4603
  }
4504
4604
 
4605
+ /** ClearcoatMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
4606
+ interface ClearcoatMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
4607
+ {
4608
+ /**
4609
+ * The clearcoat layer intensity.
4610
+ *
4611
+ * This field is of access type 'inputOutput' and type SFFloat.
4612
+ */
4613
+ clearcoat: number;
4614
+ /**
4615
+ * The clearcoat normal map texture.
4616
+ *
4617
+ * This field is of access type 'inputOutput' and type SFNode.
4618
+ */
4619
+ clearcoatNormalTexture: SFNode | null;
4620
+ /**
4621
+ * Input/Output field *clearcoatNormalTextureMapping*.
4622
+ *
4623
+ * This field is of access type 'inputOutput' and type SFString.
4624
+ */
4625
+ clearcoatNormalTextureMapping: string;
4626
+ /**
4627
+ * The clearcoat layer roughness.
4628
+ *
4629
+ * This field is of access type 'inputOutput' and type SFFloat.
4630
+ */
4631
+ clearcoatRoughness: number;
4632
+ /**
4633
+ * The clearcoat layer roughness texture.
4634
+ *
4635
+ * This field is of access type 'inputOutput' and type SFNode.
4636
+ */
4637
+ clearcoatRoughnessTexture: SFNode | null;
4638
+ /**
4639
+ * Input/Output field *clearcoatRoughnessTextureMapping*.
4640
+ *
4641
+ * This field is of access type 'inputOutput' and type SFString.
4642
+ */
4643
+ clearcoatRoughnessTextureMapping: string;
4644
+ /**
4645
+ * The clearcoat layer intensity texture.
4646
+ *
4647
+ * This field is of access type 'inputOutput' and type SFNode.
4648
+ */
4649
+ clearcoatTexture: SFNode | null;
4650
+ /**
4651
+ * Input/Output field *clearcoatTextureMapping*.
4652
+ *
4653
+ * This field is of access type 'inputOutput' and type SFString.
4654
+ */
4655
+ clearcoatTextureMapping: string;
4656
+ /**
4657
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
4658
+ *
4659
+ * This field is of access type 'inputOutput' and type SFNode.
4660
+ */
4661
+ metadata: SFNode | null;
4662
+ }
4663
+
4505
4664
  /** ClipPlane specifies a single plane equation used to clip (i. */
4506
4665
  interface ClipPlaneProxy extends X3DChildNodeProxy
4507
4666
  {
@@ -6109,26 +6268,42 @@ interface DelayProxy extends X3DSoundProcessingNodeProxy
6109
6268
  tailTime: number;
6110
6269
  }
6111
6270
 
6112
- /** undefined */
6271
+ /** DepthMode contains parameters that are specific for depth control, like the value used for depth buffer comparisons. */
6113
6272
  interface DepthModeProxy extends X3DAppearanceChildNodeProxy
6114
6273
  {
6115
6274
  /**
6275
+ * Specifies a function that compares incoming pixel depth to the current depth buffer value.Must be one of the following symbolic constants:* NEVER* LESS* EQUAL* LESS_EQUAL* GREATER* NOT_EQUAL* GREATER_EQUAL* ALWAYS
6276
+ *
6116
6277
  * This field is of access type 'inputOutput' and type SFString.
6117
6278
  */
6118
- depthFunc: "NEVER" | "LESS" | "EQUAL" | "LESS_EQUAL" | "GREATER" | "NOT_EQUAL" | "GREATER_EQUAL" | "ALWAYS";
6279
+ depthFunction: "NEVER" | "LESS" | "EQUAL" | "LESS_EQUAL" | "GREATER" | "NOT_EQUAL" | "GREATER_EQUAL" | "ALWAYS";
6119
6280
  /**
6281
+ * Sets whether writing into the depth buffer is enabled or disabled.
6282
+ *
6120
6283
  * This field is of access type 'inputOutput' and type SFBool.
6121
6284
  */
6122
6285
  depthMask: boolean;
6123
6286
  /**
6287
+ * Specifies the depth range mapping from normalized device coordinates to window or viewport coordinates.The first value is *zNear*, a GLclampf specifying the mapping of the near clipping plane to window or viewport coordinates. Clamped to the range 0 to 1 and must be less than or equal to zFar. The default value is 0.The second value is *zFar*, a GLclampf specifying the mapping of the far clipping plane to window or viewport coordinates. Clamped to the range 0 to 1. The default value is 1.
6288
+ *
6124
6289
  * This field is of access type 'inputOutput' and type SFVec2f.
6125
6290
  */
6126
6291
  depthRange: SFVec2f;
6127
6292
  /**
6293
+ * Activates depth comparisons and updates to the depth buffer.
6294
+ *
6128
6295
  * This field is of access type 'inputOutput' and type SFBool.
6129
6296
  */
6130
6297
  depthTest: boolean;
6131
6298
  /**
6299
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
6300
+ *
6301
+ * This field is of access type 'inputOutput' and type SFNode.
6302
+ */
6303
+ metadata: SFNode | null;
6304
+ /**
6305
+ * Specifies the scale factors and units to calculate depth values.The offset is added before the depth test is performed and before the value is written into the depth buffer.The first value is *factor*, a GLfloat which sets the scale factor for the variable depth offset for each polygon. The default value is 0.The second value is *units*, a GLfloat which sets the multiplier by which an implementation-specific value is multiplied with to create a constant depth offset. The default value is 0.
6306
+ *
6132
6307
  * This field is of access type 'inputOutput' and type SFVec2f.
6133
6308
  */
6134
6309
  polygonOffset: SFVec2f;
@@ -6358,6 +6533,23 @@ interface Disk2DProxy extends X3DGeometryNodeProxy
6358
6533
  solid: boolean;
6359
6534
  }
6360
6535
 
6536
+ /** DispersionMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
6537
+ interface DispersionMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
6538
+ {
6539
+ /**
6540
+ * The strength of the dispersion effect, specified as 20/Abbe number.
6541
+ *
6542
+ * This field is of access type 'inputOutput' and type SFFloat.
6543
+ */
6544
+ dispersion: number;
6545
+ /**
6546
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
6547
+ *
6548
+ * This field is of access type 'inputOutput' and type SFNode.
6549
+ */
6550
+ metadata: SFNode | null;
6551
+ }
6552
+
6361
6553
  /** DoubleAxisHingeJoint has two independent axes located around a common anchor point. */
6362
6554
  interface DoubleAxisHingeJointProxy extends X3DRigidJointNodeProxy
6363
6555
  {
@@ -6825,25 +7017,21 @@ interface ElevationGridProxy extends X3DGeometryNodeProxy
6825
7017
  zSpacing: number;
6826
7018
  }
6827
7019
 
6828
- /** undefined */
6829
- interface EnvironmentLightProxy extends X3DLightNodeProxy
7020
+ /** EmissiveStrengthMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
7021
+ interface EmissiveStrengthMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
6830
7022
  {
6831
7023
  /**
6832
- * This field is of access type 'inputOutput' and type MFFloat.
6833
- */
6834
- diffuseCoefficients: MFFloat;
6835
- /**
6836
- * This field is of access type 'inputOutput' and type SFNode.
6837
- */
6838
- diffuseTexture: X3DEnvironmentTextureNodeProxy | null;
6839
- /**
6840
- * This field is of access type 'inputOutput' and type SFRotation.
7024
+ * The strength adjustment to be multiplied with the material's emissive value.
7025
+ *
7026
+ * This field is of access type 'inputOutput' and type SFFloat.
6841
7027
  */
6842
- rotation: SFRotation;
7028
+ emissiveStrength: number;
6843
7029
  /**
7030
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
7031
+ *
6844
7032
  * This field is of access type 'inputOutput' and type SFNode.
6845
7033
  */
6846
- specularTexture: X3DEnvironmentTextureNodeProxy | null;
7034
+ metadata: SFNode | null;
6847
7035
  }
6848
7036
 
6849
7037
  /** EspduTransform is a networked Transform node that can contain most nodes. */
@@ -9630,21 +9818,87 @@ interface ImageTexture3DProxy extends X3DTexture3DNodeProxy, X3DUrlObjectProxy
9630
9818
  url: MFString;
9631
9819
  }
9632
9820
 
9633
- /** undefined */
9634
- interface ImageTextureAtlasProxy extends X3DTexture3DNodeProxy, X3DUrlObjectProxy
9821
+ /** ImageTextureAtlas defines a 3D image-based texture map by specifying a single image file that contains slices for complete 3D data. */
9822
+ interface ImageTextureAtlasProxy extends X3DTexture3DNodeProxy
9635
9823
  {
9636
9824
  /**
9825
+ * *autoRefresh* defines interval in seconds before automatic reload of current url asset is performed.
9826
+ *
9827
+ * This field is of access type 'inputOutput' and type SFTime.
9828
+ */
9829
+ autoRefresh: number;
9830
+ /**
9831
+ * *autoRefreshTimeLimit* defines maximum duration that automatic refresh activity can occur.
9832
+ *
9833
+ * This field is of access type 'inputOutput' and type SFTime.
9834
+ */
9835
+ autoRefreshTimeLimit: number;
9836
+ /**
9837
+ * Author-provided prose that describes intended purpose of the url asset.
9838
+ *
9839
+ * This field is of access type 'inputOutput' and type SFString.
9840
+ */
9841
+ description: string;
9842
+ /**
9843
+ * *load*=true means *load* immediately, *load*=false means defer loading or else unload a previously loaded scene.
9844
+ *
9845
+ * This field is of access type 'inputOutput' and type SFBool.
9846
+ */
9847
+ load: boolean;
9848
+ /**
9849
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
9850
+ *
9851
+ * This field is of access type 'inputOutput' and type SFNode.
9852
+ */
9853
+ metadata: SFNode | null;
9854
+ /**
9855
+ * Total number of images.
9856
+ *
9637
9857
  * This field is of access type 'inputOutput' and type SFInt32.
9638
9858
  */
9639
9859
  numberOfSlices: number;
9640
9860
  /**
9861
+ * Whether to repeat texture along R axis from front to back.
9862
+ *
9863
+ * This field is of access type 'initializeOnly' and type SFBool.
9864
+ */
9865
+ repeatR: boolean;
9866
+ /**
9867
+ * Whether to repeat texture along S axis horizontally from left to right.
9868
+ *
9869
+ * This field is of access type 'initializeOnly' and type SFBool.
9870
+ */
9871
+ repeatS: boolean;
9872
+ /**
9873
+ * Whether to repeat texture along T axis vertically from top to bottom.
9874
+ *
9875
+ * This field is of access type 'initializeOnly' and type SFBool.
9876
+ */
9877
+ repeatT: boolean;
9878
+ /**
9879
+ * Number of images in x direction.
9880
+ *
9641
9881
  * This field is of access type 'inputOutput' and type SFInt32.
9642
9882
  */
9643
9883
  slicesOverX: number;
9644
9884
  /**
9885
+ * Number of images in y direction.
9886
+ *
9645
9887
  * This field is of access type 'inputOutput' and type SFInt32.
9646
9888
  */
9647
9889
  slicesOverY: number;
9890
+ /**
9891
+ * Single contained TextureProperties node that can specify additional visual attributes applied to corresponding texture images.
9892
+ *
9893
+ * This field is of access type 'initializeOnly' and type SFNode.
9894
+ */
9895
+ textureProperties: SFNode | null;
9896
+ /**
9897
+ * Location and filename of image. Multiple locations are more reliable, and including a Web address lets e-mail attachments work.
9898
+ *
9899
+ * This field is of access type 'inputOutput' and type MFString.
9900
+ */
9901
+ url: MFString;
9648
9902
  }
9649
9903
 
9650
9904
  /** IndexedFaceSet defines polygons using index lists corresponding to vertex coordinates. */
@@ -10252,6 +10506,83 @@ interface InlineProxy extends X3DChildNodeProxy, X3DBoundedObjectProxy, X3DUrlOb
10252
10506
  visible: boolean;
10253
10507
  }
10254
10508
 
10509
+ /** InstancedShape can appear under any grouping node. InstancedShape can contain an Appearance node and a geometry node (for example one of the primitives Box Cone Cylinder Sphere Text, one of ElevationGrid Extrusion IndexedFaceSet IndexedLineSet LineSet PointSet, or one of the other geometry nodes) and this geometry node is instantiated as often as transformations are provided. */
10510
+ interface InstancedShapeProxy extends X3DShapeNodeProxy
10511
+ {
10512
+ /**
10513
+ * Input/Output field *appearance*.
10514
+ *
10515
+ * This field is of access type 'inputOutput' and type SFNode.
10516
+ */
10517
+ appearance: SFNode | null;
10518
+ /**
10519
+ * Bounding box center accompanies bboxSize and provides an optional hint for bounding box position offset from origin of local coordinate system.
10520
+ *
10521
+ * This field is of access type 'initializeOnly' and type SFVec3f.
10522
+ */
10523
+ bboxCenter: SFVec3f;
10524
+ /**
10525
+ * Whether to display bounding box for associated geometry, aligned with world coordinates.
10526
+ *
10527
+ * This field is of access type 'inputOutput' and type SFBool.
10528
+ */
10529
+ bboxDisplay: boolean;
10530
+ /**
10531
+ * Bounding box size is usually omitted, and can easily be calculated automatically by an X3D player at scene-loading time with minimal computational cost. Bounding box size can also be defined as an optional authoring hint that suggests an optimization or constraint.
10532
+ *
10533
+ * This field is of access type 'initializeOnly' and type SFVec3f.
10534
+ */
10535
+ bboxSize: SFVec3f;
10536
+ /**
10537
+ * Input/Output field *castShadow*.
10538
+ *
10539
+ * This field is of access type 'inputOutput' and type SFBool.
10540
+ */
10541
+ castShadow: boolean;
10542
+ /**
10543
+ * Input/Output field *geometry*.
10544
+ *
10545
+ * This field is of access type 'inputOutput' and type SFNode.
10546
+ */
10547
+ geometry: SFNode | null;
10548
+ /**
10549
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10550
+ *
10551
+ * This field is of access type 'inputOutput' and type SFNode.
10552
+ */
10553
+ metadata: SFNode | null;
10554
+ /**
10555
+ * *pointerEvents* defines whether this Shape becomes target for pointer events.
10556
+ *
10557
+ * This field is of access type 'inputOutput' and type SFBool.
10558
+ */
10559
+ pointerEvents: boolean;
10560
+ /**
10561
+ * Input/Output field *rotations*.
10562
+ *
10563
+ * This field is of access type 'inputOutput' and type MFRotation.
10564
+ */
10565
+ rotations: MFRotation;
10566
+ /**
10567
+ * Input/Output field *scales*.
10568
+ *
10569
+ * This field is of access type 'inputOutput' and type MFVec3f.
10570
+ */
10571
+ scales: MFVec3f;
10572
+ /**
10573
+ * Input/Output field *translations*.
10574
+ *
10575
+ * This field is of access type 'inputOutput' and type MFVec3f.
10576
+ */
10577
+ translations: MFVec3f;
10578
+ /**
10579
+ * Whether or not renderable content within this node is visually displayed.
10580
+ *
10581
+ * This field is of access type 'inputOutput' and type SFBool.
10582
+ */
10583
+ visible: boolean;
10584
+ }
10585
+
10255
10586
  /** IntegerSequencer generates periodic discrete integer values. */
10256
10587
  interface IntegerSequencerProxy extends X3DSequencerNodeProxy
10257
10588
  {
@@ -10280,52 +10611,128 @@ interface IntegerSequencerProxy extends X3DSequencerNodeProxy
10280
10611
  */
10281
10612
  next: boolean;
10282
10613
  /**
10283
- * Send previous output value in keyValue array, and reset internal fraction field to match corresponding value in key array.
10614
+ * Send previous output value in keyValue array, and reset internal fraction field to match corresponding value in key array.
10615
+ *
10616
+ * This field is of access type 'inputOnly' and type SFBool.
10617
+ */
10618
+ previous: boolean;
10619
+ /**
10620
+ * set_fraction selects input key for corresponding keyValue output.
10621
+ *
10622
+ * This field is of access type 'inputOnly' and type SFFloat.
10623
+ */
10624
+ set_fraction: number;
10625
+ /**
10626
+ * Single intermittent output value determined by current key time and corresponding keyValue entry.
10627
+ *
10628
+ * This field is of access type 'outputOnly' and type SFInt32.
10629
+ */
10630
+ readonly value_changed: number;
10631
+ }
10632
+
10633
+ /** IntegerTrigger converts set_boolean true input events to an integer value (for example, useful when animating whichChoice in a Switch node). */
10634
+ interface IntegerTriggerProxy extends X3DTriggerNodeProxy
10635
+ {
10636
+ /**
10637
+ * integerKey is value for output when triggered.
10638
+ *
10639
+ * This field is of access type 'inputOutput' and type SFInt32.
10640
+ */
10641
+ integerKey: number;
10642
+ /**
10643
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10644
+ *
10645
+ * This field is of access type 'inputOutput' and type SFNode.
10646
+ */
10647
+ metadata: X3DMetadataObjectProxy | null;
10648
+ /**
10649
+ * If input event set_boolean is true, trigger output of integer value.
10650
+ *
10651
+ * This field is of access type 'inputOnly' and type SFBool.
10652
+ */
10653
+ set_boolean: boolean;
10654
+ /**
10655
+ * triggerValue provides integer event output matching integerKey when true set_boolean received.
10656
+ *
10657
+ * This field is of access type 'outputOnly' and type SFInt32.
10658
+ */
10659
+ readonly triggerValue: number;
10660
+ }
10661
+
10662
+ /** IORMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
10663
+ interface IORMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
10664
+ {
10665
+ /**
10666
+ * The index of refraction.
10667
+ *
10668
+ * This field is of access type 'inputOutput' and type SFFloat.
10669
+ */
10670
+ indexOfRefraction: number;
10671
+ /**
10672
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10673
+ *
10674
+ * This field is of access type 'inputOutput' and type SFNode.
10675
+ */
10676
+ metadata: SFNode | null;
10677
+ }
10678
+
10679
+ /** IridescenceMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
10680
+ interface IridescenceMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
10681
+ {
10682
+ /**
10683
+ * The iridescence intensity factor.
10684
+ *
10685
+ * This field is of access type 'inputOutput' and type SFFloat.
10686
+ */
10687
+ iridescence: number;
10688
+ /**
10689
+ * The index of refraction of the dielectric thin-film layer.
10690
+ *
10691
+ * This field is of access type 'inputOutput' and type SFFloat.
10692
+ */
10693
+ iridescenceIndexOfRefraction: number;
10694
+ /**
10695
+ * The iridescence intensity texture.
10284
10696
  *
10285
- * This field is of access type 'inputOnly' and type SFBool.
10697
+ * This field is of access type 'inputOutput' and type SFNode.
10286
10698
  */
10287
- previous: boolean;
10699
+ iridescenceTexture: SFNode | null;
10288
10700
  /**
10289
- * set_fraction selects input key for corresponding keyValue output.
10701
+ * Input/Output field *iridescenceTextureMapping*.
10290
10702
  *
10291
- * This field is of access type 'inputOnly' and type SFFloat.
10703
+ * This field is of access type 'inputOutput' and type SFString.
10292
10704
  */
10293
- set_fraction: number;
10705
+ iridescenceTextureMapping: string;
10294
10706
  /**
10295
- * Single intermittent output value determined by current key time and corresponding keyValue entry.
10707
+ * The maximum thickness of the thin-film layer given in nanometers.
10296
10708
  *
10297
- * This field is of access type 'outputOnly' and type SFInt32.
10709
+ * This field is of access type 'inputOutput' and type SFFloat.
10298
10710
  */
10299
- readonly value_changed: number;
10300
- }
10301
-
10302
- /** IntegerTrigger converts set_boolean true input events to an integer value (for example, useful when animating whichChoice in a Switch node). */
10303
- interface IntegerTriggerProxy extends X3DTriggerNodeProxy
10304
- {
10711
+ iridescenceThicknessMaximum: number;
10305
10712
  /**
10306
- * integerKey is value for output when triggered.
10713
+ * The minimum thickness of the thin-film layer given in nanometers.
10307
10714
  *
10308
- * This field is of access type 'inputOutput' and type SFInt32.
10715
+ * This field is of access type 'inputOutput' and type SFFloat.
10309
10716
  */
10310
- integerKey: number;
10717
+ iridescenceThicknessMinimum: number;
10311
10718
  /**
10312
- * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10719
+ * The thickness texture of the thin-film layer.
10313
10720
  *
10314
10721
  * This field is of access type 'inputOutput' and type SFNode.
10315
10722
  */
10316
- metadata: X3DMetadataObjectProxy | null;
10723
+ iridescenceThicknessTexture: SFNode | null;
10317
10724
  /**
10318
- * If input event set_boolean is true, trigger output of integer value.
10725
+ * Input/Output field *iridescenceThicknessTextureMapping*.
10319
10726
  *
10320
- * This field is of access type 'inputOnly' and type SFBool.
10727
+ * This field is of access type 'inputOutput' and type SFString.
10321
10728
  */
10322
- set_boolean: boolean;
10729
+ iridescenceThicknessTextureMapping: string;
10323
10730
  /**
10324
- * triggerValue provides integer event output matching integerKey when true set_boolean received.
10731
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10325
10732
  *
10326
- * This field is of access type 'outputOnly' and type SFInt32.
10733
+ * This field is of access type 'inputOutput' and type SFNode.
10327
10734
  */
10328
- readonly triggerValue: number;
10735
+ metadata: SFNode | null;
10329
10736
  }
10330
10737
 
10331
10738
  /** IsoSurfaceVolumeData displays one or more surfaces extracted from a voxel dataset. */
@@ -12049,7 +12456,7 @@ interface NavigationInfoProxy extends X3DBindableNodeProxy
12049
12456
  *
12050
12457
  * This field is of access type 'inputOutput' and type MFString.
12051
12458
  */
12052
- type: MFString <"ANY" | "WALK" | "EXAMINE" | "FLY" | "LOOKAT" | "NONE" | "EXPLORE" | "PLANE" | "PLANE_create3000.github.io">;
12459
+ type: MFString <"ANY" | "WALK" | "EXAMINE" | "FLY" | "LOOKAT" | "NONE" | "EXPLORE">;
12053
12460
  /**
12054
12461
  * Geometry beyond the visibilityLimit may not be rendered (far clipping plane of the view frustrum).
12055
12462
  *
@@ -15819,6 +16226,53 @@ interface ShapeProxy extends X3DShapeNodeProxy
15819
16226
  visible: boolean;
15820
16227
  }
15821
16228
 
16229
+ /** SheenMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
16230
+ interface SheenMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
16231
+ {
16232
+ /**
16233
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
16234
+ *
16235
+ * This field is of access type 'inputOutput' and type SFNode.
16236
+ */
16237
+ metadata: SFNode | null;
16238
+ /**
16239
+ * The sheen color in linear space.
16240
+ *
16241
+ * This field is of access type 'inputOutput' and type SFColor.
16242
+ */
16243
+ sheenColor: SFColor;
16244
+ /**
16245
+ * The sheen color (RGB). The sheen color is in sRGB transfer function.
16246
+ *
16247
+ * This field is of access type 'inputOutput' and type SFNode.
16248
+ */
16249
+ sheenColorTexture: SFNode | null;
16250
+ /**
16251
+ * Input/Output field *sheenColorTextureMapping*.
16252
+ *
16253
+ * This field is of access type 'inputOutput' and type SFString.
16254
+ */
16255
+ sheenColorTextureMapping: string;
16256
+ /**
16257
+ * The sheen roughness.
16258
+ *
16259
+ * This field is of access type 'inputOutput' and type SFFloat.
16260
+ */
16261
+ sheenRoughness: number;
16262
+ /**
16263
+ * The sheen roughness (Alpha) texture.
16264
+ *
16265
+ * This field is of access type 'inputOutput' and type SFNode.
16266
+ */
16267
+ sheenRoughnessTexture: SFNode | null;
16268
+ /**
16269
+ * Input/Output field *sheenRoughnessTextureMapping*.
16270
+ *
16271
+ * This field is of access type 'inputOutput' and type SFString.
16272
+ */
16273
+ sheenRoughnessTextureMapping: string;
16274
+ }
16275
+
15822
16276
  /** SignalPdu is a networked Protocol Data Unit (PDU) information node that communicates the transmission of voice, audio or other data modeled in a simulation. */
15823
16277
  interface SignalPduProxy extends X3DNetworkSensorNodeProxy, X3DBoundedObjectProxy
15824
16278
  {
@@ -16433,6 +16887,172 @@ interface SpatialSoundProxy extends X3DSoundNodeProxy
16433
16887
  spatialize: boolean;
16434
16888
  }
16435
16889
 
16890
+ /** SpecularGlossinessMaterial specifies surface rendering properties for associated geometry nodes. Material attributes are used by the X3D lighting equations during rendering. */
16891
+ interface SpecularGlossinessMaterialProxy extends X3DOneSidedMaterialNodeProxy
16892
+ {
16893
+ /**
16894
+ * The reflected diffuse factor of the material.
16895
+ *
16896
+ * This field is of access type 'inputOutput' and type SFColor.
16897
+ */
16898
+ diffuseColor: SFColor;
16899
+ /**
16900
+ * The diffuse texture.
16901
+ *
16902
+ * This field is of access type 'inputOutput' and type SFNode.
16903
+ */
16904
+ diffuseTexture: SFNode | null;
16905
+ /**
16906
+ * Input/Output field *diffuseTextureMapping*.
16907
+ *
16908
+ * This field is of access type 'inputOutput' and type SFString.
16909
+ */
16910
+ diffuseTextureMapping: string;
16911
+ /**
16912
+ * How much glowing light is emitted from this object.
16913
+ *
16914
+ * This field is of access type 'inputOutput' and type SFColor.
16915
+ */
16916
+ emissiveColor: SFColor;
16917
+ /**
16918
+ * When applying emissiveColor for this material node, the contained texture provides Physically Based Rendering (PBR) modulation for each pixel.
16919
+ *
16920
+ * This field is of access type 'inputOutput' and type SFNode.
16921
+ */
16922
+ emissiveTexture: SFNode | null;
16923
+ /**
16924
+ * The mapping label identifies which texture coordinates and transformations are used to compute texture effects from corresponding geometry on a given material.
16925
+ *
16926
+ * This field is of access type 'inputOutput' and type SFString.
16927
+ */
16928
+ emissiveTextureMapping: string;
16929
+ /**
16930
+ * Input/Output field *extensions*.
16931
+ *
16932
+ * This field is of access type 'inputOutput' and type MFNode.
16933
+ */
16934
+ extensions: MFNode <SFNode>;
16935
+ /**
16936
+ * The glossiness or smoothness of the material.
16937
+ *
16938
+ * This field is of access type 'inputOutput' and type SFFloat.
16939
+ */
16940
+ glossiness: number;
16941
+ /**
16942
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
16943
+ *
16944
+ * This field is of access type 'inputOutput' and type SFNode.
16945
+ */
16946
+ metadata: SFNode | null;
16947
+ /**
16948
+ * *normalScale* controls the degree to which normalTexture RGB values apply XYZ-normal bump mapping to pixels in the parent material.
16949
+ *
16950
+ * This field is of access type 'inputOutput' and type SFFloat.
16951
+ */
16952
+ normalScale: number;
16953
+ /**
16954
+ * When applying normalScale for this material node, the contained texture modulates the texture across the surface.
16955
+ *
16956
+ * This field is of access type 'inputOutput' and type SFNode.
16957
+ */
16958
+ normalTexture: SFNode | null;
16959
+ /**
16960
+ * The mapping label identifies which texture coordinates and transformations are used to compute texture effects from corresponding geometry on a given material.
16961
+ *
16962
+ * This field is of access type 'inputOutput' and type SFString.
16963
+ */
16964
+ normalTextureMapping: string;
16965
+ /**
16966
+ * *occlusionStrength* indicates areas of indirect lighting, typically called ambient occlusion. Higher values indicate areas that should receive full indirect lighting and lower values indicate no indirect lighting.
16967
+ *
16968
+ * This field is of access type 'inputOutput' and type SFFloat.
16969
+ */
16970
+ occlusionStrength: number;
16971
+ /**
16972
+ * When applying occlusionStrength for this material node, the contained texture provides Physically Based Rendering (PBR) modulation for each pixel.
16973
+ *
16974
+ * This field is of access type 'inputOutput' and type SFNode.
16975
+ */
16976
+ occlusionTexture: SFNode | null;
16977
+ /**
16978
+ * The mapping label identifies which texture coordinates and transformations are used to compute texture effects from corresponding geometry on a given material.
16979
+ *
16980
+ * This field is of access type 'inputOutput' and type SFString.
16981
+ */
16982
+ occlusionTextureMapping: string;
16983
+ /**
16984
+ * The specular RGB color of the material.
16985
+ *
16986
+ * This field is of access type 'inputOutput' and type SFColor.
16987
+ */
16988
+ specularColor: SFColor;
16989
+ /**
16990
+ * The specular-glossiness texture.
16991
+ *
16992
+ * This field is of access type 'inputOutput' and type SFNode.
16993
+ */
16994
+ specularGlossinessTexture: SFNode | null;
16995
+ /**
16996
+ * Input/Output field *specularGlossinessTextureMapping*.
16997
+ *
16998
+ * This field is of access type 'inputOutput' and type SFString.
16999
+ */
17000
+ specularGlossinessTextureMapping: string;
17001
+ /**
17002
+ * How 'clear' an object is: 1.0 is completely transparent, 0.0 is completely opaque. Interchange profile
17003
+ *
17004
+ * This field is of access type 'inputOutput' and type SFFloat.
17005
+ */
17006
+ transparency: number;
17007
+ }
17008
+
17009
+ /** SpecularMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
17010
+ interface SpecularMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
17011
+ {
17012
+ /**
17013
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
17014
+ *
17015
+ * This field is of access type 'inputOutput' and type SFNode.
17016
+ */
17017
+ metadata: SFNode | null;
17018
+ /**
17019
+ * The strength of the specular reflection.
17020
+ *
17021
+ * This field is of access type 'inputOutput' and type SFFloat.
17022
+ */
17023
+ specular: number;
17024
+ /**
17025
+ * The F0 color of the specular reflection (linear RGB).
17026
+ *
17027
+ * This field is of access type 'inputOutput' and type SFColor.
17028
+ */
17029
+ specularColor: SFColor;
17030
+ /**
17031
+ * A texture that defines the F0 color of the specular reflection, stored in the RGB channels and encoded in sRGB. This texture will be multiplied by specularColorFactor.
17032
+ *
17033
+ * This field is of access type 'inputOutput' and type SFNode.
17034
+ */
17035
+ specularColorTexture: SFNode | null;
17036
+ /**
17037
+ * Input/Output field *specularColorTextureMapping*.
17038
+ *
17039
+ * This field is of access type 'inputOutput' and type SFString.
17040
+ */
17041
+ specularColorTextureMapping: string;
17042
+ /**
17043
+ * texture that defines the strength of the specular reflection, stored in the alpha (A) channel. This will be multiplied by specularFactor.
17044
+ *
17045
+ * This field is of access type 'inputOutput' and type SFNode.
17046
+ */
17047
+ specularTexture: SFNode | null;
17048
+ /**
17049
+ * Input/Output field *specularTextureMapping*.
17050
+ *
17051
+ * This field is of access type 'inputOutput' and type SFString.
17052
+ */
17053
+ specularTextureMapping: string;
17054
+ }
17055
+
16436
17056
  /** Sphere is a geometry node, representing a perfectly round geometrical object that is the surface of a completely round ball. */
16437
17057
  interface SphereProxy extends X3DGeometryNodeProxy
16438
17058
  {
@@ -17154,9 +17774,15 @@ interface SwitchProxy extends X3DGroupingNodeProxy
17154
17774
  whichChoice: number;
17155
17775
  }
17156
17776
 
17157
- /** undefined */
17777
+ /** Tangent. */
17158
17778
  interface TangentProxy extends X3DGeometricPropertyNodeProxy
17159
17779
  {
17780
+ /**
17781
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
17782
+ *
17783
+ * This field is of access type 'inputOutput' and type SFNode.
17784
+ */
17785
+ metadata: SFNode | null;
17160
17786
  /**
17161
17787
  * A unit XYZ vector defining a tangent direction on the surface, and a W component whose sign value (-1 or +1) indicates the handedness of the tangent base.
17162
17788
  *
@@ -18287,6 +18913,35 @@ interface TransformSensorProxy extends X3DEnvironmentalSensorNodeProxy
18287
18913
  targetObject: X3DGroupingNodeProxy | X3DShapeNodeProxy | null;
18288
18914
  }
18289
18915
 
18916
+ /** TransmissionMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
18917
+ interface TransmissionMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
18918
+ {
18919
+ /**
18920
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
18921
+ *
18922
+ * This field is of access type 'inputOutput' and type SFNode.
18923
+ */
18924
+ metadata: SFNode | null;
18925
+ /**
18926
+ * The base percentage of light that is transmitted through the surface.
18927
+ *
18928
+ * This field is of access type 'inputOutput' and type SFFloat.
18929
+ */
18930
+ transmission: number;
18931
+ /**
18932
+ * A texture that defines the transmission percentage of the surface, stored in the R channel. This will be multiplied by transmissionFactor.
18933
+ *
18934
+ * This field is of access type 'inputOutput' and type SFNode.
18935
+ */
18936
+ transmissionTexture: SFNode | null;
18937
+ /**
18938
+ * Input/Output field *transmissionTextureMapping*.
18939
+ *
18940
+ * This field is of access type 'inputOutput' and type SFString.
18941
+ */
18942
+ transmissionTextureMapping: string;
18943
+ }
18944
+
18290
18945
  /** TransmitterPdu is a networked Protocol Data Unit (PDU) information node that provides detailed information about a radio transmitter modeled in a simulation. */
18291
18946
  interface TransmitterPduProxy extends X3DNetworkSensorNodeProxy, X3DBoundedObjectProxy
18292
18947
  {
@@ -19077,6 +19732,17 @@ interface UnlitMaterialProxy extends X3DOneSidedMaterialNodeProxy
19077
19732
  transparency: number;
19078
19733
  }
19079
19734
 
19735
+ /** UnlitMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
19736
+ interface UnlitMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
19737
+ {
19738
+ /**
19739
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
19740
+ *
19741
+ * This field is of access type 'inputOutput' and type SFNode.
19742
+ */
19743
+ metadata: SFNode | null;
19744
+ }
19745
+
19080
19746
  /** Viewpoint provides a specific location and direction where the user may view the scene. */
19081
19747
  interface ViewpointProxy extends X3DViewpointNodeProxy
19082
19748
  {
@@ -19449,6 +20115,47 @@ interface VolumeEmitterProxy extends X3DParticleEmitterNodeProxy
19449
20115
  variation: number;
19450
20116
  }
19451
20117
 
20118
+ /** VolumeMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
20119
+ interface VolumeMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
20120
+ {
20121
+ /**
20122
+ * The color that white light turns into due to absorption when reaching the attenuation distance.
20123
+ *
20124
+ * This field is of access type 'inputOutput' and type SFColor.
20125
+ */
20126
+ attenuationColor: SFColor;
20127
+ /**
20128
+ * Density of the medium given as the average distance that light travels in the medium before interacting with a particle. The value is given in world space.
20129
+ *
20130
+ * This field is of access type 'inputOutput' and type SFFloat.
20131
+ */
20132
+ attenuationDistance: number;
20133
+ /**
20134
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
20135
+ *
20136
+ * This field is of access type 'inputOutput' and type SFNode.
20137
+ */
20138
+ metadata: SFNode | null;
20139
+ /**
20140
+ * The thickness of the volume beneath the surface. The value is given in the coordinate space of the mesh. If the value is 0 the material is thin-walled. Otherwise the material is a volume boundary. The doubleSided property has no effect on volume boundaries.
20141
+ *
20142
+ * This field is of access type 'inputOutput' and type SFFloat.
20143
+ */
20144
+ thickness: number;
20145
+ /**
20146
+ * A texture that defines the thickness, stored in the G channel. This will be multiplied by thicknessFactor.
20147
+ *
20148
+ * This field is of access type 'inputOutput' and type SFNode.
20149
+ */
20150
+ thicknessTexture: SFNode | null;
20151
+ /**
20152
+ * Input/Output field *thicknessTextureMapping*.
20153
+ *
20154
+ * This field is of access type 'inputOutput' and type SFString.
20155
+ */
20156
+ thicknessTextureMapping: string;
20157
+ }
20158
+
19452
20159
  /** VolumePickSensor tests picking intersections using the pickingGeometry against the pickTarget geometry volume. */
19453
20160
  interface VolumePickSensorProxy extends X3DPickSensorNodeProxy
19454
20161
  {
@@ -21403,6 +22110,7 @@ type ConcreteNodeTypes = {
21403
22110
  AcousticProperties: AcousticPropertiesProxy,
21404
22111
  Analyser: AnalyserProxy,
21405
22112
  Anchor: AnchorProxy,
22113
+ AnisotropyMaterialExtension: AnisotropyMaterialExtensionProxy,
21406
22114
  Appearance: AppearanceProxy,
21407
22115
  Arc2D: Arc2DProxy,
21408
22116
  ArcClose2D: ArcClose2DProxy,
@@ -21431,6 +22139,7 @@ type ConcreteNodeTypes = {
21431
22139
  ChannelSelector: ChannelSelectorProxy,
21432
22140
  ChannelSplitter: ChannelSplitterProxy,
21433
22141
  Circle2D: Circle2DProxy,
22142
+ ClearcoatMaterialExtension: ClearcoatMaterialExtensionProxy,
21434
22143
  ClipPlane: ClipPlaneProxy,
21435
22144
  CollidableOffset: CollidableOffsetProxy,
21436
22145
  CollidableShape: CollidableShapeProxy,
@@ -21467,12 +22176,13 @@ type ConcreteNodeTypes = {
21467
22176
  DISEntityManager: DISEntityManagerProxy,
21468
22177
  DISEntityTypeMapping: DISEntityTypeMappingProxy,
21469
22178
  Disk2D: Disk2DProxy,
22179
+ DispersionMaterialExtension: DispersionMaterialExtensionProxy,
21470
22180
  DoubleAxisHingeJoint: DoubleAxisHingeJointProxy,
21471
22181
  DynamicsCompressor: DynamicsCompressorProxy,
21472
22182
  EaseInEaseOut: EaseInEaseOutProxy,
21473
22183
  EdgeEnhancementVolumeStyle: EdgeEnhancementVolumeStyleProxy,
21474
22184
  ElevationGrid: ElevationGridProxy,
21475
- EnvironmentLight: EnvironmentLightProxy,
22185
+ EmissiveStrengthMaterialExtension: EmissiveStrengthMaterialExtensionProxy,
21476
22186
  EspduTransform: EspduTransformProxy,
21477
22187
  ExplosionEmitter: ExplosionEmitterProxy,
21478
22188
  Extrusion: ExtrusionProxy,
@@ -21513,8 +22223,11 @@ type ConcreteNodeTypes = {
21513
22223
  IndexedTriangleSet: IndexedTriangleSetProxy,
21514
22224
  IndexedTriangleStripSet: IndexedTriangleStripSetProxy,
21515
22225
  Inline: InlineProxy,
22226
+ InstancedShape: InstancedShapeProxy,
21516
22227
  IntegerSequencer: IntegerSequencerProxy,
21517
22228
  IntegerTrigger: IntegerTriggerProxy,
22229
+ IORMaterialExtension: IORMaterialExtensionProxy,
22230
+ IridescenceMaterialExtension: IridescenceMaterialExtensionProxy,
21518
22231
  IsoSurfaceVolumeData: IsoSurfaceVolumeDataProxy,
21519
22232
  KeySensor: KeySensorProxy,
21520
22233
  Layer: LayerProxy,
@@ -21606,12 +22319,15 @@ type ConcreteNodeTypes = {
21606
22319
  ShaderPart: ShaderPartProxy,
21607
22320
  ShaderProgram: ShaderProgramProxy,
21608
22321
  Shape: ShapeProxy,
22322
+ SheenMaterialExtension: SheenMaterialExtensionProxy,
21609
22323
  SignalPdu: SignalPduProxy,
21610
22324
  SilhouetteEnhancementVolumeStyle: SilhouetteEnhancementVolumeStyleProxy,
21611
22325
  SingleAxisHingeJoint: SingleAxisHingeJointProxy,
21612
22326
  SliderJoint: SliderJointProxy,
21613
22327
  Sound: SoundProxy,
21614
22328
  SpatialSound: SpatialSoundProxy,
22329
+ SpecularGlossinessMaterial: SpecularGlossinessMaterialProxy,
22330
+ SpecularMaterialExtension: SpecularMaterialExtensionProxy,
21615
22331
  Sphere: SphereProxy,
21616
22332
  SphereSensor: SphereSensorProxy,
21617
22333
  SplinePositionInterpolator: SplinePositionInterpolatorProxy,
@@ -21646,6 +22362,7 @@ type ConcreteNodeTypes = {
21646
22362
  TouchSensor: TouchSensorProxy,
21647
22363
  Transform: TransformProxy,
21648
22364
  TransformSensor: TransformSensorProxy,
22365
+ TransmissionMaterialExtension: TransmissionMaterialExtensionProxy,
21649
22366
  TransmitterPdu: TransmitterPduProxy,
21650
22367
  TriangleFanSet: TriangleFanSetProxy,
21651
22368
  TriangleSet: TriangleSetProxy,
@@ -21654,12 +22371,14 @@ type ConcreteNodeTypes = {
21654
22371
  TwoSidedMaterial: TwoSidedMaterialProxy,
21655
22372
  UniversalJoint: UniversalJointProxy,
21656
22373
  UnlitMaterial: UnlitMaterialProxy,
22374
+ UnlitMaterialExtension: UnlitMaterialExtensionProxy,
21657
22375
  Viewpoint: ViewpointProxy,
21658
22376
  ViewpointGroup: ViewpointGroupProxy,
21659
22377
  Viewport: ViewportProxy,
21660
22378
  VisibilitySensor: VisibilitySensorProxy,
21661
22379
  VolumeData: VolumeDataProxy,
21662
22380
  VolumeEmitter: VolumeEmitterProxy,
22381
+ VolumeMaterialExtension: VolumeMaterialExtensionProxy,
21663
22382
  VolumePickSensor: VolumePickSensorProxy,
21664
22383
  WaveShaper: WaveShaperProxy,
21665
22384
  WindPhysicsModel: WindPhysicsModelProxy,