handler-playable-sdk 0.3.7 → 0.3.9
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/README.md +19 -1
- package/dist/AssetTextures-TB4XIUX6.js +1 -0
- package/dist/{ConfigOverride-DFTDUTRQ.js → ConfigOverride-QGV5TX37.js} +1 -1
- package/dist/chunk-ES3S33UP.js +1 -0
- package/dist/chunk-OPT6F3HO.js +1398 -0
- package/dist/chunk-RXI7YH7M.js +1 -0
- package/dist/{chunk-J2CL6VOZ.js → chunk-V636YM4S.js} +1 -1
- package/dist/{config-7DI6U2YD.js → config-3INFO7FK.js} +1 -1
- package/dist/index.cjs +125 -52
- package/dist/index.d.cts +28 -5
- package/dist/index.d.ts +28 -5
- package/dist/index.js +1 -1
- package/dist/{loader-object-centric-Ce6MVkQw.d.cts → loader-object-centric-BeVsUAXI.d.cts} +4 -0
- package/dist/{loader-object-centric-Ce6MVkQw.d.ts → loader-object-centric-BeVsUAXI.d.ts} +4 -0
- package/dist/pixi/index.cjs +17 -17
- package/dist/pixi/index.d.cts +30 -2
- package/dist/pixi/index.d.ts +30 -2
- package/dist/pixi/index.js +1 -1
- package/dist/three/index.cjs +17 -17
- package/dist/three/index.js +1 -1
- package/package.json +1 -1
- package/dist/AssetTextures-NWHSMZNV.js +0 -1
- package/dist/chunk-BC5GBAMY.js +0 -1325
- package/dist/chunk-DHSGG7NF.js +0 -1
- package/dist/chunk-PWGHKK3J.js +0 -1
package/dist/pixi/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as PixiJS from 'pixi.js';
|
|
2
2
|
import { Application, Container, Sprite, Texture, Text } from 'pixi.js';
|
|
3
|
-
import { O as ObjectCentricConfig$1 } from '../loader-object-centric-
|
|
3
|
+
import { O as ObjectCentricConfig$1 } from '../loader-object-centric-BeVsUAXI.cjs';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Handler SDK - PixiJS Base Context
|
|
@@ -66,6 +66,8 @@ declare function createPixiBase(root: HTMLElement, theme?: PixiTheme): Promise<P
|
|
|
66
66
|
* Transform Component - Position, scale, rotation
|
|
67
67
|
*/
|
|
68
68
|
declare class Transform {
|
|
69
|
+
private _basePosition;
|
|
70
|
+
private _offset;
|
|
69
71
|
position: {
|
|
70
72
|
x: number;
|
|
71
73
|
y: number;
|
|
@@ -487,9 +489,24 @@ declare class GameEngine {
|
|
|
487
489
|
private config;
|
|
488
490
|
private destinationUrl;
|
|
489
491
|
private root;
|
|
492
|
+
private context;
|
|
490
493
|
constructor(root: HTMLElement, config: ObjectCentricConfig$1, destinationUrl: string);
|
|
491
494
|
/**
|
|
492
|
-
*
|
|
495
|
+
* Create PIXI base + system context.
|
|
496
|
+
*
|
|
497
|
+
* This is separated from system initialization so games can mount a loading
|
|
498
|
+
* overlay before `AssetSystem` blocks on preloading.
|
|
499
|
+
*/
|
|
500
|
+
createApp(theme: any): Promise<{
|
|
501
|
+
app: Application;
|
|
502
|
+
gameObjectManager: GameObjectManager;
|
|
503
|
+
}>;
|
|
504
|
+
/**
|
|
505
|
+
* Initialize registered systems (after `createApp`).
|
|
506
|
+
*/
|
|
507
|
+
initSystems(): Promise<void>;
|
|
508
|
+
/**
|
|
509
|
+
* Initialize PIXI and systems (legacy convenience API)
|
|
493
510
|
*/
|
|
494
511
|
init(theme: any): Promise<{
|
|
495
512
|
app: Application;
|
|
@@ -591,6 +608,8 @@ declare const basePixi: typeof PixiJS;
|
|
|
591
608
|
declare class AssetTextureRegistry {
|
|
592
609
|
private textures;
|
|
593
610
|
private readyPromise;
|
|
611
|
+
private priorityReadyPromise;
|
|
612
|
+
private priorityReadyResolve;
|
|
594
613
|
private config;
|
|
595
614
|
private app;
|
|
596
615
|
/**
|
|
@@ -601,8 +620,17 @@ declare class AssetTextureRegistry {
|
|
|
601
620
|
/**
|
|
602
621
|
* Preload all image textures from config
|
|
603
622
|
* RULE: Resolves when all textures are loaded and ready for sprite creation
|
|
623
|
+
*
|
|
624
|
+
* Two-phase loading:
|
|
625
|
+
* 1. Priority assets (loading screen) load FIRST
|
|
626
|
+
* 2. All other assets load after priority assets are ready
|
|
604
627
|
*/
|
|
605
628
|
ready(): Promise<void>;
|
|
629
|
+
/**
|
|
630
|
+
* Wait for just priority assets (loading screen) to be ready
|
|
631
|
+
* Use this to show loading screen with its PNG before all assets are loaded
|
|
632
|
+
*/
|
|
633
|
+
priorityReady(): Promise<void>;
|
|
606
634
|
/**
|
|
607
635
|
* Get texture by instance ID
|
|
608
636
|
*/
|
package/dist/pixi/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as PixiJS from 'pixi.js';
|
|
2
2
|
import { Application, Container, Sprite, Texture, Text } from 'pixi.js';
|
|
3
|
-
import { O as ObjectCentricConfig$1 } from '../loader-object-centric-
|
|
3
|
+
import { O as ObjectCentricConfig$1 } from '../loader-object-centric-BeVsUAXI.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Handler SDK - PixiJS Base Context
|
|
@@ -66,6 +66,8 @@ declare function createPixiBase(root: HTMLElement, theme?: PixiTheme): Promise<P
|
|
|
66
66
|
* Transform Component - Position, scale, rotation
|
|
67
67
|
*/
|
|
68
68
|
declare class Transform {
|
|
69
|
+
private _basePosition;
|
|
70
|
+
private _offset;
|
|
69
71
|
position: {
|
|
70
72
|
x: number;
|
|
71
73
|
y: number;
|
|
@@ -487,9 +489,24 @@ declare class GameEngine {
|
|
|
487
489
|
private config;
|
|
488
490
|
private destinationUrl;
|
|
489
491
|
private root;
|
|
492
|
+
private context;
|
|
490
493
|
constructor(root: HTMLElement, config: ObjectCentricConfig$1, destinationUrl: string);
|
|
491
494
|
/**
|
|
492
|
-
*
|
|
495
|
+
* Create PIXI base + system context.
|
|
496
|
+
*
|
|
497
|
+
* This is separated from system initialization so games can mount a loading
|
|
498
|
+
* overlay before `AssetSystem` blocks on preloading.
|
|
499
|
+
*/
|
|
500
|
+
createApp(theme: any): Promise<{
|
|
501
|
+
app: Application;
|
|
502
|
+
gameObjectManager: GameObjectManager;
|
|
503
|
+
}>;
|
|
504
|
+
/**
|
|
505
|
+
* Initialize registered systems (after `createApp`).
|
|
506
|
+
*/
|
|
507
|
+
initSystems(): Promise<void>;
|
|
508
|
+
/**
|
|
509
|
+
* Initialize PIXI and systems (legacy convenience API)
|
|
493
510
|
*/
|
|
494
511
|
init(theme: any): Promise<{
|
|
495
512
|
app: Application;
|
|
@@ -591,6 +608,8 @@ declare const basePixi: typeof PixiJS;
|
|
|
591
608
|
declare class AssetTextureRegistry {
|
|
592
609
|
private textures;
|
|
593
610
|
private readyPromise;
|
|
611
|
+
private priorityReadyPromise;
|
|
612
|
+
private priorityReadyResolve;
|
|
594
613
|
private config;
|
|
595
614
|
private app;
|
|
596
615
|
/**
|
|
@@ -601,8 +620,17 @@ declare class AssetTextureRegistry {
|
|
|
601
620
|
/**
|
|
602
621
|
* Preload all image textures from config
|
|
603
622
|
* RULE: Resolves when all textures are loaded and ready for sprite creation
|
|
623
|
+
*
|
|
624
|
+
* Two-phase loading:
|
|
625
|
+
* 1. Priority assets (loading screen) load FIRST
|
|
626
|
+
* 2. All other assets load after priority assets are ready
|
|
604
627
|
*/
|
|
605
628
|
ready(): Promise<void>;
|
|
629
|
+
/**
|
|
630
|
+
* Wait for just priority assets (loading screen) to be ready
|
|
631
|
+
* Use this to show loading screen with its PNG before all assets are loaded
|
|
632
|
+
*/
|
|
633
|
+
priorityReady(): Promise<void>;
|
|
606
634
|
/**
|
|
607
635
|
* Get texture by instance ID
|
|
608
636
|
*/
|
package/dist/pixi/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x538866,_0x212441){var a0_0x7e714d={_0x3c9a03:0x47,_0x2393e5:0x39,_0x15a183:0x3a,_0x10867a:0x59d,_0x19ebcc:0x43,_0x4528a3:0x42,_0x577fab:0x596,_0x3079dd:0x594,_0x45348a:0x3f,_0x36cd59:0x593,_0x152060:0x590,_0x97e456:0x596,_0x46cf42:0x59a,_0xad1e13:0x599,_0x5a3931:0x598,_0x4a20c2:0x590,_0xdbb79c:0x58f,_0x4f94b5:0x58d,_0x1db9bf:0x3b,_0xbb7241:0x587,_0x3c4404:0x58b,_0x4455e5:0x584};function _0x479b52(_0x5ce823,_0x17a636,_0x41fe60,_0x19f85c){return a0_0x56da(_0x41fe60-0x3a5,_0x19f85c);}function _0x560402(_0x2bb0cf,_0x4352e,_0x3403de,_0x17bc5e){return a0_0x56da(_0x2bb0cf- -0x1af,_0x3403de);}var _0x1c896c=_0x538866();while(!![]){try{var _0x4b2328=parseInt(_0x560402(0x3f,0x43,a0_0x7e714d._0x3c9a03,a0_0x7e714d._0x2393e5))/(-0x9eb+0x14bd+-0xad1)+parseInt(_0x560402(0x3d,0x3f,a0_0x7e714d._0x15a183,0x3a))/(-0x1e7a+-0x49*0x59+0x37dd)*(-parseInt(_0x479b52(0x594,a0_0x7e714d._0x10867a,0x597,0x593))/(0x35*-0x1+-0xa54*0x3+0x1f34))+parseInt(_0x560402(0x3e,a0_0x7e714d._0x19ebcc,0x3a,a0_0x7e714d._0x4528a3))/(-0x122c+-0x94c+0x1*0x1b7c)*(-parseInt(_0x479b52(a0_0x7e714d._0x577fab,0x58d,0x58e,a0_0x7e714d._0x3079dd))/(-0x3*0x3b3+0xbf9*-0x2+-0xb*-0x330))+-parseInt(_0x560402(0x45,0x49,a0_0x7e714d._0x45348a,0x49))/(0x177d*0x1+0xba*0xb+-0x1*0x1f75)+parseInt(_0x479b52(a0_0x7e714d._0x36cd59,a0_0x7e714d._0x152060,a0_0x7e714d._0x97e456,a0_0x7e714d._0x152060))/(-0x1af8+0x1*-0x1f31+-0x1c*-0x214)*(parseInt(_0x479b52(a0_0x7e714d._0x46cf42,a0_0x7e714d._0xad1e13,a0_0x7e714d._0x5a3931,a0_0x7e714d._0x4a20c2))/(-0xd*0x97+0x8d4+0x11*-0x11))+-parseInt(_0x479b52(a0_0x7e714d._0xdbb79c,a0_0x7e714d._0x4f94b5,0x58a,0x583))/(0x219f+0xff9*-0x1+0x1*-0x119d)*(parseInt(_0x560402(a0_0x7e714d._0x1db9bf,0x38,0x37,0x41))/(-0x8e3*0x1+-0x10d3+0x19c0))+parseInt(_0x479b52(a0_0x7e714d._0xbb7241,a0_0x7e714d._0x4a20c2,a0_0x7e714d._0x3c4404,a0_0x7e714d._0x4455e5))/(-0x3*-0xa97+-0x85b*0x3+0x1*-0x6a9);if(_0x4b2328===_0x212441)break;else _0x1c896c['push'](_0x1c896c['shift']());}catch(_0x17f8b5){_0x1c896c['push'](_0x1c896c['shift']());}}}(a0_0x1a69,-0x12e064+0x1382ea+0xe708a));var a0_0x57906d=(function(){var _0x1822cd=!![];return function(_0x5185b5,_0x2469a8){var a0_0x207011={_0x55a29c:0x506,_0x277817:0x502,_0x564b76:0x4fe},_0x32df61=_0x1822cd?function(){function _0x5271e7(_0x75b719,_0x24c317,_0x6d72ea,_0x81ac97){return a0_0x56da(_0x75b719-0x317,_0x24c317);}if(_0x2469a8){var _0x4d36b5=_0x2469a8[_0x5271e7(0x506,a0_0x207011._0x55a29c,a0_0x207011._0x277817,a0_0x207011._0x564b76)](_0x5185b5,arguments);return _0x2469a8=null,_0x4d36b5;}}:function(){};return _0x1822cd=![],_0x32df61;};}()),a0_0x41ecaf=a0_0x57906d(this,function(){var a0_0x3b781d={_0x55e2c0:0x3c,_0x10a21a:0x2e,_0x303a38:0x3d,_0x1b1080:0x35,_0x5f0fe9:0x4dd,_0x5ba89c:0x4e2,_0x1bf52b:0x3a,_0x3b2b5c:0x36,_0x219806:0x4dc,_0x23c0b6:0x4dd,_0x1602f3:0x4e3};function _0x506f11(_0x2e55f8,_0x5d4c23,_0x54228e,_0x378fac){return a0_0x56da(_0x378fac- -0x21d,_0x5d4c23);}var _0x5b2c79={'DRZsJ':_0x506f11(-0x2f,-0x29,-0x2b,-0x2d)+'+$'};function _0x389783(_0x2999ab,_0x4fc62d,_0x562bab,_0x56bc5e){return a0_0x56da(_0x2999ab-0x2f1,_0x562bab);}return a0_0x41ecaf[_0x506f11(-a0_0x3b781d._0x55e2c0,-0x35,-a0_0x3b781d._0x10a21a,-0x36)]()[_0x506f11(-a0_0x3b781d._0x303a38,-0x38,-0x32,-a0_0x3b781d._0x1b1080)](_0x389783(0x4e1,0x4df,a0_0x3b781d._0x5f0fe9,a0_0x3b781d._0x5ba89c)+'+$')[_0x506f11(-0x31,-a0_0x3b781d._0x1bf52b,-0x32,-a0_0x3b781d._0x3b2b5c)]()['constructo'+'r'](a0_0x41ecaf)['search'](_0x5b2c79[_0x389783(a0_0x3b781d._0x219806,a0_0x3b781d._0x23c0b6,a0_0x3b781d._0x1602f3,0x4e2)]);});a0_0x41ecaf();import{A as a0_0x2ac3b4,B as a0_0x2b4daa,C as a0_0x5cbd50,D as a0_0x3dd3a2,b as a0_0x45a8c2,c as a0_0x16680c,d as a0_0x2778cf,e as a0_0x4790c9,f as a0_0x193d3c,g as a0_0x143d08,h as a0_0x5c532d,i as a0_0x332538,j as a0_0x4abfce,k as a0_0x463aff,l as a0_0x4dc0e8,m as a0_0x4959a6,n as a0_0xffa93c,o as a0_0x5a80ad,p as a0_0x4aca3a,q as a0_0x2378f4,r as a0_0x56a0af,s as a0_0x54deba,t as a0_0x125478,u as a0_0x3d729c,v as a0_0x335c78,w as a0_0xe44a1d,x as a0_0x1049d4,y as a0_0x3a5a24,z as a0_0x3a55bc}from'../chunk-BC5GBAMY.js';import{a as a0_0x4a6446,b as a0_0x3fbaec,c as a0_0x2a23b4,d as a0_0x199094,e as a0_0x2e0704}from'../chunk-J2CL6VOZ.js';function a0_0x56da(_0x4b730d,_0x2667e1){_0x4b730d=_0x4b730d-(0x1bff+0x227*-0x1+-0x17f3);var _0x1fece4=a0_0x1a69();var _0x16c662=_0x1fece4[_0x4b730d];if(a0_0x56da['wtLBUm']===undefined){var _0x38f401=function(_0x2c01d1){var _0x5cbea5='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x3dd22b='',_0x31598f='',_0xf847e8=_0x3dd22b+_0x38f401;for(var _0x5a2d61=0x2017+-0x1*-0xcf1+-0x2d08,_0x8ab5c,_0x4dac21,_0x47a10e=-0xb08+-0x1dc4*0x1+0x2ea*0xe;_0x4dac21=_0x2c01d1['charAt'](_0x47a10e++);~_0x4dac21&&(_0x8ab5c=_0x5a2d61%(-0x2498+-0x120b*0x1+0x36a7)?_0x8ab5c*(0x1e2d+-0x50*0x4f+0x1bf*-0x3)+_0x4dac21:_0x4dac21,_0x5a2d61++%(0x19b1*0x1+0x1*0xbd2+-0x257f))?_0x3dd22b+=_0xf847e8['charCodeAt'](_0x47a10e+(-0x23d2+-0x1b83+0x1*0x3f5f))-(0x1*-0x1498+-0x38+0x22*0x9d)!==-0x1*-0x10a2+-0x2*0x46b+-0x7cc?String['fromCharCode'](-0x10c*0x7+0x1a59+-0x1206*0x1&_0x8ab5c>>(-(-0x4ae*0x8+0x20fb+0x477)*_0x5a2d61&0x923*-0x1+0x1*-0x345+0x637*0x2)):_0x5a2d61:0x130b+-0x2012+0xd07){_0x4dac21=_0x5cbea5['indexOf'](_0x4dac21);}for(var _0x5b0289=-0x444+0x161*-0x13+0x1e77,_0x5eb0f7=_0x3dd22b['length'];_0x5b0289<_0x5eb0f7;_0x5b0289++){_0x31598f+='%'+('00'+_0x3dd22b['charCodeAt'](_0x5b0289)['toString'](0x58*-0x5e+0x3*-0xcc2+0x46a6*0x1))['slice'](-(-0xb4f+0xeff+0x3*-0x13a));}return decodeURIComponent(_0x31598f);};a0_0x56da['iwFUUo']=_0x38f401,a0_0x56da['qzmQtZ']={},a0_0x56da['wtLBUm']=!![];}var _0x50d2cf=_0x1fece4[0x1200+-0x1*0x14b7+0x2b7],_0x2be192=_0x4b730d+_0x50d2cf,_0x4233f1=a0_0x56da['qzmQtZ'][_0x2be192];if(!_0x4233f1){var _0x3d967d=function(_0x5b8ce9){this['lwGMlA']=_0x5b8ce9,this['NOdtiz']=[0x3e*0x97+0x1d*0x19+-0x2766,0x2314+0x32c*0x7+-0x3948,0xb46+0x302+0x2*-0x724],this['PdFkWM']=function(){return'newState';},this['nDvmyc']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['bLpCYr']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0x3d967d['prototype']['HfWozj']=function(){var _0x5d0d1a=new RegExp(this['nDvmyc']+this['bLpCYr']),_0x8dde53=_0x5d0d1a['test'](this['PdFkWM']['toString']())?--this['NOdtiz'][0x15e1+0xd25+-0x2305]:--this['NOdtiz'][-0x134c+0x97*0x2f+0x86d*-0x1];return this['CgjjHX'](_0x8dde53);},_0x3d967d['prototype']['CgjjHX']=function(_0x447977){if(!Boolean(~_0x447977))return _0x447977;return this['YtxPuA'](this['lwGMlA']);},_0x3d967d['prototype']['YtxPuA']=function(_0x31bec2){for(var _0x4f4129=0x129f+-0x15bd+-0x6*-0x85,_0x11dc14=this['NOdtiz']['length'];_0x4f4129<_0x11dc14;_0x4f4129++){this['NOdtiz']['push'](Math['round'](Math['random']())),_0x11dc14=this['NOdtiz']['length'];}return _0x31bec2(this['NOdtiz'][0x107*-0xf+-0x1d35*-0x1+0x6e6*-0x2]);},new _0x3d967d(a0_0x56da)['HfWozj'](),_0x16c662=a0_0x56da['iwFUUo'](_0x16c662),a0_0x56da['qzmQtZ'][_0x2be192]=_0x16c662;}else _0x16c662=_0x4233f1;return _0x16c662;}import'../chunk-DHSGG7NF.js';import'../chunk-PWGHKK3J.js';import'../chunk-E6WJCS24.js';function a0_0x1a69(){var _0x639f44=['Dg9tDhjPBMC','C2vHCMnO','nJu5nujorgjUDG','otyZnZGWquPLyM5m','rfjAC0O','ndy3otbzsefPwge','mti0wwvmqLjQ','otqXode1BuztEeT4','yxbWBhK','kcGOlISPkYKRkq','ntCYodK4ovjztuDdCq','mtqXuu5ywKHy','mtzKswvVCxq','nZa2mtCWnKnruvrAvW','mZzvy0nRtum','mtiYmZm4ndHpu3nsqMO'];a0_0x1a69=function(){return _0x639f44;};return a0_0x1a69();}import'../chunk-Q7FPWOA3.js';export{a0_0x4a6446 as AssetCache,a0_0x2a23b4 as AssetLoader,a0_0x3d729c as AssetSystem,a0_0x199094 as AssetTextures,a0_0x54deba as Assets,a0_0x5a80ad as BaseSystem,a0_0xffa93c as GameEngine,a0_0x4790c9 as GameObject,a0_0x193d3c as GameObjectManager,a0_0x4959a6 as ObjectFactory,a0_0x2778cf as Renderer,a0_0x4aca3a as RuntimeObjectRegistry,a0_0x16680c as Transform,a0_0x2b4daa as applyScreenAnchor,a0_0x2378f4 as basePixi,a0_0xe44a1d as clearResponsiveElements,a0_0x45a8c2 as createPixiBase,a0_0x4abfce as getRegisteredFontIds,a0_0x335c78 as globalResponsiveMultipliers,a0_0x2e0704 as initAssetTextures,a0_0x125478 as initAssets,a0_0x5cbd50 as layout,a0_0x4dc0e8 as playLottieOverlay,a0_0x332538 as registerFont,a0_0x3fbaec as registerType,a0_0x3a5a24 as resolveAnchorVec2,a0_0x143d08 as resolveFont,a0_0x5c532d as resolveFontWeight,a0_0x3a55bc as resolveScreenAnchorPoint,a0_0x2ac3b4 as resolveScreenRatioPoint,a0_0x3dd3a2 as runInitSequence,a0_0x463aff as setLottieInstance,a0_0x56a0af as spawnSceneFromConfig,a0_0x1049d4 as updateScreenState};
|
|
1
|
+
(function(_0x5a26c3,_0x32a799){var a0_0x20229c={_0x4983a8:0x14b,_0x22c6c0:0x158,_0x56d58a:0x14f,_0x1c7fed:0x148,_0x4bdb24:'Msol',_0x511843:0x13d,_0x2a0ef9:0x146,_0x1dfba1:0x12e,_0x14d811:'KikQ',_0x504873:0x133,_0x326386:0x13e,_0x1bd9ad:0x125,_0x5b0e1f:0x2d3,_0x4d0f62:'VUVd',_0x13888c:0x2c5,_0x5f3e96:0x2da,_0x22551c:0x2c7,_0x4e0089:0x137,_0x394b6f:0x138,_0x550587:0x2cd,_0x5b2ede:0x2e7,_0x35207f:'dpgy',_0x294df9:0x130,_0x3f6caa:0x12a,_0x5010f5:0x12a,_0x3aaf92:'M7uE',_0x12ee5c:0xd6,_0x5c08bc:0xe3,_0x512447:0xca,_0x472d94:'FV3Q',_0x1356d1:0x143,_0x3a3779:0x134,_0x2ef057:0x136,_0x433a40:'ot[w',_0x1ff6f4:0x140,_0x349761:0x136,_0xf63fc3:0x13f},a0_0x2ffede={_0x2a8c05:0x1b7},a0_0x114ae9={_0x2311b5:0x3ab};function _0x59060b(_0x52a622,_0x2615ef,_0x31d849,_0x133c22,_0x5b6dc9){return a0_0x455e(_0x2615ef- -0x213,_0x52a622);}function _0x28df51(_0xba2917,_0x549d1e,_0x302974,_0x5635a8,_0x28e1a8){return a0_0x455e(_0xba2917- -a0_0x114ae9._0x2311b5,_0x549d1e);}var _0xcc1464=_0x5a26c3();function _0x4e8247(_0x29a709,_0x2dff0d,_0x50ea57,_0x316b7b,_0x572846){return a0_0x455e(_0x50ea57- -a0_0x2ffede._0x2a8c05,_0x29a709);}while(!![]){try{var _0x2c42fa=-parseInt(_0x59060b('enma',-a0_0x20229c._0x4983a8,-a0_0x20229c._0x22c6c0,-a0_0x20229c._0x56d58a,-a0_0x20229c._0x1c7fed))/(-0x260*0x4+0x1faf+0x2*-0xb17)*(-parseInt(_0x59060b(a0_0x20229c._0x4bdb24,-a0_0x20229c._0x511843,-a0_0x20229c._0x2a0ef9,-0x13e,-a0_0x20229c._0x1dfba1))/(-0x1b01+-0x1*0x137d+0x10*0x2e8))+-parseInt(_0x59060b(a0_0x20229c._0x14d811,-a0_0x20229c._0x504873,-a0_0x20229c._0x326386,-a0_0x20229c._0x1dfba1,-a0_0x20229c._0x1bd9ad))/(-0x7*0x1c1+-0xed0+-0x2*-0xd8d)+parseInt(_0x28df51(-a0_0x20229c._0x5b0e1f,a0_0x20229c._0x4d0f62,-a0_0x20229c._0x13888c,-a0_0x20229c._0x5f3e96,-a0_0x20229c._0x22551c))/(-0x1666+0x2436+0x1*-0xdcc)+-parseInt(_0x59060b('sIs^',-0x134,-a0_0x20229c._0x4e0089,-0x12b,-a0_0x20229c._0x394b6f))/(-0x1eac+0x49*0x8+0x1c69)*(parseInt(_0x28df51(-0x2d8,'dpgy',-a0_0x20229c._0x550587,-a0_0x20229c._0x5b2ede,-0x2e4))/(-0xf*-0x19+0xab3*-0x3+0xa38*0x3))+parseInt(_0x59060b(a0_0x20229c._0x35207f,-a0_0x20229c._0x4e0089,-a0_0x20229c._0x294df9,-a0_0x20229c._0x3f6caa,-a0_0x20229c._0x5010f5))/(-0x1604*-0x1+0x237a+0x139*-0x2f)+-parseInt(_0x4e8247(a0_0x20229c._0x3aaf92,-0xc7,-a0_0x20229c._0x12ee5c,-a0_0x20229c._0x5c08bc,-a0_0x20229c._0x512447))/(0x1b7c+0x17*0x13+-0x1d29)*(-parseInt(_0x59060b(a0_0x20229c._0x472d94,-a0_0x20229c._0x1356d1,-a0_0x20229c._0x3a3779,-a0_0x20229c._0x2ef057,-a0_0x20229c._0x1c7fed))/(0x3e*0x46+0xc9*0x10+-0x1d7b))+-parseInt(_0x59060b(a0_0x20229c._0x433a40,-0x144,-a0_0x20229c._0x1ff6f4,-a0_0x20229c._0x349761,-a0_0x20229c._0xf63fc3))/(-0x595*0x5+-0x1*0x10b9+-0x2*-0x1656);if(_0x2c42fa===_0x32a799)break;else _0xcc1464['push'](_0xcc1464['shift']());}catch(_0x5230ca){_0xcc1464['push'](_0xcc1464['shift']());}}}(a0_0x597c,-0x5ba54+0x91bf0+0x7ead7*0x1));var a0_0x317f5e=(function(){var a0_0xba3e49={_0x388dc5:0x1e7,_0x4b0451:0x1e2,_0x155a74:0x1e7},_0x4b25c9=!![];return function(_0x458ba3,_0x13fe94){var _0x11232f=_0x4b25c9?function(){var a0_0x1ce7f4={_0x2ee770:0x11a};function _0x4051e7(_0x4e6c8b,_0x4592d4,_0x508053,_0x262089,_0xe3e8e9){return a0_0x455e(_0x4e6c8b-a0_0x1ce7f4._0x2ee770,_0x4592d4);}if(_0x13fe94){var _0x1780c7=_0x13fe94[_0x4051e7(a0_0xba3e49._0x388dc5,'3Pxh',a0_0xba3e49._0x4b0451,a0_0xba3e49._0x155a74,0x1f6)](_0x458ba3,arguments);return _0x13fe94=null,_0x1780c7;}}:function(){};return _0x4b25c9=![],_0x11232f;};}()),a0_0x5c1955=a0_0x317f5e(this,function(){var a0_0x4eb169={_0x552c4e:0x260,_0x67af0c:0x25c,_0x2f5622:0x263,_0x5a743a:'MqT8',_0xb44bbd:0x3c7,_0x491023:0x3b8,_0xd72a41:0x3c0,_0x83d4ca:'OQ3Y',_0x591464:0x3c9,_0x4cb09e:0x3b0,_0x4a2dca:0x3ce,_0x463fb6:'BoC9',_0x4a9ddd:0x3be,_0x1baf2b:0x3c1,_0x3c6b1:0x3b0,_0x43a44a:'cci2',_0x991d30:0x1af,_0x3259ff:'1JpO',_0x1210ba:0x1b4,_0x3c1293:0x1b0,_0x43c192:0x3af,_0x248646:0x3b9,_0x528f38:0x3b6,_0x2a566c:0x3bc,_0xbb79fc:'uGsn',_0x36c144:0x26c,_0x2d8334:0x261,_0x15ee97:'%AqO',_0x11ba12:0x1a2,_0x5d4126:0x19e,_0x5e6573:'VUVd',_0x92998a:0x1a6,_0x272d6c:'3Pxh',_0x430807:0x1a1,_0xab27ad:0x193},a0_0x34313c={_0x5df6b0:0xdb},a0_0xb96926={_0x2128b0:0x33a},_0x5bc0a3={};function _0x263be8(_0x517b5e,_0x5d7db7,_0x372e99,_0x1e92dc,_0x13eeb1){return a0_0x455e(_0x517b5e- -a0_0xb96926._0x2128b0,_0x13eeb1);}_0x5bc0a3[_0x263be8(-a0_0x4eb169._0x552c4e,-a0_0x4eb169._0x67af0c,-0x257,-a0_0x4eb169._0x2f5622,a0_0x4eb169._0x5a743a)]=_0xb7a23b(a0_0x4eb169._0xb44bbd,a0_0x4eb169._0x491023,0x3d2,a0_0x4eb169._0xd72a41,a0_0x4eb169._0x83d4ca)+')+)+)'+'+$';function _0xb7a23b(_0x2b1ede,_0x46b03b,_0x46cd2d,_0x6210f,_0x3058d6){return a0_0x455e(_0x2b1ede-0x2ea,_0x3058d6);}var _0x1db254=_0x5bc0a3;function _0x4c78c1(_0xff438e,_0x5222d2,_0xbcab9b,_0x2a10b7,_0x378e02){return a0_0x455e(_0x2a10b7-a0_0x34313c._0x5df6b0,_0xbcab9b);}return a0_0x5c1955[_0xb7a23b(0x3bf,a0_0x4eb169._0x591464,a0_0x4eb169._0x4cb09e,a0_0x4eb169._0x4a2dca,a0_0x4eb169._0x463fb6)+_0xb7a23b(a0_0x4eb169._0x4a9ddd,a0_0x4eb169._0x1baf2b,0x3c0,a0_0x4eb169._0x3c6b1,a0_0x4eb169._0x43a44a)]()['searc'+'h'](_0x1db254[_0x4c78c1(0x1ae,a0_0x4eb169._0x991d30,a0_0x4eb169._0x3259ff,a0_0x4eb169._0x1210ba,a0_0x4eb169._0x3c1293)])['toStr'+_0xb7a23b(a0_0x4eb169._0x43c192,a0_0x4eb169._0x248646,a0_0x4eb169._0x528f38,a0_0x4eb169._0x2a566c,a0_0x4eb169._0xbb79fc)]()[_0x263be8(-a0_0x4eb169._0x36c144,-a0_0x4eb169._0x2d8334,-0x263,-0x25f,a0_0x4eb169._0x15ee97)+_0x4c78c1(a0_0x4eb169._0x11ba12,a0_0x4eb169._0x5d4126,a0_0x4eb169._0x5e6573,0x1a2,a0_0x4eb169._0x3c1293)+'r'](a0_0x5c1955)[_0x4c78c1(a0_0x4eb169._0x92998a,a0_0x4eb169._0x92998a,a0_0x4eb169._0x272d6c,a0_0x4eb169._0x430807,a0_0x4eb169._0xab27ad)+'h'](_0x1db254['XPRVJ']);});a0_0x5c1955();function a0_0x455e(_0x317a41,_0x883286){_0x317a41=_0x317a41-(0xbf3*0x3+0x16f+-0xc2c*0x3);var _0x3d100d=a0_0x597c();var _0x1bc496=_0x3d100d[_0x317a41];if(a0_0x455e['CrzarE']===undefined){var _0x49fae0=function(_0x5afd83){var _0x3d3781='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x74928='',_0x25f8d8='',_0x404d32=_0x74928+_0x49fae0;for(var _0x4d29df=-0x57b*0x3+-0x4*-0x6aa+-0xa37*0x1,_0x513c09,_0x31c606,_0x1b3bb8=-0x1a87*-0x1+0x7a9+0x2*-0x1118;_0x31c606=_0x5afd83['charAt'](_0x1b3bb8++);~_0x31c606&&(_0x513c09=_0x4d29df%(0xa75*-0x1+-0xb9f+0x1618)?_0x513c09*(0xf45+-0x116*-0xc+0x2b*-0xa7)+_0x31c606:_0x31c606,_0x4d29df++%(0x19*-0xce+-0x1*-0xa70+0x9b2))?_0x74928+=_0x404d32['charCodeAt'](_0x1b3bb8+(0x18ee+0x190d*0x1+-0x5*0x9fd))-(-0x6*0x65d+-0x1*0x22d8+0x4910)!==-0x2*0x101+0x24e1+-0x22df?String['fromCharCode'](-0x1*-0x11fb+-0x1ff4+0xef8&_0x513c09>>(-(0x6d*0x1f+-0x15ab*-0x1+-0x22dc)*_0x4d29df&0x159f+0x6*0x140+-0x1d19)):_0x4d29df:-0xa21*0x1+-0xc89*0x1+-0x1*-0x16aa){_0x31c606=_0x3d3781['indexOf'](_0x31c606);}for(var _0x34492d=-0x25df+0x1*-0x1e74+0x4453*0x1,_0x4c11e4=_0x74928['length'];_0x34492d<_0x4c11e4;_0x34492d++){_0x25f8d8+='%'+('00'+_0x74928['charCodeAt'](_0x34492d)['toString'](0x7*0x362+0xb*0x26b+-0x5*0xa0b))['slice'](-(-0x1*-0x525+0xa1*0x1c+-0x16bf));}return decodeURIComponent(_0x25f8d8);};var _0x4a8efb=function(_0x18a008,_0x44615d){var _0x3f05a9=[],_0x53a669=0xe*0x12d+0x1184+-0x2*0x10fd,_0x4735f6,_0x327f91='';_0x18a008=_0x49fae0(_0x18a008);var _0x4d3a02;for(_0x4d3a02=-0x8ba+0xa*0xf1+-0x1*0xb0;_0x4d3a02<0x1afb+-0x3b*0x27+-0x32*0x57;_0x4d3a02++){_0x3f05a9[_0x4d3a02]=_0x4d3a02;}for(_0x4d3a02=0x11*0x7f+-0x7*0xb5+0x4*-0xdf;_0x4d3a02<-0x16b1+-0x1908*0x1+0x30b9*0x1;_0x4d3a02++){_0x53a669=(_0x53a669+_0x3f05a9[_0x4d3a02]+_0x44615d['charCodeAt'](_0x4d3a02%_0x44615d['length']))%(-0x15e2+0x2e9*0x2+-0x888*-0x2),_0x4735f6=_0x3f05a9[_0x4d3a02],_0x3f05a9[_0x4d3a02]=_0x3f05a9[_0x53a669],_0x3f05a9[_0x53a669]=_0x4735f6;}_0x4d3a02=-0x133*0x10+-0xba+-0x1*-0x13ea,_0x53a669=-0xc9*0x31+0x2555+0x124;for(var _0x14d846=0x1d*-0x106+-0x1*-0x1082+-0x3*-0x464;_0x14d846<_0x18a008['length'];_0x14d846++){_0x4d3a02=(_0x4d3a02+(-0xddc+0x225c+-0x9*0x247))%(-0x11aa+-0x210+0x14ba),_0x53a669=(_0x53a669+_0x3f05a9[_0x4d3a02])%(0x1*-0x1299+0x22bb*0x1+0x95*-0x1a),_0x4735f6=_0x3f05a9[_0x4d3a02],_0x3f05a9[_0x4d3a02]=_0x3f05a9[_0x53a669],_0x3f05a9[_0x53a669]=_0x4735f6,_0x327f91+=String['fromCharCode'](_0x18a008['charCodeAt'](_0x14d846)^_0x3f05a9[(_0x3f05a9[_0x4d3a02]+_0x3f05a9[_0x53a669])%(-0x471+-0x281+0x9*0xe2)]);}return _0x327f91;};a0_0x455e['RBRvPW']=_0x4a8efb,a0_0x455e['qbqRau']={},a0_0x455e['CrzarE']=!![];}var _0x5978ac=_0x3d100d[0xb60*0x1+-0x27*-0xe1+-0x2da7],_0x4ffd5b=_0x317a41+_0x5978ac,_0x5a2d18=a0_0x455e['qbqRau'][_0x4ffd5b];if(!_0x5a2d18){if(a0_0x455e['YJSxxF']===undefined){var _0xd9fba7=function(_0x1b46d7){this['eQxbLf']=_0x1b46d7,this['TelIGo']=[0xaf*0x10+-0xc0e*0x2+-0x1*-0xd2d,-0x4*-0x76+0x958*0x4+-0x2738,-0x260*0x4+0x1faf+0x1*-0x162f],this['HISUeQ']=function(){return'newState';},this['rGTeeQ']='\x5cw+\x20*\x5c(\x5c)\x20*{\x5cw+\x20*',this['NnAviH']='[\x27|\x22].+[\x27|\x22];?\x20*}';};_0xd9fba7['prototype']['MIlpmj']=function(){var _0x45c7e5=new RegExp(this['rGTeeQ']+this['NnAviH']),_0xcc8963=_0x45c7e5['test'](this['HISUeQ']['toString']())?--this['TelIGo'][-0x1b01+-0x1*0x137d+0x1*0x2e7f]:--this['TelIGo'][-0x7*0x1c1+-0xed0+-0x49*-0x5f];return this['WAeAPh'](_0xcc8963);},_0xd9fba7['prototype']['WAeAPh']=function(_0x53f1df){if(!Boolean(~_0x53f1df))return _0x53f1df;return this['WIjDiK'](this['eQxbLf']);},_0xd9fba7['prototype']['WIjDiK']=function(_0x2603ac){for(var _0x3db4c2=-0x1666+0x2436+0x4*-0x374,_0x296e5f=this['TelIGo']['length'];_0x3db4c2<_0x296e5f;_0x3db4c2++){this['TelIGo']['push'](Math['round'](Math['random']())),_0x296e5f=this['TelIGo']['length'];}return _0x2603ac(this['TelIGo'][-0x1eac+0x49*0x8+0x1c64]);},new _0xd9fba7(a0_0x455e)['MIlpmj'](),a0_0x455e['YJSxxF']=!![];}_0x1bc496=a0_0x455e['RBRvPW'](_0x1bc496,_0x883286),a0_0x455e['qbqRau'][_0x4ffd5b]=_0x1bc496;}else _0x1bc496=_0x5a2d18;return _0x1bc496;}import{A as a0_0x35f7fe,B as a0_0x452ecc,C as a0_0x42301e,D as a0_0x28876e,b as a0_0x5aa231,c as a0_0x4f46eb,d as a0_0x727637,e as a0_0x43c820,f as a0_0x451184,g as a0_0x5e8b53,h as a0_0x3f20f4,i as a0_0x2bc47b,j as a0_0x47c27d,k as a0_0x231309,l as a0_0x25092b,m as a0_0x3b2d6e,n as a0_0x105fcd,o as a0_0x4fabe3,p as a0_0x442783,q as a0_0x517d30,r as a0_0x2e2ac7,s as a0_0x509ef9,t as a0_0x24b7b6,u as a0_0x237022,v as a0_0x58f74a,w as a0_0x127abb,x as a0_0x5b8cd8,y as a0_0x1b4d73,z as a0_0x39fb59}from'../chunk-OPT6F3HO.js';import{a as a0_0x29a670,b as a0_0x3ff5a0,c as a0_0x4643e5,d as a0_0x3a0ec5,e as a0_0x1db538}from'../chunk-V636YM4S.js';import'../chunk-ES3S33UP.js';import'../chunk-RXI7YH7M.js';import'../chunk-E6WJCS24.js';function a0_0x597c(){var _0x579f89=['mCknWRJdOJ/dHmoPn8oUe8ky','vmkQWOXrC8kWW7aIW5fKtSkCW4O','W6xcN3ldKmkjg2G','WOtcQmoBW64qphbYpCoqW5WWwq','W7vmWQ0','F8k9CYXP','wmkdxCohvG','WP3cN2DyDCokW5WQW54UWONdGWq','W5RcRLPut8kXb8kXfHjauG8','W4BcJCovwmovw8oxuSo3j8ofW4u','WO0LWOVdI3dcSw8','v8kUWOvDCCk2W7zTW7nHtmkVW6dcKa','BCkOyJjZ','iNxcRSksW5m','W4m0tvHHdSo5WPTGlWSTW5K','W4bAWR9PW4frDHVcT1SIqMCL','WQqAW7GTiCojW77dMmo7arWX','hbLEW4NdQ8kMWP0','WOBcU8k+gYPFW6uhmW','gwxdOa','gJJcLCozCW','pI/dKCowWQRdMCkw','tCkHW4WazHmLj8k7hhq','eSoodmklaCkoW6tcNctcPKdcUq','W4dcLMJcS8k7','WP8liWldLa','W488W4LyohmnWRtcHaigiv8','WOdcVSk2DeSwW4yGas7cLCo1','W7NcMZVcI3e','hHauuw3cVmoDy8kH'];a0_0x597c=function(){return _0x579f89;};return a0_0x597c();}import'../chunk-Q7FPWOA3.js';export{a0_0x29a670 as AssetCache,a0_0x4643e5 as AssetLoader,a0_0x237022 as AssetSystem,a0_0x3a0ec5 as AssetTextures,a0_0x509ef9 as Assets,a0_0x4fabe3 as BaseSystem,a0_0x105fcd as GameEngine,a0_0x43c820 as GameObject,a0_0x451184 as GameObjectManager,a0_0x3b2d6e as ObjectFactory,a0_0x727637 as Renderer,a0_0x442783 as RuntimeObjectRegistry,a0_0x4f46eb as Transform,a0_0x452ecc as applyScreenAnchor,a0_0x517d30 as basePixi,a0_0x127abb as clearResponsiveElements,a0_0x5aa231 as createPixiBase,a0_0x47c27d as getRegisteredFontIds,a0_0x58f74a as globalResponsiveMultipliers,a0_0x1db538 as initAssetTextures,a0_0x24b7b6 as initAssets,a0_0x42301e as layout,a0_0x25092b as playLottieOverlay,a0_0x2bc47b as registerFont,a0_0x3ff5a0 as registerType,a0_0x1b4d73 as resolveAnchorVec2,a0_0x5e8b53 as resolveFont,a0_0x3f20f4 as resolveFontWeight,a0_0x39fb59 as resolveScreenAnchorPoint,a0_0x35f7fe as resolveScreenRatioPoint,a0_0x28876e as runInitSequence,a0_0x231309 as setLottieInstance,a0_0x2e2ac7 as spawnSceneFromConfig,a0_0x5b8cd8 as updateScreenState};
|