x_ite 10.0.1 → 10.0.3

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 (50) hide show
  1. package/README.md +5 -5
  2. package/dist/X3DUOM.xml +1095 -0
  3. package/dist/assets/components/Annotation.js +13 -13
  4. package/dist/assets/components/Annotation.min.js +1 -1
  5. package/dist/assets/components/CADGeometry.js +14 -14
  6. package/dist/assets/components/CADGeometry.min.js +1 -1
  7. package/dist/assets/components/CubeMapTexturing.js +25 -25
  8. package/dist/assets/components/CubeMapTexturing.min.js +1 -1
  9. package/dist/assets/components/DIS.js +37 -13
  10. package/dist/assets/components/DIS.min.js +1 -1
  11. package/dist/assets/components/EventUtilities.js +9 -9
  12. package/dist/assets/components/EventUtilities.min.js +1 -1
  13. package/dist/assets/components/Geometry2D.js +18 -18
  14. package/dist/assets/components/Geometry2D.min.js +1 -1
  15. package/dist/assets/components/Geospatial.js +33 -33
  16. package/dist/assets/components/Geospatial.min.js +1 -1
  17. package/dist/assets/components/HAnim.js +30 -24
  18. package/dist/assets/components/HAnim.min.js +1 -1
  19. package/dist/assets/components/KeyDeviceSensor.js +8 -8
  20. package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
  21. package/dist/assets/components/Layout.js +27 -27
  22. package/dist/assets/components/Layout.min.js +1 -1
  23. package/dist/assets/components/NURBS.js +23 -23
  24. package/dist/assets/components/NURBS.min.js +1 -1
  25. package/dist/assets/components/ParticleSystems.js +26 -26
  26. package/dist/assets/components/ParticleSystems.min.js +1 -1
  27. package/dist/assets/components/Picking.js +18 -18
  28. package/dist/assets/components/Picking.min.js +1 -1
  29. package/dist/assets/components/RigidBodyPhysics.js +25 -17
  30. package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
  31. package/dist/assets/components/Scripting.js +38 -38
  32. package/dist/assets/components/Scripting.min.js +1 -1
  33. package/dist/assets/components/Text.js +24 -24
  34. package/dist/assets/components/Text.min.js +1 -1
  35. package/dist/assets/components/TextureProjection.js +15 -15
  36. package/dist/assets/components/TextureProjection.min.js +1 -1
  37. package/dist/assets/components/Texturing3D.js +31 -27
  38. package/dist/assets/components/Texturing3D.min.js +1 -1
  39. package/dist/assets/components/VolumeRendering.js +19 -19
  40. package/dist/assets/components/VolumeRendering.min.js +1 -1
  41. package/dist/assets/components/X_ITE.js +94 -176
  42. package/dist/assets/components/X_ITE.min.js +1 -1
  43. package/dist/x_ite.css +1 -1
  44. package/dist/x_ite.d.ts +844 -59
  45. package/dist/x_ite.js +1256 -1220
  46. package/dist/x_ite.min.js +1 -1
  47. package/dist/x_ite.min.mjs +1 -1
  48. package/dist/x_ite.mjs +1256 -1220
  49. package/dist/x_ite.zip +0 -0
  50. package/package.json +3 -2
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,11 +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;
1171
+ readonly EmissiveStrengthMaterialExtension: number;
1163
1172
  readonly EnvironmentLight: number;
1164
1173
  readonly EspduTransform: number;
1165
1174
  readonly ExplosionEmitter: number;
@@ -1201,8 +1210,11 @@ interface X3DConstants
1201
1210
  readonly IndexedTriangleSet: number;
1202
1211
  readonly IndexedTriangleStripSet: number;
1203
1212
  readonly Inline: number;
1213
+ readonly InstancedShape: number;
1204
1214
  readonly IntegerSequencer: number;
1205
1215
  readonly IntegerTrigger: number;
1216
+ readonly IORMaterialExtension: number;
1217
+ readonly IridescenceMaterialExtension: number;
1206
1218
  readonly IsoSurfaceVolumeData: number;
1207
1219
  readonly KeySensor: number;
1208
1220
  readonly Layer: number;
@@ -1294,12 +1306,15 @@ interface X3DConstants
1294
1306
  readonly ShaderPart: number;
1295
1307
  readonly ShaderProgram: number;
1296
1308
  readonly Shape: number;
1309
+ readonly SheenMaterialExtension: number;
1297
1310
  readonly SignalPdu: number;
1298
1311
  readonly SilhouetteEnhancementVolumeStyle: number;
1299
1312
  readonly SingleAxisHingeJoint: number;
1300
1313
  readonly SliderJoint: number;
1301
1314
  readonly Sound: number;
1302
1315
  readonly SpatialSound: number;
1316
+ readonly SpecularGlossinessMaterial: number;
1317
+ readonly SpecularMaterialExtension: number;
1303
1318
  readonly Sphere: number;
1304
1319
  readonly SphereSensor: number;
1305
1320
  readonly SplinePositionInterpolator: number;
@@ -1334,6 +1349,7 @@ interface X3DConstants
1334
1349
  readonly TouchSensor: number;
1335
1350
  readonly Transform: number;
1336
1351
  readonly TransformSensor: number;
1352
+ readonly TransmissionMaterialExtension: number;
1337
1353
  readonly TransmitterPdu: number;
1338
1354
  readonly TriangleFanSet: number;
1339
1355
  readonly TriangleSet: number;
