sunrize 1.7.41 → 1.7.42
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.
|
|
4
|
+
"version": "1.7.42",
|
|
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": "^33.
|
|
93
|
+
"electron": "^33.3.1",
|
|
94
94
|
"electron-prompt": "^1.7.0",
|
|
95
95
|
"electron-squirrel-startup": "^1.0.1",
|
|
96
96
|
"electron-tabs": "^1.0.4",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"string-similarity": "^4.0.4",
|
|
110
110
|
"tweakpane": "^3.1.10",
|
|
111
111
|
"update-electron-app": "^3.1.0",
|
|
112
|
-
"x_ite": "^11.0.
|
|
112
|
+
"x_ite": "^11.0.4",
|
|
113
113
|
"x3d-traverse": "^1.0.9"
|
|
114
114
|
}
|
|
115
115
|
}
|
|
@@ -1942,9 +1942,9 @@ module .exports = class OutlineEditor extends OutlineRouteGraph
|
|
|
1942
1942
|
}
|
|
1943
1943
|
else
|
|
1944
1944
|
{
|
|
1945
|
-
node ._isEvenLive = true;
|
|
1946
|
-
|
|
1947
1945
|
Editor .setFieldValue (this .browser .currentScene, node, node ._startTime, Date .now () / 1000);
|
|
1946
|
+
|
|
1947
|
+
node ._isEvenLive = true;
|
|
1948
1948
|
}
|
|
1949
1949
|
}
|
|
1950
1950
|
|
|
@@ -1972,6 +1972,9 @@ module .exports = class OutlineEditor extends OutlineRouteGraph
|
|
|
1972
1972
|
event .stopImmediatePropagation ();
|
|
1973
1973
|
|
|
1974
1974
|
Editor .setFieldValue (this .browser .currentScene, node, node ._loop, !node ._loop .getValue ());
|
|
1975
|
+
|
|
1976
|
+
if (node ._loop .getValue () && node ._startTime .getValue () >= node ._stopTime .getValue ())
|
|
1977
|
+
node ._isEvenLive = true;
|
|
1975
1978
|
}
|
|
1976
1979
|
|
|
1977
1980
|
addBooleanField (button)
|