sunrize 1.8.17 → 1.8.18
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/package.json +2 -2
- package/src/Editors/Primitives.js +23 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sunrize",
|
|
3
3
|
"productName": "Sunrize X3D Editor",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.18",
|
|
5
5
|
"description": "A Multi-Platform X3D Editor",
|
|
6
6
|
"main": "src/main.js",
|
|
7
7
|
"bin": {
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"string-similarity": "^4.0.4",
|
|
111
111
|
"tweakpane": "^3.1.10",
|
|
112
112
|
"update-electron-app": "^3.1.1",
|
|
113
|
-
"x_ite": "^11.6.
|
|
113
|
+
"x_ite": "^11.6.3",
|
|
114
114
|
"x3d-traverse": "^1.0.13"
|
|
115
115
|
}
|
|
116
116
|
}
|
|
@@ -422,16 +422,33 @@ DEF ScreenText Transform {
|
|
|
422
422
|
},
|
|
423
423
|
{
|
|
424
424
|
componentInfo: { name: "Lighting" },
|
|
425
|
-
typeName: "EnvironmentLight",
|
|
425
|
+
typeName: "EnvironmentLight Cannon Exterior",
|
|
426
426
|
x3dSyntax: `
|
|
427
427
|
EnvironmentLight {
|
|
428
428
|
specularTexture ImageCubeMapTexture {
|
|
429
429
|
url "https://cdn.jsdelivr.net/npm/x3d-image@2.2.0/src/images/cannon-exterior.avif"
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
`
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
componentInfo: { name: "Lighting" },
|
|
436
|
+
typeName: "EnvironmentLight Helipad",
|
|
437
|
+
x3dSyntax: `
|
|
438
|
+
EnvironmentLight {
|
|
439
|
+
specularTexture ImageCubeMapTexture {
|
|
440
|
+
url "https://cdn.jsdelivr.net/npm/x3d-image@2.2.0/src/images/helipad.avif"
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
`
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
componentInfo: { name: "Lighting" },
|
|
447
|
+
typeName: "EnvironmentLight Footprint Court",
|
|
448
|
+
x3dSyntax: `
|
|
449
|
+
EnvironmentLight {
|
|
450
|
+
specularTexture ImageCubeMapTexture {
|
|
451
|
+
url "https://cdn.jsdelivr.net/npm/x3d-image@2.2.0/src/images/footprint-court.avif"
|
|
435
452
|
}
|
|
436
453
|
}
|
|
437
454
|
`
|