@@ -1348,6 +1364,7 @@ interface X3DConstants
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
+ *
3725
+ * This field is of access type 'inputOutput' and type SFString.
3726
+ */
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
+ *
3645
3745
  * This field is of access type 'inputOutput' and type SFString.
3646
3746
  */
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";
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,98 @@ interface ElevationGridProxy extends X3DGeometryNodeProxy
6825
7017
  zSpacing: number;
6826
7018
  }
6827
7019
 
6828
- /** undefined */
7020
+ /** EmissiveStrengthMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
7021
+ interface EmissiveStrengthMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
7022
+ {
7023
+ /**
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.
7027
+ */
7028
+ emissiveStrength: number;
7029
+ /**
7030
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
7031
+ *
7032
+ * This field is of access type 'inputOutput' and type SFNode.
7033
+ */
7034
+ metadata: SFNode | null;
7035
+ }
7036
+
7037
+ /** EnvironmentLight ... This node only affects PhysicalMaterial nodes and SpecularGlossinessMaterial nodes. */
6829
7038
  interface EnvironmentLightProxy extends X3DLightNodeProxy
6830
7039
  {
6831
7040
  /**
7041
+ * Brightness of ambient (nondirectional background) emission from the light. Interchange profile
7042
+ *
7043
+ * This field is of access type 'inputOutput' and type SFFloat.
7044
+ */
7045
+ ambientIntensity: number;
7046
+ /**
7047
+ * *color* of light, applied to colors of objects.
7048
+ *
7049
+ * This field is of access type 'inputOutput' and type SFColor.
7050
+ */
7051
+ color: SFColor;
7052
+ /**
7053
+ * Input/Output field *diffuseCoefficients*.
7054
+ *
6832
7055
  * This field is of access type 'inputOutput' and type MFFloat.
6833
7056
  */
6834
7057
  diffuseCoefficients: MFFloat;
6835
7058
  /**
7059
+ * Input/Output field *diffuseTexture*.
7060
+ *
6836
7061
  * This field is of access type 'inputOutput' and type SFNode.
6837
7062
  */
6838
- diffuseTexture: X3DEnvironmentTextureNodeProxy | null;
7063
+ diffuseTexture: SFNode | null;
7064
+ /**
7065
+ * Global lights illuminate all objects within their volume of lighting influence. Scoped lights only illuminate objects within the same transformation hierarchy.
7066
+ *
7067
+ * This field is of access type 'inputOutput' and type SFBool.
7068
+ */
7069
+ global: boolean;
6839
7070
  /**
7071
+ * Brightness of direct emission from the light.
7072
+ *
7073
+ * This field is of access type 'inputOutput' and type SFFloat.
7074
+ */
7075
+ intensity: number;
7076
+ /**
7077
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
7078
+ *
7079
+ * This field is of access type 'inputOutput' and type SFNode.
7080
+ */
7081
+ metadata: SFNode | null;
7082
+ /**
7083
+ * Enables/disables this light source.
7084
+ *
7085
+ * This field is of access type 'inputOutput' and type SFBool.
7086
+ */
7087
+ on: boolean;
7088
+ /**
7089
+ * Input/Output field *rotation*.
7090
+ *
6840
7091
  * This field is of access type 'inputOutput' and type SFRotation.
6841
7092
  */
6842
7093
  rotation: SFRotation;
6843
7094
  /**
7095
+ * *shadowIntensity* field defines how much light is obscured by shapes that cast shadows, ranging from 0 (light not obscured, no visible shadows) to 1 (light completely obscured, full-intensity shadows).
7096
+ *
7097
+ * This field is of access type 'inputOutput' and type SFFloat.
7098
+ */
7099
+ shadowIntensity: number;
7100
+ /**
7101
+ * *shadows* field indicates whether or not this light casts a shadow behind illuminated X3DShapeNode geometry.
7102
+ *
7103
+ * This field is of access type 'inputOutput' and type SFBool.
7104
+ */
7105
+ shadows: boolean;
7106
+ /**
7107
+ * Input/Output field *specularTexture*.
7108
+ *
6844
7109
  * This field is of access type 'inputOutput' and type SFNode.
6845
7110
  */
6846
- specularTexture: X3DEnvironmentTextureNodeProxy | null;
7111
+ specularTexture: SFNode | null;
6847
7112
  }
6848
7113
 
6849
7114
  /** EspduTransform is a networked Transform node that can contain most nodes. */
@@ -9630,21 +9895,87 @@ interface ImageTexture3DProxy extends X3DTexture3DNodeProxy, X3DUrlObjectProxy
9630
9895
  url: MFString;
9631
9896
  }
9632
9897
 
