x_ite 14.2.0 → 15.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- 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/Geometry3DComponent.js +2 -2
- package/dist/assets/components/Geometry3DComponent.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 +61 -45
- 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 +4 -4
- package/dist/assets/components/ScriptingComponent.min.js +2 -2
- package/dist/assets/components/TextComponent.js +164 -84
- 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 +12 -12
- package/dist/assets/components/Texturing3DComponent.min.js +2 -2
- package/dist/assets/components/VolumeRenderingComponent.js +2 -2
- package/dist/assets/components/VolumeRenderingComponent.min.js +2 -2
- package/dist/assets/components/WebXRComponent.js +2 -2
- package/dist/assets/components/WebXRComponent.min.js +2 -2
- package/dist/assets/components/X_ITEComponent.js +2 -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 +59 -58
- package/dist/x_ite.js +1114 -1325
- package/dist/x_ite.min.js +2 -2
- package/dist/x_ite.min.mjs +2 -2
- package/dist/x_ite.mjs +1112 -1324
- package/dist/x_ite.zip +0 -0
- package/package.json +3 -3
package/dist/x_ite.d.ts
CHANGED
|
@@ -1918,10 +1918,6 @@ declare namespace X3D
|
|
|
1918
1918
|
* A new matrix initialized with the identity matrix is created and returned.
|
|
1919
1919
|
*/
|
|
1920
1920
|
constructor ();
|
|
1921
|
-
/**
|
|
1922
|
-
* A new matrix initialized with the vectors in *r1* through *r3* of type SFVec3d/f is created and returned.
|
|
1923
|
-
*/
|
|
1924
|
-
constructor (r1: SFVec3, r2: SFVec3, r3: SFVec3);
|
|
1925
1921
|
/**
|
|
1926
1922
|
* A new matrix initialized with the values in *f11* through *f44* is created and returned.
|
|
1927
1923
|
*/
|
|
@@ -2020,6 +2016,7 @@ declare namespace X3D
|
|
|
2020
2016
|
static readonly type: number;
|
|
2021
2017
|
static readonly typeName: "SFMatrix3d";
|
|
2022
2018
|
|
|
2019
|
+
static readonly ZERO: SFMatrix3d;
|
|
2023
2020
|
static readonly IDENTITY: SFMatrix3d;
|
|
2024
2021
|
}
|
|
2025
2022
|
|
|
@@ -2031,6 +2028,7 @@ declare namespace X3D
|
|
|
2031
2028
|
static readonly type: number;
|
|
2032
2029
|
static readonly typeName: "SFMatrix3f";
|
|
2033
2030
|
|
|
2031
|
+
static readonly ZERO: SFMatrix3f;
|
|
2034
2032
|
static readonly IDENTITY: SFMatrix3f;
|
|
2035
2033
|
}
|
|
2036
2034
|
|
|
@@ -2043,10 +2041,6 @@ declare namespace X3D
|
|
|
2043
2041
|
* A new matrix initialized with the identity matrix is created and returned.
|
|
2044
2042
|
*/
|
|
2045
2043
|
constructor ();
|
|
2046
|
-
/**
|
|
2047
|
-
* A new matrix initialized with the vectors in *r1* through *r4* of type SFVec4d/f is created and returned.
|
|
2048
|
-
*/
|
|
2049
|
-
constructor (r1: SFVec4, r2: SFVec4, r3: SFVec4, r4: SFVec4);
|
|
2050
2044
|
/**
|
|
2051
2045
|
* A new matrix initialized with the values in *f11* through *f44* is created and returned.
|
|
2052
2046
|
*/
|
|
@@ -2138,6 +2132,7 @@ declare namespace X3D
|
|
|
2138
2132
|
static readonly type: number;
|
|
2139
2133
|
static readonly typeName: "SFMatrix4d";
|
|
2140
2134
|
|
|
2135
|
+
static readonly ZERO: SFMatrix4d;
|
|
2141
2136
|
static readonly IDENTITY: SFMatrix4d;
|
|
2142
2137
|
}
|
|
2143
2138
|
|
|
@@ -2149,6 +2144,7 @@ declare namespace X3D
|
|
|
2149
2144
|
static readonly type: number;
|
|
2150
2145
|
static readonly typeName: "SFMatrix4f";
|
|
2151
2146
|
|
|
2147
|
+
static readonly ZERO: SFMatrix4f;
|
|
2152
2148
|
static readonly IDENTITY: SFMatrix4f;
|
|
2153
2149
|
}
|
|
2154
2150
|
|
|
@@ -2256,6 +2252,15 @@ declare namespace X3D
|
|
|
2256
2252
|
static readonly typeName: "SFRotation";
|
|
2257
2253
|
static readonly IDENTITY: SFRotation;
|
|
2258
2254
|
|
|
2255
|
+
/**
|
|
2256
|
+
* *matrix* is an SFMatrix3d/f rotation matrix object whose value is converted into an SFRotation object.
|
|
2257
|
+
*/
|
|
2258
|
+
static fromMatrix (matrix: SFMatrix3d | SFMatrix3f): SFRotation;
|
|
2259
|
+
/**
|
|
2260
|
+
* `x`, `y`, `z`, `w` is a quaternion whose value is converted into an SFRotation object.
|
|
2261
|
+
*/
|
|
2262
|
+
static fromQuaternion (x: number, y: number, z: number, w: number): SFRotation;
|
|
2263
|
+
|
|
2259
2264
|
/**
|
|
2260
2265
|
* A new rotation initialized with the identity rotation is created and returned.
|
|
2261
2266
|
*/
|
|
@@ -2274,10 +2279,6 @@ declare namespace X3D
|
|
|
2274
2279
|
* *fromVector* and *toVector* are SFVec3d/f valued objects. These vectors are normalized and the rotation value that would rotate from the *fromVector* to the *toVector* is stored in the object.
|
|
2275
2280
|
*/
|
|
2276
2281
|
constructor (fromVector: SFVec3d | SFVec3f, toVector: SFVec3);
|
|
2277
|
-
/**
|
|
2278
|
-
* *matrix* is an SFMatrix3d/f rotation matrix object whose value is converted into an SFRotation object.
|
|
2279
|
-
*/
|
|
2280
|
-
constructor (matrix: SFMatrix3d | SFMatrix3f);
|
|
2281
2282
|
|
|
2282
2283
|
/**
|
|
2283
2284
|
* Returns the first value of the axis vector.
|
|
@@ -3331,7 +3332,7 @@ declare namespace X3D
|
|
|
3331
3332
|
*/
|
|
3332
3333
|
acousticProperties: AcousticPropertiesProxy | null;
|
|
3333
3334
|
/**
|
|
3334
|
-
* Threshold value used for pixel rendering either transparent or opaque, used when alphaMode
|
|
3335
|
+
* Threshold value used for pixel rendering either transparent or opaque, used when alphaMode="MASK".
|
|
3335
3336
|
*
|
|
3336
3337
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
3337
3338
|
*/
|
|
@@ -3752,7 +3753,7 @@ declare namespace X3D
|
|
|
3752
3753
|
*/
|
|
3753
3754
|
topUrl: MFString;
|
|
3754
3755
|
/**
|
|
3755
|
-
* how
|
|
3756
|
+
* how "clear" the background is, allows underlying page to show through: 1.
|
|
3756
3757
|
*
|
|
3757
3758
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
3758
3759
|
*/
|
|
@@ -3797,7 +3798,7 @@ declare namespace X3D
|
|
|
3797
3798
|
*
|
|
3798
3799
|
* This field is of access type 'inputOutput' and type MFString.
|
|
3799
3800
|
*/
|
|
3800
|
-
forceOutput: MFString <"
|
|
3801
|
+
forceOutput: MFString <"ALL" | "NONE">;
|
|
3801
3802
|
/**
|
|
3802
3803
|
* Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
|
|
3803
3804
|
*
|
|
@@ -4038,13 +4039,13 @@ declare namespace X3D
|
|
|
4038
4039
|
*/
|
|
4039
4040
|
weightFunction2: "CONSTANT" | "ALPHA1" | "ALPHA2" | "ONE_MINUS_ALPHA1" | "ONE_MINUS_ALPHA2" | "TABLE";
|
|
4040
4041
|
/**
|
|
4041
|
-
* The weightTransferFunction1 and weightTransferFunction2 fields specify two-dimensional textures that are used to determine the weight values when the weight function is set to
|
|
4042
|
+
* The weightTransferFunction1 and weightTransferFunction2 fields specify two-dimensional textures that are used to determine the weight values when the weight function is set to "TABLE".
|
|
4042
4043
|
*
|
|
4043
4044
|
* This field is of access type 'inputOutput' and type SFNode.
|
|
4044
4045
|
*/
|
|
4045
4046
|
weightTransferFunction1: X3DTexture2DNodeProxy | null;
|
|
4046
4047
|
/**
|
|
4047
|
-
* The weightTransferFunction1 and weightTransferFunction2 fields specify two-dimensional textures that are used to determine the weight values when the weight function is set to
|
|
4048
|
+
* The weightTransferFunction1 and weightTransferFunction2 fields specify two-dimensional textures that are used to determine the weight values when the weight function is set to "TABLE".
|
|
4048
4049
|
*
|
|
4049
4050
|
* This field is of access type 'inputOutput' and type SFNode.
|
|
4050
4051
|
*/
|
|
@@ -5252,7 +5253,7 @@ declare namespace X3D
|
|
|
5252
5253
|
*
|
|
5253
5254
|
* This field is of access type 'inputOutput' and type MFString.
|
|
5254
5255
|
*/
|
|
5255
|
-
appliedParameters: MFString <"
|
|
5256
|
+
appliedParameters: MFString <"BOUNCE" | "USER_FRICTION" | "FRICTION_COEFFICIENT-2" | "ERROR_REDUCTION" | "CONSTANT_FORCE" | "SPEED-1" | "SPEED-2" | "SLIP-1" | "SLIP-2">;
|
|
5256
5257
|
/**
|
|
5257
5258
|
* Bounding box center accompanies bboxSize and provides an optional hint for bounding box position offset from origin of local coordinate system.
|
|
5258
5259
|
*
|
|
@@ -5912,7 +5913,7 @@ declare namespace X3D
|
|
|
5912
5913
|
*
|
|
5913
5914
|
* This field is of access type 'inputOutput' and type MFString.
|
|
5914
5915
|
*/
|
|
5915
|
-
appliedParameters: MFString <"
|
|
5916
|
+
appliedParameters: MFString <"BOUNCE" | "USER_FRICTION" | "FRICTION_COEFFICIENT-2" | "ERROR_REDUCTION" | "CONSTANT_FORCE" | "SPEED-1" | "SPEED-2" | "SLIP-1" | "SLIP-2">;
|
|
5916
5917
|
/**
|
|
5917
5918
|
* The body1 and body2 fields specify two top-level nodes that should be evaluated in the physics model as a single set of interactions with respect to each other.
|
|
5918
5919
|
*
|
|
@@ -6907,7 +6908,7 @@ declare namespace X3D
|
|
|
6907
6908
|
*/
|
|
6908
6909
|
subcategory: number;
|
|
6909
6910
|
/**
|
|
6910
|
-
* Local and/or online addresses of X3D model of interest, for example:
|
|
6911
|
+
* Local and/or online addresses of X3D model of interest, for example: "ExtrusionExampleShip.
|
|
6911
6912
|
*
|
|
6912
6913
|
* This field is of access type 'inputOutput' and type MFString.
|
|
6913
6914
|
*/
|
|
@@ -7034,7 +7035,7 @@ declare namespace X3D
|
|
|
7034
7035
|
*
|
|
7035
7036
|
* This field is of access type 'inputOutput' and type MFString.
|
|
7036
7037
|
*/
|
|
7037
|
-
forceOutput: MFString <"
|
|
7038
|
+
forceOutput: MFString <"ALL" | "NONE">;
|
|
7038
7039
|
/**
|
|
7039
7040
|
* This field is of access type 'outputOnly' and type SFFloat.
|
|
7040
7041
|
*/
|
|
@@ -8376,7 +8377,7 @@ declare namespace X3D
|
|
|
8376
8377
|
*
|
|
8377
8378
|
* This field is of access type 'inputOutput' and type MFString.
|
|
8378
8379
|
*/
|
|
8379
|
-
family: MFString <"
|
|
8380
|
+
family: MFString <"SANS" | "SERIF" | "TYPEWRITER">;
|
|
8380
8381
|
/**
|
|
8381
8382
|
* Whether text direction is horizontal (true) or vertical (false).
|
|
8382
8383
|
*
|
|
@@ -8388,7 +8389,7 @@ declare namespace X3D
|
|
|
8388
8389
|
*
|
|
8389
8390
|
* This field is of access type 'inputOutput' and type MFString.
|
|
8390
8391
|
*/
|
|
8391
|
-
justify: MFString <"
|
|
8392
|
+
justify: MFString <"MIDDLE" | "BEGIN" | "END" | "FIRST">;
|
|
8392
8393
|
/**
|
|
8393
8394
|
* Language codes consist of a primary code and a (possibly empty) series of subcodes.
|
|
8394
8395
|
*
|
|
@@ -8614,7 +8615,7 @@ declare namespace X3D
|
|
|
8614
8615
|
*/
|
|
8615
8616
|
metadata: X3DMetadataObjectProxy | null;
|
|
8616
8617
|
/**
|
|
8617
|
-
* point contains a set of actual 3D geographic coordinates, provided in geoSystem format can split strings if desired:
|
|
8618
|
+
* point contains a set of actual 3D geographic coordinates, provided in geoSystem format can split strings if desired: "x1 y1 z1 x2 y2 z2" or "x1 y1 z1", "x2 y2 z2".
|
|
8618
8619
|
*
|
|
8619
8620
|
* This field is of access type 'inputOutput' and type MFVec3d.
|
|
8620
8621
|
*/
|
|
@@ -10061,7 +10062,7 @@ declare namespace X3D
|
|
|
10061
10062
|
visible: boolean;
|
|
10062
10063
|
}
|
|
10063
10064
|
|
|
10064
|
-
/** An HAnimSite node serves three purposes: (a) define an
|
|
10065
|
+
/** An HAnimSite node serves three purposes: (a) define an "end effector" location which can be used by an inverse kinematics system, (b) define an attachment point for accessories such as jewelry and clothing, and (c) define a location for a Viewpoint virtual camera in the reference frame of an HAnimSegment (such as a view "through the eyes" of the humanoid for use in multi-user worlds). */
|
|
10065
10066
|
interface HAnimSiteProxy extends X3DGroupingNodeProxy
|
|
10066
10067
|
{
|
|
10067
10068
|
/**
|
|
@@ -11047,7 +11048,7 @@ declare namespace X3D
|
|
|
11047
11048
|
visible: boolean;
|
|
11048
11049
|
}
|
|
11049
11050
|
|
|
11050
|
-
/**
|
|
11051
|
+
/** */
|
|
11051
11052
|
interface InlineGeometryProxy extends X3DGeometryNodeProxy, X3DUrlObjectProxy
|
|
11052
11053
|
{
|
|
11053
11054
|
/**
|
|
@@ -11477,7 +11478,7 @@ declare namespace X3D
|
|
|
11477
11478
|
*
|
|
11478
11479
|
* This field is of access type 'inputOutput' and type MFString.
|
|
11479
11480
|
*/
|
|
11480
|
-
objectType: MFString <"
|
|
11481
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
11481
11482
|
/**
|
|
11482
11483
|
* pickable determines whether pick traversal is performed for this layer.
|
|
11483
11484
|
*
|
|
@@ -11545,7 +11546,7 @@ declare namespace X3D
|
|
|
11545
11546
|
*
|
|
11546
11547
|
* This field is of access type 'inputOutput' and type MFString.
|
|
11547
11548
|
*/
|
|
11548
|
-
align: MFString <"
|
|
11549
|
+
align: MFString <"LEFT" | "BOTTOM" | "CENTER" | "TOP" | "RIGHT">;
|
|
11549
11550
|
/**
|
|
11550
11551
|
* Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
|
|
11551
11552
|
*
|
|
@@ -11563,13 +11564,13 @@ declare namespace X3D
|
|
|
11563
11564
|
*
|
|
11564
11565
|
* This field is of access type 'inputOutput' and type MFString.
|
|
11565
11566
|
*/
|
|
11566
|
-
offsetUnits: MFString <"
|
|
11567
|
+
offsetUnits: MFString <"WORLD" | "FRACTION" | "PIXEL">;
|
|
11567
11568
|
/**
|
|
11568
11569
|
* The scaleMode field specifies how the scale of the parent is modified.
|
|
11569
11570
|
*
|
|
11570
11571
|
* This field is of access type 'inputOutput' and type MFString.
|
|
11571
11572
|
*/
|
|
11572
|
-
scaleMode: MFString <"
|
|
11573
|
+
scaleMode: MFString <"NONE" | "FRACTION" | "STRETCH" | "PIXEL">;
|
|
11573
11574
|
/**
|
|
11574
11575
|
* The two values in the size field define the width and height of the layout rectangle.
|
|
11575
11576
|
*
|
|
@@ -11581,7 +11582,7 @@ declare namespace X3D
|
|
|
11581
11582
|
*
|
|
11582
11583
|
* This field is of access type 'inputOutput' and type MFString.
|
|
11583
11584
|
*/
|
|
11584
|
-
sizeUnits: MFString <"
|
|
11585
|
+
sizeUnits: MFString <"WORLD" | "FRACTION" | "PIXEL">;
|
|
11585
11586
|
}
|
|
11586
11587
|
|
|
11587
11588
|
/** LayoutGroup is a Grouping node that can contain most nodes, whose children are related by a common layout within a parent layout. */
|
|
@@ -11675,7 +11676,7 @@ declare namespace X3D
|
|
|
11675
11676
|
*
|
|
11676
11677
|
* This field is of access type 'inputOutput' and type MFString.
|
|
11677
11678
|
*/
|
|
11678
|
-
objectType: MFString <"
|
|
11679
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
11679
11680
|
/**
|
|
11680
11681
|
* pickable determines whether pick traversal is performed for this layer.
|
|
11681
11682
|
*
|
|
@@ -11750,7 +11751,7 @@ declare namespace X3D
|
|
|
11750
11751
|
*
|
|
11751
11752
|
* This field is of access type 'inputOutput' and type MFString.
|
|
11752
11753
|
*/
|
|
11753
|
-
objectType: MFString <"
|
|
11754
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
11754
11755
|
/**
|
|
11755
11756
|
* Output event containing the node or nodes that have been found to intersect with the picking geometry from the last time this node performed a picking operation, given in the local coordinate system.
|
|
11756
11757
|
*
|
|
@@ -12287,7 +12288,7 @@ declare namespace X3D
|
|
|
12287
12288
|
*/
|
|
12288
12289
|
specularTextureMapping: string;
|
|
12289
12290
|
/**
|
|
12290
|
-
* how
|
|
12291
|
+
* how "clear" an object is: 1.
|
|
12291
12292
|
*
|
|
12292
12293
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
12293
12294
|
*/
|
|
@@ -12659,7 +12660,7 @@ declare namespace X3D
|
|
|
12659
12660
|
*
|
|
12660
12661
|
* This field is of access type 'inputOutput' and type MFString.
|
|
12661
12662
|
*/
|
|
12662
|
-
forceOutput: MFString <"
|
|
12663
|
+
forceOutput: MFString <"ALL" | "NONE">;
|
|
12663
12664
|
/**
|
|
12664
12665
|
* Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
|
|
12665
12666
|
*
|
|
@@ -12921,7 +12922,7 @@ declare namespace X3D
|
|
|
12921
12922
|
*
|
|
12922
12923
|
* This field is of access type 'inputOutput' and type MFString.
|
|
12923
12924
|
*/
|
|
12924
|
-
function: MFString <"
|
|
12925
|
+
function: MFString <"COMPLEMENT" | "ALPHAREPLICATE" | "">;
|
|
12925
12926
|
/**
|
|
12926
12927
|
* Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
|
|
12927
12928
|
*
|
|
@@ -12933,13 +12934,13 @@ declare namespace X3D
|
|
|
12933
12934
|
*
|
|
12934
12935
|
* This field is of access type 'inputOutput' and type MFString.
|
|
12935
12936
|
*/
|
|
12936
|
-
mode: MFString <"
|
|
12937
|
+
mode: MFString <"ADD" | "ADDSIGNED" | "ADDSIGNED2X" | "ADDSMOOTH" | "BLENDCURRENTALPHA" | "BLENDDIFFUSEALPHA" | "BLENDFACTORALPHA" | "BLENDTEXTUREALPHA" | "DOTPRODUCT3" | "MODULATE" | "MODULATE2X" | "MODULATE4X" | "MODULATEALPHA_ADDCOLOR" | "MODULATEINVALPHA_ADDCOLOR" | "MODULATEINVCOLOR_ADDALPHA" | "OFF" | "REPLACE" | "SELECTARG1" | "SELECTARG2" | "SUBTRACT">;
|
|
12937
12938
|
/**
|
|
12938
12939
|
* source field determines whether each image source is treated as DIFFUSE, SPECULAR or a multiplicative FACTOR.
|
|
12939
12940
|
*
|
|
12940
12941
|
* This field is of access type 'inputOutput' and type MFString.
|
|
12941
12942
|
*/
|
|
12942
|
-
source: MFString <"
|
|
12943
|
+
source: MFString <"DIFFUSE" | "FACTOR" | "SPECULAR" | "">;
|
|
12943
12944
|
/**
|
|
12944
12945
|
* Contained texture nodes (ImageTexture, MovieTexture, PixelTexture) that map image(s) to surface geometry, defining each of the different texture channels.
|
|
12945
12946
|
*
|
|
@@ -13044,13 +13045,13 @@ declare namespace X3D
|
|
|
13044
13045
|
*
|
|
13045
13046
|
* This field is of access type 'inputOutput' and type MFString.
|
|
13046
13047
|
*/
|
|
13047
|
-
transitionType: MFString <"
|
|
13048
|
+
transitionType: MFString <"TELEPORT" | "LINEAR" | "ANIMATE">;
|
|
13048
13049
|
/**
|
|
13049
|
-
* Enter one or more quoted SFString values:
|
|
13050
|
+
* Enter one or more quoted SFString values: "EXAMINE" "WALK" "FLY" "LOOKAT" "EXPLORE" "ANY" "NONE".
|
|
13050
13051
|
*
|
|
13051
13052
|
* This field is of access type 'inputOutput' and type MFString.
|
|
13052
13053
|
*/
|
|
13053
|
-
type: MFString <"
|
|
13054
|
+
type: MFString <"ANY" | "WALK" | "EXAMINE" | "FLY" | "LOOKAT" | "NONE" | "EXPLORE">;
|
|
13054
13055
|
/**
|
|
13055
13056
|
* Geometry beyond the visibilityLimit may not be rendered (far clipping plane of the view frustrum).
|
|
13056
13057
|
*
|
|
@@ -14491,7 +14492,7 @@ declare namespace X3D
|
|
|
14491
14492
|
*/
|
|
14492
14493
|
roughness: number;
|
|
14493
14494
|
/**
|
|
14494
|
-
* how
|
|
14495
|
+
* how "clear" an object is: 1.
|
|
14495
14496
|
*
|
|
14496
14497
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
14497
14498
|
*/
|
|
@@ -14546,7 +14547,7 @@ declare namespace X3D
|
|
|
14546
14547
|
*
|
|
14547
14548
|
* This field is of access type 'inputOutput' and type MFString.
|
|
14548
14549
|
*/
|
|
14549
|
-
objectType: MFString <"
|
|
14550
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
14550
14551
|
/**
|
|
14551
14552
|
* The pickable field determines whether pick traversal is performed on this node or its children.
|
|
14552
14553
|
*
|
|
@@ -14898,7 +14899,7 @@ declare namespace X3D
|
|
|
14898
14899
|
*
|
|
14899
14900
|
* This field is of access type 'inputOutput' and type MFString.
|
|
14900
14901
|
*/
|
|
14901
|
-
objectType: MFString <"
|
|
14902
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
14902
14903
|
/**
|
|
14903
14904
|
* Output event containing the node or nodes that have been found to intersect with the picking geometry from the last time this node performed a picking operation, given in the local coordinate system.
|
|
14904
14905
|
*
|
|
@@ -15460,7 +15461,7 @@ declare namespace X3D
|
|
|
15460
15461
|
*
|
|
15461
15462
|
* This field is of access type 'inputOutput' and type MFString.
|
|
15462
15463
|
*/
|
|
15463
|
-
objectType: MFString <"
|
|
15464
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
15464
15465
|
/**
|
|
15465
15466
|
* Output event containing the node or nodes that have been found to intersect with the picking geometry from the last time this node performed a picking operation, given in the local coordinate system.
|
|
15466
15467
|
*
|
|
@@ -16497,7 +16498,7 @@ declare namespace X3D
|
|
|
16497
16498
|
*
|
|
16498
16499
|
* This field is of access type 'inputOutput' and type MFString.
|
|
16499
16500
|
*/
|
|
16500
|
-
family: MFString <"
|
|
16501
|
+
family: MFString <"SANS" | "SERIF" | "TYPEWRITER">;
|
|
16501
16502
|
/**
|
|
16502
16503
|
* Whether text direction is horizontal (true) or vertical (false).
|
|
16503
16504
|
*
|
|
@@ -16509,7 +16510,7 @@ declare namespace X3D
|
|
|
16509
16510
|
*
|
|
16510
16511
|
* This field is of access type 'inputOutput' and type MFString.
|
|
16511
16512
|
*/
|
|
16512
|
-
justify: MFString <"
|
|
16513
|
+
justify: MFString <"MIDDLE" | "BEGIN" | "END" | "FIRST">;
|
|
16513
16514
|
/**
|
|
16514
16515
|
* Language codes consist of a primary code and a (possibly empty) series of subcodes.
|
|
16515
16516
|
*
|
|
@@ -17300,7 +17301,7 @@ declare namespace X3D
|
|
|
17300
17301
|
*
|
|
17301
17302
|
* This field is of access type 'inputOutput' and type MFString.
|
|
17302
17303
|
*/
|
|
17303
|
-
forceOutput: MFString <"
|
|
17304
|
+
forceOutput: MFString <"ALL" | "NONE">;
|
|
17304
17305
|
/**
|
|
17305
17306
|
* maxAngle is maximum rotation angle for hinge.
|
|
17306
17307
|
*
|
|
@@ -17359,7 +17360,7 @@ declare namespace X3D
|
|
|
17359
17360
|
*
|
|
17360
17361
|
* This field is of access type 'inputOutput' and type MFString.
|
|
17361
17362
|
*/
|
|
17362
|
-
forceOutput: MFString <"
|
|
17363
|
+
forceOutput: MFString <"ALL" | "NONE">;
|
|
17363
17364
|
/**
|
|
17364
17365
|
* maxSeparation is maximum separation distance between the two bodies.
|
|
17365
17366
|
*
|
|
@@ -20290,7 +20291,7 @@ declare namespace X3D
|
|
|
20290
20291
|
*/
|
|
20291
20292
|
backSpecularColor: SFColor;
|
|
20292
20293
|
/**
|
|
20293
|
-
* how
|
|
20294
|
+
* how "clear" an object is: 1.
|
|
20294
20295
|
*
|
|
20295
20296
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
20296
20297
|
*/
|
|
@@ -20332,7 +20333,7 @@ declare namespace X3D
|
|
|
20332
20333
|
*/
|
|
20333
20334
|
specularColor: SFColor;
|
|
20334
20335
|
/**
|
|
20335
|
-
* how
|
|
20336
|
+
* how "clear" an object is: 1.
|
|
20336
20337
|
*
|
|
20337
20338
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
20338
20339
|
*/
|
|
@@ -20401,7 +20402,7 @@ declare namespace X3D
|
|
|
20401
20402
|
*
|
|
20402
20403
|
* This field is of access type 'inputOutput' and type MFString.
|
|
20403
20404
|
*/
|
|
20404
|
-
forceOutput: MFString <"
|
|
20405
|
+
forceOutput: MFString <"ALL" | "NONE">;
|
|
20405
20406
|
/**
|
|
20406
20407
|
* Information about this node can be contained in a MetadataBoolean, MetadataDouble, MetadataFloat, MetadataInteger, MetadataString or MetadataSet node.
|
|
20407
20408
|
*
|
|
@@ -20480,7 +20481,7 @@ declare namespace X3D
|
|
|
20480
20481
|
*/
|
|
20481
20482
|
normalTextureMapping: string;
|
|
20482
20483
|
/**
|
|
20483
|
-
* how
|
|
20484
|
+
* how "clear" an object is: 1.
|
|
20484
20485
|
*
|
|
20485
20486
|
* This field is of access type 'inputOutput' and type SFFloat.
|
|
20486
20487
|
*/
|
|
@@ -20944,7 +20945,7 @@ declare namespace X3D
|
|
|
20944
20945
|
*
|
|
20945
20946
|
* This field is of access type 'inputOutput' and type MFString.
|
|
20946
20947
|
*/
|
|
20947
|
-
objectType: MFString <"
|
|
20948
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
20948
20949
|
/**
|
|
20949
20950
|
* Output event containing the node or nodes that have been found to intersect with the picking geometry from the last time this node performed a picking operation, given in the local coordinate system.
|
|
20950
20951
|
*
|
|
@@ -21649,7 +21650,7 @@ declare namespace X3D
|
|
|
21649
21650
|
/**
|
|
21650
21651
|
* This field is of access type 'inputOutput' and type MFString.
|
|
21651
21652
|
*/
|
|
21652
|
-
objectType: MFString <"
|
|
21653
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
21653
21654
|
/**
|
|
21654
21655
|
* This field is of access type 'inputOutput' and type SFBool.
|
|
21655
21656
|
*/
|
|
@@ -22039,7 +22040,7 @@ declare namespace X3D
|
|
|
22039
22040
|
/**
|
|
22040
22041
|
* This field is of access type 'inputOutput' and type MFString.
|
|
22041
22042
|
*/
|
|
22042
|
-
objectType: MFString <"
|
|
22043
|
+
objectType: MFString <"ALL" | "NONE" | "TERRAIN">;
|
|
22043
22044
|
/**
|
|
22044
22045
|
* This field is of access type 'outputOnly' and type MFNode.
|
|
22045
22046
|
*/
|
|
@@ -22125,7 +22126,7 @@ declare namespace X3D
|
|
|
22125
22126
|
/**
|
|
22126
22127
|
* This field is of access type 'inputOutput' and type MFString.
|
|
22127
22128
|
*/
|
|
22128
|
-
forceOutput: MFString <"
|
|
22129
|
+
forceOutput: MFString <"ALL" | "NONE">;
|
|
22129
22130
|
/**
|
|
22130
22131
|
* This field is of access type 'inputOutput' and type SFNode.
|
|
22131
22132
|
*/
|
|
@@ -22783,7 +22784,7 @@ declare namespace X3D
|
|
|
22783
22784
|
url: MFString;
|
|
22784
22785
|
}
|
|
22785
22786
|
|
|
22786
|
-
/**
|
|
22787
|
+
/** */
|
|
22787
22788
|
interface X3DUrlOutputObjectProxy extends SFNode
|
|
22788
22789
|
{
|
|
22789
22790
|
/**
|