lyb-pixi-js 1.11.3 → 1.11.5

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.
@@ -30,6 +30,8 @@ export interface LibPixiSlideParams {
30
30
  * @link 使用方法:https://www.npmjs.com/package/lyb-pixi-js#LibPixiSlide-滑动页
31
31
  */
32
32
  export declare class LibPixiSlide extends LibPixiContainer {
33
+ /** 舞台 */
34
+ private _stage;
33
35
  /** 滑动加速度触发翻页 */
34
36
  private _SPEED_THRESHOLD;
35
37
  /** 滑动比例翻页 */
@@ -1,7 +1,7 @@
1
1
  import { Graphics } from "pixi.js";
2
2
  import gsap from "gsap";
3
- import { LibPixiContainer } from "../Base/LibPixiContainer";
4
3
  import { libPixiEvent } from "../../Utils/LibPixiEvent";
4
+ import { LibPixiContainer } from "../Base/LibPixiContainer";
5
5
  /** @description 滑动页
6
6
  * @link 使用方法:https://www.npmjs.com/package/lyb-pixi-js#LibPixiSlide-滑动页
7
7
  */
@@ -37,6 +37,7 @@ export class LibPixiSlide extends LibPixiContainer {
37
37
  this._startTime = new Date().getTime();
38
38
  /** 是否正在拖动 */
39
39
  this._isDragging = false;
40
+ this._stage = stage;
40
41
  const mask = new Graphics();
41
42
  mask.beginFill(0xffffff);
42
43
  mask.drawRect(0, 0, this.width, this.height);
@@ -67,7 +68,7 @@ export class LibPixiSlide extends LibPixiContainer {
67
68
  this._setDepth();
68
69
  libPixiEvent(this, "pointerdown", this._onDragStart.bind(this));
69
70
  libPixiEvent(stage, "pointermove", this._onDragMove.bind(this));
70
- window.addEventListener("pointerup", this._onDragEnd.bind(this));
71
+ libPixiEvent(stage, "pointerup", this._onDragEnd.bind(this));
71
72
  }
72
73
  /** @description 更新坐标 */
73
74
  updatePosition(v, index) {
@@ -180,15 +181,16 @@ export class LibPixiSlide extends LibPixiContainer {
180
181
  }
181
182
  /** @description 开始拖动 */
182
183
  _onDragStart(event) {
184
+ const { x, y } = this._stage.toLocal(event.global);
183
185
  this._isDragging = true;
184
186
  gsap.killTweensOf(this._slideArea);
185
187
  this._startTime = new Date().getTime();
186
188
  if (this._direction === "x") {
187
- this._startX = event.global.x;
189
+ this._startX = x;
188
190
  this._offsetX = this._slideArea.x;
189
191
  }
190
192
  else {
191
- this._startY = event.global.y;
193
+ this._startY = y;
192
194
  this._offsetY = this._slideArea.y;
193
195
  }
194
196
  }
@@ -196,12 +198,13 @@ export class LibPixiSlide extends LibPixiContainer {
196
198
  _onDragMove(event) {
197
199
  if (!this._isDragging)
198
200
  return;
201
+ const { x, y } = this._stage.toLocal(event.global);
199
202
  if (this._direction === "x") {
200
- const moveX = event.pageX - this._startX;
203
+ const moveX = x - this._startX;
201
204
  this._slideArea.x = this._offsetX + moveX;
202
205
  }
203
206
  else {
204
- const moveY = event.pageY - this._startY;
207
+ const moveY = y - this._startY;
205
208
  this._slideArea.y = this._offsetY + moveY;
206
209
  }
207
210
  this._onScroll();
@@ -219,6 +222,7 @@ export class LibPixiSlide extends LibPixiContainer {
219
222
  }
220
223
  /** @description 结束拖动 */
221
224
  _onDragEnd(event) {
225
+ const { x, y } = this._stage.toLocal(event.global);
222
226
  if (this._direction === "x") {
223
227
  if (!this._isDragging)
224
228
  return;
@@ -226,7 +230,7 @@ export class LibPixiSlide extends LibPixiContainer {
226
230
  //滑动耗时
227
231
  const slideTime = new Date().getTime() - this._startTime;
228
232
  //滑动距离
229
- const slide = this._startX - event.pageX;
233
+ const slide = this._startX - x;
230
234
  //滑动速度
231
235
  const slideSpeed = Math.abs(slide) / slideTime;
232
236
  //要滑动的页数
@@ -255,7 +259,7 @@ export class LibPixiSlide extends LibPixiContainer {
255
259
  //滑动耗时
256
260
  const slideTime = new Date().getTime() - this._startTime;
257
261
  //滑动距离
258
- const slide = this._startY - event.pageY;
262
+ const slide = this._startY - y;
259
263
  //滑动速度
260
264
  const slideSpeed = Math.abs(slide) / slideTime;
261
265
  //要滑动的页数
@@ -0,0 +1,9 @@
1
+ import { Container } from "pixi.js";
2
+ /**
3
+ * @description 按照指定方向(水平或垂直)排列元素,支持固定间隔或自定义每个间隔。
4
+ * @param items 要排列的元素数组。
5
+ * @param gap 元素之间的间隔,可以是固定间隔或自定义的间隔数组。
6
+ * @param direction 排列方向,"x"表示水平,"y"表示垂直,默认为水平。
7
+ * @link 使用方法:https://www.npmjs.com/package/lyb-pixi-js#LibArrangeLinear-间隔布局
8
+ */
9
+ export declare const LibArrangeLinear: (items: Container[], gap: number | number[], direction?: "x" | "y") => void;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * @description 按照指定方向(水平或垂直)排列元素,支持固定间隔或自定义每个间隔。
3
+ * @param items 要排列的元素数组。
4
+ * @param gap 元素之间的间隔,可以是固定间隔或自定义的间隔数组。
5
+ * @param direction 排列方向,"x"表示水平,"y"表示垂直,默认为水平。
6
+ * @link 使用方法:https://www.npmjs.com/package/lyb-pixi-js#LibArrangeLinear-间隔布局
7
+ */
8
+ export const LibArrangeLinear = (items, gap, direction = "x") => {
9
+ if (Array.isArray(gap)) {
10
+ if (gap.length !== items.length - 1) {
11
+ console.error(new Error("间隔的数组长度只能等于元素数组长度-1"));
12
+ return;
13
+ }
14
+ }
15
+ let lastPosition = 0;
16
+ items.forEach((item, index) => {
17
+ const position = index === 0
18
+ ? 0
19
+ : lastPosition + (Array.isArray(gap) ? gap[index - 1] : gap);
20
+ if (direction === "x") {
21
+ item.x = position;
22
+ lastPosition = item.x + item.width;
23
+ }
24
+ else {
25
+ item.y = position;
26
+ lastPosition = item.y + item.height;
27
+ }
28
+ });
29
+ };
@@ -0,0 +1,7 @@
1
+ import { Container } from "pixi.js";
2
+ /** @description 触发后代监听
3
+ * @param container 容器
4
+ * @param event 事件名称
5
+ * @param payload 事件携带数据
6
+ */
7
+ export declare const LibEmitContainerEvent: (container: Container, event: string, payload?: any) => void;
@@ -0,0 +1,13 @@
1
+ /** @description 触发后代监听
2
+ * @param container 容器
3
+ * @param event 事件名称
4
+ * @param payload 事件携带数据
5
+ */
6
+ export const LibEmitContainerEvent = (container, event, payload) => {
7
+ container.children.forEach((child) => {
8
+ child.emit(event, payload);
9
+ if ("children" in child) {
10
+ LibEmitContainerEvent(child, event, payload);
11
+ }
12
+ });
13
+ };
@@ -15,6 +15,8 @@ export declare class LibPixiDialog extends LibPixiBaseContainer {
15
15
  /** 动画时长 */
16
16
  static durationIn: number;
17
17
  static durationOut: number;
18
+ /** 是否支持横竖版 */
19
+ static adaptation: boolean;
18
20
  /** 蒙版UI */
19
21
  private _maskUI;
20
22
  /** 内容容器 */
@@ -63,7 +63,7 @@ export class LibPixiDialog extends LibPixiBaseContainer {
63
63
  duration: LibPixiDialog.durationIn,
64
64
  alpha: 1,
65
65
  });
66
- const resize = new LibJsResizeWatcher();
66
+ const resize = new LibJsResizeWatcher(LibPixiDialog.adaptation ? "hv" : "h");
67
67
  this._offResize = resize.on((w, h) => {
68
68
  const halfW = 1920 / 2;
69
69
  const halfH = 1080 / 2;
@@ -125,3 +125,5 @@ LibPixiDialog.bgAlpha = 0.5;
125
125
  /** 动画时长 */
126
126
  LibPixiDialog.durationIn = 0.5;
127
127
  LibPixiDialog.durationOut = 0.5;
128
+ /** 是否支持横竖版 */
129
+ LibPixiDialog.adaptation = true;
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$1(obj), 8, -1) : protoTag ? "Object" : "";
1318
+ var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(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,29 +1336,26 @@
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
- }
1342
1339
  function isArray$3(obj) {
1343
- return toStr$1(obj) === "[object Array]" && canTrustToString(obj);
1340
+ return toStr(obj) === "[object Array]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
1344
1341
  }
1345
1342
  function isDate(obj) {
1346
- return toStr$1(obj) === "[object Date]" && canTrustToString(obj);
1343
+ return toStr(obj) === "[object Date]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
1347
1344
  }
1348
1345
  function isRegExp$1(obj) {
1349
- return toStr$1(obj) === "[object RegExp]" && canTrustToString(obj);
1346
+ return toStr(obj) === "[object RegExp]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
1350
1347
  }
1351
1348
  function isError(obj) {
1352
- return toStr$1(obj) === "[object Error]" && canTrustToString(obj);
1349
+ return toStr(obj) === "[object Error]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
1353
1350
  }
1354
1351
  function isString(obj) {
1355
- return toStr$1(obj) === "[object String]" && canTrustToString(obj);
1352
+ return toStr(obj) === "[object String]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
1356
1353
  }
1357
1354
  function isNumber(obj) {
1358
- return toStr$1(obj) === "[object Number]" && canTrustToString(obj);
1355
+ return toStr(obj) === "[object Number]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
1359
1356
  }
1360
1357
  function isBoolean(obj) {
1361
- return toStr$1(obj) === "[object Boolean]" && canTrustToString(obj);
1358
+ return toStr(obj) === "[object Boolean]" && (!toStringTag || !(typeof obj === "object" && toStringTag in obj));
1362
1359
  }
1363
1360
  function isSymbol(obj) {
1364
1361
  if (hasShammedSymbols) {
@@ -1394,7 +1391,7 @@
1394
1391
  function has$3(obj, key) {
1395
1392
  return hasOwn$1.call(obj, key);
1396
1393
  }
1397
- function toStr$1(obj) {
1394
+ function toStr(obj) {
1398
1395
  return objectToString.call(obj);
1399
1396
  }
1400
1397
  function nameOf(f2) {
@@ -1703,7 +1700,7 @@
1703
1700
  var uri = URIError;
1704
1701
  var abs$2 = Math.abs;
1705
1702
  var floor$2 = Math.floor;
1706
- var max$3 = Math.max;
1703
+ var max$2 = Math.max;
1707
1704
  var min$2 = Math.min;
1708
1705
  var pow$2 = Math.pow;
1709
1706
  var round$3 = Math.round;
@@ -1836,78 +1833,102 @@
1836
1833
  Object_getPrototypeOf = $Object2.getPrototypeOf || null;
1837
1834
  return Object_getPrototypeOf;
1838
1835
  }
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;
1836
+ var implementation;
1837
+ var hasRequiredImplementation;
1838
+ function requireImplementation() {
1839
+ if (hasRequiredImplementation)
1840
+ return implementation;
1841
+ hasRequiredImplementation = 1;
1842
+ var ERROR_MESSAGE = "Function.prototype.bind called on incompatible ";
1843
+ var toStr2 = Object.prototype.toString;
1844
+ var max2 = Math.max;
1845
+ var funcType = "[object Function]";
1846
+ var concatty = function concatty2(a2, b2) {
1847
+ var arr = [];
1848
+ for (var i2 = 0; i2 < a2.length; i2 += 1) {
1849
+ arr[i2] = a2[i2];
1866
1850
  }
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,
1881
- concatty(args, arguments)
1882
- );
1883
- if (Object(result) === result) {
1884
- return result;
1851
+ for (var j2 = 0; j2 < b2.length; j2 += 1) {
1852
+ arr[j2 + a2.length] = b2[j2];
1853
+ }
1854
+ return arr;
1855
+ };
1856
+ var slicy = function slicy2(arrLike, offset) {
1857
+ var arr = [];
1858
+ for (var i2 = offset || 0, j2 = 0; i2 < arrLike.length; i2 += 1, j2 += 1) {
1859
+ arr[j2] = arrLike[i2];
1860
+ }
1861
+ return arr;
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;
1885
1869
  }
1886
- return this;
1887
1870
  }
1888
- return target.apply(
1889
- that,
1890
- concatty(args, arguments)
1891
- );
1871
+ return str;
1892
1872
  };
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() {
1873
+ implementation = function bind2(that) {
1874
+ var target = this;
1875
+ if (typeof target !== "function" || toStr2.apply(target) !== funcType) {
1876
+ throw new TypeError(ERROR_MESSAGE + target);
1877
+ }
1878
+ var args = slicy(arguments, 1);
1879
+ var bound;
1880
+ var binder = function() {
1881
+ if (this instanceof bound) {
1882
+ var result = target.apply(
1883
+ this,
1884
+ concatty(args, arguments)
1885
+ );
1886
+ if (Object(result) === result) {
1887
+ return result;
1888
+ }
1889
+ return this;
1890
+ }
1891
+ return target.apply(
1892
+ that,
1893
+ concatty(args, arguments)
1894
+ );
1901
1895
  };
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;
1896
+ var boundLength = max2(0, target.length - args.length);
1897
+ var boundArgs = [];
1898
+ for (var i2 = 0; i2 < boundLength; i2++) {
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;
1908
+ }
1909
+ return bound;
1910
+ };
1911
+ return implementation;
1912
+ }
1913
+ var functionBind;
1914
+ var hasRequiredFunctionBind;
1915
+ function requireFunctionBind() {
1916
+ if (hasRequiredFunctionBind)
1917
+ return functionBind;
1918
+ hasRequiredFunctionBind = 1;
1919
+ var implementation2 = requireImplementation();
1920
+ functionBind = Function.prototype.bind || implementation2;
1921
+ return functionBind;
1922
+ }
1923
+ var functionCall;
1924
+ var hasRequiredFunctionCall;
1925
+ function requireFunctionCall() {
1926
+ if (hasRequiredFunctionCall)
1927
+ return functionCall;
1928
+ hasRequiredFunctionCall = 1;
1929
+ functionCall = Function.prototype.call;
1930
+ return functionCall;
1931
+ }
1911
1932
  var functionApply;
1912
1933
  var hasRequiredFunctionApply;
1913
1934
  function requireFunctionApply() {
@@ -1918,14 +1939,14 @@
1918
1939
  return functionApply;
1919
1940
  }
1920
1941
  var reflectApply = typeof Reflect !== "undefined" && Reflect && Reflect.apply;
1921
- var bind$2 = functionBind;
1942
+ var bind$2 = requireFunctionBind();
1922
1943
  var $apply$1 = requireFunctionApply();
1923
- var $call$2 = functionCall;
1944
+ var $call$2 = requireFunctionCall();
1924
1945
  var $reflectApply = reflectApply;
1925
1946
  var actualApply = $reflectApply || bind$2.call($call$2, $apply$1);
1926
- var bind$1 = functionBind;
1947
+ var bind$1 = requireFunctionBind();
1927
1948
  var $TypeError$4 = type;
1928
- var $call$1 = functionCall;
1949
+ var $call$1 = requireFunctionCall();
1929
1950
  var $actualApply = actualApply;
1930
1951
  var callBindApplyHelpers = function callBindBasic2(args) {
1931
1952
  if (args.length < 1 || typeof args[0] !== "function") {
@@ -1994,7 +2015,7 @@
1994
2015
  hasRequiredHasown = 1;
1995
2016
  var call = Function.prototype.call;
1996
2017
  var $hasOwn = Object.prototype.hasOwnProperty;
1997
- var bind2 = functionBind;
2018
+ var bind2 = requireFunctionBind();
1998
2019
  hasown = bind2.call(call, $hasOwn);
1999
2020
  return hasown;
2000
2021
  }
@@ -2009,7 +2030,7 @@
2009
2030
  var $URIError = uri;
2010
2031
  var abs$1 = abs$2;
2011
2032
  var floor$1 = floor$2;
2012
- var max$1 = max$3;
2033
+ var max$1 = max$2;
2013
2034
  var min$1 = min$2;
2014
2035
  var pow$1 = pow$2;
2015
2036
  var round$2 = round$3;
@@ -2043,7 +2064,7 @@
2043
2064
  var $ObjectGPO = requireObject_getPrototypeOf();
2044
2065
  var $ReflectGPO = requireReflect_getPrototypeOf();
2045
2066
  var $apply = requireFunctionApply();
2046
- var $call = functionCall;
2067
+ var $call = requireFunctionCall();
2047
2068
  var needsEval = {};
2048
2069
  var TypedArray = typeof Uint8Array === "undefined" || !getProto ? undefined$1 : getProto(Uint8Array);
2049
2070
  var INTRINSICS = {
@@ -2072,7 +2093,6 @@
2072
2093
  "%eval%": eval,
2073
2094
  // eslint-disable-line no-eval
2074
2095
  "%EvalError%": $EvalError,
2075
- "%Float16Array%": typeof Float16Array === "undefined" ? undefined$1 : Float16Array,
2076
2096
  "%Float32Array%": typeof Float32Array === "undefined" ? undefined$1 : Float32Array,
2077
2097
  "%Float64Array%": typeof Float64Array === "undefined" ? undefined$1 : Float64Array,
2078
2098
  "%FinalizationRegistry%": typeof FinalizationRegistry === "undefined" ? undefined$1 : FinalizationRegistry,
@@ -2214,7 +2234,7 @@
2214
2234
  "%WeakMapPrototype%": ["WeakMap", "prototype"],
2215
2235
  "%WeakSetPrototype%": ["WeakSet", "prototype"]
2216
2236
  };
2217
- var bind = functionBind;
2237
+ var bind = requireFunctionBind();
2218
2238
  var hasOwn = requireHasown();
2219
2239
  var $concat = bind.call($call, Array.prototype.concat);
2220
2240
  var $spliceApply = bind.call($apply, Array.prototype.splice);
@@ -2326,14 +2346,11 @@
2326
2346
  var $indexOf = callBindBasic([GetIntrinsic$2("%String.prototype.indexOf%")]);
2327
2347
  var callBound$2 = function callBoundIntrinsic(name, allowMissing) {
2328
2348
  var intrinsic = (
2329
- /** @type {(this: unknown, ...args: unknown[]) => unknown} */
2349
+ /** @type {Parameters<typeof callBindBasic>[0][0]} */
2330
2350
  GetIntrinsic$2(name, !!allowMissing)
2331
2351
  );
2332
2352
  if (typeof intrinsic === "function" && $indexOf(name, ".prototype.") > -1) {
2333
- return callBindBasic(
2334
- /** @type {const} */
2335
- [intrinsic]
2336
- );
2353
+ return callBindBasic([intrinsic]);
2337
2354
  }
2338
2355
  return intrinsic;
2339
2356
  };
@@ -10954,7 +10971,7 @@ void main(void)
10954
10971
  */
10955
10972
  run(options) {
10956
10973
  const { renderer } = this;
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);
10974
+ renderer.runners.init.emit(renderer.options), options.hello && console.log(`PixiJS 7.4.2 - ${renderer.rendererLogId} - https://pixijs.com`), renderer.resize(renderer.screen.width, renderer.screen.height);
10958
10975
  }
10959
10976
  destroy() {
10960
10977
  }
@@ -18205,8 +18222,7 @@ void main()
18205
18222
  if (keys.forEach((key2) => {
18206
18223
  this._cacheMap.set(key2, cachedAssets);
18207
18224
  }), cacheKeys.forEach((key2) => {
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]);
18225
+ this._cache.has(key2) && this._cache.get(key2) !== value && console.warn("[Cache] already has key:", key2), this._cache.set(key2, cacheableAssets[key2]);
18210
18226
  }), value instanceof Texture) {
18211
18227
  const texture = value;
18212
18228
  keys.forEach((key2) => {
@@ -25722,11 +25738,12 @@ void main(void)\r
25722
25738
  subClass.__proto__ = superClass;
25723
25739
  }
25724
25740
  /*!
25725
- * GSAP 3.13.0
25741
+ * GSAP 3.12.5
25726
25742
  * https://gsap.com
25727
25743
  *
25728
- * @license Copyright 2008-2025, GreenSock. All rights reserved.
25729
- * Subject to the terms at https://gsap.com/standard-license
25744
+ * @license Copyright 2008-2024, GreenSock. All rights reserved.
25745
+ * Subject to the terms at https://gsap.com/standard-license or for
25746
+ * Club GSAP members, the agreement issued with that membership.
25730
25747
  * @author: Jack Doyle, jack@greensock.com
25731
25748
  */
25732
25749
  var _config = {
@@ -25817,11 +25834,9 @@ void main(void)\r
25817
25834
  tween = a2[i2];
25818
25835
  tween && tween._lazy && (tween.render(tween._lazy[0], tween._lazy[1], true)._lazy = 0);
25819
25836
  }
25820
- }, _isRevertWorthy = function _isRevertWorthy2(animation) {
25821
- return !!(animation._initted || animation._startAt || animation.add);
25822
25837
  }, _lazySafeRender = function _lazySafeRender2(animation, time, suppressEvents, force) {
25823
25838
  _lazyTweens.length && !_reverting$1 && _lazyRender();
25824
- animation.render(time, suppressEvents, force || !!(_reverting$1 && time < 0 && _isRevertWorthy(animation)));
25839
+ animation.render(time, suppressEvents, force || _reverting$1 && time < 0 && (animation._initted || animation._startAt));
25825
25840
  _lazyTweens.length && !_reverting$1 && _lazyRender();
25826
25841
  }, _numericIfPossible = function _numericIfPossible2(value) {
25827
25842
  var n2 = parseFloat(value);
@@ -25944,7 +25959,7 @@ void main(void)\r
25944
25959
  }, _elapsedCycleDuration = function _elapsedCycleDuration2(animation) {
25945
25960
  return animation._repeat ? _animationCycle(animation._tTime, animation = animation.duration() + animation._rDelay) * animation : 0;
25946
25961
  }, _animationCycle = function _animationCycle2(tTime, cycleDuration) {
25947
- var whole = Math.floor(tTime = _roundPrecise(tTime / cycleDuration));
25962
+ var whole = Math.floor(tTime /= cycleDuration);
25948
25963
  return tTime && whole === tTime ? whole - 1 : whole;
25949
25964
  }, _parentToChildTotalTime = function _parentToChildTotalTime2(parentTime, child) {
25950
25965
  return (parentTime - child._start) * child._ts + (child._ts >= 0 ? 0 : child._dirty ? child.totalDuration() : child._tDur);
@@ -26725,7 +26740,7 @@ void main(void)\r
26725
26740
  }, easeOut);
26726
26741
  })(7.5625, 2.75);
26727
26742
  _insertEase("Expo", function(p2) {
26728
- return Math.pow(2, 10 * (p2 - 1)) * p2 + p2 * p2 * p2 * p2 * p2 * p2 * (1 - p2);
26743
+ return p2 ? Math.pow(2, 10 * (p2 - 1)) : 0;
26729
26744
  });
26730
26745
  _insertEase("Circ", function(p2) {
26731
26746
  return -(_sqrt(1 - p2 * p2) - 1);
@@ -26822,7 +26837,7 @@ void main(void)\r
26822
26837
  return arguments.length ? this.totalTime(Math.min(this.totalDuration(), value + _elapsedCycleDuration(this)) % (this._dur + this._rDelay) || (value ? this._dur : 0), suppressEvents) : this._time;
26823
26838
  };
26824
26839
  _proto.totalProgress = function totalProgress(value, suppressEvents) {
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;
26840
+ return arguments.length ? this.totalTime(this.totalDuration() * value, suppressEvents) : this.totalDuration() ? Math.min(1, this._tTime / this._tDur) : this.rawTime() > 0 ? 1 : 0;
26826
26841
  };
26827
26842
  _proto.progress = function progress(value, suppressEvents) {
26828
26843
  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;
@@ -26841,7 +26856,7 @@ void main(void)\r
26841
26856
  var tTime = this.parent && this._ts ? _parentToChildTotalTime(this.parent._time, this) : this._tTime;
26842
26857
  this._rts = +value || 0;
26843
26858
  this._ts = this._ps || value === -_tinyNum ? 0 : this._rts;
26844
- this.totalTime(_clamp(-Math.abs(this._delay), this.totalDuration(), tTime), suppressEvents !== false);
26859
+ this.totalTime(_clamp(-Math.abs(this._delay), this._tDur, tTime), suppressEvents !== false);
26845
26860
  _setEnd(this);
26846
26861
  return _recacheAncestors(this);
26847
26862
  };
@@ -26884,7 +26899,7 @@ void main(void)\r
26884
26899
  }
26885
26900
  var prevIsReverting = _reverting$1;
26886
26901
  _reverting$1 = config2;
26887
- if (_isRevertWorthy(this)) {
26902
+ if (this._initted || this._startAt) {
26888
26903
  this.timeline && this.timeline.revert(config2);
26889
26904
  this.totalTime(-0.01, config2.suppressEvents);
26890
26905
  }
@@ -26927,9 +26942,7 @@ void main(void)\r
26927
26942
  return this.totalTime(_parsePosition(this, position), _isNotFalse(suppressEvents));
26928
26943
  };
26929
26944
  _proto.restart = function restart(includeDelay, suppressEvents) {
26930
- this.play().totalTime(includeDelay ? -this._delay : 0, _isNotFalse(suppressEvents));
26931
- this._dur || (this._zTime = -_tinyNum);
26932
- return this;
26945
+ return this.play().totalTime(includeDelay ? -this._delay : 0, _isNotFalse(suppressEvents));
26933
26946
  };
26934
26947
  _proto.play = function play(from, suppressEvents) {
26935
26948
  from != null && this.seek(from, suppressEvents);
@@ -27106,9 +27119,8 @@ void main(void)\r
27106
27119
  iteration = this._repeat;
27107
27120
  time = dur;
27108
27121
  } else {
27109
- prevIteration = _roundPrecise(tTime / cycleDuration);
27110
- iteration = ~~prevIteration;
27111
- if (iteration && iteration === prevIteration) {
27122
+ iteration = ~~(tTime / cycleDuration);
27123
+ if (iteration && iteration === tTime / cycleDuration) {
27112
27124
  time = dur;
27113
27125
  iteration--;
27114
27126
  }
@@ -27162,7 +27174,7 @@ void main(void)\r
27162
27174
  this._zTime = totalTime;
27163
27175
  prevTime = 0;
27164
27176
  }
27165
- if (!prevTime && tTime && !suppressEvents && !prevIteration) {
27177
+ if (!prevTime && time && !suppressEvents && !iteration) {
27166
27178
  _callback(this, "onStart");
27167
27179
  if (this._tTime !== tTime) {
27168
27180
  return this;
@@ -27194,7 +27206,7 @@ void main(void)\r
27194
27206
  if (child.parent !== this) {
27195
27207
  return this.render(totalTime, suppressEvents, force);
27196
27208
  }
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));
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._initted || child._startAt));
27198
27210
  if (time !== this._time || !this._ts && !prevPaused) {
27199
27211
  pauseTween = 0;
27200
27212
  next && (tTime += this._zTime = adjustedTime ? -_tinyNum : _tinyNum);
@@ -27291,7 +27303,7 @@ void main(void)\r
27291
27303
  if (_isFunction(child)) {
27292
27304
  return this.killTweensOf(child);
27293
27305
  }
27294
- child.parent === this && _removeLinkedListItem(this, child);
27306
+ _removeLinkedListItem(this, child);
27295
27307
  if (child === this._recent) {
27296
27308
  this._recent = this._last;
27297
27309
  }
@@ -27893,7 +27905,7 @@ void main(void)\r
27893
27905
  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;
27894
27906
  if (!dur) {
27895
27907
  _renderZeroDurationTween(this, totalTime, suppressEvents, force);
27896
- } else if (tTime !== this._tTime || !totalTime || force || !this._initted && this._tTime || this._startAt && this._zTime < 0 !== isNegative || this._lazy) {
27908
+ } else if (tTime !== this._tTime || !totalTime || force || !this._initted && this._tTime || this._startAt && this._zTime < 0 !== isNegative) {
27897
27909
  time = tTime;
27898
27910
  timeline = this.timeline;
27899
27911
  if (this._repeat) {
@@ -27906,14 +27918,12 @@ void main(void)\r
27906
27918
  iteration = this._repeat;
27907
27919
  time = dur;
27908
27920
  } else {
27909
- prevIteration = _roundPrecise(tTime / cycleDuration);
27910
- iteration = ~~prevIteration;
27911
- if (iteration && iteration === prevIteration) {
27921
+ iteration = ~~(tTime / cycleDuration);
27922
+ if (iteration && iteration === _roundPrecise(tTime / cycleDuration)) {
27912
27923
  time = dur;
27913
27924
  iteration--;
27914
- } else if (time > dur) {
27915
- time = dur;
27916
27925
  }
27926
+ time > dur && (time = dur);
27917
27927
  }
27918
27928
  isYoyo = this._yoyo && iteration & 1;
27919
27929
  if (isYoyo) {
@@ -27927,7 +27937,7 @@ void main(void)\r
27927
27937
  }
27928
27938
  if (iteration !== prevIteration) {
27929
27939
  timeline && this._yEase && _propagateYoyoEase(timeline, isYoyo);
27930
- if (this.vars.repeatRefresh && !isYoyo && !this._lock && time !== cycleDuration && this._initted) {
27940
+ if (this.vars.repeatRefresh && !isYoyo && !this._lock && this._time !== cycleDuration && this._initted) {
27931
27941
  this._lock = force = 1;
27932
27942
  this.render(_roundPrecise(cycleDuration * iteration), true).invalidate()._lock = 0;
27933
27943
  }
@@ -27955,7 +27965,7 @@ void main(void)\r
27955
27965
  if (this._from) {
27956
27966
  this.ratio = ratio = 1 - ratio;
27957
27967
  }
27958
- if (!prevTime && tTime && !suppressEvents && !prevIteration) {
27968
+ if (time && !prevTime && !suppressEvents && !iteration) {
27959
27969
  _callback(this, "onStart");
27960
27970
  if (this._tTime !== tTime) {
27961
27971
  return this;
@@ -28012,8 +28022,7 @@ void main(void)\r
28012
28022
  }
28013
28023
  if (!targets && (!vars || vars === "all")) {
28014
28024
  this._lazy = this._pt = 0;
28015
- this.parent ? _interrupt(this) : this.scrollTrigger && this.scrollTrigger.kill(!!_reverting$1);
28016
- return this;
28025
+ return this.parent ? _interrupt(this) : this;
28017
28026
  }
28018
28027
  if (this.timeline) {
28019
28028
  var tDur = this.timeline.totalDuration();
@@ -28460,8 +28469,8 @@ void main(void)\r
28460
28469
  };
28461
28470
  },
28462
28471
  quickTo: function quickTo(target, property, vars) {
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) {
28472
+ var _merge2;
28473
+ var tween = gsap.to(target, _merge((_merge2 = {}, _merge2[property] = "+=0.1", _merge2.paused = true, _merge2), vars || {})), func = function func2(value, start, startIsRelative) {
28465
28474
  return tween.resetTo(property, value, start, startIsRelative);
28466
28475
  };
28467
28476
  func.tween = tween;
@@ -28623,7 +28632,6 @@ void main(void)\r
28623
28632
  }, _buildModifierPlugin = function _buildModifierPlugin2(name, modifier) {
28624
28633
  return {
28625
28634
  name,
28626
- headless: 1,
28627
28635
  rawVars: 1,
28628
28636
  //don't pre-process function-based values or "random()" strings.
28629
28637
  init: function init2(target, vars, tween) {
@@ -28670,7 +28678,6 @@ void main(void)\r
28670
28678
  }
28671
28679
  }, {
28672
28680
  name: "endArray",
28673
- headless: 1,
28674
28681
  init: function init2(target, value) {
28675
28682
  var i2 = value.length;
28676
28683
  while (i2--) {
@@ -28678,7 +28685,7 @@ void main(void)\r
28678
28685
  }
28679
28686
  }
28680
28687
  }, _buildModifierPlugin("roundProps", _roundModifier), _buildModifierPlugin("modifiers"), _buildModifierPlugin("snap", snap)) || _gsap;
28681
- Tween.version = Timeline$1.version = gsap.version = "3.13.0";
28688
+ Tween.version = Timeline$1.version = gsap.version = "3.12.5";
28682
28689
  _coreReady = 1;
28683
28690
  _windowExists$1() && _wake();
28684
28691
  _easeMap.Power0;
@@ -28700,11 +28707,12 @@ void main(void)\r
28700
28707
  _easeMap.Expo;
28701
28708
  _easeMap.Circ;
28702
28709
  /*!
28703
- * CSSPlugin 3.13.0
28710
+ * CSSPlugin 3.12.5
28704
28711
  * https://gsap.com
28705
28712
  *
28706
- * Copyright 2008-2025, GreenSock. All rights reserved.
28707
- * Subject to the terms at https://gsap.com/standard-license
28713
+ * Copyright 2008-2024, GreenSock. All rights reserved.
28714
+ * Subject to the terms at https://gsap.com/standard-license or for
28715
+ * Club GSAP members, the agreement issued with that membership.
28708
28716
  * @author: Jack Doyle, jack@greensock.com
28709
28717
  */
28710
28718
  var _win, _doc, _docElement, _pluginInitted, _tempDiv, _recentSetterPlugin, _reverting, _windowExists = function _windowExists2() {
@@ -28777,13 +28785,7 @@ void main(void)\r
28777
28785
  }, _revertStyle = function _revertStyle2() {
28778
28786
  var props = this.props, target = this.target, style = target.style, cache = target._gsap, i2, p2;
28779
28787
  for (i2 = 0; i2 < props.length; i2 += 3) {
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
- }
28788
+ props[i2 + 1] ? target[props[i2]] = props[i2 + 2] : props[i2 + 2] ? style[props[i2]] = props[i2 + 2] : style.removeProperty(props[i2].substr(0, 2) === "--" ? props[i2] : props[i2].replace(_capsExp, "-$1").toLowerCase());
28787
28789
  }
28788
28790
  if (this.tfm) {
28789
28791
  for (p2 in this.tfm) {
@@ -28812,7 +28814,7 @@ void main(void)\r
28812
28814
  save: _saveStyle
28813
28815
  };
28814
28816
  target._gsap || gsap.core.getCache(target);
28815
- properties && target.style && target.nodeType && properties.split(",").forEach(function(p2) {
28817
+ properties && properties.split(",").forEach(function(p2) {
28816
28818
  return saver.save(p2);
28817
28819
  });
28818
28820
  return saver;
@@ -28847,17 +28849,30 @@ void main(void)\r
28847
28849
  _reverting = gsap.core.reverting;
28848
28850
  _pluginInitted = 1;
28849
28851
  }
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);
28852
+ }, _getBBoxHack = function _getBBoxHack2(swapIfPossible) {
28853
+ var svg = _createElement("svg", this.ownerSVGElement && this.ownerSVGElement.getAttribute("xmlns") || "http://www.w3.org/2000/svg"), oldParent = this.parentNode, oldSibling = this.nextSibling, oldCSS = this.style.cssText, bbox;
28854
28854
  _docElement.appendChild(svg);
28855
- try {
28856
- bbox = clone2.getBBox();
28857
- } catch (e2) {
28855
+ svg.appendChild(this);
28856
+ this.style.display = "block";
28857
+ if (swapIfPossible) {
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
+ }
28858
28873
  }
28859
- svg.removeChild(clone2);
28860
28874
  _docElement.removeChild(svg);
28875
+ this.style.cssText = oldCSS;
28861
28876
  return bbox;
28862
28877
  }, _getAttributeFallbacks = function _getAttributeFallbacks2(target, attributesArray) {
28863
28878
  var i2 = attributesArray.length;
@@ -28867,14 +28882,13 @@ void main(void)\r
28867
28882
  }
28868
28883
  }
28869
28884
  }, _getBBox = function _getBBox2(target) {
28870
- var bounds, cloned;
28885
+ var bounds;
28871
28886
  try {
28872
28887
  bounds = target.getBBox();
28873
28888
  } catch (error) {
28874
- bounds = _getReparentedCloneBBox(target);
28875
- cloned = 1;
28889
+ bounds = _getBBoxHack.call(target, true);
28876
28890
  }
28877
- bounds && (bounds.width || bounds.height) || cloned || (bounds = _getReparentedCloneBBox(target));
28891
+ bounds && (bounds.width || bounds.height) || target.getBBox === _getBBoxHack || (bounds = _getBBoxHack.call(target, true));
28878
28892
  return bounds && !bounds.width && !bounds.x && !bounds.y ? {
28879
28893
  x: +_getAttributeFallbacks(target, ["x", "cx", "x1"]) || 0,
28880
28894
  y: +_getAttributeFallbacks(target, ["y", "cy", "y1"]) || 0,
@@ -28925,7 +28939,7 @@ void main(void)\r
28925
28939
  return _round(toPercent ? curValue / px * amount : curValue / 100 * px);
28926
28940
  }
28927
28941
  style[horizontal ? "width" : "height"] = amount + (toPixels ? curUnit : unit);
28928
- parent = unit !== "rem" && ~property.indexOf("adius") || unit === "em" && target.appendChild && !isRootSVG ? target : target.parentNode;
28942
+ parent = ~property.indexOf("adius") || unit === "em" && target.appendChild && !isRootSVG ? target : target.parentNode;
28929
28943
  if (isSVG) {
28930
28944
  parent = (target.ownerSVGElement || {}).parentNode;
28931
28945
  }
@@ -28990,9 +29004,6 @@ void main(void)\r
28990
29004
  pt.e = end;
28991
29005
  start += "";
28992
29006
  end += "";
28993
- if (end.substring(0, 6) === "var(--") {
28994
- end = _getComputedProperty(target, end.substring(4, end.indexOf(")")));
28995
- }
28996
29007
  if (end === "auto") {
28997
29008
  startValue = target.style[prop];
28998
29009
  target.style[prop] = end;
@@ -29086,7 +29097,6 @@ void main(void)\r
29086
29097
  _removeProperty(target, _transformProp);
29087
29098
  if (cache) {
29088
29099
  cache.svg && target.removeAttribute("transform");
29089
- style.scale = style.rotate = style.translate = "none";
29090
29100
  _parseTransform(target, 1);
29091
29101
  cache.uncache = 1;
29092
29102
  _removeIndependentTransforms(style);
@@ -29182,7 +29192,7 @@ void main(void)\r
29182
29192
  temp = style.display;
29183
29193
  style.display = "block";
29184
29194
  parent = target.parentNode;
29185
- if (!parent || !target.offsetParent && !target.getBoundingClientRect().width) {
29195
+ if (!parent || !target.offsetParent) {
29186
29196
  addedToDOM = 1;
29187
29197
  nextSibling = target.nextElementSibling;
29188
29198
  _docElement.appendChild(target);
@@ -29618,10 +29628,6 @@ void main(void)\r
29618
29628
  isTransformRelated = p2 in _transformProps;
29619
29629
  if (isTransformRelated) {
29620
29630
  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
- }
29625
29631
  if (!transformPropTween) {
29626
29632
  cache = target._gsap;
29627
29633
  cache.renderTransform && !vars.parseTransform || _parseTransform(target, vars.parseTransform);
@@ -29685,7 +29691,7 @@ void main(void)\r
29685
29691
  } else {
29686
29692
  _tweenComplexCSSString.call(this, target, p2, startValue, relative ? relative + endValue : endValue);
29687
29693
  }
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]));
29694
+ isTransformRelated || (p2 in style ? inlineProps.push(p2, 0, style[p2]) : inlineProps.push(p2, 1, startValue || target[p2]));
29689
29695
  props.push(p2);
29690
29696
  }
29691
29697
  }
@@ -32892,11 +32898,7 @@ void main(void)\r
32892
32898
  /**
32893
32899
  * past Spine.globalDelayLimit
32894
32900
  */
32895
- GLOBAL_DELAY_LIMIT: 0,
32896
- /**
32897
- * shows error in console if atlas page loading somehow failed
32898
- */
32899
- REPORT_TEXTURE_LOADER_ERROR: true
32901
+ GLOBAL_DELAY_LIMIT: 0
32900
32902
  };
32901
32903
  const tempRgb = [0, 0, 0];
32902
32904
  class SpineSprite extends Sprite {
@@ -33291,9 +33293,6 @@ void main(void)\r
33291
33293
  * @private
33292
33294
  */
33293
33295
  createMesh(slot, attachment) {
33294
- if (!attachment.region && attachment.sequence) {
33295
- attachment.sequence.apply(slot, attachment);
33296
- }
33297
33296
  let region = attachment.region;
33298
33297
  if (slot.hackAttachment === attachment) {
33299
33298
  region = slot.hackRegion;
@@ -40001,16 +40000,9 @@ void main(void)\r
40001
40000
  };
40002
40001
  const makeSpineTextureAtlasLoaderFunctionFromPixiLoaderObject = (loader, atlasBasePath, imageMetadata) => {
40003
40002
  return async (pageName, textureLoadedCallback) => {
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
- }
40003
+ const url = path.normalize([...atlasBasePath.split(path.sep), pageName].join(path.sep));
40004
+ const texture = await loader.load({ src: url, data: imageMetadata });
40005
+ textureLoadedCallback(texture.baseTexture);
40014
40006
  };
40015
40007
  };
40016
40008
  extensions$2.add(spineTextureAtlasLoader);
@@ -55196,6 +55188,7 @@ void main(void){
55196
55188
  this._pageNum = 0;
55197
55189
  this._startTime = (/* @__PURE__ */ new Date()).getTime();
55198
55190
  this._isDragging = false;
55191
+ this._stage = stage;
55199
55192
  const mask = new Graphics();
55200
55193
  mask.beginFill(16777215);
55201
55194
  mask.drawRect(0, 0, this.width, this.height);
@@ -55225,7 +55218,7 @@ void main(void){
55225
55218
  this._setDepth();
55226
55219
  libPixiEvent(this, "pointerdown", this._onDragStart.bind(this));
55227
55220
  libPixiEvent(stage, "pointermove", this._onDragMove.bind(this));
55228
- window.addEventListener("pointerup", this._onDragEnd.bind(this));
55221
+ libPixiEvent(stage, "pointerup", this._onDragEnd.bind(this));
55229
55222
  }
55230
55223
  /** @description 更新坐标 */
55231
55224
  updatePosition(v2, index) {
@@ -55319,14 +55312,15 @@ void main(void){
55319
55312
  }
55320
55313
  /** @description 开始拖动 */
55321
55314
  _onDragStart(event) {
55315
+ const { x: x2, y: y2 } = this._stage.toLocal(event.global);
55322
55316
  this._isDragging = true;
55323
55317
  gsapWithCSS.killTweensOf(this._slideArea);
55324
55318
  this._startTime = (/* @__PURE__ */ new Date()).getTime();
55325
55319
  if (this._direction === "x") {
55326
- this._startX = event.global.x;
55320
+ this._startX = x2;
55327
55321
  this._offsetX = this._slideArea.x;
55328
55322
  } else {
55329
- this._startY = event.global.y;
55323
+ this._startY = y2;
55330
55324
  this._offsetY = this._slideArea.y;
55331
55325
  }
55332
55326
  }
@@ -55334,11 +55328,12 @@ void main(void){
55334
55328
  _onDragMove(event) {
55335
55329
  if (!this._isDragging)
55336
55330
  return;
55331
+ const { x: x2, y: y2 } = this._stage.toLocal(event.global);
55337
55332
  if (this._direction === "x") {
55338
- const moveX = event.pageX - this._startX;
55333
+ const moveX = x2 - this._startX;
55339
55334
  this._slideArea.x = this._offsetX + moveX;
55340
55335
  } else {
55341
- const moveY = event.pageY - this._startY;
55336
+ const moveY = y2 - this._startY;
55342
55337
  this._slideArea.y = this._offsetY + moveY;
55343
55338
  }
55344
55339
  this._onScroll();
@@ -55355,12 +55350,13 @@ void main(void){
55355
55350
  }
55356
55351
  /** @description 结束拖动 */
55357
55352
  _onDragEnd(event) {
55353
+ const { x: x2, y: y2 } = this._stage.toLocal(event.global);
55358
55354
  if (this._direction === "x") {
55359
55355
  if (!this._isDragging)
55360
55356
  return;
55361
55357
  this._isDragging = false;
55362
55358
  const slideTime = (/* @__PURE__ */ new Date()).getTime() - this._startTime;
55363
- const slide = this._startX - event.pageX;
55359
+ const slide = this._startX - x2;
55364
55360
  const slideSpeed = Math.abs(slide) / slideTime;
55365
55361
  const pageChange = Math.round(slide / this._pageWidth);
55366
55362
  if (Math.abs(slide) > this._pageWidth * this._SCROLL_THRESHOLD) {
@@ -55380,7 +55376,7 @@ void main(void){
55380
55376
  return;
55381
55377
  this._isDragging = false;
55382
55378
  const slideTime = (/* @__PURE__ */ new Date()).getTime() - this._startTime;
55383
- const slide = this._startY - event.pageY;
55379
+ const slide = this._startY - y2;
55384
55380
  const slideSpeed = Math.abs(slide) / slideTime;
55385
55381
  const pageChange = Math.round(slide / this._pageHeight);
55386
55382
  if (Math.abs(slide) > this._pageHeight * this._SCROLL_THRESHOLD) {
@@ -55428,10 +55424,10 @@ void main(void){
55428
55424
  }
55429
55425
  }
55430
55426
  /*!
55431
- * decimal.js v10.5.0
55427
+ * decimal.js v10.4.3
55432
55428
  * An arbitrary-precision Decimal type for JavaScript.
55433
55429
  * https://github.com/MikeMcl/decimal.js
55434
- * Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
55430
+ * Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
55435
55431
  * MIT Licence
55436
55432
  */
55437
55433
  var EXP_LIMIT = 9e15, MAX_DIGITS = 1e9, NUMERALS = "0123456789abcdef", LN10 = "2.3025850929940456840179914546843642076011014886287729760333279009675726096773524802359972050895982983419677840422862486334095254650828067566662873690987816894829072083255546808437998948262331985283935053089653777326288461633662222876982198867465436674744042432743651550489343149393914796194044002221051017141748003688084012647080685567743216228355220114804663715659121373450747856947683463616792101806445070648000277502684916746550586856935673420670581136429224554405758925724208241314695689016758940256776311356919292033376587141660230105703089634572075440370847469940168269282808481184289314848524948644871927809676271275775397027668605952496716674183485704422507197965004714951050492214776567636938662976979522110718264549734772662425709429322582798502585509785265383207606726317164309505995087807523710333101197857547331541421808427543863591778117054309827482385045648019095610299291824318237525357709750539565187697510374970888692180205189339507238539205144634197265287286965110862571492198849978748873771345686209167058", PI = "3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632789", DEFAULTS = {
@@ -55700,7 +55696,7 @@ void main(void){
55700
55696
  return divide(x2.sinh(), x2.cosh(), Ctor.precision = pr, Ctor.rounding = rm);
55701
55697
  };
55702
55698
  P.inverseCosine = P.acos = function() {
55703
- var x2 = this, Ctor = x2.constructor, k2 = x2.abs().cmp(1), pr = Ctor.precision, rm = Ctor.rounding;
55699
+ var halfPi, x2 = this, Ctor = x2.constructor, k2 = x2.abs().cmp(1), pr = Ctor.precision, rm = Ctor.rounding;
55704
55700
  if (k2 !== -1) {
55705
55701
  return k2 === 0 ? x2.isNeg() ? getPi(Ctor, pr, rm) : new Ctor(0) : new Ctor(NaN);
55706
55702
  }
@@ -55708,10 +55704,11 @@ void main(void){
55708
55704
  return getPi(Ctor, pr + 4, rm).times(0.5);
55709
55705
  Ctor.precision = pr + 6;
55710
55706
  Ctor.rounding = 1;
55711
- x2 = new Ctor(1).minus(x2).div(x2.plus(1)).sqrt().atan();
55707
+ x2 = x2.asin();
55708
+ halfPi = getPi(Ctor, pr + 4, rm).times(0.5);
55712
55709
  Ctor.precision = pr;
55713
55710
  Ctor.rounding = rm;
55714
- return x2.times(2);
55711
+ return halfPi.minus(x2);
55715
55712
  };
55716
55713
  P.inverseHyperbolicCosine = P.acosh = function() {
55717
55714
  var pr, rm, x2 = this, Ctor = x2.constructor;
@@ -56923,16 +56920,14 @@ void main(void){
56923
56920
  function isOdd(n2) {
56924
56921
  return n2.d[n2.d.length - 1] & 1;
56925
56922
  }
56926
- function maxOrMin(Ctor, args, n2) {
56927
- var k2, y2, x2 = new Ctor(args[0]), i2 = 0;
56923
+ function maxOrMin(Ctor, args, ltgt) {
56924
+ var y2, x2 = new Ctor(args[0]), i2 = 0;
56928
56925
  for (; ++i2 < args.length; ) {
56929
56926
  y2 = new Ctor(args[i2]);
56930
56927
  if (!y2.s) {
56931
56928
  x2 = y2;
56932
56929
  break;
56933
- }
56934
- k2 = x2.cmp(y2);
56935
- if (k2 === n2 || k2 === 0 && x2.s === n2) {
56930
+ } else if (x2[ltgt](y2)) {
56936
56931
  x2 = y2;
56937
56932
  }
56938
56933
  }
@@ -57513,8 +57508,7 @@ void main(void){
57513
57508
  x2.d = [v2];
57514
57509
  }
57515
57510
  return;
57516
- }
57517
- if (v2 * 0 !== 0) {
57511
+ } else if (v2 * 0 !== 0) {
57518
57512
  if (!v2)
57519
57513
  x2.s = NaN;
57520
57514
  x2.e = NaN;
@@ -57522,28 +57516,18 @@ void main(void){
57522
57516
  return;
57523
57517
  }
57524
57518
  return parseDecimal(x2, v2.toString());
57519
+ } else if (t2 !== "string") {
57520
+ throw Error(invalidArgument + v2);
57525
57521
  }
57526
- if (t2 === "string") {
57527
- if ((i3 = v2.charCodeAt(0)) === 45) {
57522
+ if ((i3 = v2.charCodeAt(0)) === 45) {
57523
+ v2 = v2.slice(1);
57524
+ x2.s = -1;
57525
+ } else {
57526
+ if (i3 === 43)
57528
57527
  v2 = v2.slice(1);
57529
- x2.s = -1;
57530
- } else {
57531
- if (i3 === 43)
57532
- v2 = v2.slice(1);
57533
- x2.s = 1;
57534
- }
57535
- return isDecimal.test(v2) ? parseDecimal(x2, v2) : parseOther(x2, v2);
57536
- }
57537
- if (t2 === "bigint") {
57538
- if (v2 < 0) {
57539
- v2 = -v2;
57540
- x2.s = -1;
57541
- } else {
57542
- x2.s = 1;
57543
- }
57544
- return parseDecimal(x2, v2.toString());
57528
+ x2.s = 1;
57545
57529
  }
57546
- throw Error(invalidArgument + v2);
57530
+ return isDecimal.test(v2) ? parseDecimal(x2, v2) : parseOther(x2, v2);
57547
57531
  }
57548
57532
  Decimal2.prototype = P;
57549
57533
  Decimal2.ROUND_UP = 0;
@@ -57653,10 +57637,10 @@ void main(void){
57653
57637
  return new this(x2).log(10);
57654
57638
  }
57655
57639
  function max() {
57656
- return maxOrMin(this, arguments, -1);
57640
+ return maxOrMin(this, arguments, "lt");
57657
57641
  }
57658
57642
  function min() {
57659
- return maxOrMin(this, arguments, 1);
57643
+ return maxOrMin(this, arguments, "gt");
57660
57644
  }
57661
57645
  function mod(x2, y2) {
57662
57646
  return new this(x2).mod(y2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lyb-pixi-js",
3
- "version": "1.11.3",
3
+ "version": "1.11.5",
4
4
  "description": "自用Pixi.JS方法库",
5
5
  "license": "ISC",
6
6
  "exports": {
@@ -37,7 +37,7 @@
37
37
  "decimal.js": "^10.4.3",
38
38
  "gsap": "^3.12.5",
39
39
  "howler": "^2.2.4",
40
- "lyb-js": "^1.6.4",
40
+ "lyb-js": "^1.6.5",
41
41
  "pixi-spine": "^4.0.4",
42
42
  "pixi.js": "^7.4.2",
43
43
  "vite": "^4.5.5"