9633
- /** undefined */
9634
- interface ImageTextureAtlasProxy extends X3DTexture3DNodeProxy, X3DUrlObjectProxy
9898
+ /** ImageTextureAtlas defines a 3D image-based texture map by specifying a single image file that contains slices for complete 3D data. */
9899
+ interface ImageTextureAtlasProxy extends X3DTexture3DNodeProxy
9635
9900
  {
9636
9901
  /**
9902
+ * *autoRefresh* defines interval in seconds before automatic reload of current url asset is performed.
9903
+ *
9904
+ * This field is of access type 'inputOutput' and type SFTime.
9905
+ */
9906
+ autoRefresh: number;
9907
+ /**
9908
+ * *autoRefreshTimeLimit* defines maximum duration that automatic refresh activity can occur.
9909
+ *
9910
+ * This field is of access type 'inputOutput' and type SFTime.
9911
+ */
9912
+ autoRefreshTimeLimit: number;
9913
+ /**
9914
+ * Author-provided prose that describes intended purpose of the url asset.
9915
+ *
9916
+ * This field is of access type 'inputOutput' and type SFString.
9917
+ */
9918
+ description: string;
9919
+ /**
9920
+ * *load*=true means *load* immediately, *load*=false means defer loading or else unload a previously loaded scene.
9921
+ *
9922
+ * This field is of access type 'inputOutput' and type SFBool.
9923
+ */
9924
+ load: boolean;
9925
+ /**
9926
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
9927
+ *
9928
+ * This field is of access type 'inputOutput' and type SFNode.
9929
+ */
9930
+ metadata: SFNode | null;
9931
+ /**
9932
+ * Total number of images.
9933
+ *
9637
9934
  * This field is of access type 'inputOutput' and type SFInt32.
9638
9935
  */
9639
9936
  numberOfSlices: number;
9640
9937
  /**
9938
+ * Whether to repeat texture along R axis from front to back.
9939
+ *
9940
+ * This field is of access type 'initializeOnly' and type SFBool.
9941
+ */
9942
+ repeatR: boolean;
9943
+ /**
9944
+ * Whether to repeat texture along S axis horizontally from left to right.
9945
+ *
9946
+ * This field is of access type 'initializeOnly' and type SFBool.
9947
+ */
9948
+ repeatS: boolean;
9949
+ /**
9950
+ * Whether to repeat texture along T axis vertically from top to bottom.
9951
+ *
9952
+ * This field is of access type 'initializeOnly' and type SFBool.
9953
+ */
9954
+ repeatT: boolean;
9955
+ /**
9956
+ * Number of images in x direction.
9957
+ *
9641
9958
  * This field is of access type 'inputOutput' and type SFInt32.
9642
9959
  */
9643
9960
  slicesOverX: number;
9644
9961
  /**
9962
+ * Number of images in y direction.
9963
+ *
9645
9964
  * This field is of access type 'inputOutput' and type SFInt32.
9646
9965
  */
9647
9966
  slicesOverY: number;
9967
+ /**
9968
+ * Single contained TextureProperties node that can specify additional visual attributes applied to corresponding texture images.
9969
+ *
9970
+ * This field is of access type 'initializeOnly' and type SFNode.
9971
+ */
9972
+ textureProperties: SFNode | null;
9973
+ /**
9974
+ * Location and filename of image. Multiple locations are more reliable, and including a Web address lets e-mail attachments work.
9975
+ *
9976
+ * This field is of access type 'inputOutput' and type MFString.
9977
+ */
9978
+ url: MFString;
9648
9979
  }
9649
9980
 
9650
9981
  /** IndexedFaceSet defines polygons using index lists corresponding to vertex coordinates. */
@@ -10252,6 +10583,83 @@ interface InlineProxy extends X3DChildNodeProxy, X3DBoundedObjectProxy, X3DUrlOb
10252
10583
  visible: boolean;
10253
10584
  }
10254
10585
 
10586
+ /** 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. */
10587
+ interface InstancedShapeProxy extends X3DShapeNodeProxy
10588
+ {
10589
+ /**
10590
+ * Input/Output field *appearance*.
10591
+ *
10592
+ * This field is of access type 'inputOutput' and type SFNode.
10593
+ */
10594
+ appearance: SFNode | null;
10595
+ /**
10596
+ * Bounding box center accompanies bboxSize and provides an optional hint for bounding box position offset from origin of local coordinate system.
10597
+ *
10598
+ * This field is of access type 'initializeOnly' and type SFVec3f.
10599
+ */
10600
+ bboxCenter: SFVec3f;
10601
+ /**
10602
+ * Whether to display bounding box for associated geometry, aligned with world coordinates.
10603
+ *
10604
+ * This field is of access type 'inputOutput' and type SFBool.
10605
+ */
10606
+ bboxDisplay: boolean;
10607
+ /**
10608
+ * 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.
10609
+ *
10610
+ * This field is of access type 'initializeOnly' and type SFVec3f.
10611
+ */
10612
+ bboxSize: SFVec3f;
10613
+ /**
10614
+ * Input/Output field *castShadow*.
10615
+ *
10616
+ * This field is of access type 'inputOutput' and type SFBool.
10617
+ */
10618
+ castShadow: boolean;
10619
+ /**
10620
+ * Input/Output field *geometry*.
10621
+ *
10622
+ * This field is of access type 'inputOutput' and type SFNode.
10623
+ */
10624
+ geometry: SFNode | null;
10625
+ /**
10626
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10627
+ *
10628
+ * This field is of access type 'inputOutput' and type SFNode.
10629
+ */
10630
+ metadata: SFNode | null;
10631
+ /**
10632
+ * *pointerEvents* defines whether this Shape becomes target for pointer events.
10633
+ *
10634
+ * This field is of access type 'inputOutput' and type SFBool.
10635
+ */
10636
+ pointerEvents: boolean;
10637
+ /**
10638
+ * Input/Output field *rotations*.
10639
+ *
10640
+ * This field is of access type 'inputOutput' and type MFRotation.
10641
+ */
10642
+ rotations: MFRotation;
10643
+ /**
10644
+ * Input/Output field *scales*.
10645
+ *
10646
+ * This field is of access type 'inputOutput' and type MFVec3f.
10647
+ */
10648
+ scales: MFVec3f;
10649
+ /**
10650
+ * Input/Output field *translations*.
10651
+ *
10652
+ * This field is of access type 'inputOutput' and type MFVec3f.
10653
+ */
10654
+ translations: MFVec3f;
10655
+ /**
10656
+ * Whether or not renderable content within this node is visually displayed.
10657
+ *
10658
+ * This field is of access type 'inputOutput' and type SFBool.
10659
+ */
10660
+ visible: boolean;
10661
+ }
10662
+
10255
10663
  /** IntegerSequencer generates periodic discrete integer values. */
