sunrize 1.10.3 → 1.10.4
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
|
@@ -2116,7 +2116,7 @@ module .exports = class OutlineEditor extends OutlineRouteGraph
|
|
|
2116
2116
|
{
|
|
2117
2117
|
Editor .setFieldValue (this .browser .currentScene, node, node ._startTime, Date .now () / 1000);
|
|
2118
2118
|
|
|
2119
|
-
node .
|
|
2119
|
+
node ._evenLive = true;
|
|
2120
2120
|
}
|
|
2121
2121
|
}
|
|
2122
2122
|
|
|
@@ -2146,7 +2146,7 @@ module .exports = class OutlineEditor extends OutlineRouteGraph
|
|
|
2146
2146
|
Editor .setFieldValue (this .browser .currentScene, node, node ._loop, !node ._loop .getValue ());
|
|
2147
2147
|
|
|
2148
2148
|
if (node ._loop .getValue () && node ._startTime .getValue () >= node ._stopTime .getValue ())
|
|
2149
|
-
node .
|
|
2149
|
+
node ._evenLive = true;
|
|
2150
2150
|
}
|
|
2151
2151
|
|
|
2152
2152
|
addBooleanField (button)
|
|
@@ -1394,7 +1394,7 @@ module .exports = class OutlineView extends Interface
|
|
|
1394
1394
|
buttons .slice (-3) .forEach (button => button .hide ());
|
|
1395
1395
|
|
|
1396
1396
|
if (!node ._isActive .getValue ())
|
|
1397
|
-
node .
|
|
1397
|
+
node ._evenLive = false;
|
|
1398
1398
|
}
|
|
1399
1399
|
|
|
1400
1400
|
isInParents (parent, node)
|