x_ite 10.5.4 → 10.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/dist/X3DUOM.xml +358 -86
- package/dist/assets/components/AnnotationComponent.js +2 -2
- package/dist/assets/components/AnnotationComponent.min.js +2 -2
- package/dist/assets/components/CADGeometryComponent.js +2 -2
- package/dist/assets/components/CADGeometryComponent.min.js +2 -2
- package/dist/assets/components/CubeMapTexturingComponent.js +2 -2
- package/dist/assets/components/CubeMapTexturingComponent.min.js +2 -2
- package/dist/assets/components/DISComponent.js +2 -2
- package/dist/assets/components/DISComponent.min.js +2 -2
- package/dist/assets/components/EventUtilitiesComponent.js +2 -2
- package/dist/assets/components/EventUtilitiesComponent.min.js +2 -2
- package/dist/assets/components/Geometry2DComponent.js +2 -2
- package/dist/assets/components/Geometry2DComponent.min.js +2 -2
- package/dist/assets/components/GeospatialComponent.js +2 -2
- package/dist/assets/components/GeospatialComponent.min.js +2 -2
- package/dist/assets/components/HAnimComponent.js +2 -2
- package/dist/assets/components/HAnimComponent.min.js +2 -2
- package/dist/assets/components/KeyDeviceSensorComponent.js +2 -2
- package/dist/assets/components/KeyDeviceSensorComponent.min.js +2 -2
- package/dist/assets/components/LayoutComponent.js +2 -2
- package/dist/assets/components/LayoutComponent.min.js +2 -2
- package/dist/assets/components/NURBSComponent.js +2 -2
- package/dist/assets/components/NURBSComponent.min.js +2 -2
- package/dist/assets/components/ParticleSystemsComponent.js +2 -2
- package/dist/assets/components/ParticleSystemsComponent.min.js +2 -2
- package/dist/assets/components/PickingComponent.js +2 -2
- package/dist/assets/components/PickingComponent.min.js +2 -2
- package/dist/assets/components/RigidBodyPhysicsComponent.js +2 -2
- package/dist/assets/components/RigidBodyPhysicsComponent.min.js +2 -2
- package/dist/assets/components/ScriptingComponent.js +2 -2
- package/dist/assets/components/ScriptingComponent.min.js +2 -2
- package/dist/assets/components/TextComponent.js +4 -4
- package/dist/assets/components/TextComponent.min.js +2 -2
- package/dist/assets/components/TextureProjectionComponent.js +2 -2
- package/dist/assets/components/TextureProjectionComponent.min.js +2 -2
- package/dist/assets/components/Texturing3DComponent.js +10 -10
- package/dist/assets/components/Texturing3DComponent.min.js +2 -2
- package/dist/assets/components/VolumeRenderingComponent.js +2 -2
- package/dist/assets/components/VolumeRenderingComponent.min.js +2 -2
- package/dist/assets/components/X_ITEComponent.js +2 -2
- package/dist/assets/components/X_ITEComponent.min.js +2 -2
- package/dist/example.html +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.d.ts +22491 -22442
- package/dist/x_ite.js +83 -83
- package/dist/x_ite.min.js +2 -2
- package/dist/x_ite.min.mjs +2 -2
- package/dist/x_ite.mjs +83 -83
- package/dist/x_ite.zip +0 -0
- package/package.json +6 -2
package/dist/X3DUOM.xml
CHANGED
|
@@ -4,6 +4,45 @@
|
|
|
4
4
|
<!-- This file is an extension of https://www.web3d.org/specifications/X3dUnifiedObjectModel-4.0.xml -->
|
|
5
5
|
<X3dUnifiedObjectModel xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance" version="4.0"
|
|
6
6
|
xsd:noNamespaceSchemaLocation="https://www.web3d.org/specifications/X3dUnifiedObjectModel.xsd">
|
|
7
|
+
|
|
8
|
+
<AbstractNodeTypes>
|
|
9
|
+
|
|
10
|
+
<AbstractNodeType name="X3DComposedGeometryNode">
|
|
11
|
+
<InterfaceDefinition>
|
|
12
|
+
<field name="tangent"
|
|
13
|
+
type="SFNode"
|
|
14
|
+
accessType="inputOutput"
|
|
15
|
+
acceptableNodeTypes="Tangent"
|
|
16
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
17
|
+
/>
|
|
18
|
+
</InterfaceDefinition>
|
|
19
|
+
</AbstractNodeType>
|
|
20
|
+
|
|
21
|
+
<AbstractNodeType name="X3DMaterialExtensionNode">
|
|
22
|
+
<InterfaceDefinition appinfo="Nodes of this type can be used for material extensions.">
|
|
23
|
+
<componentInfo name="X_ITE" level="1"/>
|
|
24
|
+
<Inheritance baseType="X3DNode"/>
|
|
25
|
+
<field name="metadata"
|
|
26
|
+
type="SFNode"
|
|
27
|
+
accessType="inputOutput"
|
|
28
|
+
default="NULL"
|
|
29
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
30
|
+
inheritedFrom="X3DNode"/>
|
|
31
|
+
</InterfaceDefinition>
|
|
32
|
+
</AbstractNodeType>
|
|
33
|
+
|
|
34
|
+
<AbstractNodeType name="X3DShapeNode">
|
|
35
|
+
<InterfaceDefinition>
|
|
36
|
+
<field name="pointerEvents"
|
|
37
|
+
type="SFBool"
|
|
38
|
+
accessType="inputOutput"
|
|
39
|
+
default="TRUE"
|
|
40
|
+
description="pointerEvents defines whether this Shape becomes target for pointer events."
|
|
41
|
+
/>
|
|
42
|
+
</InterfaceDefinition>
|
|
43
|
+
</AbstractNodeType>
|
|
44
|
+
|
|
45
|
+
</AbstractNodeTypes>
|
|
7
46
|
<ConcreteNodes>
|
|
8
47
|
|
|
9
48
|
<ConcreteNode name="EnvironmentLight">
|
|
@@ -16,7 +55,7 @@
|
|
|
16
55
|
type="SFNode"
|
|
17
56
|
accessType="inputOutput"
|
|
18
57
|
default="NULL"
|
|
19
|
-
|
|
58
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
20
59
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
21
60
|
></field>
|
|
22
61
|
<field name="global"
|
|
@@ -37,7 +76,7 @@
|
|
|
37
76
|
default="1 1 1"
|
|
38
77
|
minInclusive="0"
|
|
39
78
|
maxInclusive="1"
|
|
40
|
-
description="
|
|
79
|
+
description="color of light, applied to colors of objects."
|
|
41
80
|
></field>
|
|
42
81
|
<field name="intensity"
|
|
43
82
|
type="SFFloat"
|
|
@@ -59,32 +98,32 @@
|
|
|
59
98
|
accessType="inputOutput"
|
|
60
99
|
default="0 0 1 0"
|
|
61
100
|
minInclusive="-1"
|
|
62
|
-
description="Input/Output field
|
|
101
|
+
description="Input/Output field rotation."
|
|
63
102
|
></field>
|
|
64
103
|
<field name="diffuseTexture"
|
|
65
104
|
type="SFNode"
|
|
66
105
|
accessType="inputOutput"
|
|
67
106
|
default="NULL"
|
|
68
|
-
|
|
69
|
-
description="Input/Output field
|
|
107
|
+
acceptableNodeTypes="X3DEnvironmentTextureNode"
|
|
108
|
+
description="Input/Output field diffuseTexture."
|
|
70
109
|
></field>
|
|
71
110
|
<field name="diffuseCoefficients"
|
|
72
111
|
type="MFFloat"
|
|
73
112
|
accessType="inputOutput"
|
|
74
|
-
description="Input/Output field
|
|
113
|
+
description="Input/Output field diffuseCoefficients."
|
|
75
114
|
></field>
|
|
76
115
|
<field name="specularTexture"
|
|
77
116
|
type="SFNode"
|
|
78
117
|
accessType="inputOutput"
|
|
79
118
|
default="NULL"
|
|
80
|
-
|
|
81
|
-
description="Input/Output field
|
|
119
|
+
acceptableNodeTypes="X3DEnvironmentTextureNode"
|
|
120
|
+
description="Input/Output field specularTexture."
|
|
82
121
|
></field>
|
|
83
122
|
<field name="shadows"
|
|
84
123
|
type="SFBool"
|
|
85
124
|
accessType="inputOutput"
|
|
86
125
|
default="FALSE"
|
|
87
|
-
description="
|
|
126
|
+
description="shadows field indicates whether or not this light casts a shadow behind illuminated X3DShapeNode geometry."
|
|
88
127
|
></field>
|
|
89
128
|
<field name="shadowIntensity"
|
|
90
129
|
type="SFFloat"
|
|
@@ -92,11 +131,12 @@
|
|
|
92
131
|
default="1"
|
|
93
132
|
minInclusive="0"
|
|
94
133
|
maxInclusive="1"
|
|
95
|
-
description="
|
|
134
|
+
description="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)."
|
|
96
135
|
></field>
|
|
97
136
|
<containerField default="children" type="xs:NMTOKEN" />
|
|
98
137
|
</InterfaceDefinition>
|
|
99
138
|
</ConcreteNode>
|
|
139
|
+
|
|
100
140
|
<ConcreteNode name="Tangent">
|
|
101
141
|
<InterfaceDefinition
|
|
102
142
|
specificationUrl="https://create3000.github.io/x_ite/components/rendering/tangent"
|
|
@@ -107,7 +147,7 @@
|
|
|
107
147
|
type="SFNode"
|
|
108
148
|
accessType="inputOutput"
|
|
109
149
|
default="NULL"
|
|
110
|
-
|
|
150
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
111
151
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
112
152
|
/>
|
|
113
153
|
<field name="vector"
|
|
@@ -120,6 +160,7 @@
|
|
|
120
160
|
<containerField default="tangent" type="xs:NMTOKEN" />
|
|
121
161
|
</InterfaceDefinition>
|
|
122
162
|
</ConcreteNode>
|
|
163
|
+
|
|
123
164
|
<ConcreteNode name="ImageTextureAtlas">
|
|
124
165
|
<InterfaceDefinition
|
|
125
166
|
specificationUrl="https://create3000.github.io/x_ite/components/texturing3d/imagetextureatlas"
|
|
@@ -130,7 +171,7 @@
|
|
|
130
171
|
type="SFNode"
|
|
131
172
|
accessType="inputOutput"
|
|
132
173
|
default="NULL"
|
|
133
|
-
|
|
174
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
134
175
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
135
176
|
/>
|
|
136
177
|
<field name="description"
|
|
@@ -143,7 +184,7 @@
|
|
|
143
184
|
type="SFBool"
|
|
144
185
|
accessType="inputOutput"
|
|
145
186
|
default="TRUE"
|
|
146
|
-
description="
|
|
187
|
+
description="load=true means load immediately, load=false means defer loading or else unload a previously loaded scene."
|
|
147
188
|
/>
|
|
148
189
|
<field name="url"
|
|
149
190
|
type="MFString"
|
|
@@ -155,14 +196,14 @@
|
|
|
155
196
|
accessType="inputOutput"
|
|
156
197
|
default="0"
|
|
157
198
|
minInclusive="0"
|
|
158
|
-
description="
|
|
199
|
+
description="autoRefresh defines interval in seconds before automatic reload of current url asset is performed."
|
|
159
200
|
/>
|
|
160
201
|
<field name="autoRefreshTimeLimit"
|
|
161
202
|
type="SFTime"
|
|
162
203
|
accessType="inputOutput"
|
|
163
204
|
default="3600"
|
|
164
205
|
minInclusive="0"
|
|
165
|
-
description="
|
|
206
|
+
description="autoRefreshTimeLimit defines maximum duration that automatic refresh activity can occur."
|
|
166
207
|
/>
|
|
167
208
|
<field name="slicesOverX"
|
|
168
209
|
type="SFInt32"
|
|
@@ -207,11 +248,13 @@
|
|
|
207
248
|
type="SFNode"
|
|
208
249
|
accessType="initializeOnly"
|
|
209
250
|
default="NULL"
|
|
251
|
+
acceptableNodeTypes="TextureProperties"
|
|
210
252
|
description="Single contained TextureProperties node that can specify additional visual attributes applied to corresponding texture images."
|
|
211
253
|
/>
|
|
212
254
|
<containerField default="texture" type="xs:NMTOKEN" />
|
|
213
255
|
</InterfaceDefinition>
|
|
214
256
|
</ConcreteNode>
|
|
257
|
+
|
|
215
258
|
<ConcreteNode name="AnisotropyMaterialExtension">
|
|
216
259
|
<InterfaceDefinition
|
|
217
260
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/anisotropymaterialextension"
|
|
@@ -222,7 +265,7 @@
|
|
|
222
265
|
type="SFNode"
|
|
223
266
|
accessType="inputOutput"
|
|
224
267
|
default="NULL"
|
|
225
|
-
|
|
268
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
226
269
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
227
270
|
/>
|
|
228
271
|
<field name="anisotropyStrength"
|
|
@@ -242,18 +285,19 @@
|
|
|
242
285
|
type="SFString"
|
|
243
286
|
accessType="inputOutput"
|
|
244
287
|
default=""
|
|
245
|
-
description="Input/Output field
|
|
288
|
+
description="Input/Output field anisotropyTextureMapping."
|
|
246
289
|
/>
|
|
247
290
|
<field name="anisotropyTexture"
|
|
248
291
|
type="SFNode"
|
|
249
292
|
accessType="inputOutput"
|
|
250
293
|
default="NULL"
|
|
251
|
-
|
|
294
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
252
295
|
description="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."
|
|
253
296
|
/>
|
|
254
297
|
<containerField default="blendMode" type="xs:NMTOKEN" />
|
|
255
298
|
</InterfaceDefinition>
|
|
256
299
|
</ConcreteNode>
|
|
300
|
+
|
|
257
301
|
<ConcreteNode name="BlendMode">
|
|
258
302
|
<InterfaceDefinition
|
|
259
303
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/blendmode"
|
|
@@ -264,7 +308,7 @@
|
|
|
264
308
|
type="SFNode"
|
|
265
309
|
accessType="inputOutput"
|
|
266
310
|
default="NULL"
|
|
267
|
-
|
|
311
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
268
312
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
269
313
|
/>
|
|
270
314
|
<field name="blendColor"
|
|
@@ -273,13 +317,13 @@
|
|
|
273
317
|
default="0 0 0 0"
|
|
274
318
|
minInclusive="0"
|
|
275
319
|
maxInclusive="1"
|
|
276
|
-
description="The
|
|
320
|
+
description="The blendColor may be used to calculate the source and destination blending factors."
|
|
277
321
|
/>
|
|
278
322
|
<field name="sourceColorFactor"
|
|
279
323
|
type="SFString"
|
|
280
324
|
accessType="inputOutput"
|
|
281
325
|
default="SRC_ALPHA"
|
|
282
|
-
description="Specifies how the red, green, and blue source blending factors are computed.Source and destination parameters must be one of the following symbolic constants:
|
|
326
|
+
description="Specifies how the red, green, and blue source blending factors are computed. Source and destination parameters must be one of the following symbolic constants:
|
|
283
327
|
- ZERO
|
|
284
328
|
- ONE
|
|
285
329
|
- SRC_COLOR
|
|
@@ -402,6 +446,7 @@
|
|
|
402
446
|
<containerField default="blendMode" type="xs:NMTOKEN" />
|
|
403
447
|
</InterfaceDefinition>
|
|
404
448
|
</ConcreteNode>
|
|
449
|
+
|
|
405
450
|
<ConcreteNode name="ClearcoatMaterialExtension">
|
|
406
451
|
<InterfaceDefinition
|
|
407
452
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/clearcoatmaterialextension"
|
|
@@ -412,7 +457,7 @@
|
|
|
412
457
|
type="SFNode"
|
|
413
458
|
accessType="inputOutput"
|
|
414
459
|
default="NULL"
|
|
415
|
-
|
|
460
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
416
461
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
417
462
|
/>
|
|
418
463
|
<field name="clearcoat"
|
|
@@ -426,13 +471,13 @@
|
|
|
426
471
|
type="SFString"
|
|
427
472
|
accessType="inputOutput"
|
|
428
473
|
default=""
|
|
429
|
-
description="Input/Output field
|
|
474
|
+
description="Input/Output field clearcoatTextureMapping."
|
|
430
475
|
/>
|
|
431
476
|
<field name="clearcoatTexture"
|
|
432
477
|
type="SFNode"
|
|
433
478
|
accessType="inputOutput"
|
|
434
479
|
default="NULL"
|
|
435
|
-
|
|
480
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
436
481
|
description="The clearcoat layer intensity texture."
|
|
437
482
|
/>
|
|
438
483
|
<field name="clearcoatRoughness"
|
|
@@ -446,31 +491,32 @@
|
|
|
446
491
|
type="SFString"
|
|
447
492
|
accessType="inputOutput"
|
|
448
493
|
default=""
|
|
449
|
-
description="Input/Output field
|
|
494
|
+
description="Input/Output field clearcoatRoughnessTextureMapping."
|
|
450
495
|
/>
|
|
451
496
|
<field name="clearcoatRoughnessTexture"
|
|
452
497
|
type="SFNode"
|
|
453
498
|
accessType="inputOutput"
|
|
454
499
|
default="NULL"
|
|
455
|
-
|
|
500
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
456
501
|
description="The clearcoat layer roughness texture."
|
|
457
502
|
/>
|
|
458
503
|
<field name="clearcoatNormalTextureMapping"
|
|
459
504
|
type="SFString"
|
|
460
505
|
accessType="inputOutput"
|
|
461
506
|
default=""
|
|
462
|
-
description="Input/Output field
|
|
507
|
+
description="Input/Output field clearcoatNormalTextureMapping."
|
|
463
508
|
/>
|
|
464
509
|
<field name="clearcoatNormalTexture"
|
|
465
510
|
type="SFNode"
|
|
466
511
|
accessType="inputOutput"
|
|
467
512
|
default="NULL"
|
|
468
|
-
|
|
513
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
469
514
|
description="The clearcoat normal map texture."
|
|
470
515
|
/>
|
|
471
516
|
<containerField default="depthMode" type="xs:NMTOKEN" />
|
|
472
517
|
</InterfaceDefinition>
|
|
473
518
|
</ConcreteNode>
|
|
519
|
+
|
|
474
520
|
<ConcreteNode name="DepthMode">
|
|
475
521
|
<InterfaceDefinition
|
|
476
522
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/depthmode"
|
|
@@ -481,14 +527,14 @@
|
|
|
481
527
|
type="SFNode"
|
|
482
528
|
accessType="inputOutput"
|
|
483
529
|
default="NULL"
|
|
484
|
-
|
|
530
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
485
531
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
486
532
|
/>
|
|
487
533
|
<field name="polygonOffset"
|
|
488
534
|
type="SFVec2f"
|
|
489
535
|
accessType="inputOutput"
|
|
490
536
|
default="0 0"
|
|
491
|
-
description="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
|
|
537
|
+
description="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."
|
|
492
538
|
/>
|
|
493
539
|
<field name="depthRange"
|
|
494
540
|
type="SFVec2f"
|
|
@@ -496,7 +542,7 @@
|
|
|
496
542
|
default="0 1"
|
|
497
543
|
minInclusive="0"
|
|
498
544
|
maxInclusive="1"
|
|
499
|
-
description="Specifies the depth range mapping from normalized device coordinates to window or viewport coordinates.The first value is
|
|
545
|
+
description="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."
|
|
500
546
|
/>
|
|
501
547
|
<field name="depthTest"
|
|
502
548
|
type="SFBool"
|
|
@@ -508,7 +554,7 @@
|
|
|
508
554
|
type="SFString"
|
|
509
555
|
accessType="inputOutput"
|
|
510
556
|
default="LESS_EQUAL"
|
|
511
|
-
description="Specifies a function that compares incoming pixel depth to the current depth buffer value.Must be one of the following symbolic constants
|
|
557
|
+
description="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.">
|
|
512
558
|
<enumeration value="NEVER" />
|
|
513
559
|
<enumeration value="LESS" />
|
|
514
560
|
<enumeration value="EQUAL" />
|
|
@@ -527,6 +573,7 @@
|
|
|
527
573
|
<containerField default="depthMode" type="xs:NMTOKEN" />
|
|
528
574
|
</InterfaceDefinition>
|
|
529
575
|
</ConcreteNode>
|
|
576
|
+
|
|
530
577
|
<ConcreteNode name="DispersionMaterialExtension">
|
|
531
578
|
<InterfaceDefinition
|
|
532
579
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/dispersionmaterialextension"
|
|
@@ -537,7 +584,7 @@
|
|
|
537
584
|
type="SFNode"
|
|
538
585
|
accessType="inputOutput"
|
|
539
586
|
default="NULL"
|
|
540
|
-
|
|
587
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
541
588
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
542
589
|
/>
|
|
543
590
|
<field name="dispersion"
|
|
@@ -550,6 +597,7 @@
|
|
|
550
597
|
<containerField default="extensions" type="xs:NMTOKEN" />
|
|
551
598
|
</InterfaceDefinition>
|
|
552
599
|
</ConcreteNode>
|
|
600
|
+
|
|
553
601
|
<ConcreteNode name="EmissiveStrengthMaterialExtension">
|
|
554
602
|
<InterfaceDefinition
|
|
555
603
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/emissivestrengthmaterialextension"
|
|
@@ -560,7 +608,7 @@
|
|
|
560
608
|
type="SFNode"
|
|
561
609
|
accessType="inputOutput"
|
|
562
610
|
default="NULL"
|
|
563
|
-
|
|
611
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
564
612
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
565
613
|
/>
|
|
566
614
|
<field name="emissiveStrength"
|
|
@@ -573,6 +621,7 @@
|
|
|
573
621
|
<containerField default="extensions" type="xs:NMTOKEN" />
|
|
574
622
|
</InterfaceDefinition>
|
|
575
623
|
</ConcreteNode>
|
|
624
|
+
|
|
576
625
|
<ConcreteNode name="IORMaterialExtension">
|
|
577
626
|
<InterfaceDefinition
|
|
578
627
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/iormaterialextension"
|
|
@@ -583,7 +632,7 @@
|
|
|
583
632
|
type="SFNode"
|
|
584
633
|
accessType="inputOutput"
|
|
585
634
|
default="NULL"
|
|
586
|
-
|
|
635
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
587
636
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
588
637
|
/>
|
|
589
638
|
<field name="indexOfRefraction"
|
|
@@ -596,6 +645,29 @@
|
|
|
596
645
|
<containerField default="children" type="xs:NMTOKEN" />
|
|
597
646
|
</InterfaceDefinition>
|
|
598
647
|
</ConcreteNode>
|
|
648
|
+
|
|
649
|
+
<ConcreteNode name="Shape">
|
|
650
|
+
<InterfaceDefinition>
|
|
651
|
+
<field name="pointerEvents"
|
|
652
|
+
type="SFBool"
|
|
653
|
+
accessType="inputOutput"
|
|
654
|
+
default="TRUE"
|
|
655
|
+
description="pointerEvents defines whether this Shape becomes target for pointer events."
|
|
656
|
+
/>
|
|
657
|
+
</InterfaceDefinition>
|
|
658
|
+
</ConcreteNode>
|
|
659
|
+
|
|
660
|
+
<ConcreteNode name="ParticleSystem">
|
|
661
|
+
<InterfaceDefinition>
|
|
662
|
+
<field name="pointerEvents"
|
|
663
|
+
type="SFBool"
|
|
664
|
+
accessType="inputOutput"
|
|
665
|
+
default="TRUE"
|
|
666
|
+
description="pointerEvents defines whether this Shape becomes target for pointer events."
|
|
667
|
+
/>
|
|
668
|
+
</InterfaceDefinition>
|
|
669
|
+
</ConcreteNode>
|
|
670
|
+
|
|
599
671
|
<ConcreteNode name="InstancedShape">
|
|
600
672
|
<InterfaceDefinition
|
|
601
673
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/instancedshape"
|
|
@@ -606,45 +678,45 @@
|
|
|
606
678
|
type="SFNode"
|
|
607
679
|
accessType="inputOutput"
|
|
608
680
|
default="NULL"
|
|
609
|
-
|
|
681
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
610
682
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
611
683
|
/>
|
|
612
684
|
<field name="translations"
|
|
613
685
|
type="MFVec3f"
|
|
614
686
|
accessType="inputOutput"
|
|
615
|
-
description="Input/Output field
|
|
687
|
+
description="Input/Output field translations."
|
|
616
688
|
/>
|
|
617
689
|
<field name="rotations"
|
|
618
690
|
type="MFRotation"
|
|
619
691
|
accessType="inputOutput"
|
|
620
|
-
description="Input/Output field
|
|
692
|
+
description="Input/Output field rotations."
|
|
621
693
|
/>
|
|
622
694
|
<field name="scales"
|
|
623
695
|
type="MFVec3f"
|
|
624
696
|
accessType="inputOutput"
|
|
625
|
-
description="Input/Output field
|
|
697
|
+
description="Input/Output field scales."
|
|
626
698
|
/>
|
|
627
699
|
<field name="scaleOrientations"
|
|
628
700
|
type="MFRotation"
|
|
629
701
|
accessType="inputOutput"
|
|
630
|
-
description="Input/Output field
|
|
702
|
+
description="Input/Output field scaleOrientations."
|
|
631
703
|
/>
|
|
632
704
|
<field name="centers"
|
|
633
705
|
type="MFVec3f"
|
|
634
706
|
accessType="inputOutput"
|
|
635
|
-
description="Input/Output field
|
|
707
|
+
description="Input/Output field centers."
|
|
636
708
|
/>
|
|
637
709
|
<field name="pointerEvents"
|
|
638
710
|
type="SFBool"
|
|
639
711
|
accessType="inputOutput"
|
|
640
712
|
default="TRUE"
|
|
641
|
-
description="
|
|
713
|
+
description="pointerEvents defines whether this Shape becomes target for pointer events."
|
|
642
714
|
/>
|
|
643
715
|
<field name="castShadow"
|
|
644
716
|
type="SFBool"
|
|
645
717
|
accessType="inputOutput"
|
|
646
718
|
default="TRUE"
|
|
647
|
-
description="Input/Output field
|
|
719
|
+
description="Input/Output field castShadow."
|
|
648
720
|
/>
|
|
649
721
|
<field name="visible"
|
|
650
722
|
type="SFBool"
|
|
@@ -675,19 +747,20 @@
|
|
|
675
747
|
type="SFNode"
|
|
676
748
|
accessType="inputOutput"
|
|
677
749
|
default="NULL"
|
|
678
|
-
|
|
679
|
-
description="Input/Output field
|
|
750
|
+
acceptableNodeTypes="X3DAppearanceNode"
|
|
751
|
+
description="Input/Output field appearance."
|
|
680
752
|
/>
|
|
681
753
|
<field name="geometry"
|
|
682
754
|
type="SFNode"
|
|
683
755
|
accessType="inputOutput"
|
|
684
756
|
default="NULL"
|
|
685
|
-
|
|
686
|
-
description="Input/Output field
|
|
757
|
+
acceptableNodeTypes="X3DGeometryNode"
|
|
758
|
+
description="Input/Output field geometry."
|
|
687
759
|
/>
|
|
688
760
|
<containerField default="extensions" type="xs:NMTOKEN" />
|
|
689
761
|
</InterfaceDefinition>
|
|
690
762
|
</ConcreteNode>
|
|
763
|
+
|
|
691
764
|
<ConcreteNode name="IridescenceMaterialExtension">
|
|
692
765
|
<InterfaceDefinition
|
|
693
766
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/iridescencematerialextension"
|
|
@@ -698,7 +771,7 @@
|
|
|
698
771
|
type="SFNode"
|
|
699
772
|
accessType="inputOutput"
|
|
700
773
|
default="NULL"
|
|
701
|
-
|
|
774
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
702
775
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
703
776
|
/>
|
|
704
777
|
<field name="iridescence"
|
|
@@ -712,13 +785,13 @@
|
|
|
712
785
|
type="SFString"
|
|
713
786
|
accessType="inputOutput"
|
|
714
787
|
default=""
|
|
715
|
-
description="Input/Output field
|
|
788
|
+
description="Input/Output field iridescenceTextureMapping."
|
|
716
789
|
/>
|
|
717
790
|
<field name="iridescenceTexture"
|
|
718
791
|
type="SFNode"
|
|
719
792
|
accessType="inputOutput"
|
|
720
793
|
default="NULL"
|
|
721
|
-
|
|
794
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
722
795
|
description="The iridescence intensity texture."
|
|
723
796
|
/>
|
|
724
797
|
<field name="iridescenceIndexOfRefraction"
|
|
@@ -746,18 +819,19 @@
|
|
|
746
819
|
type="SFString"
|
|
747
820
|
accessType="inputOutput"
|
|
748
821
|
default=""
|
|
749
|
-
description="Input/Output field
|
|
822
|
+
description="Input/Output field iridescenceThicknessTextureMapping."
|
|
750
823
|
/>
|
|
751
824
|
<field name="iridescenceThicknessTexture"
|
|
752
825
|
type="SFNode"
|
|
753
826
|
accessType="inputOutput"
|
|
754
827
|
default="NULL"
|
|
755
|
-
|
|
828
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
756
829
|
description="The thickness texture of the thin-film layer."
|
|
757
830
|
/>
|
|
758
831
|
<containerField default="extensions" type="xs:NMTOKEN" />
|
|
759
832
|
</InterfaceDefinition>
|
|
760
833
|
</ConcreteNode>
|
|
834
|
+
|
|
761
835
|
<ConcreteNode name="SheenMaterialExtension">
|
|
762
836
|
<InterfaceDefinition
|
|
763
837
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/sheenmaterialextension"
|
|
@@ -768,7 +842,7 @@
|
|
|
768
842
|
type="SFNode"
|
|
769
843
|
accessType="inputOutput"
|
|
770
844
|
default="NULL"
|
|
771
|
-
|
|
845
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
772
846
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
773
847
|
/>
|
|
774
848
|
<field name="sheenColor"
|
|
@@ -783,13 +857,13 @@
|
|
|
783
857
|
type="SFString"
|
|
784
858
|
accessType="inputOutput"
|
|
785
859
|
default=""
|
|
786
|
-
description="Input/Output field
|
|
860
|
+
description="Input/Output field sheenColorTextureMapping."
|
|
787
861
|
/>
|
|
788
862
|
<field name="sheenColorTexture"
|
|
789
863
|
type="SFNode"
|
|
790
864
|
accessType="inputOutput"
|
|
791
865
|
default="NULL"
|
|
792
|
-
|
|
866
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
793
867
|
description="The sheen color (RGB). The sheen color is in sRGB transfer function."
|
|
794
868
|
/>
|
|
795
869
|
<field name="sheenRoughness"
|
|
@@ -803,18 +877,19 @@
|
|
|
803
877
|
type="SFString"
|
|
804
878
|
accessType="inputOutput"
|
|
805
879
|
default=""
|
|
806
|
-
description="Input/Output field
|
|
880
|
+
description="Input/Output field sheenRoughnessTextureMapping."
|
|
807
881
|
/>
|
|
808
882
|
<field name="sheenRoughnessTexture"
|
|
809
883
|
type="SFNode"
|
|
810
884
|
accessType="inputOutput"
|
|
811
885
|
default="NULL"
|
|
812
|
-
|
|
886
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
813
887
|
description="The sheen roughness (Alpha) texture."
|
|
814
888
|
/>
|
|
815
889
|
<containerField default="material" type="xs:NMTOKEN" />
|
|
816
890
|
</InterfaceDefinition>
|
|
817
891
|
</ConcreteNode>
|
|
892
|
+
|
|
818
893
|
<ConcreteNode name="SpecularGlossinessMaterial">
|
|
819
894
|
<InterfaceDefinition
|
|
820
895
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/specularglossinessmaterial"
|
|
@@ -825,7 +900,7 @@
|
|
|
825
900
|
type="SFNode"
|
|
826
901
|
accessType="inputOutput"
|
|
827
902
|
default="NULL"
|
|
828
|
-
|
|
903
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
829
904
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
830
905
|
/>
|
|
831
906
|
<field name="diffuseColor"
|
|
@@ -840,13 +915,13 @@
|
|
|
840
915
|
type="SFString"
|
|
841
916
|
accessType="inputOutput"
|
|
842
917
|
default=""
|
|
843
|
-
description="Input/Output field
|
|
918
|
+
description="Input/Output field diffuseTextureMapping."
|
|
844
919
|
/>
|
|
845
920
|
<field name="diffuseTexture"
|
|
846
921
|
type="SFNode"
|
|
847
922
|
accessType="inputOutput"
|
|
848
923
|
default="NULL"
|
|
849
|
-
|
|
924
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
850
925
|
description="The diffuse texture."
|
|
851
926
|
/>
|
|
852
927
|
<field name="specularColor"
|
|
@@ -869,13 +944,13 @@
|
|
|
869
944
|
type="SFString"
|
|
870
945
|
accessType="inputOutput"
|
|
871
946
|
default=""
|
|
872
|
-
description="Input/Output field
|
|
947
|
+
description="Input/Output field specularGlossinessTextureMapping."
|
|
873
948
|
/>
|
|
874
949
|
<field name="specularGlossinessTexture"
|
|
875
950
|
type="SFNode"
|
|
876
951
|
accessType="inputOutput"
|
|
877
952
|
default="NULL"
|
|
878
|
-
|
|
953
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
879
954
|
description="The specular-glossiness texture."
|
|
880
955
|
/>
|
|
881
956
|
<field name="emissiveColor"
|
|
@@ -896,7 +971,7 @@
|
|
|
896
971
|
type="SFNode"
|
|
897
972
|
accessType="inputOutput"
|
|
898
973
|
default="NULL"
|
|
899
|
-
|
|
974
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
900
975
|
description="When applying emissiveColor for this material node, the contained texture provides Physically Based Rendering (PBR) modulation for each pixel."
|
|
901
976
|
/>
|
|
902
977
|
<field name="occlusionStrength"
|
|
@@ -905,7 +980,7 @@
|
|
|
905
980
|
default="1"
|
|
906
981
|
minInclusive="0"
|
|
907
982
|
maxInclusive="1"
|
|
908
|
-
description="
|
|
983
|
+
description="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."
|
|
909
984
|
/>
|
|
910
985
|
<field name="occlusionTextureMapping"
|
|
911
986
|
type="SFString"
|
|
@@ -917,7 +992,7 @@
|
|
|
917
992
|
type="SFNode"
|
|
918
993
|
accessType="inputOutput"
|
|
919
994
|
default="NULL"
|
|
920
|
-
|
|
995
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
921
996
|
description="When applying occlusionStrength for this material node, the contained texture provides Physically Based Rendering (PBR) modulation for each pixel."
|
|
922
997
|
/>
|
|
923
998
|
<field name="normalScale"
|
|
@@ -925,7 +1000,7 @@
|
|
|
925
1000
|
accessType="inputOutput"
|
|
926
1001
|
default="1"
|
|
927
1002
|
minInclusive="0"
|
|
928
|
-
description="
|
|
1003
|
+
description="normalScale controls the degree to which normalTexture RGB values apply XYZ-normal bump mapping to pixels in the parent material."
|
|
929
1004
|
/>
|
|
930
1005
|
<field name="normalTextureMapping"
|
|
931
1006
|
type="SFString"
|
|
@@ -937,7 +1012,7 @@
|
|
|
937
1012
|
type="SFNode"
|
|
938
1013
|
accessType="inputOutput"
|
|
939
1014
|
default="NULL"
|
|
940
|
-
|
|
1015
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
941
1016
|
description="When applying normalScale for this material node, the contained texture modulates the texture across the surface."
|
|
942
1017
|
/>
|
|
943
1018
|
<field name="transparency"
|
|
@@ -946,17 +1021,18 @@
|
|
|
946
1021
|
default="0"
|
|
947
1022
|
minInclusive="0"
|
|
948
1023
|
maxInclusive="1"
|
|
949
|
-
description="How 'clear' an object is: 1.0 is completely transparent, 0.0 is completely opaque.
|
|
1024
|
+
description="How 'clear' an object is: 1.0 is completely transparent, 0.0 is completely opaque."
|
|
950
1025
|
/>
|
|
951
1026
|
<field name="extensions"
|
|
952
1027
|
type="MFNode"
|
|
953
1028
|
accessType="inputOutput"
|
|
954
|
-
|
|
955
|
-
description="Input/Output field
|
|
1029
|
+
acceptableNodeTypes="X3DMaterialExtensionNode"
|
|
1030
|
+
description="Input/Output field extensions."
|
|
956
1031
|
/>
|
|
957
1032
|
<containerField default="extensions" type="xs:NMTOKEN" />
|
|
958
1033
|
</InterfaceDefinition>
|
|
959
1034
|
</ConcreteNode>
|
|
1035
|
+
|
|
960
1036
|
<ConcreteNode name="SpecularMaterialExtension">
|
|
961
1037
|
<InterfaceDefinition
|
|
962
1038
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/specularmaterialextension"
|
|
@@ -967,7 +1043,7 @@
|
|
|
967
1043
|
type="SFNode"
|
|
968
1044
|
accessType="inputOutput"
|
|
969
1045
|
default="NULL"
|
|
970
|
-
|
|
1046
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
971
1047
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
972
1048
|
/>
|
|
973
1049
|
<field name="specular"
|
|
@@ -981,13 +1057,13 @@
|
|
|
981
1057
|
type="SFString"
|
|
982
1058
|
accessType="inputOutput"
|
|
983
1059
|
default=""
|
|
984
|
-
description="Input/Output field
|
|
1060
|
+
description="Input/Output field specularTextureMapping."
|
|
985
1061
|
/>
|
|
986
1062
|
<field name="specularTexture"
|
|
987
1063
|
type="SFNode"
|
|
988
1064
|
accessType="inputOutput"
|
|
989
1065
|
default="NULL"
|
|
990
|
-
|
|
1066
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
991
1067
|
description=" texture that defines the strength of the specular reflection, stored in the alpha (A) channel. This will be multiplied by specularFactor."
|
|
992
1068
|
/>
|
|
993
1069
|
<field name="specularColor"
|
|
@@ -1002,18 +1078,19 @@
|
|
|
1002
1078
|
type="SFString"
|
|
1003
1079
|
accessType="inputOutput"
|
|
1004
1080
|
default=""
|
|
1005
|
-
description="Input/Output field
|
|
1081
|
+
description="Input/Output field specularColorTextureMapping."
|
|
1006
1082
|
/>
|
|
1007
1083
|
<field name="specularColorTexture"
|
|
1008
1084
|
type="SFNode"
|
|
1009
1085
|
accessType="inputOutput"
|
|
1010
1086
|
default="NULL"
|
|
1011
|
-
|
|
1087
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
1012
1088
|
description="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."
|
|
1013
1089
|
/>
|
|
1014
1090
|
<containerField default="extensions" type="xs:NMTOKEN" />
|
|
1015
1091
|
</InterfaceDefinition>
|
|
1016
1092
|
</ConcreteNode>
|
|
1093
|
+
|
|
1017
1094
|
<ConcreteNode name="TransmissionMaterialExtension">
|
|
1018
1095
|
<InterfaceDefinition
|
|
1019
1096
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/transmissionmaterialextension"
|
|
@@ -1024,7 +1101,7 @@
|
|
|
1024
1101
|
type="SFNode"
|
|
1025
1102
|
accessType="inputOutput"
|
|
1026
1103
|
default="NULL"
|
|
1027
|
-
|
|
1104
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
1028
1105
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
1029
1106
|
/>
|
|
1030
1107
|
<field name="transmission"
|
|
@@ -1038,18 +1115,19 @@
|
|
|
1038
1115
|
type="SFString"
|
|
1039
1116
|
accessType="inputOutput"
|
|
1040
1117
|
default=""
|
|
1041
|
-
description="Input/Output field
|
|
1118
|
+
description="Input/Output field transmissionTextureMapping."
|
|
1042
1119
|
/>
|
|
1043
1120
|
<field name="transmissionTexture"
|
|
1044
1121
|
type="SFNode"
|
|
1045
1122
|
accessType="inputOutput"
|
|
1046
1123
|
default="NULL"
|
|
1047
|
-
|
|
1124
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
1048
1125
|
description="A texture that defines the transmission percentage of the surface, stored in the R channel. This will be multiplied by transmissionFactor."
|
|
1049
1126
|
/>
|
|
1050
1127
|
<containerField default="extensions" type="xs:NMTOKEN" />
|
|
1051
1128
|
</InterfaceDefinition>
|
|
1052
1129
|
</ConcreteNode>
|
|
1130
|
+
|
|
1053
1131
|
<ConcreteNode name="VolumeMaterialExtension">
|
|
1054
1132
|
<InterfaceDefinition
|
|
1055
1133
|
specificationUrl="https://create3000.github.io/x_ite/components/x-ite/volumematerialextension"
|
|
@@ -1060,7 +1138,7 @@
|
|
|
1060
1138
|
type="SFNode"
|
|
1061
1139
|
accessType="inputOutput"
|
|
1062
1140
|
default="NULL"
|
|
1063
|
-
|
|
1141
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
1064
1142
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
1065
1143
|
/>
|
|
1066
1144
|
<field name="thickness"
|
|
@@ -1074,13 +1152,13 @@
|
|
|
1074
1152
|
type="SFString"
|
|
1075
1153
|
accessType="inputOutput"
|
|
1076
1154
|
default=""
|
|
1077
|
-
description="Input/Output field
|
|
1155
|
+
description="Input/Output field thicknessTextureMapping."
|
|
1078
1156
|
/>
|
|
1079
1157
|
<field name="thicknessTexture"
|
|
1080
1158
|
type="SFNode"
|
|
1081
1159
|
accessType="inputOutput"
|
|
1082
1160
|
default="NULL"
|
|
1083
|
-
|
|
1161
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
1084
1162
|
description="A texture that defines the thickness, stored in the G channel. This will be multiplied by thicknessFactor."
|
|
1085
1163
|
/>
|
|
1086
1164
|
<field name="attenuationDistance"
|
|
@@ -1112,7 +1190,7 @@
|
|
|
1112
1190
|
type="SFNode"
|
|
1113
1191
|
accessType="inputOutput"
|
|
1114
1192
|
default="NULL"
|
|
1115
|
-
|
|
1193
|
+
acceptableNodeTypes="X3DMetadataObject"
|
|
1116
1194
|
description="Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node."
|
|
1117
1195
|
></field>
|
|
1118
1196
|
<field name="diffuseTransmission"
|
|
@@ -1126,13 +1204,13 @@
|
|
|
1126
1204
|
type="SFString"
|
|
1127
1205
|
accessType="inputOutput"
|
|
1128
1206
|
default=""
|
|
1129
|
-
description="Input/Output field
|
|
1207
|
+
description="Input/Output field diffuseTransmissionTextureMapping."
|
|
1130
1208
|
></field>
|
|
1131
1209
|
<field name="diffuseTransmissionTexture"
|
|
1132
1210
|
type="SFNode"
|
|
1133
1211
|
accessType="inputOutput"
|
|
1134
1212
|
default="NULL"
|
|
1135
|
-
|
|
1213
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
1136
1214
|
description="A texture that defines the strength of the diffuse transmission effect, stored in the alpha (A) channel. Will be multiplied by the diffuseTransmissionFactor."
|
|
1137
1215
|
></field>
|
|
1138
1216
|
<field name="diffuseTransmissionColor"
|
|
@@ -1147,18 +1225,212 @@
|
|
|
1147
1225
|
type="SFString"
|
|
1148
1226
|
accessType="inputOutput"
|
|
1149
1227
|
default=""
|
|
1150
|
-
description="Input/Output field
|
|
1228
|
+
description="Input/Output field diffuseTransmissionColorTextureMapping."
|
|
1151
1229
|
></field>
|
|
1152
1230
|
<field name="diffuseTransmissionColorTexture"
|
|
1153
1231
|
type="SFNode"
|
|
1154
1232
|
accessType="inputOutput"
|
|
1155
1233
|
default="NULL"
|
|
1156
|
-
|
|
1234
|
+
acceptableNodeTypes="X3DSingleTextureNode"
|
|
1157
1235
|
description="A texture that defines the color of the transmitted light, stored in the RGB channels and encoded in sRGB. This texture will be multiplied by diffuseTransmissionColorFactor."
|
|
1158
1236
|
></field>
|
|
1159
1237
|
<containerField default="extensions" type="xs:NMTOKEN" />
|
|
1160
1238
|
</InterfaceDefinition>
|
|
1161
1239
|
</ConcreteNode>
|
|
1162
1240
|
|
|
1241
|
+
<ConcreteNode name="PhysicalMaterial">
|
|
1242
|
+
<InterfaceDefinition>
|
|
1243
|
+
<field name="extensions"
|
|
1244
|
+
type="MFNode"
|
|
1245
|
+
accessType="inputOutput"
|
|
1246
|
+
acceptableNodeTypes="X3DMaterialExtensionNode"
|
|
1247
|
+
description="Input/Output field extensions."
|
|
1248
|
+
/>
|
|
1249
|
+
</InterfaceDefinition>
|
|
1250
|
+
</ConcreteNode>
|
|
1251
|
+
|
|
1252
|
+
<ConcreteNode name="Appearance">
|
|
1253
|
+
<InterfaceDefinition>
|
|
1254
|
+
<field name="blendMode"
|
|
1255
|
+
type="SFNode"
|
|
1256
|
+
accessType="inputOutput"
|
|
1257
|
+
acceptableNodeTypes="BlendMode"
|
|
1258
|
+
description="Input/Output field blendMode."
|
|
1259
|
+
/>
|
|
1260
|
+
<field name="depthMode"
|
|
1261
|
+
type="SFNode"
|
|
1262
|
+
accessType="inputOutput"
|
|
1263
|
+
acceptableNodeTypes="DepthMode"
|
|
1264
|
+
description="Input/Output field depthMode."
|
|
1265
|
+
/>
|
|
1266
|
+
</InterfaceDefinition>
|
|
1267
|
+
</ConcreteNode>
|
|
1268
|
+
|
|
1269
|
+
<ConcreteNode name="IndexedQuadSet">
|
|
1270
|
+
<InterfaceDefinition>
|
|
1271
|
+
<field name="tangent"
|
|
1272
|
+
type="SFNode"
|
|
1273
|
+
accessType="inputOutput"
|
|
1274
|
+
acceptableNodeTypes="Tangent"
|
|
1275
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1276
|
+
/>
|
|
1277
|
+
</InterfaceDefinition>
|
|
1278
|
+
</ConcreteNode>
|
|
1279
|
+
|
|
1280
|
+
<ConcreteNode name="QuadSet">
|
|
1281
|
+
<InterfaceDefinition>
|
|
1282
|
+
<field name="tangent"
|
|
1283
|
+
type="SFNode"
|
|
1284
|
+
accessType="inputOutput"
|
|
1285
|
+
acceptableNodeTypes="Tangent"
|
|
1286
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1287
|
+
/>
|
|
1288
|
+
</InterfaceDefinition>
|
|
1289
|
+
</ConcreteNode>
|
|
1290
|
+
|
|
1291
|
+
<ConcreteNode name="ElevationGrid">
|
|
1292
|
+
<InterfaceDefinition>
|
|
1293
|
+
<field name="tangent"
|
|
1294
|
+
type="SFNode"
|
|
1295
|
+
accessType="inputOutput"
|
|
1296
|
+
acceptableNodeTypes="Tangent"
|
|
1297
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1298
|
+
/>
|
|
1299
|
+
</InterfaceDefinition>
|
|
1300
|
+
</ConcreteNode>
|
|
1301
|
+
|
|
1302
|
+
<ConcreteNode name="IndexedFaceSet">
|
|
1303
|
+
<InterfaceDefinition>
|
|
1304
|
+
<field name="tangent"
|
|
1305
|
+
type="SFNode"
|
|
1306
|
+
accessType="inputOutput"
|
|
1307
|
+
acceptableNodeTypes="Tangent"
|
|
1308
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1309
|
+
/>
|
|
1310
|
+
</InterfaceDefinition>
|
|
1311
|
+
</ConcreteNode>
|
|
1312
|
+
|
|
1313
|
+
<ConcreteNode name="GeoElevationGrid">
|
|
1314
|
+
<InterfaceDefinition>
|
|
1315
|
+
<field name="tangent"
|
|
1316
|
+
type="SFNode"
|
|
1317
|
+
accessType="inputOutput"
|
|
1318
|
+
acceptableNodeTypes="Tangent"
|
|
1319
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1320
|
+
/>
|
|
1321
|
+
</InterfaceDefinition>
|
|
1322
|
+
</ConcreteNode>
|
|
1323
|
+
|
|
1324
|
+
<ConcreteNode name="IndexedLineSet">
|
|
1325
|
+
<InterfaceDefinition>
|
|
1326
|
+
<field name="tangent"
|
|
1327
|
+
type="SFNode"
|
|
1328
|
+
accessType="inputOutput"
|
|
1329
|
+
acceptableNodeTypes="Tangent"
|
|
1330
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1331
|
+
/>
|
|
1332
|
+
</InterfaceDefinition>
|
|
1333
|
+
</ConcreteNode>
|
|
1334
|
+
|
|
1335
|
+
<ConcreteNode name="IndexedTriangleFanSet">
|
|
1336
|
+
<InterfaceDefinition>
|
|
1337
|
+
<field name="tangent"
|
|
1338
|
+
type="SFNode"
|
|
1339
|
+
accessType="inputOutput"
|
|
1340
|
+
acceptableNodeTypes="Tangent"
|
|
1341
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1342
|
+
/>
|
|
1343
|
+
</InterfaceDefinition>
|
|
1344
|
+
</ConcreteNode>
|
|
1345
|
+
|
|
1346
|
+
<ConcreteNode name="IndexedTriangleSet">
|
|
1347
|
+
<InterfaceDefinition>
|
|
1348
|
+
<field name="tangent"
|
|
1349
|
+
type="SFNode"
|
|
1350
|
+
accessType="inputOutput"
|
|
1351
|
+
acceptableNodeTypes="Tangent"
|
|
1352
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1353
|
+
/>
|
|
1354
|
+
</InterfaceDefinition>
|
|
1355
|
+
</ConcreteNode>
|
|
1356
|
+
|
|
1357
|
+
<ConcreteNode name="IndexedTriangleStripSet">
|
|
1358
|
+
<InterfaceDefinition>
|
|
1359
|
+
<field name="tangent"
|
|
1360
|
+
type="SFNode"
|
|
1361
|
+
accessType="inputOutput"
|
|
1362
|
+
acceptableNodeTypes="Tangent"
|
|
1363
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1364
|
+
/>
|
|
1365
|
+
</InterfaceDefinition>
|
|
1366
|
+
</ConcreteNode>
|
|
1367
|
+
|
|
1368
|
+
<ConcreteNode name="LineSet">
|
|
1369
|
+
<InterfaceDefinition>
|
|
1370
|
+
<field name="tangent"
|
|
1371
|
+
type="SFNode"
|
|
1372
|
+
accessType="inputOutput"
|
|
1373
|
+
acceptableNodeTypes="Tangent"
|
|
1374
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1375
|
+
/>
|
|
1376
|
+
</InterfaceDefinition>
|
|
1377
|
+
</ConcreteNode>
|
|
1378
|
+
|
|
1379
|
+
<ConcreteNode name="PointSet">
|
|
1380
|
+
<InterfaceDefinition>
|
|
1381
|
+
<field name="tangent"
|
|
1382
|
+
type="SFNode"
|
|
1383
|
+
accessType="inputOutput"
|
|
1384
|
+
acceptableNodeTypes="Tangent"
|
|
1385
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1386
|
+
/>
|
|
1387
|
+
</InterfaceDefinition>
|
|
1388
|
+
</ConcreteNode>
|
|
1389
|
+
|
|
1390
|
+
<ConcreteNode name="TriangleFanSet">
|
|
1391
|
+
<InterfaceDefinition>
|
|
1392
|
+
<field name="tangent"
|
|
1393
|
+
type="SFNode"
|
|
1394
|
+
accessType="inputOutput"
|
|
1395
|
+
acceptableNodeTypes="Tangent"
|
|
1396
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1397
|
+
/>
|
|
1398
|
+
</InterfaceDefinition>
|
|
1399
|
+
</ConcreteNode>
|
|
1400
|
+
|
|
1401
|
+
<ConcreteNode name="TriangleSet">
|
|
1402
|
+
<InterfaceDefinition>
|
|
1403
|
+
<field name="tangent"
|
|
1404
|
+
type="SFNode"
|
|
1405
|
+
accessType="inputOutput"
|
|
1406
|
+
acceptableNodeTypes="Tangent"
|
|
1407
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1408
|
+
/>
|
|
1409
|
+
</InterfaceDefinition>
|
|
1410
|
+
</ConcreteNode>
|
|
1411
|
+
|
|
1412
|
+
<ConcreteNode name="TriangleStripSet">
|
|
1413
|
+
<InterfaceDefinition>
|
|
1414
|
+
<field name="tangent"
|
|
1415
|
+
type="SFNode"
|
|
1416
|
+
accessType="inputOutput"
|
|
1417
|
+
acceptableNodeTypes="Tangent"
|
|
1418
|
+
description="Input/Output field tangent. If there is no Tangent node, the MikkTSpace algorithm is used to generate tangent vectors."
|
|
1419
|
+
/>
|
|
1420
|
+
</InterfaceDefinition>
|
|
1421
|
+
</ConcreteNode>
|
|
1422
|
+
|
|
1423
|
+
<ConcreteNode name="BoundedPhysicsModel">
|
|
1424
|
+
<InterfaceDefinition>
|
|
1425
|
+
<field name="damping"
|
|
1426
|
+
type="SFFloat"
|
|
1427
|
+
accessType="inputOutput"
|
|
1428
|
+
default="1"
|
|
1429
|
+
minInclusive="0"
|
|
1430
|
+
description="Damping that particles experience in the event of a collision."
|
|
1431
|
+
/>
|
|
1432
|
+
</InterfaceDefinition>
|
|
1433
|
+
</ConcreteNode>
|
|
1434
|
+
|
|
1163
1435
|
</ConcreteNodes>
|
|
1164
1436
|
</X3dUnifiedObjectModel>
|