10256
10664
  interface IntegerSequencerProxy extends X3DSequencerNodeProxy
10257
10665
  {
@@ -10268,64 +10676,140 @@ interface IntegerSequencerProxy extends X3DSequencerNodeProxy
10268
10676
  */
10269
10677
  keyValue: MFInt32;
10270
10678
  /**
10271
- * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10679
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10680
+ *
10681
+ * This field is of access type 'inputOutput' and type SFNode.
10682
+ */
10683
+ metadata: X3DMetadataObjectProxy | null;
10684
+ /**
10685
+ * Send next output value in keyValue array, and reset internal fraction field to match corresponding value in key array.
10686
+ *
10687
+ * This field is of access type 'inputOnly' and type SFBool.
10688
+ */
10689
+ next: boolean;
10690
+ /**
10691
+ * Send previous output value in keyValue array, and reset internal fraction field to match corresponding value in key array.
10692
+ *
10693
+ * This field is of access type 'inputOnly' and type SFBool.
10694
+ */
10695
+ previous: boolean;
10696
+ /**
10697
+ * set_fraction selects input key for corresponding keyValue output.
10698
+ *
10699
+ * This field is of access type 'inputOnly' and type SFFloat.
10700
+ */
10701
+ set_fraction: number;
10702
+ /**
10703
+ * Single intermittent output value determined by current key time and corresponding keyValue entry.
10704
+ *
10705
+ * This field is of access type 'outputOnly' and type SFInt32.
10706
+ */
10707
+ readonly value_changed: number;
10708
+ }
10709
+
10710
+ /** IntegerTrigger converts set_boolean true input events to an integer value (for example, useful when animating whichChoice in a Switch node). */
10711
+ interface IntegerTriggerProxy extends X3DTriggerNodeProxy
10712
+ {
10713
+ /**
10714
+ * integerKey is value for output when triggered.
10715
+ *
10716
+ * This field is of access type 'inputOutput' and type SFInt32.
10717
+ */
10718
+ integerKey: number;
10719
+ /**
10720
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10721
+ *
10722
+ * This field is of access type 'inputOutput' and type SFNode.
10723
+ */
10724
+ metadata: X3DMetadataObjectProxy | null;
10725
+ /**
10726
+ * If input event set_boolean is true, trigger output of integer value.
10727
+ *
10728
+ * This field is of access type 'inputOnly' and type SFBool.
10729
+ */
10730
+ set_boolean: boolean;
10731
+ /**
10732
+ * triggerValue provides integer event output matching integerKey when true set_boolean received.
10733
+ *
10734
+ * This field is of access type 'outputOnly' and type SFInt32.
10735
+ */
10736
+ readonly triggerValue: number;
10737
+ }
10738
+
10739
+ /** IORMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
10740
+ interface IORMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
10741
+ {
10742
+ /**
10743
+ * The index of refraction.
10744
+ *
10745
+ * This field is of access type 'inputOutput' and type SFFloat.
10746
+ */
10747
+ indexOfRefraction: number;
10748
+ /**
10749
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10750
+ *
10751
+ * This field is of access type 'inputOutput' and type SFNode.
10752
+ */
10753
+ metadata: SFNode | null;
10754
+ }
10755
+
10756
+ /** IridescenceMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
10757
+ interface IridescenceMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
10758
+ {
10759
+ /**
10760
+ * The iridescence intensity factor.
10272
10761
  *
10273
- * This field is of access type 'inputOutput' and type SFNode.
10762
+ * This field is of access type 'inputOutput' and type SFFloat.
10274
10763
  */
10275
- metadata: X3DMetadataObjectProxy | null;
10764
+ iridescence: number;
10276
10765
  /**
10277
- * Send next output value in keyValue array, and reset internal fraction field to match corresponding value in key array.
10766
+ * The index of refraction of the dielectric thin-film layer.
10278
10767
  *
10279
- * This field is of access type 'inputOnly' and type SFBool.
10768
+ * This field is of access type 'inputOutput' and type SFFloat.
10280
10769
  */
10281
- next: boolean;
10770
+ iridescenceIndexOfRefraction: number;
10282
10771
  /**
10283
- * Send previous output value in keyValue array, and reset internal fraction field to match corresponding value in key array.
10772
+ * The iridescence intensity texture.
10284
10773
  *
10285
- * This field is of access type 'inputOnly' and type SFBool.
10774
+ * This field is of access type 'inputOutput' and type SFNode.
10286
10775
  */
10287
- previous: boolean;
10776
+ iridescenceTexture: SFNode | null;
10288
10777
  /**
10289
- * set_fraction selects input key for corresponding keyValue output.
10778
+ * Input/Output field *iridescenceTextureMapping*.
10290
10779
  *
10291
- * This field is of access type 'inputOnly' and type SFFloat.
10780
+ * This field is of access type 'inputOutput' and type SFString.
10292
10781
  */
