sunrize 1.7.5 → 1.7.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sunrize",
3
3
  "productName": "Sunrize X3D Editor",
4
- "version": "1.7.5",
4
+ "version": "1.7.7",
5
5
  "description": "A Multi-Platform X3D Editor",
6
6
  "main": "src/main.js",
7
7
  "bin": {
@@ -90,7 +90,7 @@
90
90
  "dependencies": {
91
91
  "capitalize": "^2.0.4",
92
92
  "console": "^0.7.2",
93
- "electron": "^30.1.2",
93
+ "electron": "^30.2.0",
94
94
  "electron-prompt": "^1.7.0",
95
95
  "electron-squirrel-startup": "^1.0.1",
96
96
  "electron-tabs": "^1.0.4",
@@ -99,7 +99,7 @@
99
99
  "jquery-ui-dist": "^1.13.3",
100
100
  "jstree": "^3.3.16",
101
101
  "material-icons": "^1.13.12",
102
- "material-symbols": "^0.20.0",
102
+ "material-symbols": "^0.21.2",
103
103
  "md5": "^2.3.0",
104
104
  "mime-types": "^2.1.35",
105
105
  "monaco-editor": "^0.50.0",
@@ -109,7 +109,7 @@
109
109
  "string-similarity": "^4.0.4",
110
110
  "tweakpane": "^3.1.10",
111
111
  "update-electron-app": "^3.0.0",
112
- "x_ite": "^10.0.3"
112
+ "x_ite": "^10.0.5"
113
113
  },
114
114
  "config": {
115
115
  "forge": {
@@ -29,4 +29,14 @@ X3DUOM .find ("ConcreteNode[name=Shape]")
29
29
  X3DUOM .find ("ConcreteNode[name=ParticleSystem]")
30
30
  .append (X3DUOM .find ("field[name=pointerEvents]") .first () .clone ());
31
31
 
32
+ // damping
33
+ X3DUOM .find ("ConcreteNode[name=BoundedPhysicsModel]")
34
+ .append ($(X3DUOM [0] .createElement ("field"))
35
+ .attr ("name", "damping")
36
+ .attr ("type", "SFFloat")
37
+ .attr ("accessType", "inputOutput")
38
+ .attr ("default", "1")
39
+ .attr ("minInclusive", "0")
40
+ .attr ("description", "Damping that particles experience in the event of a collision."));
41
+
32
42
  module .exports = X3DUOM;
@@ -9,8 +9,8 @@
9
9
  <component name='Scripting' level='1'/>
10
10
  <meta name='created' content='Thu, 10 Jul 2014 17:28:33 GMT'/>
11
11
  <meta name='creator' content='Holger Seelig'/>
12
- <meta name='generator' content='Sunrize X3D Editor V1.6.15, https://create3000.github.io/sunrize/'/>
13
- <meta name='modified' content='Fri, 31 May 2024 08:24:53 GMT'/>
12
+ <meta name='generator' content='Sunrize X3D Editor V1.7.6, https://create3000.github.io/sunrize/'/>
13
+ <meta name='modified' content='Fri, 19 Jul 2024 18:04:50 GMT'/>
14
14
  </head>
15
15
  <Scene>
16
16
  <LayerSet
@@ -19,16 +19,12 @@
19
19
  <LayoutLayer DEF='CheckerBoard'>
20
20
  <Layout
21
21
  scaleMode='"PIXEL", "PIXEL"'/>
22
- <Background DEF='Gray'
23
- skyColor='0.4 0.4 0.4'/>
24
22
  <Shape>
25
23
  <Appearance>
26
- <UnlitMaterial
27
- emissiveColor='0.6 0.6 0.6'/>
28
24
  <PixelTexture
29
- image='2 2 2
30
- 0xffff 0x0
31
- 0x0 0xffff'/>
25
+ image='2 2 1
26
+ 0x99 0x66
27
+ 0x66 0x99'/>
32
28
  <TextureTransform
33
29
  scale='5000 5000'/>
34
30
  </Appearance>
@@ -10,8 +10,8 @@
10
10
  <component name='TextureProjection' level='2'/>
11
11
  <meta name='created' content='Thu, 10 Jul 2014 17:28:33 GMT'/>
12
12
  <meta name='creator' content='Holger Seelig'/>
13
- <meta name='generator' content='Sunrize X3D Editor V1.7.0, https://create3000.github.io/sunrize/'/>
14
- <meta name='modified' content='Sat, 22 Jun 2024 07:32:16 GMT'/>
13
+ <meta name='generator' content='Sunrize X3D Editor V1.7.6, https://create3000.github.io/sunrize/'/>
14
+ <meta name='modified' content='Fri, 19 Jul 2024 18:05:08 GMT'/>
15
15
  </head>
16
16
  <Scene>
17
17
  <ExternProtoDeclare name='Volume' url='"Volume.x3d#Volume"'>
@@ -25,16 +25,12 @@
25
25
  pickable='false'>
26
26
  <Layout
27
27
  scaleMode='"PIXEL", "PIXEL"'/>
28
- <Background DEF='Gray'
29
- skyColor='0.4 0.4 0.4'/>
30
28
  <Shape>
31
29
  <Appearance>
32
- <UnlitMaterial
33
- emissiveColor='0.6 0.6 0.6'/>
34
30
  <PixelTexture
35
- image='2 2 2
36
- 0xffff 0x0
37
- 0x0 0xffff'/>
31
+ image='2 2 1
32
+ 0x99 0x66
33
+ 0x66 0x99'/>
38
34
  <TextureTransform
39
35
  scale='5000 5000'/>
40
36
  </Appearance>
@@ -19,12 +19,16 @@
19
19
  .etabs .tab {
20
20
  background: var(--window-tabs-background-color);
21
21
  border-color: var(--border-color) !important;
22
- padding: 4px 3px;
22
+ padding: 4px 3px !important;
23
23
  color: var(--window-tabs-text-color);
24
24
  font-family: var(--sans-serif);
25
25
  box-shadow: none;
26
26
  }
27
27
 
28
+ .etabs .tab:first-child {
29
+ border-left: 0;
30
+ }
31
+
28
32
  .etabs .tab.active {
29
33
  z-index: 1100;
30
34
  background: var(--background-color);
@@ -19,12 +19,16 @@
19
19
  .etabs .tab {
20
20
  background: var(--window-tabs-background-color);
21
21
  border-color: var(--border-color) !important;
22
- padding: 4px 3px;
22
+ padding: 4px 3px !important;
23
23
  color: var(--window-tabs-text-color);
24
24
  font-family: var(--sans-serif);
25
25
  box-shadow: none;
26
26
  }
27
27
 
28
+ .etabs .tab:first-child {
29
+ border-left: 0;
30
+ }
31
+
28
32
  .etabs .tab.active {
29
33
  z-index: 1100;
30
34
  background: var(--background-color);