@galacean/effects-specification 1.0.0 → 1.0.1
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/dist/fallback.js +4 -4
- package/dist/fallback.js.map +1 -1
- package/dist/fallback.mjs +4 -4
- package/dist/fallback.mjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +5 -1
package/dist/fallback.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Name: @galacean/effects-specification
|
|
3
3
|
* Description: Galacean Effects JSON Specification
|
|
4
4
|
* Author: Ant Group CO., Ltd.
|
|
5
|
-
* Version: v1.0.
|
|
5
|
+
* Version: v1.0.1
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
'use strict';
|
|
@@ -881,9 +881,9 @@ function ensureFixedVec3(a) {
|
|
|
881
881
|
function objectValueToNumber(o) {
|
|
882
882
|
var e_1, _a;
|
|
883
883
|
try {
|
|
884
|
-
for (var _b = __values(Object.
|
|
885
|
-
var
|
|
886
|
-
o[key] = Number(
|
|
884
|
+
for (var _b = __values(Object.keys(o)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
885
|
+
var key = _c.value;
|
|
886
|
+
o[key] = Number(o[key]);
|
|
887
887
|
}
|
|
888
888
|
}
|
|
889
889
|
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|