10293
- set_fraction: number;
10782
+ iridescenceTextureMapping: string;
10294
10783
  /**
10295
- * Single intermittent output value determined by current key time and corresponding keyValue entry.
10784
+ * The maximum thickness of the thin-film layer given in nanometers.
10296
10785
  *
10297
- * This field is of access type 'outputOnly' and type SFInt32.
10786
+ * This field is of access type 'inputOutput' and type SFFloat.
10298
10787
  */
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
- {
10788
+ iridescenceThicknessMaximum: number;
10305
10789
  /**
10306
- * integerKey is value for output when triggered.
10790
+ * The minimum thickness of the thin-film layer given in nanometers.
10307
10791
  *
10308
- * This field is of access type 'inputOutput' and type SFInt32.
10792
+ * This field is of access type 'inputOutput' and type SFFloat.
10309
10793
  */
10310
- integerKey: number;
10794
+ iridescenceThicknessMinimum: number;
10311
10795
  /**
10312
- * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10796
+ * The thickness texture of the thin-film layer.
10313
10797
  *
10314
10798
  * This field is of access type 'inputOutput' and type SFNode.
10315
10799
  */
10316
- metadata: X3DMetadataObjectProxy | null;
10800
+ iridescenceThicknessTexture: SFNode | null;
10317
10801
  /**
10318
- * If input event set_boolean is true, trigger output of integer value.
10802
+ * Input/Output field *iridescenceThicknessTextureMapping*.
10319
10803
  *
10320
- * This field is of access type 'inputOnly' and type SFBool.
10804
+ * This field is of access type 'inputOutput' and type SFString.
10321
10805
  */
10322
- set_boolean: boolean;
10806
+ iridescenceThicknessTextureMapping: string;
10323
10807
  /**
10324
- * triggerValue provides integer event output matching integerKey when true set_boolean received.
10808
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
10325
10809
  *
10326
- * This field is of access type 'outputOnly' and type SFInt32.
10810
+ * This field is of access type 'inputOutput' and type SFNode.
10327
10811
  */
10328
- readonly triggerValue: number;
10812
+ metadata: SFNode | null;
10329
10813
  }
10330
10814
 
10331
10815
  /** IsoSurfaceVolumeData displays one or more surfaces extracted from a voxel dataset. */
@@ -12049,7 +12533,7 @@ interface NavigationInfoProxy extends X3DBindableNodeProxy
12049
12533
  *
12050
12534
  * This field is of access type 'inputOutput' and type MFString.
12051
12535
  */
