lyb-pixi-js 1.11.22 → 1.11.24
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/Components/Custom/LibPixiCapsule.d.ts +5 -0
- package/Components/Custom/LibPixiCapsule.js +10 -0
- package/Components/Custom/LibPixiPerforMon.d.ts +0 -1
- package/Components/Custom/LibPixiPerforMon.js +0 -20
- package/Components/Custom/LibPixiTriangle.d.ts +5 -0
- package/Components/Custom/LibPixiTriangle.js +12 -0
- package/Utils/LibPixiPromiseTickerTimeout.js +2 -2
- package/Utils/LibPixiTickerTimeout.js +3 -9
- package/libPixiJs.d.ts +6 -0
- package/libPixiJs.js +6 -0
- package/lyb-pixi.js +247 -229
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Graphics } from "pixi.js";
|
|
2
|
+
/** @description 胶囊形 */
|
|
3
|
+
export class LibPixiCapsule extends Graphics {
|
|
4
|
+
constructor(width, height, color) {
|
|
5
|
+
super();
|
|
6
|
+
this.beginFill(color);
|
|
7
|
+
this.drawRoundedRect(0, 0, width, height, width / 2);
|
|
8
|
+
this.endFill();
|
|
9
|
+
}
|
|
10
|
+
}
|
|
@@ -26,10 +26,6 @@ export class LibPixiPerforMon extends Container {
|
|
|
26
26
|
/** 整体高度 */
|
|
27
27
|
this._containerHeight = 50;
|
|
28
28
|
this.pivot.x = this._containerWidth / 2;
|
|
29
|
-
this._resize(window.innerWidth, window.innerHeight);
|
|
30
|
-
window.addEventListener("resize", () => {
|
|
31
|
-
this._resize(window.innerWidth, window.innerHeight);
|
|
32
|
-
});
|
|
33
29
|
//创建背景
|
|
34
30
|
this._bg = new LibPixiRectBgColor({
|
|
35
31
|
width: this._containerWidth,
|
|
@@ -124,22 +120,6 @@ export class LibPixiPerforMon extends Container {
|
|
|
124
120
|
}
|
|
125
121
|
return color;
|
|
126
122
|
}
|
|
127
|
-
_resize(w, h) {
|
|
128
|
-
if (LibPixiPerforMon.ADAPT_MODE === "h") {
|
|
129
|
-
this.x = 1920 / 2;
|
|
130
|
-
}
|
|
131
|
-
else if (LibPixiPerforMon.ADAPT_MODE === "v") {
|
|
132
|
-
this.x = 1080 / 2;
|
|
133
|
-
}
|
|
134
|
-
else {
|
|
135
|
-
if (w > h) {
|
|
136
|
-
this.x = 1920 / 2;
|
|
137
|
-
}
|
|
138
|
-
else {
|
|
139
|
-
this.x = 1080 / 2;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
123
|
}
|
|
144
124
|
/** 当前适配模式 */
|
|
145
125
|
LibPixiPerforMon.ADAPT_MODE = "hv";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Graphics } from "pixi.js";
|
|
2
|
+
/** @description 三角形 */
|
|
3
|
+
export class LibPixiTriangle extends Graphics {
|
|
4
|
+
constructor(dots, color) {
|
|
5
|
+
super();
|
|
6
|
+
this.beginFill(color);
|
|
7
|
+
this.moveTo(0, 0);
|
|
8
|
+
this.lineTo(dots[0][0], dots[0][1]);
|
|
9
|
+
this.lineTo(dots[1][0], dots[1][1]);
|
|
10
|
+
this.endFill();
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -7,12 +7,12 @@ import { Ticker } from "pixi.js";
|
|
|
7
7
|
export const libPixiPromiseTickerTimeout = (delay = 1, callback) => {
|
|
8
8
|
return new Promise((resolve) => {
|
|
9
9
|
let elapsedTime = 0;
|
|
10
|
-
const ticker =
|
|
10
|
+
const ticker = Ticker.shared;
|
|
11
11
|
const tickerCallback = () => {
|
|
12
12
|
elapsedTime += ticker.deltaMS;
|
|
13
13
|
if (elapsedTime >= delay) {
|
|
14
14
|
callback === null || callback === void 0 ? void 0 : callback();
|
|
15
|
-
ticker.
|
|
15
|
+
ticker.remove(tickerCallback);
|
|
16
16
|
resolve();
|
|
17
17
|
}
|
|
18
18
|
};
|
|
@@ -6,23 +6,17 @@ import { Ticker } from "pixi.js";
|
|
|
6
6
|
*/
|
|
7
7
|
export const libPixiTickerTimeout = (callback, delay = 1) => {
|
|
8
8
|
let elapsedTime = 0;
|
|
9
|
-
const ticker =
|
|
9
|
+
const ticker = Ticker.shared;
|
|
10
10
|
const tickerCallback = () => {
|
|
11
11
|
elapsedTime += ticker.deltaMS;
|
|
12
12
|
if (elapsedTime >= delay) {
|
|
13
13
|
callback === null || callback === void 0 ? void 0 : callback();
|
|
14
|
-
|
|
15
|
-
ticker.destroy();
|
|
16
|
-
}
|
|
17
|
-
catch (error) { }
|
|
14
|
+
ticker.remove(tickerCallback);
|
|
18
15
|
}
|
|
19
16
|
};
|
|
20
17
|
ticker.add(tickerCallback);
|
|
21
18
|
ticker.start();
|
|
22
19
|
return () => {
|
|
23
|
-
|
|
24
|
-
ticker.destroy();
|
|
25
|
-
}
|
|
26
|
-
catch (error) { }
|
|
20
|
+
ticker.remove(tickerCallback);
|
|
27
21
|
};
|
|
28
22
|
};
|
package/libPixiJs.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ import { LibPixiCircular } from "./Components/Base/LibPixiCircular";
|
|
|
26
26
|
import { LibPixiSlide } from "./Components/Custom/LibPixiSlide";
|
|
27
27
|
import { LibPixiLabelValue } from "./Components/Custom/LibPixiLabelValue";
|
|
28
28
|
import { LibPixiPuzzleBg } from "./Components/Custom/LibPixiPuzzleBg";
|
|
29
|
+
import { LibPixiTriangle } from "./Components/Custom/LibPixiTriangle";
|
|
30
|
+
import { LibPixiCapsule } from "./Components/Custom/LibPixiCapsule";
|
|
29
31
|
import { LibDestroyContainer } from "./Components/Base/LibDestroyContainer";
|
|
30
32
|
import { LibPixiDragLocate } from "./Components/Custom/LibPixiDragLocate";
|
|
31
33
|
/** @description 组件 */
|
|
@@ -129,6 +131,10 @@ export declare const Components: {
|
|
|
129
131
|
LibPixiLabelValue: typeof LibPixiLabelValue;
|
|
130
132
|
/** @description 设计图背景拼接 */
|
|
131
133
|
LibPixiPuzzleBg: typeof LibPixiPuzzleBg;
|
|
134
|
+
/** @description 胶囊体 */
|
|
135
|
+
LibPixiCapsule: typeof LibPixiCapsule;
|
|
136
|
+
/** @description 三角形 */
|
|
137
|
+
LibPixiTriangle: typeof LibPixiTriangle;
|
|
132
138
|
/** @description 元素拖拽定位 */
|
|
133
139
|
LibPixiDragLocate: typeof LibPixiDragLocate;
|
|
134
140
|
};
|
package/libPixiJs.js
CHANGED
|
@@ -44,6 +44,8 @@ import { LibPixiPuzzleBg } from "./Components/Custom/LibPixiPuzzleBg";
|
|
|
44
44
|
import { libContainerCenter } from "./Utils/LibContainerCenter";
|
|
45
45
|
import { libPixiHVCenter } from "./Utils/LibPixiHVCenter";
|
|
46
46
|
import { libPixiHVGap } from "./Utils/LibPixiHVGap";
|
|
47
|
+
import { LibPixiTriangle } from "./Components/Custom/LibPixiTriangle";
|
|
48
|
+
import { LibPixiCapsule } from "./Components/Custom/LibPixiCapsule";
|
|
47
49
|
import { LibDestroyContainer } from "./Components/Base/LibDestroyContainer";
|
|
48
50
|
import { LibPixiDragLocate } from "./Components/Custom/LibPixiDragLocate";
|
|
49
51
|
/** @description 组件 */
|
|
@@ -147,6 +149,10 @@ export const Components = {
|
|
|
147
149
|
LibPixiLabelValue,
|
|
148
150
|
/** @description 设计图背景拼接 */
|
|
149
151
|
LibPixiPuzzleBg,
|
|
152
|
+
/** @description 胶囊体 */
|
|
153
|
+
LibPixiCapsule,
|
|
154
|
+
/** @description 三角形 */
|
|
155
|
+
LibPixiTriangle,
|
|
150
156
|
/** @description 元素拖拽定位 */
|
|
151
157
|
LibPixiDragLocate,
|
|
152
158
|
},
|
package/lyb-pixi.js
CHANGED
|
@@ -1315,7 +1315,7 @@
|
|
|
1315
1315
|
var ys = arrObjKeys(obj, inspect2);
|
|
1316
1316
|
var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
1317
1317
|
var protoTag = obj instanceof Object ? "" : "null prototype";
|
|
1318
|
-
var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? "Object" : "";
|
|
1318
|
+
var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr$1(obj), 8, -1) : protoTag ? "Object" : "";
|
|
1319
1319
|
var constructorTag = isPlainObject || typeof obj.constructor !== "function" ? "" : obj.constructor.name ? obj.constructor.name + " " : "";
|
|
1320
1320
|
var tag2 = constructorTag + (stringTag || protoTag ? "[" + $join.call($concat$1.call([], stringTag || [], protoTag || []), ": ") + "] " : "");
|
|
1321
1321
|
if (ys.length === 0) {
|
|
@@ -1336,26 +1336,29 @@
|
|
|
1336
1336
|
function quote(s2) {
|
|
1337
1337
|
return $replace$1.call(String(s2), /"/g, """);
|
|
1338
1338
|
}
|
|
1339
|
+
function canTrustToString(obj) {
|
|
1340
|
+
return !toStringTag || !(typeof obj === "object" && (toStringTag in obj || typeof obj[toStringTag] !== "undefined"));
|
|
1341
|
+
}
|
|
1339
1342
|
function isArray$3(obj) {
|
|
1340
|
-
return toStr(obj) === "[object Array]" && (
|
|
1343
|
+
return toStr$1(obj) === "[object Array]" && canTrustToString(obj);
|
|
1341
1344
|
}
|
|
1342
1345
|
function isDate(obj) {
|
|
1343
|
-
return toStr(obj) === "[object Date]" && (
|
|
1346
|
+
return toStr$1(obj) === "[object Date]" && canTrustToString(obj);
|
|
1344
1347
|
}
|
|
1345
1348
|
function isRegExp$1(obj) {
|
|
1346
|
-
return toStr(obj) === "[object RegExp]" && (
|
|
1349
|
+
return toStr$1(obj) === "[object RegExp]" && canTrustToString(obj);
|
|
1347
1350
|
}
|
|
1348
1351
|
function isError(obj) {
|
|
1349
|
-
return toStr(obj) === "[object Error]" && (
|
|
1352
|
+
return toStr$1(obj) === "[object Error]" && canTrustToString(obj);
|
|
1350
1353
|
}
|
|
1351
1354
|
function isString(obj) {
|
|
1352
|
-
return toStr(obj) === "[object String]" && (
|
|
1355
|
+
return toStr$1(obj) === "[object String]" && canTrustToString(obj);
|
|
1353
1356
|
}
|
|
1354
1357
|
function isNumber(obj) {
|
|
1355
|
-
return toStr(obj) === "[object Number]" && (
|
|
1358
|
+
return toStr$1(obj) === "[object Number]" && canTrustToString(obj);
|
|
1356
1359
|
}
|
|
1357
1360
|
function isBoolean(obj) {
|
|
1358
|
-
return toStr(obj) === "[object Boolean]" && (
|
|
1361
|
+
return toStr$1(obj) === "[object Boolean]" && canTrustToString(obj);
|
|
1359
1362
|
}
|
|
1360
1363
|
function isSymbol(obj) {
|
|
1361
1364
|
if (hasShammedSymbols) {
|
|
@@ -1391,7 +1394,7 @@
|
|
|
1391
1394
|
function has$3(obj, key) {
|
|
1392
1395
|
return hasOwn$1.call(obj, key);
|
|
1393
1396
|
}
|
|
1394
|
-
function toStr(obj) {
|
|
1397
|
+
function toStr$1(obj) {
|
|
1395
1398
|
return objectToString.call(obj);
|
|
1396
1399
|
}
|
|
1397
1400
|
function nameOf(f2) {
|
|
@@ -1700,7 +1703,7 @@
|
|
|
1700
1703
|
var uri = URIError;
|
|
1701
1704
|
var abs$2 = Math.abs;
|
|
1702
1705
|
var floor$2 = Math.floor;
|
|
1703
|
-
var max$
|
|
1706
|
+
var max$3 = Math.max;
|
|
1704
1707
|
var min$2 = Math.min;
|
|
1705
1708
|
var pow$2 = Math.pow;
|
|
1706
1709
|
var round$3 = Math.round;
|
|
@@ -1833,102 +1836,78 @@
|
|
|
1833
1836
|
Object_getPrototypeOf = $Object2.getPrototypeOf || null;
|
|
1834
1837
|
return Object_getPrototypeOf;
|
|
1835
1838
|
}
|
|
1836
|
-
var
|
|
1837
|
-
var
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
var
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
var
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
var joiny = function(arr, joiner) {
|
|
1864
|
-
var str = "";
|
|
1865
|
-
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
1866
|
-
str += arr[i2];
|
|
1867
|
-
if (i2 + 1 < arr.length) {
|
|
1868
|
-
str += joiner;
|
|
1869
|
-
}
|
|
1839
|
+
var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
|
|
1840
|
+
var toStr = Object.prototype.toString;
|
|
1841
|
+
var max$2 = Math.max;
|
|
1842
|
+
var funcType = "[object Function]";
|
|
1843
|
+
var concatty = function concatty2(a2, b2) {
|
|
1844
|
+
var arr = [];
|
|
1845
|
+
for (var i2 = 0; i2 < a2.length; i2 += 1) {
|
|
1846
|
+
arr[i2] = a2[i2];
|
|
1847
|
+
}
|
|
1848
|
+
for (var j2 = 0; j2 < b2.length; j2 += 1) {
|
|
1849
|
+
arr[j2 + a2.length] = b2[j2];
|
|
1850
|
+
}
|
|
1851
|
+
return arr;
|
|
1852
|
+
};
|
|
1853
|
+
var slicy = function slicy2(arrLike, offset) {
|
|
1854
|
+
var arr = [];
|
|
1855
|
+
for (var i2 = offset || 0, j2 = 0; i2 < arrLike.length; i2 += 1, j2 += 1) {
|
|
1856
|
+
arr[j2] = arrLike[i2];
|
|
1857
|
+
}
|
|
1858
|
+
return arr;
|
|
1859
|
+
};
|
|
1860
|
+
var joiny = function(arr, joiner) {
|
|
1861
|
+
var str = "";
|
|
1862
|
+
for (var i2 = 0; i2 < arr.length; i2 += 1) {
|
|
1863
|
+
str += arr[i2];
|
|
1864
|
+
if (i2 + 1 < arr.length) {
|
|
1865
|
+
str += joiner;
|
|
1870
1866
|
}
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
);
|
|
1886
|
-
if (Object(result) === result) {
|
|
1887
|
-
return result;
|
|
1888
|
-
}
|
|
1889
|
-
return this;
|
|
1890
|
-
}
|
|
1891
|
-
return target.apply(
|
|
1892
|
-
that,
|
|
1867
|
+
}
|
|
1868
|
+
return str;
|
|
1869
|
+
};
|
|
1870
|
+
var implementation$1 = function bind2(that) {
|
|
1871
|
+
var target = this;
|
|
1872
|
+
if (typeof target !== "function" || toStr.apply(target) !== funcType) {
|
|
1873
|
+
throw new TypeError(ERROR_MESSAGE + target);
|
|
1874
|
+
}
|
|
1875
|
+
var args = slicy(arguments, 1);
|
|
1876
|
+
var bound;
|
|
1877
|
+
var binder = function() {
|
|
1878
|
+
if (this instanceof bound) {
|
|
1879
|
+
var result = target.apply(
|
|
1880
|
+
this,
|
|
1893
1881
|
concatty(args, arguments)
|
|
1894
1882
|
);
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
boundArgs[i2] = "$" + i2;
|
|
1900
|
-
}
|
|
1901
|
-
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
1902
|
-
if (target.prototype) {
|
|
1903
|
-
var Empty = function Empty2() {
|
|
1904
|
-
};
|
|
1905
|
-
Empty.prototype = target.prototype;
|
|
1906
|
-
bound.prototype = new Empty();
|
|
1907
|
-
Empty.prototype = null;
|
|
1883
|
+
if (Object(result) === result) {
|
|
1884
|
+
return result;
|
|
1885
|
+
}
|
|
1886
|
+
return this;
|
|
1908
1887
|
}
|
|
1909
|
-
return
|
|
1888
|
+
return target.apply(
|
|
1889
|
+
that,
|
|
1890
|
+
concatty(args, arguments)
|
|
1891
|
+
);
|
|
1910
1892
|
};
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
functionCall = Function.prototype.call;
|
|
1930
|
-
return functionCall;
|
|
1931
|
-
}
|
|
1893
|
+
var boundLength = max$2(0, target.length - args.length);
|
|
1894
|
+
var boundArgs = [];
|
|
1895
|
+
for (var i2 = 0; i2 < boundLength; i2++) {
|
|
1896
|
+
boundArgs[i2] = "$" + i2;
|
|
1897
|
+
}
|
|
1898
|
+
bound = Function("binder", "return function (" + joiny(boundArgs, ",") + "){ return binder.apply(this,arguments); }")(binder);
|
|
1899
|
+
if (target.prototype) {
|
|
1900
|
+
var Empty = function Empty2() {
|
|
1901
|
+
};
|
|
1902
|
+
Empty.prototype = target.prototype;
|
|
1903
|
+
bound.prototype = new Empty();
|
|
1904
|
+
Empty.prototype = null;
|
|
1905
|
+
}
|
|
1906
|
+
return bound;
|
|
1907
|
+
};
|
|
1908
|
+
var implementation = implementation$1;
|
|
1909
|
+
var functionBind = Function.prototype.bind || implementation;
|
|
1910
|
+
var functionCall = Function.prototype.call;
|
|
1932
1911
|
var functionApply;
|
|
1933
1912
|
var hasRequiredFunctionApply;
|
|
1934
1913
|
function requireFunctionApply() {
|
|
@@ -1939,14 +1918,14 @@
|
|
|
1939
1918
|
return functionApply;
|
|
1940
1919
|
}
|
|
1941
1920
|
var reflectApply = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
|
|
1942
|
-
var bind$2 =
|
|
1921
|
+
var bind$2 = functionBind;
|
|
1943
1922
|
var $apply$1 = requireFunctionApply();
|
|
1944
|
-
var $call$2 =
|
|
1923
|
+
var $call$2 = functionCall;
|
|
1945
1924
|
var $reflectApply = reflectApply;
|
|
1946
1925
|
var actualApply = $reflectApply || bind$2.call($call$2, $apply$1);
|
|
1947
|
-
var bind$1 =
|
|
1926
|
+
var bind$1 = functionBind;
|
|
1948
1927
|
var $TypeError$4 = type;
|
|
1949
|
-
var $call$1 =
|
|
1928
|
+
var $call$1 = functionCall;
|
|
1950
1929
|
var $actualApply = actualApply;
|
|
1951
1930
|
var callBindApplyHelpers = function callBindBasic2(args) {
|
|
1952
1931
|
if (args.length < 1 || typeof args[0] !== "function") {
|
|
@@ -2015,7 +1994,7 @@
|
|
|
2015
1994
|
hasRequiredHasown = 1;
|
|
2016
1995
|
var call = Function.prototype.call;
|
|
2017
1996
|
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
2018
|
-
var bind2 =
|
|
1997
|
+
var bind2 = functionBind;
|
|
2019
1998
|
hasown = bind2.call(call, $hasOwn);
|
|
2020
1999
|
return hasown;
|
|
2021
2000
|
}
|
|
@@ -2030,7 +2009,7 @@
|
|
|
2030
2009
|
var $URIError = uri;
|
|
2031
2010
|
var abs$1 = abs$2;
|
|
2032
2011
|
var floor$1 = floor$2;
|
|
2033
|
-
var max$1 = max$
|
|
2012
|
+
var max$1 = max$3;
|
|
2034
2013
|
var min$1 = min$2;
|
|
2035
2014
|
var pow$1 = pow$2;
|
|
2036
2015
|
var round$2 = round$3;
|
|
@@ -2064,7 +2043,7 @@
|
|
|
2064
2043
|
var $ObjectGPO = requireObject_getPrototypeOf();
|
|
2065
2044
|
var $ReflectGPO = requireReflect_getPrototypeOf();
|
|
2066
2045
|
var $apply = requireFunctionApply();
|
|
2067
|
-
var $call =
|
|
2046
|
+
var $call = functionCall;
|
|
2068
2047
|
var needsEval = {};
|
|
2069
2048
|
var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined$1 : getProto(Uint8Array);
|
|
2070
2049
|
var INTRINSICS = {
|
|
@@ -2093,6 +2072,7 @@
|
|
|
2093
2072
|
"%eval%": eval,
|
|
2094
2073
|
// eslint-disable-line no-eval
|
|
2095
2074
|
"%EvalError%": $EvalError,
|
|
2075
|
+
"%Float16Array%": typeof Float16Array === "undefined" ? undefined$1 : Float16Array,
|
|
2096
2076
|
"%Float32Array%": typeof Float32Array === "undefined" ? undefined$1 : Float32Array,
|
|
2097
2077
|
"%Float64Array%": typeof Float64Array === "undefined" ? undefined$1 : Float64Array,
|
|
2098
2078
|
"%FinalizationRegistry%": typeof FinalizationRegistry === "undefined" ? undefined$1 : FinalizationRegistry,
|
|
@@ -2234,7 +2214,7 @@
|
|
|
2234
2214
|
"%WeakMapPrototype%": ["WeakMap", "prototype"],
|
|
2235
2215
|
"%WeakSetPrototype%": ["WeakSet", "prototype"]
|
|
2236
2216
|
};
|
|
2237
|
-
var bind =
|
|
2217
|
+
var bind = functionBind;
|
|
2238
2218
|
var hasOwn = requireHasown();
|
|
2239
2219
|
var $concat = bind.call($call, Array.prototype.concat);
|
|
2240
2220
|
var $spliceApply = bind.call($apply, Array.prototype.splice);
|
|
@@ -2346,11 +2326,14 @@
|
|
|
2346
2326
|
var $indexOf = callBindBasic([GetIntrinsic$2("%String.prototype.indexOf%")]);
|
|
2347
2327
|
var callBound$2 = function callBoundIntrinsic(name, allowMissing) {
|
|
2348
2328
|
var intrinsic = (
|
|
2349
|
-
/** @type {
|
|
2329
|
+
/** @type {(this: unknown, ...args: unknown[]) => unknown} */
|
|
2350
2330
|
GetIntrinsic$2(name, !!allowMissing)
|
|
2351
2331
|
);
|
|
2352
2332
|
if (typeof intrinsic === "function" && $indexOf(name, ".prototype.") > -1) {
|
|
2353
|
-
return callBindBasic(
|
|
2333
|
+
return callBindBasic(
|
|
2334
|
+
/** @type {const} */
|
|
2335
|
+
[intrinsic]
|
|
2336
|
+
);
|
|
2354
2337
|
}
|
|
2355
2338
|
return intrinsic;
|
|
2356
2339
|
};
|
|
@@ -10971,7 +10954,7 @@ void main(void)
|
|
|
10971
10954
|
*/
|
|
10972
10955
|
run(options) {
|
|
10973
10956
|
const { renderer } = this;
|
|
10974
|
-
renderer.runners.init.emit(renderer.options), options.hello && console.log(`PixiJS 7.4.
|
|
10957
|
+
renderer.runners.init.emit(renderer.options), options.hello && console.log(`PixiJS 7.4.3 - ${renderer.rendererLogId} - https://pixijs.com`), renderer.resize(renderer.screen.width, renderer.screen.height);
|
|
10975
10958
|
}
|
|
10976
10959
|
destroy() {
|
|
10977
10960
|
}
|
|
@@ -18222,7 +18205,8 @@ void main()
|
|
|
18222
18205
|
if (keys.forEach((key2) => {
|
|
18223
18206
|
this._cacheMap.set(key2, cachedAssets);
|
|
18224
18207
|
}), cacheKeys.forEach((key2) => {
|
|
18225
|
-
|
|
18208
|
+
const val = cacheableAssets ? cacheableAssets[key2] : value;
|
|
18209
|
+
this._cache.has(key2) && this._cache.get(key2) !== val && console.warn("[Cache] already has key:", key2), this._cache.set(key2, cacheableAssets[key2]);
|
|
18226
18210
|
}), value instanceof Texture) {
|
|
18227
18211
|
const texture = value;
|
|
18228
18212
|
keys.forEach((key2) => {
|
|
@@ -25738,12 +25722,11 @@ void main(void)\r
|
|
|
25738
25722
|
subClass.__proto__ = superClass;
|
|
25739
25723
|
}
|
|
25740
25724
|
/*!
|
|
25741
|
-
* GSAP 3.
|
|
25725
|
+
* GSAP 3.13.0
|
|
25742
25726
|
* https://gsap.com
|
|
25743
25727
|
*
|
|
25744
|
-
* @license Copyright 2008-
|
|
25745
|
-
* Subject to the terms at https://gsap.com/standard-license
|
|
25746
|
-
* Club GSAP members, the agreement issued with that membership.
|
|
25728
|
+
* @license Copyright 2008-2025, GreenSock. All rights reserved.
|
|
25729
|
+
* Subject to the terms at https://gsap.com/standard-license
|
|
25747
25730
|
* @author: Jack Doyle, jack@greensock.com
|
|
25748
25731
|
*/
|
|
25749
25732
|
var _config = {
|
|
@@ -25834,9 +25817,11 @@ void main(void)\r
|
|
|
25834
25817
|
tween = a2[i2];
|
|
25835
25818
|
tween && tween._lazy && (tween.render(tween._lazy[0], tween._lazy[1], true)._lazy = 0);
|
|
25836
25819
|
}
|
|
25820
|
+
}, _isRevertWorthy = function _isRevertWorthy2(animation) {
|
|
25821
|
+
return !!(animation._initted || animation._startAt || animation.add);
|
|
25837
25822
|
}, _lazySafeRender = function _lazySafeRender2(animation, time, suppressEvents, force) {
|
|
25838
25823
|
_lazyTweens.length && !_reverting$1 && _lazyRender();
|
|
25839
|
-
animation.render(time, suppressEvents, force || _reverting$1 && time < 0 && (animation
|
|
25824
|
+
animation.render(time, suppressEvents, force || !!(_reverting$1 && time < 0 && _isRevertWorthy(animation)));
|
|
25840
25825
|
_lazyTweens.length && !_reverting$1 && _lazyRender();
|
|
25841
25826
|
}, _numericIfPossible = function _numericIfPossible2(value) {
|
|
25842
25827
|
var n2 = parseFloat(value);
|
|
@@ -25959,7 +25944,7 @@ void main(void)\r
|
|
|
25959
25944
|
}, _elapsedCycleDuration = function _elapsedCycleDuration2(animation) {
|
|
25960
25945
|
return animation._repeat ? _animationCycle(animation._tTime, animation = animation.duration() + animation._rDelay) * animation : 0;
|
|
25961
25946
|
}, _animationCycle = function _animationCycle2(tTime, cycleDuration) {
|
|
25962
|
-
var whole = Math.floor(tTime
|
|
25947
|
+
var whole = Math.floor(tTime = _roundPrecise(tTime / cycleDuration));
|
|
25963
25948
|
return tTime && whole === tTime ? whole - 1 : whole;
|
|
25964
25949
|
}, _parentToChildTotalTime = function _parentToChildTotalTime2(parentTime, child) {
|
|
25965
25950
|
return (parentTime - child._start) * child._ts + (child._ts >= 0 ? 0 : child._dirty ? child.totalDuration() : child._tDur);
|
|
@@ -26740,7 +26725,7 @@ void main(void)\r
|
|
|
26740
26725
|
}, easeOut);
|
|
26741
26726
|
})(7.5625, 2.75);
|
|
26742
26727
|
_insertEase("Expo", function(p2) {
|
|
26743
|
-
return
|
|
26728
|
+
return Math.pow(2, 10 * (p2 - 1)) * p2 + p2 * p2 * p2 * p2 * p2 * p2 * (1 - p2);
|
|
26744
26729
|
});
|
|
26745
26730
|
_insertEase("Circ", function(p2) {
|
|
26746
26731
|
return -(_sqrt(1 - p2 * p2) - 1);
|
|
@@ -26837,7 +26822,7 @@ void main(void)\r
|
|
|
26837
26822
|
return arguments.length ? this.totalTime(Math.min(this.totalDuration(), value + _elapsedCycleDuration(this)) % (this._dur + this._rDelay) || (value ? this._dur : 0), suppressEvents) : this._time;
|
|
26838
26823
|
};
|
|
26839
26824
|
_proto.totalProgress = function totalProgress(value, suppressEvents) {
|
|
26840
|
-
return arguments.length ? this.totalTime(this.totalDuration() * value, suppressEvents) : this.totalDuration() ? Math.min(1, this._tTime / this._tDur) : this.rawTime()
|
|
26825
|
+
return arguments.length ? this.totalTime(this.totalDuration() * value, suppressEvents) : this.totalDuration() ? Math.min(1, this._tTime / this._tDur) : this.rawTime() >= 0 && this._initted ? 1 : 0;
|
|
26841
26826
|
};
|
|
26842
26827
|
_proto.progress = function progress(value, suppressEvents) {
|
|
26843
26828
|
return arguments.length ? this.totalTime(this.duration() * (this._yoyo && !(this.iteration() & 1) ? 1 - value : value) + _elapsedCycleDuration(this), suppressEvents) : this.duration() ? Math.min(1, this._time / this._dur) : this.rawTime() > 0 ? 1 : 0;
|
|
@@ -26856,7 +26841,7 @@ void main(void)\r
|
|
|
26856
26841
|
var tTime = this.parent && this._ts ? _parentToChildTotalTime(this.parent._time, this) : this._tTime;
|
|
26857
26842
|
this._rts = +value || 0;
|
|
26858
26843
|
this._ts = this._ps || value === -_tinyNum ? 0 : this._rts;
|
|
26859
|
-
this.totalTime(_clamp(-Math.abs(this._delay), this.
|
|
26844
|
+
this.totalTime(_clamp(-Math.abs(this._delay), this.totalDuration(), tTime), suppressEvents !== false);
|
|
26860
26845
|
_setEnd(this);
|
|
26861
26846
|
return _recacheAncestors(this);
|
|
26862
26847
|
};
|
|
@@ -26899,7 +26884,7 @@ void main(void)\r
|
|
|
26899
26884
|
}
|
|
26900
26885
|
var prevIsReverting = _reverting$1;
|
|
26901
26886
|
_reverting$1 = config2;
|
|
26902
|
-
if (this
|
|
26887
|
+
if (_isRevertWorthy(this)) {
|
|
26903
26888
|
this.timeline && this.timeline.revert(config2);
|
|
26904
26889
|
this.totalTime(-0.01, config2.suppressEvents);
|
|
26905
26890
|
}
|
|
@@ -26942,7 +26927,9 @@ void main(void)\r
|
|
|
26942
26927
|
return this.totalTime(_parsePosition(this, position), _isNotFalse(suppressEvents));
|
|
26943
26928
|
};
|
|
26944
26929
|
_proto.restart = function restart(includeDelay, suppressEvents) {
|
|
26945
|
-
|
|
26930
|
+
this.play().totalTime(includeDelay ? -this._delay : 0, _isNotFalse(suppressEvents));
|
|
26931
|
+
this._dur || (this._zTime = -_tinyNum);
|
|
26932
|
+
return this;
|
|
26946
26933
|
};
|
|
26947
26934
|
_proto.play = function play(from, suppressEvents) {
|
|
26948
26935
|
from != null && this.seek(from, suppressEvents);
|
|
@@ -27119,8 +27106,9 @@ void main(void)\r
|
|
|
27119
27106
|
iteration = this._repeat;
|
|
27120
27107
|
time = dur;
|
|
27121
27108
|
} else {
|
|
27122
|
-
|
|
27123
|
-
|
|
27109
|
+
prevIteration = _roundPrecise(tTime / cycleDuration);
|
|
27110
|
+
iteration = ~~prevIteration;
|
|
27111
|
+
if (iteration && iteration === prevIteration) {
|
|
27124
27112
|
time = dur;
|
|
27125
27113
|
iteration--;
|
|
27126
27114
|
}
|
|
@@ -27174,7 +27162,7 @@ void main(void)\r
|
|
|
27174
27162
|
this._zTime = totalTime;
|
|
27175
27163
|
prevTime = 0;
|
|
27176
27164
|
}
|
|
27177
|
-
if (!prevTime &&
|
|
27165
|
+
if (!prevTime && tTime && !suppressEvents && !prevIteration) {
|
|
27178
27166
|
_callback(this, "onStart");
|
|
27179
27167
|
if (this._tTime !== tTime) {
|
|
27180
27168
|
return this;
|
|
@@ -27206,7 +27194,7 @@ void main(void)\r
|
|
|
27206
27194
|
if (child.parent !== this) {
|
|
27207
27195
|
return this.render(totalTime, suppressEvents, force);
|
|
27208
27196
|
}
|
|
27209
|
-
child.render(child._ts > 0 ? (adjustedTime - child._start) * child._ts : (child._dirty ? child.totalDuration() : child._tDur) + (adjustedTime - child._start) * child._ts, suppressEvents, force || _reverting$1 && (child
|
|
27197
|
+
child.render(child._ts > 0 ? (adjustedTime - child._start) * child._ts : (child._dirty ? child.totalDuration() : child._tDur) + (adjustedTime - child._start) * child._ts, suppressEvents, force || _reverting$1 && _isRevertWorthy(child));
|
|
27210
27198
|
if (time !== this._time || !this._ts && !prevPaused) {
|
|
27211
27199
|
pauseTween = 0;
|
|
27212
27200
|
next && (tTime += this._zTime = adjustedTime ? -_tinyNum : _tinyNum);
|
|
@@ -27303,7 +27291,7 @@ void main(void)\r
|
|
|
27303
27291
|
if (_isFunction(child)) {
|
|
27304
27292
|
return this.killTweensOf(child);
|
|
27305
27293
|
}
|
|
27306
|
-
_removeLinkedListItem(this, child);
|
|
27294
|
+
child.parent === this && _removeLinkedListItem(this, child);
|
|
27307
27295
|
if (child === this._recent) {
|
|
27308
27296
|
this._recent = this._last;
|
|
27309
27297
|
}
|
|
@@ -27905,7 +27893,7 @@ void main(void)\r
|
|
|
27905
27893
|
var prevTime = this._time, tDur = this._tDur, dur = this._dur, isNegative = totalTime < 0, tTime = totalTime > tDur - _tinyNum && !isNegative ? tDur : totalTime < _tinyNum ? 0 : totalTime, time, pt, iteration, cycleDuration, prevIteration, isYoyo, ratio, timeline, yoyoEase;
|
|
27906
27894
|
if (!dur) {
|
|
27907
27895
|
_renderZeroDurationTween(this, totalTime, suppressEvents, force);
|
|
27908
|
-
} else if (tTime !== this._tTime || !totalTime || force || !this._initted && this._tTime || this._startAt && this._zTime < 0 !== isNegative) {
|
|
27896
|
+
} else if (tTime !== this._tTime || !totalTime || force || !this._initted && this._tTime || this._startAt && this._zTime < 0 !== isNegative || this._lazy) {
|
|
27909
27897
|
time = tTime;
|
|
27910
27898
|
timeline = this.timeline;
|
|
27911
27899
|
if (this._repeat) {
|
|
@@ -27918,12 +27906,14 @@ void main(void)\r
|
|
|
27918
27906
|
iteration = this._repeat;
|
|
27919
27907
|
time = dur;
|
|
27920
27908
|
} else {
|
|
27921
|
-
|
|
27922
|
-
|
|
27909
|
+
prevIteration = _roundPrecise(tTime / cycleDuration);
|
|
27910
|
+
iteration = ~~prevIteration;
|
|
27911
|
+
if (iteration && iteration === prevIteration) {
|
|
27923
27912
|
time = dur;
|
|
27924
27913
|
iteration--;
|
|
27914
|
+
} else if (time > dur) {
|
|
27915
|
+
time = dur;
|
|
27925
27916
|
}
|
|
27926
|
-
time > dur && (time = dur);
|
|
27927
27917
|
}
|
|
27928
27918
|
isYoyo = this._yoyo && iteration & 1;
|
|
27929
27919
|
if (isYoyo) {
|
|
@@ -27937,7 +27927,7 @@ void main(void)\r
|
|
|
27937
27927
|
}
|
|
27938
27928
|
if (iteration !== prevIteration) {
|
|
27939
27929
|
timeline && this._yEase && _propagateYoyoEase(timeline, isYoyo);
|
|
27940
|
-
if (this.vars.repeatRefresh && !isYoyo && !this._lock &&
|
|
27930
|
+
if (this.vars.repeatRefresh && !isYoyo && !this._lock && time !== cycleDuration && this._initted) {
|
|
27941
27931
|
this._lock = force = 1;
|
|
27942
27932
|
this.render(_roundPrecise(cycleDuration * iteration), true).invalidate()._lock = 0;
|
|
27943
27933
|
}
|
|
@@ -27965,7 +27955,7 @@ void main(void)\r
|
|
|
27965
27955
|
if (this._from) {
|
|
27966
27956
|
this.ratio = ratio = 1 - ratio;
|
|
27967
27957
|
}
|
|
27968
|
-
if (
|
|
27958
|
+
if (!prevTime && tTime && !suppressEvents && !prevIteration) {
|
|
27969
27959
|
_callback(this, "onStart");
|
|
27970
27960
|
if (this._tTime !== tTime) {
|
|
27971
27961
|
return this;
|
|
@@ -28022,7 +28012,8 @@ void main(void)\r
|
|
|
28022
28012
|
}
|
|
28023
28013
|
if (!targets && (!vars || vars === "all")) {
|
|
28024
28014
|
this._lazy = this._pt = 0;
|
|
28025
|
-
|
|
28015
|
+
this.parent ? _interrupt(this) : this.scrollTrigger && this.scrollTrigger.kill(!!_reverting$1);
|
|
28016
|
+
return this;
|
|
28026
28017
|
}
|
|
28027
28018
|
if (this.timeline) {
|
|
28028
28019
|
var tDur = this.timeline.totalDuration();
|
|
@@ -28469,8 +28460,8 @@ void main(void)\r
|
|
|
28469
28460
|
};
|
|
28470
28461
|
},
|
|
28471
28462
|
quickTo: function quickTo(target, property, vars) {
|
|
28472
|
-
var
|
|
28473
|
-
var tween = gsap.to(target,
|
|
28463
|
+
var _setDefaults2;
|
|
28464
|
+
var tween = gsap.to(target, _setDefaults((_setDefaults2 = {}, _setDefaults2[property] = "+=0.1", _setDefaults2.paused = true, _setDefaults2.stagger = 0, _setDefaults2), vars || {})), func = function func2(value, start, startIsRelative) {
|
|
28474
28465
|
return tween.resetTo(property, value, start, startIsRelative);
|
|
28475
28466
|
};
|
|
28476
28467
|
func.tween = tween;
|
|
@@ -28632,6 +28623,7 @@ void main(void)\r
|
|
|
28632
28623
|
}, _buildModifierPlugin = function _buildModifierPlugin2(name, modifier) {
|
|
28633
28624
|
return {
|
|
28634
28625
|
name,
|
|
28626
|
+
headless: 1,
|
|
28635
28627
|
rawVars: 1,
|
|
28636
28628
|
//don't pre-process function-based values or "random()" strings.
|
|
28637
28629
|
init: function init2(target, vars, tween) {
|
|
@@ -28678,6 +28670,7 @@ void main(void)\r
|
|
|
28678
28670
|
}
|
|
28679
28671
|
}, {
|
|
28680
28672
|
name: "endArray",
|
|
28673
|
+
headless: 1,
|
|
28681
28674
|
init: function init2(target, value) {
|
|
28682
28675
|
var i2 = value.length;
|
|
28683
28676
|
while (i2--) {
|
|
@@ -28685,7 +28678,7 @@ void main(void)\r
|
|
|
28685
28678
|
}
|
|
28686
28679
|
}
|
|
28687
28680
|
}, _buildModifierPlugin("roundProps", _roundModifier), _buildModifierPlugin("modifiers"), _buildModifierPlugin("snap", snap)) || _gsap;
|
|
28688
|
-
Tween.version = Timeline$1.version = gsap.version = "3.
|
|
28681
|
+
Tween.version = Timeline$1.version = gsap.version = "3.13.0";
|
|
28689
28682
|
_coreReady = 1;
|
|
28690
28683
|
_windowExists$1() && _wake();
|
|
28691
28684
|
_easeMap.Power0;
|
|
@@ -28707,12 +28700,11 @@ void main(void)\r
|
|
|
28707
28700
|
_easeMap.Expo;
|
|
28708
28701
|
_easeMap.Circ;
|
|
28709
28702
|
/*!
|
|
28710
|
-
* CSSPlugin 3.
|
|
28703
|
+
* CSSPlugin 3.13.0
|
|
28711
28704
|
* https://gsap.com
|
|
28712
28705
|
*
|
|
28713
|
-
* Copyright 2008-
|
|
28714
|
-
* Subject to the terms at https://gsap.com/standard-license
|
|
28715
|
-
* Club GSAP members, the agreement issued with that membership.
|
|
28706
|
+
* Copyright 2008-2025, GreenSock. All rights reserved.
|
|
28707
|
+
* Subject to the terms at https://gsap.com/standard-license
|
|
28716
28708
|
* @author: Jack Doyle, jack@greensock.com
|
|
28717
28709
|
*/
|
|
28718
28710
|
var _win, _doc, _docElement, _pluginInitted, _tempDiv, _recentSetterPlugin, _reverting, _windowExists = function _windowExists2() {
|
|
@@ -28785,7 +28777,13 @@ void main(void)\r
|
|
|
28785
28777
|
}, _revertStyle = function _revertStyle2() {
|
|
28786
28778
|
var props = this.props, target = this.target, style = target.style, cache = target._gsap, i2, p2;
|
|
28787
28779
|
for (i2 = 0; i2 < props.length; i2 += 3) {
|
|
28788
|
-
props[i2 + 1]
|
|
28780
|
+
if (!props[i2 + 1]) {
|
|
28781
|
+
props[i2 + 2] ? style[props[i2]] = props[i2 + 2] : style.removeProperty(props[i2].substr(0, 2) === "--" ? props[i2] : props[i2].replace(_capsExp, "-$1").toLowerCase());
|
|
28782
|
+
} else if (props[i2 + 1] === 2) {
|
|
28783
|
+
target[props[i2]](props[i2 + 2]);
|
|
28784
|
+
} else {
|
|
28785
|
+
target[props[i2]] = props[i2 + 2];
|
|
28786
|
+
}
|
|
28789
28787
|
}
|
|
28790
28788
|
if (this.tfm) {
|
|
28791
28789
|
for (p2 in this.tfm) {
|
|
@@ -28814,7 +28812,7 @@ void main(void)\r
|
|
|
28814
28812
|
save: _saveStyle
|
|
28815
28813
|
};
|
|
28816
28814
|
target._gsap || gsap.core.getCache(target);
|
|
28817
|
-
properties && properties.split(",").forEach(function(p2) {
|
|
28815
|
+
properties && target.style && target.nodeType && properties.split(",").forEach(function(p2) {
|
|
28818
28816
|
return saver.save(p2);
|
|
28819
28817
|
});
|
|
28820
28818
|
return saver;
|
|
@@ -28849,30 +28847,17 @@ void main(void)\r
|
|
|
28849
28847
|
_reverting = gsap.core.reverting;
|
|
28850
28848
|
_pluginInitted = 1;
|
|
28851
28849
|
}
|
|
28852
|
-
},
|
|
28853
|
-
var svg = _createElement("svg",
|
|
28850
|
+
}, _getReparentedCloneBBox = function _getReparentedCloneBBox2(target) {
|
|
28851
|
+
var owner = target.ownerSVGElement, svg = _createElement("svg", owner && owner.getAttribute("xmlns") || "http://www.w3.org/2000/svg"), clone2 = target.cloneNode(true), bbox;
|
|
28852
|
+
clone2.style.display = "block";
|
|
28853
|
+
svg.appendChild(clone2);
|
|
28854
28854
|
_docElement.appendChild(svg);
|
|
28855
|
-
|
|
28856
|
-
|
|
28857
|
-
|
|
28858
|
-
try {
|
|
28859
|
-
bbox = this.getBBox();
|
|
28860
|
-
this._gsapBBox = this.getBBox;
|
|
28861
|
-
this.getBBox = _getBBoxHack2;
|
|
28862
|
-
} catch (e2) {
|
|
28863
|
-
}
|
|
28864
|
-
} else if (this._gsapBBox) {
|
|
28865
|
-
bbox = this._gsapBBox();
|
|
28866
|
-
}
|
|
28867
|
-
if (oldParent) {
|
|
28868
|
-
if (oldSibling) {
|
|
28869
|
-
oldParent.insertBefore(this, oldSibling);
|
|
28870
|
-
} else {
|
|
28871
|
-
oldParent.appendChild(this);
|
|
28872
|
-
}
|
|
28855
|
+
try {
|
|
28856
|
+
bbox = clone2.getBBox();
|
|
28857
|
+
} catch (e2) {
|
|
28873
28858
|
}
|
|
28859
|
+
svg.removeChild(clone2);
|
|
28874
28860
|
_docElement.removeChild(svg);
|
|
28875
|
-
this.style.cssText = oldCSS;
|
|
28876
28861
|
return bbox;
|
|
28877
28862
|
}, _getAttributeFallbacks = function _getAttributeFallbacks2(target, attributesArray) {
|
|
28878
28863
|
var i2 = attributesArray.length;
|
|
@@ -28882,13 +28867,14 @@ void main(void)\r
|
|
|
28882
28867
|
}
|
|
28883
28868
|
}
|
|
28884
28869
|
}, _getBBox = function _getBBox2(target) {
|
|
28885
|
-
var bounds;
|
|
28870
|
+
var bounds, cloned;
|
|
28886
28871
|
try {
|
|
28887
28872
|
bounds = target.getBBox();
|
|
28888
28873
|
} catch (error) {
|
|
28889
|
-
bounds =
|
|
28874
|
+
bounds = _getReparentedCloneBBox(target);
|
|
28875
|
+
cloned = 1;
|
|
28890
28876
|
}
|
|
28891
|
-
bounds && (bounds.width || bounds.height) ||
|
|
28877
|
+
bounds && (bounds.width || bounds.height) || cloned || (bounds = _getReparentedCloneBBox(target));
|
|
28892
28878
|
return bounds && !bounds.width && !bounds.x && !bounds.y ? {
|
|
28893
28879
|
x: +_getAttributeFallbacks(target, ["x", "cx", "x1"]) || 0,
|
|
28894
28880
|
y: +_getAttributeFallbacks(target, ["y", "cy", "y1"]) || 0,
|
|
@@ -28939,7 +28925,7 @@ void main(void)\r
|
|
|
28939
28925
|
return _round(toPercent ? curValue / px * amount : curValue / 100 * px);
|
|
28940
28926
|
}
|
|
28941
28927
|
style[horizontal ? "width" : "height"] = amount + (toPixels ? curUnit : unit);
|
|
28942
|
-
parent = ~property.indexOf("adius") || unit === "em" && target.appendChild && !isRootSVG ? target : target.parentNode;
|
|
28928
|
+
parent = unit !== "rem" && ~property.indexOf("adius") || unit === "em" && target.appendChild && !isRootSVG ? target : target.parentNode;
|
|
28943
28929
|
if (isSVG) {
|
|
28944
28930
|
parent = (target.ownerSVGElement || {}).parentNode;
|
|
28945
28931
|
}
|
|
@@ -29004,6 +28990,9 @@ void main(void)\r
|
|
|
29004
28990
|
pt.e = end;
|
|
29005
28991
|
start += "";
|
|
29006
28992
|
end += "";
|
|
28993
|
+
if (end.substring(0, 6) === "var(--") {
|
|
28994
|
+
end = _getComputedProperty(target, end.substring(4, end.indexOf(")")));
|
|
28995
|
+
}
|
|
29007
28996
|
if (end === "auto") {
|
|
29008
28997
|
startValue = target.style[prop];
|
|
29009
28998
|
target.style[prop] = end;
|
|
@@ -29097,6 +29086,7 @@ void main(void)\r
|
|
|
29097
29086
|
_removeProperty(target, _transformProp);
|
|
29098
29087
|
if (cache) {
|
|
29099
29088
|
cache.svg && target.removeAttribute("transform");
|
|
29089
|
+
style.scale = style.rotate = style.translate = "none";
|
|
29100
29090
|
_parseTransform(target, 1);
|
|
29101
29091
|
cache.uncache = 1;
|
|
29102
29092
|
_removeIndependentTransforms(style);
|
|
@@ -29192,7 +29182,7 @@ void main(void)\r
|
|
|
29192
29182
|
temp = style.display;
|
|
29193
29183
|
style.display = "block";
|
|
29194
29184
|
parent = target.parentNode;
|
|
29195
|
-
if (!parent || !target.offsetParent) {
|
|
29185
|
+
if (!parent || !target.offsetParent && !target.getBoundingClientRect().width) {
|
|
29196
29186
|
addedToDOM = 1;
|
|
29197
29187
|
nextSibling = target.nextElementSibling;
|
|
29198
29188
|
_docElement.appendChild(target);
|
|
@@ -29628,6 +29618,10 @@ void main(void)\r
|
|
|
29628
29618
|
isTransformRelated = p2 in _transformProps;
|
|
29629
29619
|
if (isTransformRelated) {
|
|
29630
29620
|
this.styles.save(p2);
|
|
29621
|
+
if (type2 === "string" && endValue.substring(0, 6) === "var(--") {
|
|
29622
|
+
endValue = _getComputedProperty(target, endValue.substring(4, endValue.indexOf(")")));
|
|
29623
|
+
endNum = parseFloat(endValue);
|
|
29624
|
+
}
|
|
29631
29625
|
if (!transformPropTween) {
|
|
29632
29626
|
cache = target._gsap;
|
|
29633
29627
|
cache.renderTransform && !vars.parseTransform || _parseTransform(target, vars.parseTransform);
|
|
@@ -29691,7 +29685,7 @@ void main(void)\r
|
|
|
29691
29685
|
} else {
|
|
29692
29686
|
_tweenComplexCSSString.call(this, target, p2, startValue, relative ? relative + endValue : endValue);
|
|
29693
29687
|
}
|
|
29694
|
-
isTransformRelated || (p2 in style ? inlineProps.push(p2, 0, style[p2]) : inlineProps.push(p2, 1, startValue || target[p2]));
|
|
29688
|
+
isTransformRelated || (p2 in style ? inlineProps.push(p2, 0, style[p2]) : typeof target[p2] === "function" ? inlineProps.push(p2, 2, target[p2]()) : inlineProps.push(p2, 1, startValue || target[p2]));
|
|
29695
29689
|
props.push(p2);
|
|
29696
29690
|
}
|
|
29697
29691
|
}
|
|
@@ -32898,7 +32892,11 @@ void main(void)\r
|
|
|
32898
32892
|
/**
|
|
32899
32893
|
* past Spine.globalDelayLimit
|
|
32900
32894
|
*/
|
|
32901
|
-
GLOBAL_DELAY_LIMIT: 0
|
|
32895
|
+
GLOBAL_DELAY_LIMIT: 0,
|
|
32896
|
+
/**
|
|
32897
|
+
* shows error in console if atlas page loading somehow failed
|
|
32898
|
+
*/
|
|
32899
|
+
REPORT_TEXTURE_LOADER_ERROR: true
|
|
32902
32900
|
};
|
|
32903
32901
|
const tempRgb = [0, 0, 0];
|
|
32904
32902
|
class SpineSprite extends Sprite {
|
|
@@ -33293,6 +33291,9 @@ void main(void)\r
|
|
|
33293
33291
|
* @private
|
|
33294
33292
|
*/
|
|
33295
33293
|
createMesh(slot, attachment) {
|
|
33294
|
+
if (!attachment.region && attachment.sequence) {
|
|
33295
|
+
attachment.sequence.apply(slot, attachment);
|
|
33296
|
+
}
|
|
33296
33297
|
let region = attachment.region;
|
|
33297
33298
|
if (slot.hackAttachment === attachment) {
|
|
33298
33299
|
region = slot.hackRegion;
|
|
@@ -40000,9 +40001,16 @@ void main(void)\r
|
|
|
40000
40001
|
};
|
|
40001
40002
|
const makeSpineTextureAtlasLoaderFunctionFromPixiLoaderObject = (loader, atlasBasePath, imageMetadata) => {
|
|
40002
40003
|
return async (pageName, textureLoadedCallback) => {
|
|
40003
|
-
|
|
40004
|
-
|
|
40005
|
-
|
|
40004
|
+
try {
|
|
40005
|
+
const url = path.normalize([...atlasBasePath.split(path.sep), pageName].join(path.sep));
|
|
40006
|
+
const texture = await loader.load({ src: url, data: imageMetadata });
|
|
40007
|
+
textureLoadedCallback(texture.baseTexture);
|
|
40008
|
+
} catch (e2) {
|
|
40009
|
+
{
|
|
40010
|
+
console.error("Spine: error in texture loader", e2);
|
|
40011
|
+
}
|
|
40012
|
+
textureLoadedCallback(null);
|
|
40013
|
+
}
|
|
40006
40014
|
};
|
|
40007
40015
|
};
|
|
40008
40016
|
extensions$2.add(spineTextureAtlasLoader);
|
|
@@ -48955,7 +48963,7 @@ void main(void)\r
|
|
|
48955
48963
|
});
|
|
48956
48964
|
}
|
|
48957
48965
|
}
|
|
48958
|
-
|
|
48966
|
+
class LibPixiPerforMon extends Container {
|
|
48959
48967
|
constructor(app) {
|
|
48960
48968
|
super();
|
|
48961
48969
|
this.COLLECT_TIME = 5 * 1e3;
|
|
@@ -48968,10 +48976,6 @@ void main(void)\r
|
|
|
48968
48976
|
this._containerWidth = 590;
|
|
48969
48977
|
this._containerHeight = 50;
|
|
48970
48978
|
this.pivot.x = this._containerWidth / 2;
|
|
48971
|
-
this._resize(window.innerWidth, window.innerHeight);
|
|
48972
|
-
window.addEventListener("resize", () => {
|
|
48973
|
-
this._resize(window.innerWidth, window.innerHeight);
|
|
48974
|
-
});
|
|
48975
48979
|
this._bg = new LibPixiRectBgColor({
|
|
48976
48980
|
width: this._containerWidth,
|
|
48977
48981
|
height: this._containerHeight,
|
|
@@ -49059,22 +49063,8 @@ void main(void)\r
|
|
|
49059
49063
|
}
|
|
49060
49064
|
return color;
|
|
49061
49065
|
}
|
|
49062
|
-
|
|
49063
|
-
|
|
49064
|
-
this.x = 1920 / 2;
|
|
49065
|
-
} else if (_LibPixiPerforMon2.ADAPT_MODE === "v") {
|
|
49066
|
-
this.x = 1080 / 2;
|
|
49067
|
-
} else {
|
|
49068
|
-
if (w2 > h2) {
|
|
49069
|
-
this.x = 1920 / 2;
|
|
49070
|
-
} else {
|
|
49071
|
-
this.x = 1080 / 2;
|
|
49072
|
-
}
|
|
49073
|
-
}
|
|
49074
|
-
}
|
|
49075
|
-
};
|
|
49076
|
-
_LibPixiPerforMon.ADAPT_MODE = "hv";
|
|
49077
|
-
let LibPixiPerforMon = _LibPixiPerforMon;
|
|
49066
|
+
}
|
|
49067
|
+
LibPixiPerforMon.ADAPT_MODE = "hv";
|
|
49078
49068
|
class TextBox extends Container {
|
|
49079
49069
|
constructor(text, fontSize = 26) {
|
|
49080
49070
|
super();
|
|
@@ -54535,12 +54525,12 @@ void main(void)\r
|
|
|
54535
54525
|
const libPixiPromiseTickerTimeout = (delay = 1, callback) => {
|
|
54536
54526
|
return new Promise((resolve) => {
|
|
54537
54527
|
let elapsedTime = 0;
|
|
54538
|
-
const ticker2 =
|
|
54528
|
+
const ticker2 = Ticker.shared;
|
|
54539
54529
|
const tickerCallback = () => {
|
|
54540
54530
|
elapsedTime += ticker2.deltaMS;
|
|
54541
54531
|
if (elapsedTime >= delay) {
|
|
54542
54532
|
callback == null ? void 0 : callback();
|
|
54543
|
-
ticker2.
|
|
54533
|
+
ticker2.remove(tickerCallback);
|
|
54544
54534
|
resolve();
|
|
54545
54535
|
}
|
|
54546
54536
|
};
|
|
@@ -54831,24 +54821,18 @@ void main(void){
|
|
|
54831
54821
|
};
|
|
54832
54822
|
const libPixiTickerTimeout = (callback, delay = 1) => {
|
|
54833
54823
|
let elapsedTime = 0;
|
|
54834
|
-
const ticker2 =
|
|
54824
|
+
const ticker2 = Ticker.shared;
|
|
54835
54825
|
const tickerCallback = () => {
|
|
54836
54826
|
elapsedTime += ticker2.deltaMS;
|
|
54837
54827
|
if (elapsedTime >= delay) {
|
|
54838
54828
|
callback == null ? void 0 : callback();
|
|
54839
|
-
|
|
54840
|
-
ticker2.destroy();
|
|
54841
|
-
} catch (error) {
|
|
54842
|
-
}
|
|
54829
|
+
ticker2.remove(tickerCallback);
|
|
54843
54830
|
}
|
|
54844
54831
|
};
|
|
54845
54832
|
ticker2.add(tickerCallback);
|
|
54846
54833
|
ticker2.start();
|
|
54847
54834
|
return () => {
|
|
54848
|
-
|
|
54849
|
-
ticker2.destroy();
|
|
54850
|
-
} catch (error) {
|
|
54851
|
-
}
|
|
54835
|
+
ticker2.remove(tickerCallback);
|
|
54852
54836
|
};
|
|
54853
54837
|
};
|
|
54854
54838
|
class LibPixiSlideInput {
|
|
@@ -55439,10 +55423,10 @@ void main(void){
|
|
|
55439
55423
|
}
|
|
55440
55424
|
}
|
|
55441
55425
|
/*!
|
|
55442
|
-
* decimal.js v10.
|
|
55426
|
+
* decimal.js v10.5.0
|
|
55443
55427
|
* An arbitrary-precision Decimal type for JavaScript.
|
|
55444
55428
|
* https://github.com/MikeMcl/decimal.js
|
|
55445
|
-
* Copyright (c)
|
|
55429
|
+
* Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
|
|
55446
55430
|
* MIT Licence
|
|
55447
55431
|
*/
|
|
55448
55432
|
var EXP_LIMIT = 9e15, MAX_DIGITS = 1e9, NUMERALS = "0123456789abcdef", LN10 = "2.3025850929940456840179914546843642076011014886287729760333279009675726096773524802359972050895982983419677840422862486334095254650828067566662873690987816894829072083255546808437998948262331985283935053089653777326288461633662222876982198867465436674744042432743651550489343149393914796194044002221051017141748003688084012647080685567743216228355220114804663715659121373450747856947683463616792101806445070648000277502684916746550586856935673420670581136429224554405758925724208241314695689016758940256776311356919292033376587141660230105703089634572075440370847469940168269282808481184289314848524948644871927809676271275775397027668605952496716674183485704422507197965004714951050492214776567636938662976979522110718264549734772662425709429322582798502585509785265383207606726317164309505995087807523710333101197857547331541421808427543863591778117054309827482385045648019095610299291824318237525357709750539565187697510374970888692180205189339507238539205144634197265287286965110862571492198849978748873771345686209167058", PI = "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632789", DEFAULTS = {
|
|
@@ -55711,7 +55695,7 @@ void main(void){
|
|
|
55711
55695
|
return divide(x2.sinh(), x2.cosh(), Ctor.precision = pr, Ctor.rounding = rm);
|
|
55712
55696
|
};
|
|
55713
55697
|
P.inverseCosine = P.acos = function() {
|
|
55714
|
-
var
|
|
55698
|
+
var x2 = this, Ctor = x2.constructor, k2 = x2.abs().cmp(1), pr = Ctor.precision, rm = Ctor.rounding;
|
|
55715
55699
|
if (k2 !== -1) {
|
|
55716
55700
|
return k2 === 0 ? x2.isNeg() ? getPi(Ctor, pr, rm) : new Ctor(0) : new Ctor(NaN);
|
|
55717
55701
|
}
|
|
@@ -55719,11 +55703,10 @@ void main(void){
|
|
|
55719
55703
|
return getPi(Ctor, pr + 4, rm).times(0.5);
|
|
55720
55704
|
Ctor.precision = pr + 6;
|
|
55721
55705
|
Ctor.rounding = 1;
|
|
55722
|
-
x2 = x2.
|
|
55723
|
-
halfPi = getPi(Ctor, pr + 4, rm).times(0.5);
|
|
55706
|
+
x2 = new Ctor(1).minus(x2).div(x2.plus(1)).sqrt().atan();
|
|
55724
55707
|
Ctor.precision = pr;
|
|
55725
55708
|
Ctor.rounding = rm;
|
|
55726
|
-
return
|
|
55709
|
+
return x2.times(2);
|
|
55727
55710
|
};
|
|
55728
55711
|
P.inverseHyperbolicCosine = P.acosh = function() {
|
|
55729
55712
|
var pr, rm, x2 = this, Ctor = x2.constructor;
|
|
@@ -56935,14 +56918,16 @@ void main(void){
|
|
|
56935
56918
|
function isOdd(n2) {
|
|
56936
56919
|
return n2.d[n2.d.length - 1] & 1;
|
|
56937
56920
|
}
|
|
56938
|
-
function maxOrMin(Ctor, args,
|
|
56939
|
-
var y2, x2 = new Ctor(args[0]), i2 = 0;
|
|
56921
|
+
function maxOrMin(Ctor, args, n2) {
|
|
56922
|
+
var k2, y2, x2 = new Ctor(args[0]), i2 = 0;
|
|
56940
56923
|
for (; ++i2 < args.length; ) {
|
|
56941
56924
|
y2 = new Ctor(args[i2]);
|
|
56942
56925
|
if (!y2.s) {
|
|
56943
56926
|
x2 = y2;
|
|
56944
56927
|
break;
|
|
56945
|
-
}
|
|
56928
|
+
}
|
|
56929
|
+
k2 = x2.cmp(y2);
|
|
56930
|
+
if (k2 === n2 || k2 === 0 && x2.s === n2) {
|
|
56946
56931
|
x2 = y2;
|
|
56947
56932
|
}
|
|
56948
56933
|
}
|
|
@@ -57523,7 +57508,8 @@ void main(void){
|
|
|
57523
57508
|
x2.d = [v2];
|
|
57524
57509
|
}
|
|
57525
57510
|
return;
|
|
57526
|
-
}
|
|
57511
|
+
}
|
|
57512
|
+
if (v2 * 0 !== 0) {
|
|
57527
57513
|
if (!v2)
|
|
57528
57514
|
x2.s = NaN;
|
|
57529
57515
|
x2.e = NaN;
|
|
@@ -57531,18 +57517,28 @@ void main(void){
|
|
|
57531
57517
|
return;
|
|
57532
57518
|
}
|
|
57533
57519
|
return parseDecimal(x2, v2.toString());
|
|
57534
|
-
} else if (t2 !== "string") {
|
|
57535
|
-
throw Error(invalidArgument + v2);
|
|
57536
57520
|
}
|
|
57537
|
-
if (
|
|
57538
|
-
|
|
57539
|
-
x2.s = -1;
|
|
57540
|
-
} else {
|
|
57541
|
-
if (i3 === 43)
|
|
57521
|
+
if (t2 === "string") {
|
|
57522
|
+
if ((i3 = v2.charCodeAt(0)) === 45) {
|
|
57542
57523
|
v2 = v2.slice(1);
|
|
57543
|
-
|
|
57524
|
+
x2.s = -1;
|
|
57525
|
+
} else {
|
|
57526
|
+
if (i3 === 43)
|
|
57527
|
+
v2 = v2.slice(1);
|
|
57528
|
+
x2.s = 1;
|
|
57529
|
+
}
|
|
57530
|
+
return isDecimal.test(v2) ? parseDecimal(x2, v2) : parseOther(x2, v2);
|
|
57544
57531
|
}
|
|
57545
|
-
|
|
57532
|
+
if (t2 === "bigint") {
|
|
57533
|
+
if (v2 < 0) {
|
|
57534
|
+
v2 = -v2;
|
|
57535
|
+
x2.s = -1;
|
|
57536
|
+
} else {
|
|
57537
|
+
x2.s = 1;
|
|
57538
|
+
}
|
|
57539
|
+
return parseDecimal(x2, v2.toString());
|
|
57540
|
+
}
|
|
57541
|
+
throw Error(invalidArgument + v2);
|
|
57546
57542
|
}
|
|
57547
57543
|
Decimal2.prototype = P;
|
|
57548
57544
|
Decimal2.ROUND_UP = 0;
|
|
@@ -57652,10 +57648,10 @@ void main(void){
|
|
|
57652
57648
|
return new this(x2).log(10);
|
|
57653
57649
|
}
|
|
57654
57650
|
function max() {
|
|
57655
|
-
return maxOrMin(this, arguments,
|
|
57651
|
+
return maxOrMin(this, arguments, -1);
|
|
57656
57652
|
}
|
|
57657
57653
|
function min() {
|
|
57658
|
-
return maxOrMin(this, arguments,
|
|
57654
|
+
return maxOrMin(this, arguments, 1);
|
|
57659
57655
|
}
|
|
57660
57656
|
function mod(x2, y2) {
|
|
57661
57657
|
return new this(x2).mod(y2);
|
|
@@ -57852,6 +57848,24 @@ void main(void){
|
|
|
57852
57848
|
}
|
|
57853
57849
|
});
|
|
57854
57850
|
};
|
|
57851
|
+
class LibPixiTriangle extends Graphics {
|
|
57852
|
+
constructor(dots, color) {
|
|
57853
|
+
super();
|
|
57854
|
+
this.beginFill(color);
|
|
57855
|
+
this.moveTo(0, 0);
|
|
57856
|
+
this.lineTo(dots[0][0], dots[0][1]);
|
|
57857
|
+
this.lineTo(dots[1][0], dots[1][1]);
|
|
57858
|
+
this.endFill();
|
|
57859
|
+
}
|
|
57860
|
+
}
|
|
57861
|
+
class LibPixiCapsule extends Graphics {
|
|
57862
|
+
constructor(width, height, color) {
|
|
57863
|
+
super();
|
|
57864
|
+
this.beginFill(color);
|
|
57865
|
+
this.drawRoundedRect(0, 0, width, height, width / 2);
|
|
57866
|
+
this.endFill();
|
|
57867
|
+
}
|
|
57868
|
+
}
|
|
57855
57869
|
class LibDestroyContainer extends Container {
|
|
57856
57870
|
constructor() {
|
|
57857
57871
|
super();
|
|
@@ -58204,6 +58218,10 @@ void main(void){
|
|
|
58204
58218
|
LibPixiLabelValue,
|
|
58205
58219
|
/** @description 设计图背景拼接 */
|
|
58206
58220
|
LibPixiPuzzleBg,
|
|
58221
|
+
/** @description 胶囊体 */
|
|
58222
|
+
LibPixiCapsule,
|
|
58223
|
+
/** @description 三角形 */
|
|
58224
|
+
LibPixiTriangle,
|
|
58207
58225
|
/** @description 元素拖拽定位 */
|
|
58208
58226
|
LibPixiDragLocate
|
|
58209
58227
|
}
|