12052
- type: MFString <"ANY" | "WALK" | "EXAMINE" | "FLY" | "LOOKAT" | "NONE" | "EXPLORE" | "PLANE" | "PLANE_create3000.github.io">;
12536
+ type: MFString <"ANY" | "WALK" | "EXAMINE" | "FLY" | "LOOKAT" | "NONE" | "EXPLORE">;
12053
12537
  /**
12054
12538
  * Geometry beyond the visibilityLimit may not be rendered (far clipping plane of the view frustrum).
12055
12539
  *
@@ -15819,6 +16303,53 @@ interface ShapeProxy extends X3DShapeNodeProxy
15819
16303
  visible: boolean;
15820
16304
  }
15821
16305
 
16306
+ /** SheenMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
16307
+ interface SheenMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
16308
+ {
16309
+ /**
16310
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
16311
+ *
16312
+ * This field is of access type 'inputOutput' and type SFNode.
16313
+ */
16314
+ metadata: SFNode | null;
16315
+ /**
16316
+ * The sheen color in linear space.
16317
+ *
16318
+ * This field is of access type 'inputOutput' and type SFColor.
16319
+ */
16320
+ sheenColor: SFColor;
16321
+ /**
16322
+ * The sheen color (RGB). The sheen color is in sRGB transfer function.
16323
+ *
16324
+ * This field is of access type 'inputOutput' and type SFNode.
16325
+ */
16326
+ sheenColorTexture: SFNode | null;
16327
+ /**
16328
+ * Input/Output field *sheenColorTextureMapping*.
16329
+ *
16330
+ * This field is of access type 'inputOutput' and type SFString.
16331
+ */
16332
+ sheenColorTextureMapping: string;
16333
+ /**
16334
+ * The sheen roughness.
16335
+ *
16336
+ * This field is of access type 'inputOutput' and type SFFloat.
16337
+ */
16338
+ sheenRoughness: number;
16339
+ /**
16340
+ * The sheen roughness (Alpha) texture.
16341
+ *
16342
+ * This field is of access type 'inputOutput' and type SFNode.
16343
+ */
16344
+ sheenRoughnessTexture: SFNode | null;
16345
+ /**
16346
+ * Input/Output field *sheenRoughnessTextureMapping*.
16347
+ *
16348
+ * This field is of access type 'inputOutput' and type SFString.
16349
+ */
16350
+ sheenRoughnessTextureMapping: string;
16351
+ }
16352
+
15822
16353
  /** 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
16354
  interface SignalPduProxy extends X3DNetworkSensorNodeProxy, X3DBoundedObjectProxy
15824
16355
  {
@@ -16433,6 +16964,172 @@ interface SpatialSoundProxy extends X3DSoundNodeProxy
16433
16964
  spatialize: boolean;
16434
16965
  }
16435
16966
 
16967
+ /** SpecularGlossinessMaterial specifies surface rendering properties for associated geometry nodes. Material attributes are used by the X3D lighting equations during rendering. */
16968
+ interface SpecularGlossinessMaterialProxy extends X3DOneSidedMaterialNodeProxy
16969
+ {
16970
+ /**
16971
+ * The reflected diffuse factor of the material.
16972
+ *
16973
+ * This field is of access type 'inputOutput' and type SFColor.
16974
+ */
16975
+ diffuseColor: SFColor;
16976
+ /**
16977
+ * The diffuse texture.
16978
+ *
16979
+ * This field is of access type 'inputOutput' and type SFNode.
16980
+ */
16981
+ diffuseTexture: SFNode | null;
16982
+ /**
16983
+ * Input/Output field *diffuseTextureMapping*.
16984
+ *
16985
+ * This field is of access type 'inputOutput' and type SFString.
16986
+ */
16987
+ diffuseTextureMapping: string;
16988
+ /**
16989
+ * How much glowing light is emitted from this object.
16990
+ *
16991
+ * This field is of access type 'inputOutput' and type SFColor.
16992
+ */
16993
+ emissiveColor: SFColor;
16994
+ /**
16995
+ * When applying emissiveColor for this material node, the contained texture provides Physically Based Rendering (PBR) modulation for each pixel.
16996
+ *
16997
+ * This field is of access type 'inputOutput' and type SFNode.
16998
+ */
16999
+ emissiveTexture: SFNode | null;
17000
+ /**
17001
+ * The mapping label identifies which texture coordinates and transformations are used to compute texture effects from corresponding geometry on a given material.
17002
+ *
17003
+ * This field is of access type 'inputOutput' and type SFString.
17004
+ */
17005
+ emissiveTextureMapping: string;
17006
+ /**
17007
+ * Input/Output field *extensions*.
17008
+ *
17009
+ * This field is of access type 'inputOutput' and type MFNode.
17010
+ */
17011
+ extensions: MFNode <SFNode>;
17012
+ /**
17013
+ * The glossiness or smoothness of the material.
17014
+ *
17015
+ * This field is of access type 'inputOutput' and type SFFloat.
17016
+ */
17017
+ glossiness: number;
17018
+ /**
17019
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
17020
+ *
17021
+ * This field is of access type 'inputOutput' and type SFNode.
17022
+ */
17023
+ metadata: SFNode | null;
17024
+ /**
17025
+ * *normalScale* controls the degree to which normalTexture RGB values apply XYZ-normal bump mapping to pixels in the parent material.
17026
+ *
17027
+ * This field is of access type 'inputOutput' and type SFFloat.
17028
+ */
17029
+ normalScale: number;
17030
+ /**
17031
+ * When applying normalScale for this material node, the contained texture modulates the texture across the surface.
17032
+ *
17033
+ * This field is of access type 'inputOutput' and type SFNode.
17034
+ */
17035
+ normalTexture: SFNode | null;
17036
+ /**
17037
+ * The mapping label identifies which texture coordinates and transformations are used to compute texture effects from corresponding geometry on a given material.
17038
+ *
17039
+ * This field is of access type 'inputOutput' and type SFString.
17040
+ */
17041
+ normalTextureMapping: string;
17042
+ /**
17043
+ * *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.
17044
+ *
17045
+ * This field is of access type 'inputOutput' and type SFFloat.
17046
+ */
17047
+ occlusionStrength: number;
17048
+ /**
17049
+ * When applying occlusionStrength for this material node, the contained texture provides Physically Based Rendering (PBR) modulation for each pixel.
17050
+ *
17051
+ * This field is of access type 'inputOutput' and type SFNode.
17052
+ */
17053
+ occlusionTexture: SFNode | null;
17054
+ /**
17055
+ * The mapping label identifies which texture coordinates and transformations are used to compute texture effects from corresponding geometry on a given material.
17056
+ *
17057
+ * This field is of access type 'inputOutput' and type SFString.
17058
+ */
17059
+ occlusionTextureMapping: string;
17060
+ /**
17061
+ * The specular RGB color of the material.
17062
+ *
17063
+ * This field is of access type 'inputOutput' and type SFColor.
17064
+ */
17065
+ specularColor: SFColor;
17066
+ /**
17067
+ * The specular-glossiness texture.
17068
+ *
17069
+ * This field is of access type 'inputOutput' and type SFNode.
17070
+ */
17071
+ specularGlossinessTexture: SFNode | null;
17072
+ /**
17073
+ * Input/Output field *specularGlossinessTextureMapping*.
17074
+ *
17075
+ * This field is of access type 'inputOutput' and type SFString.
17076
+ */
17077
+ specularGlossinessTextureMapping: string;
17078
+ /**
17079
+ * How 'clear' an object is: 1.0 is completely transparent, 0.0 is completely opaque. Interchange profile
17080
+ *
17081
+ * This field is of access type 'inputOutput' and type SFFloat.
17082
+ */
17083
+ transparency: number;
17084
+ }
17085
+
17086
+ /** SpecularMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
17087
+ interface SpecularMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
17088
+ {
17089
+ /**
17090
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
17091
+ *
17092
+ * This field is of access type 'inputOutput' and type SFNode.
17093
+ */
17094
+ metadata: SFNode | null;
17095
+ /**
17096
+ * The strength of the specular reflection.
17097
+ *
17098
+ * This field is of access type 'inputOutput' and type SFFloat.
17099
+ */
17100
+ specular: number;
17101
+ /**
17102
+ * The F0 color of the specular reflection (linear RGB).
17103
+ *
17104
+ * This field is of access type 'inputOutput' and type SFColor.
17105
+ */
17106
+ specularColor: SFColor;
17107
+ /**
17108
+ * 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.
17109
+ *
17110
+ * This field is of access type 'inputOutput' and type SFNode.
17111
+ */
17112
+ specularColorTexture: SFNode | null;
17113
+ /**
17114
+ * Input/Output field *specularColorTextureMapping*.
17115
+ *
17116
+ * This field is of access type 'inputOutput' and type SFString.
17117
+ */
17118
+ specularColorTextureMapping: string;
17119
+ /**
17120
+ * texture that defines the strength of the specular reflection, stored in the alpha (A) channel. This will be multiplied by specularFactor.
17121
+ *
17122
+ * This field is of access type 'inputOutput' and type SFNode.
17123
+ */
17124
+ specularTexture: SFNode | null;
17125
+ /**
17126
+ * Input/Output field *specularTextureMapping*.
17127
+ *
17128
+ * This field is of access type 'inputOutput' and type SFString.
17129
+ */
17130
+ specularTextureMapping: string;
17131
+ }
17132
+
16436
17133
  /** Sphere is a geometry node, representing a perfectly round geometrical object that is the surface of a completely round ball. */
16437
17134
  interface SphereProxy extends X3DGeometryNodeProxy
16438
17135
  {
@@ -17154,9 +17851,15 @@ interface SwitchProxy extends X3DGroupingNodeProxy
17154
17851
  whichChoice: number;
17155
17852
  }
17156
17853
 
17157
- /** undefined */
17854
+ /** Tangent. */
17158
17855
  interface TangentProxy extends X3DGeometricPropertyNodeProxy
17159
17856
  {
17857
+ /**
17858
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
17859
+ *
17860
+ * This field is of access type 'inputOutput' and type SFNode.
17861
+ */
17862
+ metadata: SFNode | null;
17160
17863
  /**
17161
17864
  * 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
17865
  *
@@ -18287,6 +18990,35 @@ interface TransformSensorProxy extends X3DEnvironmentalSensorNodeProxy
18287
18990
  targetObject: X3DGroupingNodeProxy | X3DShapeNodeProxy | null;
18288
18991
  }
18289
18992
 
18993
+ /** TransmissionMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
18994
+ interface TransmissionMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
18995
+ {
18996
+ /**
18997
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
18998
+ *
18999
+ * This field is of access type 'inputOutput' and type SFNode.
19000
+ */
19001
+ metadata: SFNode | null;
19002
+ /**
19003
+ * The base percentage of light that is transmitted through the surface.
19004
+ *
19005
+ * This field is of access type 'inputOutput' and type SFFloat.
19006
+ */
19007
+ transmission: number;
19008
+ /**
19009
+ * A texture that defines the transmission percentage of the surface, stored in the R channel. This will be multiplied by transmissionFactor.
19010
+ *
19011
+ * This field is of access type 'inputOutput' and type SFNode.
19012
+ */
19013
+ transmissionTexture: SFNode | null;
19014
+ /**
19015
+ * Input/Output field *transmissionTextureMapping*.
19016
+ *
19017
+ * This field is of access type 'inputOutput' and type SFString.
19018
+ */
19019
+ transmissionTextureMapping: string;
19020
+ }
19021
+
18290
19022
  /** TransmitterPdu is a networked Protocol Data Unit (PDU) information node that provides detailed information about a radio transmitter modeled in a simulation. */
18291
19023
  interface TransmitterPduProxy extends X3DNetworkSensorNodeProxy, X3DBoundedObjectProxy
18292
19024
  {
@@ -19449,6 +20181,47 @@ interface VolumeEmitterProxy extends X3DParticleEmitterNodeProxy
19449
20181
  variation: number;
19450
20182
  }
19451
20183
 
20184
+ /** VolumeMaterialExtension is an extension for PhysicalMaterial node and SpecularGlossinessMaterial node. */
20185
+ interface VolumeMaterialExtensionProxy extends X3DMaterialExtensionNodeProxy
20186
+ {
20187
+ /**
20188
+ * The color that white light turns into due to absorption when reaching the attenuation distance.
20189
+ *
20190
+ * This field is of access type 'inputOutput' and type SFColor.
20191
+ */
20192
+ attenuationColor: SFColor;
20193
+ /**
20194
+ * 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.
20195
+ *
20196
+ * This field is of access type 'inputOutput' and type SFFloat.
20197
+ */
20198
+ attenuationDistance: number;
20199
+ /**
20200
+ * Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
20201
+ *
20202
+ * This field is of access type 'inputOutput' and type SFNode.
20203
+ */
20204
+ metadata: SFNode | null;
20205
+ /**
20206
+ * 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.
20207
+ *
20208
+ * This field is of access type 'inputOutput' and type SFFloat.
20209
+ */
20210
+ thickness: number;
20211
+ /**
20212
+ * A texture that defines the thickness, stored in the G channel. This will be multiplied by thicknessFactor.
20213
+ *
20214
+ * This field is of access type 'inputOutput' and type SFNode.
20215
+ */
20216
+ thicknessTexture: SFNode | null;
20217
+ /**
20218
+ * Input/Output field *thicknessTextureMapping*.
20219
+ *
20220
+ * This field is of access type 'inputOutput' and type SFString.
20221
+ */
20222
+ thicknessTextureMapping: string;
20223
+ }
20224
+
19452
20225
  /** VolumePickSensor tests picking intersections using the pickingGeometry against the pickTarget geometry volume. */
19453
20226
  interface VolumePickSensorProxy extends X3DPickSensorNodeProxy
19454
20227
  {
@@ -21403,6 +22176,7 @@ type ConcreteNodeTypes = {
21403
22176
  AcousticProperties: AcousticPropertiesProxy,
21404
22177
  Analyser: AnalyserProxy,
21405
22178
  Anchor: AnchorProxy,
22179
+ AnisotropyMaterialExtension: AnisotropyMaterialExtensionProxy,
21406
22180
  Appearance: AppearanceProxy,
21407
22181
  Arc2D: Arc2DProxy,
21408
22182
  ArcClose2D: ArcClose2DProxy,
@@ -21431,6 +22205,7 @@ type ConcreteNodeTypes = {
21431
22205
  ChannelSelector: ChannelSelectorProxy,
21432
22206
  ChannelSplitter: ChannelSplitterProxy,
21433
22207
  Circle2D: Circle2DProxy,
22208
+ ClearcoatMaterialExtension: ClearcoatMaterialExtensionProxy,
21434
22209
  ClipPlane: ClipPlaneProxy,
21435
22210
  CollidableOffset: CollidableOffsetProxy,
21436
22211
  CollidableShape: CollidableShapeProxy,
@@ -21467,11 +22242,13 @@ type ConcreteNodeTypes = {
21467
22242
  DISEntityManager: DISEntityManagerProxy,
21468
22243
  DISEntityTypeMapping: DISEntityTypeMappingProxy,
21469
22244
  Disk2D: Disk2DProxy,
22245
+ DispersionMaterialExtension: DispersionMaterialExtensionProxy,
21470
22246
  DoubleAxisHingeJoint: DoubleAxisHingeJointProxy,
21471
22247
  DynamicsCompressor: DynamicsCompressorProxy,
21472
22248
  EaseInEaseOut: EaseInEaseOutProxy,
21473
22249
  EdgeEnhancementVolumeStyle: EdgeEnhancementVolumeStyleProxy,
21474
22250
  ElevationGrid: ElevationGridProxy,
22251
+ EmissiveStrengthMaterialExtension: EmissiveStrengthMaterialExtensionProxy,
21475
22252
  EnvironmentLight: EnvironmentLightProxy,
21476
22253
  EspduTransform: EspduTransformProxy,
21477
22254
  ExplosionEmitter: ExplosionEmitterProxy,
@@ -21513,8 +22290,11 @@ type ConcreteNodeTypes = {
21513
22290
  IndexedTriangleSet: IndexedTriangleSetProxy,
21514
22291
  IndexedTriangleStripSet: IndexedTriangleStripSetProxy,
21515
22292
  Inline: InlineProxy,
22293
+ InstancedShape: InstancedShapeProxy,
21516
22294
  IntegerSequencer: IntegerSequencerProxy,
21517
22295
  IntegerTrigger: IntegerTriggerProxy,
22296
+ IORMaterialExtension: IORMaterialExtensionProxy,
22297
+ IridescenceMaterialExtension: IridescenceMaterialExtensionProxy,
21518
22298
  IsoSurfaceVolumeData: IsoSurfaceVolumeDataProxy,
21519
22299
  KeySensor: KeySensorProxy,
21520
22300
  Layer: LayerProxy,
@@ -21606,12 +22386,15 @@ type ConcreteNodeTypes = {
21606
22386
  ShaderPart: ShaderPartProxy,
21607
22387
  ShaderProgram: ShaderProgramProxy,
21608
22388
  Shape: ShapeProxy,
22389
+ SheenMaterialExtension: SheenMaterialExtensionProxy,
21609
22390
  SignalPdu: SignalPduProxy,
21610
22391
  SilhouetteEnhancementVolumeStyle: SilhouetteEnhancementVolumeStyleProxy,
21611
22392
  SingleAxisHingeJoint: SingleAxisHingeJointProxy,
21612
22393
  SliderJoint: SliderJointProxy,
21613
22394
  Sound: SoundProxy,
21614
22395
  SpatialSound: SpatialSoundProxy,
22396
+ SpecularGlossinessMaterial: SpecularGlossinessMaterialProxy,
22397
+ SpecularMaterialExtension: SpecularMaterialExtensionProxy,
21615
22398
  Sphere: SphereProxy,
21616
22399
  SphereSensor: SphereSensorProxy,
21617
22400
  SplinePositionInterpolator: SplinePositionInterpolatorProxy,
@@ -21646,6 +22429,7 @@ type ConcreteNodeTypes = {
21646
22429
  TouchSensor: TouchSensorProxy,
21647
22430
  Transform: TransformProxy,
21648
22431
  TransformSensor: TransformSensorProxy,
22432
+ TransmissionMaterialExtension: TransmissionMaterialExtensionProxy,
21649
22433
  TransmitterPdu: TransmitterPduProxy,
21650
22434
  TriangleFanSet: TriangleFanSetProxy,
21651
22435
  TriangleSet: TriangleSetProxy,
@@ -21660,6 +22444,7 @@ type ConcreteNodeTypes = {
21660
22444
  VisibilitySensor: VisibilitySensorProxy,
21661
22445
  VolumeData: VolumeDataProxy,
21662
22446
  VolumeEmitter: VolumeEmitterProxy,
22447
+ VolumeMaterialExtension: VolumeMaterialExtensionProxy,
21663
22448
  VolumePickSensor: VolumePickSensorProxy,
21664
22449
  WaveShaper: WaveShaperProxy,
21665
22450
  WindPhysicsModel: WindPhysicsModelProxy,