lythreeframe 1.3.3 → 1.3.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.
Files changed (69) hide show
  1. package/dist/bundle.cjs.js +58 -54
  2. package/dist/bundle.cjs.js.map +1 -1
  3. package/dist/bundle.esm.js +59 -56
  4. package/dist/bundle.esm.js.map +1 -1
  5. package/dist/index.d.ts +72 -70
  6. package/dist/src/AssetManagement/AssetDefines.d.ts +65 -0
  7. package/dist/src/AssetManagement/AssetManager.d.ts +35 -0
  8. package/dist/src/AssetManagement/AssetPointer/AssetPointer.d.ts +20 -0
  9. package/dist/src/AssetManagement/AssetPointer/Assets/GeometryAssetPointer.d.ts +5 -0
  10. package/dist/src/AssetManagement/AssetPointer/Assets/MaterialAssetPointer.d.ts +24 -0
  11. package/dist/src/AssetManagement/AssetPointer/Assets/TextureAssetPointer.d.ts +5 -0
  12. package/dist/src/Container/SmartPointer.d.ts +15 -0
  13. package/dist/src/Defines.d.ts +4 -0
  14. package/dist/src/Delegate.d.ts +8 -0
  15. package/dist/src/Factory/CameraFactory.d.ts +6 -0
  16. package/dist/src/Factory/RendererFactory.d.ts +2 -0
  17. package/dist/src/Frame/Controller.d.ts +130 -0
  18. package/dist/src/Frame/Parameters/AppParameter.d.ts +25 -0
  19. package/dist/src/Frame/Parameters/CameraParameter.d.ts +22 -0
  20. package/dist/src/Frame/Parameters/RendererParameters.d.ts +17 -0
  21. package/dist/src/Frame/Parameters/ViewportParameters.d.ts +6 -0
  22. package/dist/src/Frame/Parameters/WorldParameter.d.ts +5 -0
  23. package/dist/src/Frame/Rendering/PostProcess.d.ts +45 -0
  24. package/dist/src/Frame/Viewport.d.ts +52 -0
  25. package/dist/src/Frame/World.d.ts +29 -0
  26. package/dist/src/Geometry/PlaneGeometry.d.ts +3 -0
  27. package/dist/src/Geometry/TriangleGeometry.d.ts +3 -0
  28. package/dist/src/Library/ContainerLibrary.d.ts +3 -0
  29. package/dist/src/Library/Debounce.d.ts +1 -0
  30. package/dist/src/Library/Math.d.ts +27 -0
  31. package/dist/src/Library/ResourceLibrary.d.ts +7 -0
  32. package/dist/src/Object/Actor.d.ts +86 -0
  33. package/dist/src/Object/Actors/Level/LevelActor.d.ts +13 -0
  34. package/dist/src/Object/Actors/Light/AmbientLightActor.d.ts +9 -0
  35. package/dist/src/Object/Actors/Light/DirectionalLightActor.d.ts +9 -0
  36. package/dist/src/Object/Actors/Shape/BoxActor.d.ts +7 -0
  37. package/dist/src/Object/Actors/Shape/PlaneActor.d.ts +8 -0
  38. package/dist/src/Object/Actors/Sky/SkyActor.d.ts +9 -0
  39. package/dist/src/Object/BaseObject.d.ts +14 -0
  40. package/dist/src/Object/Components/2D/2DComponent.d.ts +14 -0
  41. package/dist/src/Object/Components/Component.d.ts +18 -0
  42. package/dist/src/Object/Components/Level/LevelComponent.d.ts +9 -0
  43. package/dist/src/Object/Components/Light/AmbientLight/AmbientLightComponent.d.ts +16 -0
  44. package/dist/src/Object/Components/Light/DirectionalLight/DirectionalLightComponent.d.ts +16 -0
  45. package/dist/src/Object/Components/Light/LightComponent.d.ts +12 -0
  46. package/dist/src/Object/Components/Mesh/CustomMeshComponent.d.ts +63 -0
  47. package/dist/src/Object/Components/Mesh/MeshComponent.d.ts +28 -0
  48. package/dist/src/Object/Components/Mesh/Shape/BoxComponent.d.ts +6 -0
  49. package/dist/src/Object/Components/Mesh/Shape/PlaneComponent.d.ts +6 -0
  50. package/dist/src/Object/Components/Mesh/Shape/SphereComponent.d.ts +6 -0
  51. package/dist/src/Object/Components/Mesh/Sprite/SpriteComponent.d.ts +9 -0
  52. package/dist/src/Object/Components/SceneComponent.d.ts +79 -0
  53. package/dist/src/Object/Components/Sky/SkyComponent.d.ts +22 -0
  54. package/dist/src/Object/PawnV2/FirstPerson.d.ts +11 -0
  55. package/dist/src/Object/PawnV2/Oribital.d.ts +22 -0
  56. package/dist/src/Object/PawnV2/Pawn.d.ts +22 -0
  57. package/dist/src/Object/PawnV2/TransformControl.d.ts +62 -0
  58. package/dist/src/PostProcess/Param/AAParam.d.ts +6 -0
  59. package/dist/src/PostProcess/Param/Bloom.d.ts +8 -0
  60. package/dist/src/PostProcess/Param/DOF.d.ts +8 -0
  61. package/dist/src/PostProcess/Param/GTAO.d.ts +12 -0
  62. package/dist/src/PostProcess/Param/LensFlare.d.ts +11 -0
  63. package/dist/src/PostProcess/Param/MotionBlur.d.ts +4 -0
  64. package/dist/src/PostProcess/Param/Outline.d.ts +12 -0
  65. package/dist/src/PostProcess/Param/SSR.d.ts +8 -0
  66. package/dist/src/PostProcess/PostProcessParam.d.ts +16 -0
  67. package/dist/src/Shader/Postprocess/ColorShader.d.ts +29 -0
  68. package/dist/src/ThreeJsApp.d.ts +37 -0
  69. package/package.json +1 -1
@@ -14,117 +14,120 @@ var LensflareNode_js = require('three/examples/jsm/tsl/display/LensflareNode.js'
14
14
  var gsap = require('gsap');
15
15
  var three = require('three');
16
16
  var SkyMesh_js = require('three/examples/jsm/objects/SkyMesh.js');
17
+ var _0x2d3ee0 = require('earcut');
17
18
  var CSS2DRenderer_js = require('three/examples/jsm/renderers/CSS2DRenderer.js');
18
19
  var PointerLockControls_js = require('three/examples/jsm/controls/PointerLockControls.js');
19
20
  var TransformControls_js = require('three/examples/jsm/controls/TransformControls.js');
20
21
 
21
- const _0x219d91=_0x620a;function _0x3664(){const _0x506c29=['generateUUID','forEach','3061988wVweEn','indexOf','3uhcxtR','36786432hwtLDg','push','isTickEnabled','2593175eMEBBq','20KTyERh','_uuid','434oLFJBX','tickEvents','8387489bJfXeU','18166fInjsv','6800872maqJoJ','tick','clearTickEvents','addTickEvent','removeTickEvent','splice','127nPdfaL','destroy','98628fnBmEB','bCanTick','9SmIYLa'];_0x3664=function(){return _0x506c29;};return _0x3664();}(function(_0xcd4f40,_0xc4fff){const _0x49b49c=_0x620a,_0x5e5247=_0xcd4f40();while(!![]){try{const _0x3f854c=-parseInt(_0x49b49c(0x1ee))/0x1*(parseInt(_0x49b49c(0x1e7))/0x2)+-parseInt(_0x49b49c(0x1dd))/0x3*(-parseInt(_0x49b49c(0x1db))/0x4)+-parseInt(_0x49b49c(0x1e1))/0x5+-parseInt(_0x49b49c(0x1d6))/0x6*(-parseInt(_0x49b49c(0x1e4))/0x7)+parseInt(_0x49b49c(0x1e8))/0x8*(-parseInt(_0x49b49c(0x1d8))/0x9)+-parseInt(_0x49b49c(0x1e2))/0xa*(parseInt(_0x49b49c(0x1e6))/0xb)+parseInt(_0x49b49c(0x1de))/0xc;if(_0x3f854c===_0xc4fff)break;else _0x5e5247['push'](_0x5e5247['shift']());}catch(_0x36beb0){_0x5e5247['push'](_0x5e5247['shift']());}}}(_0x3664,0xc405a));function _0x620a(_0x5c01fe,_0x18bb7e){_0x5c01fe=_0x5c01fe-0x1d6;const _0x3664ea=_0x3664();let _0x620aef=_0x3664ea[_0x5c01fe];return _0x620aef;}class BaseObject{get[_0x219d91(0x1e0)](){const _0x1344dd=_0x219d91;return this[_0x1344dd(0x1d7)];}set[_0x219d91(0x1e0)](_0x25f5b4){const _0x516ef8=_0x219d91;this[_0x516ef8(0x1d7)]=_0x25f5b4;}get['uuid'](){const _0x1af3e9=_0x219d91;return this[_0x1af3e9(0x1e3)];}constructor(_0x1bb619=webgpu.MathUtils[_0x219d91(0x1d9)]()){const _0x3cb49c=_0x219d91;this[_0x3cb49c(0x1d7)]=![],this[_0x3cb49c(0x1e5)]=[],this[_0x3cb49c(0x1d7)]=![],this[_0x3cb49c(0x1e3)]=_0x1bb619;}[_0x219d91(0x1e9)](_0x1e07d2){const _0x3bbf67=_0x219d91;if(!this['bCanTick'])return;this['tickEvents'][_0x3bbf67(0x1da)](_0x4cdcef=>{_0x4cdcef(_0x1e07d2);});}[_0x219d91(0x1eb)](_0x2dc430){const _0x51cbb5=_0x219d91;this[_0x51cbb5(0x1e5)][_0x51cbb5(0x1df)](_0x2dc430);}[_0x219d91(0x1ec)](_0x45b51c){const _0x1985b7=_0x219d91;let _0xd0389b=this[_0x1985b7(0x1e5)][_0x1985b7(0x1dc)](_0x45b51c);_0xd0389b!=-1&&this[_0x1985b7(0x1e5)][_0x1985b7(0x1ed)](_0xd0389b,0x1);}[_0x219d91(0x1ea)](){this['tickEvents']=[];}[_0x219d91(0x1ef)](){}}
22
+ const _0x5ead49=_0x80f9;(function(_0xe39757,_0x167dfb){const _0x4e5b50=_0x80f9,_0x357013=_0xe39757();while(!![]){try{const _0x165984=-parseInt(_0x4e5b50(0x7c))/0x1*(parseInt(_0x4e5b50(0x83))/0x2)+parseInt(_0x4e5b50(0x85))/0x3*(-parseInt(_0x4e5b50(0x76))/0x4)+parseInt(_0x4e5b50(0x6f))/0x5*(-parseInt(_0x4e5b50(0x70))/0x6)+-parseInt(_0x4e5b50(0x77))/0x7+-parseInt(_0x4e5b50(0x7a))/0x8*(-parseInt(_0x4e5b50(0x75))/0x9)+parseInt(_0x4e5b50(0x79))/0xa+parseInt(_0x4e5b50(0x87))/0xb*(parseInt(_0x4e5b50(0x81))/0xc);if(_0x165984===_0x167dfb)break;else _0x357013['push'](_0x357013['shift']());}catch(_0x2265fe){_0x357013['push'](_0x357013['shift']());}}}(_0x5cde,0x6462b));function _0x80f9(_0x1e5e3a,_0x218ae2){_0x1e5e3a=_0x1e5e3a-0x6f;const _0x5cde45=_0x5cde();let _0x80f9df=_0x5cde45[_0x1e5e3a];return _0x80f9df;}class BaseObject{get[_0x5ead49(0x72)](){const _0x4e58dd=_0x5ead49;return this[_0x4e58dd(0x82)];}set[_0x5ead49(0x72)](_0x1ffe5e){const _0x563894=_0x5ead49;this[_0x563894(0x82)]=_0x1ffe5e;}get[_0x5ead49(0x74)](){const _0x143ece=_0x5ead49;return this[_0x143ece(0x78)];}constructor(_0x46850b=webgpu.MathUtils['generateUUID']()){const _0x4abb8c=_0x5ead49;this[_0x4abb8c(0x82)]=![],this['tickEvents']=[],this[_0x4abb8c(0x82)]=![],this[_0x4abb8c(0x78)]=_0x46850b;}['tick'](_0x5d9c78){const _0xd572c7=_0x5ead49;if(!this[_0xd572c7(0x82)])return;this['tickEvents'][_0xd572c7(0x73)](_0x2c0270=>{_0x2c0270(_0x5d9c78);});}[_0x5ead49(0x71)](_0x3c872b){const _0x288f1b=_0x5ead49;this['tickEvents'][_0x288f1b(0x7b)](_0x3c872b);}[_0x5ead49(0x80)](_0x56d6d9){const _0x5924d5=_0x5ead49;let _0x575aef=this[_0x5924d5(0x7d)][_0x5924d5(0x84)](_0x56d6d9);_0x575aef!=-1&&this[_0x5924d5(0x7d)][_0x5924d5(0x7f)](_0x575aef,0x1);}[_0x5ead49(0x7e)](){const _0x5aef96=_0x5ead49;this[_0x5aef96(0x7d)]=[];}[_0x5ead49(0x86)](){}}function _0x5cde(){const _0x1e0d44=['1611gAZZBg','58248wKuOtq','2739583sEzWWz','_uuid','7101020dOhjyB','28352crqOOn','push','468851OAjkov','tickEvents','clearTickEvents','splice','removeTickEvent','12mxBaWf','bCanTick','2GcyZEY','indexOf','126EvmHdY','destroy','8580385fIwQQB','50RymHNJ','144906OzpvtW','addTickEvent','isTickEnabled','forEach','uuid'];_0x5cde=function(){return _0x1e0d44;};return _0x5cde();}
22
23
 
23
- const _0x3c1b3b=_0x2def;(function(_0x3dcdf7,_0x3223e9){const _0x42eac8=_0x2def,_0x65298a=_0x3dcdf7();while(!![]){try{const _0x29b3c8=-parseInt(_0x42eac8(0x72))/0x1*(-parseInt(_0x42eac8(0x7c))/0x2)+parseInt(_0x42eac8(0x75))/0x3+-parseInt(_0x42eac8(0x7a))/0x4*(parseInt(_0x42eac8(0x79))/0x5)+parseInt(_0x42eac8(0x6d))/0x6*(parseInt(_0x42eac8(0x74))/0x7)+-parseInt(_0x42eac8(0x6c))/0x8+-parseInt(_0x42eac8(0x80))/0x9*(-parseInt(_0x42eac8(0x6f))/0xa)+parseInt(_0x42eac8(0x70))/0xb;if(_0x29b3c8===_0x3223e9)break;else _0x65298a['push'](_0x65298a['shift']());}catch(_0x57dacd){_0x65298a['push'](_0x65298a['shift']());}}}(_0x3675,0x6b78e));function _0x3675(){const _0x36c51d=['createDefaultObject','1720oNaMsa','7358065UbgvOM','_parentActor','373UWwbwB','threeObject','21aPCMXL','401622DYYINM','destroyObject','name','parentActor','495bLjvbj','19732iaPhWC','destroy','98HxuBHO','obj','generateUUID','LYObject','11430VPvSID','_name','userData','3429568myNfVv','635526kTSepK'];_0x3675=function(){return _0x36c51d;};return _0x3675();}function _0x2def(_0x4e2552,_0x14a334){_0x4e2552=_0x4e2552-0x6b;const _0x3675cd=_0x3675();let _0x2defe1=_0x3675cd[_0x4e2552];return _0x2defe1;}class Component extends BaseObject{set[_0x3c1b3b(0x78)](_0x53d304){const _0x58a03d=_0x3c1b3b;this[_0x58a03d(0x71)]=_0x53d304;}get['parentActor'](){return this['_parentActor'];}get[_0x3c1b3b(0x73)](){const _0x1b4df6=_0x3c1b3b;return this[_0x1b4df6(0x7d)];}set[_0x3c1b3b(0x73)](_0x26fe03){const _0x4c18e5=_0x3c1b3b;this[_0x4c18e5(0x7d)]=_0x26fe03,this[_0x4c18e5(0x7d)]&&(this[_0x4c18e5(0x7d)][_0x4c18e5(0x6b)][_0x4c18e5(0x7f)]=this);}get[_0x3c1b3b(0x77)](){const _0x42f1a8=_0x3c1b3b;return this[_0x42f1a8(0x81)];}set[_0x3c1b3b(0x77)](_0x4ddabf){const _0x424897=_0x3c1b3b;this[_0x424897(0x81)]=_0x4ddabf,this[_0x424897(0x7d)]&&(this[_0x424897(0x7d)][_0x424897(0x77)]=_0x4ddabf);}constructor(_0x41c58f){const _0x123cd4=_0x3c1b3b;super(_0x41c58f?_0x41c58f:webgpu.MathUtils[_0x123cd4(0x7e)]()),this['obj']=null,this['_parentActor']=null,this['_name']='Component',this['_parentActor']=null;let _0x58b628=this[_0x123cd4(0x6e)]();_0x58b628?(this[_0x123cd4(0x73)]=_0x58b628,this['_name']=this[_0x123cd4(0x73)]['type']+'Component'):console['warn']('Component\x20createDefaultObject\x20return\x20null');}[_0x3c1b3b(0x6e)](_0x35c747){return null;}[_0x3c1b3b(0x76)](){const _0x7c95c4=_0x3c1b3b;if(!this[_0x7c95c4(0x7d)])return;}[_0x3c1b3b(0x7b)](){const _0x286cd5=_0x3c1b3b;this[_0x286cd5(0x76)]();}}
24
+ const _0x28c41e=_0x4a21;(function(_0x2a0d5a,_0x2fb0af){const _0x1b6708=_0x4a21,_0x28e386=_0x2a0d5a();while(!![]){try{const _0x2e6dea=-parseInt(_0x1b6708(0x17f))/0x1+parseInt(_0x1b6708(0x177))/0x2+parseInt(_0x1b6708(0x181))/0x3*(parseInt(_0x1b6708(0x189))/0x4)+parseInt(_0x1b6708(0x17d))/0x5*(parseInt(_0x1b6708(0x180))/0x6)+parseInt(_0x1b6708(0x188))/0x7+parseInt(_0x1b6708(0x17b))/0x8+-parseInt(_0x1b6708(0x18b))/0x9;if(_0x2e6dea===_0x2fb0af)break;else _0x28e386['push'](_0x28e386['shift']());}catch(_0x39c197){_0x28e386['push'](_0x28e386['shift']());}}}(_0x2d4e,0x1a5a4));function _0x4a21(_0x4b3344,_0x1babf5){_0x4b3344=_0x4b3344-0x175;const _0x2d4ec9=_0x2d4e();let _0x4a216a=_0x2d4ec9[_0x4b3344];return _0x4a216a;}function _0x2d4e(){const _0xa5bc77=['725oBmPzi','LYObject','13855ebwgMS','8106SJqIht','3786DQkSaB','threeObject','_parentActor','createDefaultObject','_name','parentActor','destroyObject','974036suTIvI','436ZOjGlq','userData','4504662EcYYeW','destroy','obj','292652FsIoWT','Component','name','type','27088hsSLGZ','generateUUID'];_0x2d4e=function(){return _0xa5bc77;};return _0x2d4e();}class Component extends BaseObject{set[_0x28c41e(0x186)](_0x10538d){this['_parentActor']=_0x10538d;}get[_0x28c41e(0x186)](){const _0x227bca=_0x28c41e;return this[_0x227bca(0x183)];}get['threeObject'](){const _0x841c3d=_0x28c41e;return this[_0x841c3d(0x176)];}set['threeObject'](_0x9f67f6){const _0x554054=_0x28c41e;this[_0x554054(0x176)]=_0x9f67f6,this[_0x554054(0x176)]&&(this[_0x554054(0x176)][_0x554054(0x18a)][_0x554054(0x17e)]=this);}get[_0x28c41e(0x179)](){const _0x37204c=_0x28c41e;return this[_0x37204c(0x185)];}set[_0x28c41e(0x179)](_0x35d72a){const _0x9d831c=_0x28c41e;this[_0x9d831c(0x185)]=_0x35d72a,this[_0x9d831c(0x176)]&&(this[_0x9d831c(0x176)][_0x9d831c(0x179)]=_0x35d72a);}constructor(_0x8fb043){const _0x23396e=_0x28c41e;super(_0x8fb043?_0x8fb043:webgpu.MathUtils[_0x23396e(0x17c)]()),this['obj']=null,this[_0x23396e(0x183)]=null,this['_name']=_0x23396e(0x178),this['_parentActor']=null;let _0x4f0f58=this[_0x23396e(0x184)]();_0x4f0f58?(this[_0x23396e(0x182)]=_0x4f0f58,this['_name']=this[_0x23396e(0x182)][_0x23396e(0x17a)]+_0x23396e(0x178)):console['warn']('Component\x20createDefaultObject\x20return\x20null');}[_0x28c41e(0x184)](_0x4cd5c3){return null;}[_0x28c41e(0x187)](){const _0x2734a5=_0x28c41e;if(!this[_0x2734a5(0x176)])return;}[_0x28c41e(0x175)](){const _0x26996d=_0x28c41e;this[_0x26996d(0x187)]();}}
24
25
 
25
- function _0x8dc5(){var _0x18671f=['KeepRelative','1077000jPJBuz','736057zvtfEP','348264aPTJfh','852122DBkuTd','992955NKurGv','117rLbXee','2550hplAMh','14424aorRoC','KeepWorld','2425iVSvJJ'];_0x8dc5=function(){return _0x18671f;};return _0x8dc5();}function _0x49fc(_0x453632,_0x234ebb){_0x453632=_0x453632-0x6e;var _0x8dc52f=_0x8dc5();var _0x49fc09=_0x8dc52f[_0x453632];return _0x49fc09;}(function(_0x45ab76,_0x2e52ec){var _0x45bb28=_0x49fc,_0x43b692=_0x45ab76();while(!![]){try{var _0x3028f8=parseInt(_0x45bb28(0x71))/0x1+-parseInt(_0x45bb28(0x72))/0x2+parseInt(_0x45bb28(0x73))/0x3+-parseInt(_0x45bb28(0x6f))/0x4+-parseInt(_0x45bb28(0x78))/0x5*(-parseInt(_0x45bb28(0x75))/0x6)+parseInt(_0x45bb28(0x70))/0x7+parseInt(_0x45bb28(0x76))/0x8*(-parseInt(_0x45bb28(0x74))/0x9);if(_0x3028f8===_0x2e52ec)break;else _0x43b692['push'](_0x43b692['shift']());}catch(_0x5cf5a3){_0x43b692['push'](_0x43b692['shift']());}}}(_0x8dc5,0x4259f));exports.AttachmentRules = void 0;(function(_0x2bc9fd){var _0xcda9ea=_0x49fc;_0x2bc9fd[_0x2bc9fd[_0xcda9ea(0x77)]=0x1]=_0xcda9ea(0x77),_0x2bc9fd[_0x2bc9fd[_0xcda9ea(0x6e)]=0x2]=_0xcda9ea(0x6e);}(exports.AttachmentRules||(exports.AttachmentRules={})));
26
+ (function(_0x4e5ee2,_0x33b97e){var _0x214c11=_0x8b42,_0x59e9fa=_0x4e5ee2();while(!![]){try{var _0x38100d=parseInt(_0x214c11(0x6e))/0x1*(-parseInt(_0x214c11(0x6c))/0x2)+-parseInt(_0x214c11(0x6b))/0x3+parseInt(_0x214c11(0x73))/0x4+parseInt(_0x214c11(0x6f))/0x5*(-parseInt(_0x214c11(0x6a))/0x6)+parseInt(_0x214c11(0x72))/0x7*(parseInt(_0x214c11(0x74))/0x8)+-parseInt(_0x214c11(0x71))/0x9+parseInt(_0x214c11(0x76))/0xa*(parseInt(_0x214c11(0x75))/0xb);if(_0x38100d===_0x33b97e)break;else _0x59e9fa['push'](_0x59e9fa['shift']());}catch(_0x63eff){_0x59e9fa['push'](_0x59e9fa['shift']());}}}(_0x55f5,0x3b4ee));function _0x55f5(){var _0x1263e9=['8DksTtM','4661239CSDmnO','10gkZYPm','2455680eQbBwn','772563Rylllt','6MIGJiB','KeepRelative','73580bYEfGd','5UOCgTe','KeepWorld','464346KUUvlZ','1942899AWkYlN','1923020KlBqNO'];_0x55f5=function(){return _0x1263e9;};return _0x55f5();}exports.AttachmentRules = void 0;function _0x8b42(_0x5bcd5c,_0x340db8){_0x5bcd5c=_0x5bcd5c-0x6a;var _0x55f5c7=_0x55f5();var _0x8b4210=_0x55f5c7[_0x5bcd5c];return _0x8b4210;}(function(_0x1999df){var _0x2adde3=_0x8b42;_0x1999df[_0x1999df['KeepWorld']=0x1]=_0x2adde3(0x70),_0x1999df[_0x1999df['KeepRelative']=0x2]=_0x2adde3(0x6d);}(exports.AttachmentRules||(exports.AttachmentRules={})));
26
27
 
27
- function _0x21cb(){const _0x351e63=['730512oLpwTO','add','remove','21948GmZgfg','1459180DgUUPw','7655368lphLQV','140PRFhCT','clear','346854wNFgNq','function\x20not\x20found','indexOf','24376932soRJIL','functions','splice','183849WjdWDR','warn','78GFKyhB','forEach'];_0x21cb=function(){return _0x351e63;};return _0x21cb();}const _0x48c71d=_0x3058;function _0x3058(_0x2b69c5,_0x25979d){_0x2b69c5=_0x2b69c5-0x191;const _0x21cbdd=_0x21cb();let _0x3058c5=_0x21cbdd[_0x2b69c5];return _0x3058c5;}(function(_0x2bfa92,_0x27b8df){const _0x20df94=_0x3058,_0xf3f34b=_0x2bfa92();while(!![]){try{const _0x4cb012=-parseInt(_0x20df94(0x19e))/0x1+parseInt(_0x20df94(0x1a2))/0x2+-parseInt(_0x20df94(0x1a0))/0x3*(-parseInt(_0x20df94(0x193))/0x4)+-parseInt(_0x20df94(0x194))/0x5+parseInt(_0x20df94(0x198))/0x6*(-parseInt(_0x20df94(0x196))/0x7)+-parseInt(_0x20df94(0x195))/0x8+parseInt(_0x20df94(0x19b))/0x9;if(_0x4cb012===_0x27b8df)break;else _0xf3f34b['push'](_0xf3f34b['shift']());}catch(_0x3aed05){_0xf3f34b['push'](_0xf3f34b['shift']());}}}(_0x21cb,0x993e0));class Delegate{constructor(){this['functions']=[];}['broadcast'](..._0x40ca02){const _0xf9ffc6=_0x3058;this[_0xf9ffc6(0x19c)][_0xf9ffc6(0x1a1)](_0x3a8c89=>_0x3a8c89(..._0x40ca02));}[_0x48c71d(0x191)](_0x55cf6b){const _0x30558a=_0x48c71d;this[_0x30558a(0x19c)]['push'](_0x55cf6b);}[_0x48c71d(0x192)](_0x21a66b){const _0x5d1d62=_0x48c71d,_0x601861=this[_0x5d1d62(0x19c)][_0x5d1d62(0x19a)](_0x21a66b);_0x601861>=0x0?this[_0x5d1d62(0x19c)][_0x5d1d62(0x19d)](_0x601861,0x1):console[_0x5d1d62(0x19f)](_0x5d1d62(0x199));}[_0x48c71d(0x197)](){const _0xffcb04=_0x48c71d;this[_0xffcb04(0x19c)]=[];}}
28
+ const _0x55c6c5=_0x461f;(function(_0x3c8c10,_0x39a4b3){const _0x245dc5=_0x461f,_0x1f565a=_0x3c8c10();while(!![]){try{const _0x550cff=-parseInt(_0x245dc5(0xb7))/0x1+parseInt(_0x245dc5(0xbb))/0x2+parseInt(_0x245dc5(0xbe))/0x3*(-parseInt(_0x245dc5(0xc0))/0x4)+-parseInt(_0x245dc5(0xc1))/0x5+-parseInt(_0x245dc5(0xbc))/0x6+-parseInt(_0x245dc5(0xbd))/0x7+parseInt(_0x245dc5(0xbf))/0x8;if(_0x550cff===_0x39a4b3)break;else _0x1f565a['push'](_0x1f565a['shift']());}catch(_0x115d61){_0x1f565a['push'](_0x1f565a['shift']());}}}(_0x153a,0xc058b));function _0x153a(){const _0x571f8e=['4094427pRzIdD','37000024meVpIk','4kxsiPP','5873770kiyMTM','indexOf','functions','broadcast','add','1339739rmhvUQ','function\x20not\x20found','splice','warn','2894526hQyDnX','6306102AskxPr','2478672KbLQuZ'];_0x153a=function(){return _0x571f8e;};return _0x153a();}function _0x461f(_0x447192,_0x16bccc){_0x447192=_0x447192-0xb7;const _0x153ab5=_0x153a();let _0x461fd4=_0x153ab5[_0x447192];return _0x461fd4;}class Delegate{constructor(){const _0x2b9a16=_0x461f;this[_0x2b9a16(0xc3)]=[];}[_0x55c6c5(0xc4)](..._0x14cca0){const _0x1779ab=_0x55c6c5;this[_0x1779ab(0xc3)]['forEach'](_0x44eca5=>_0x44eca5(..._0x14cca0));}[_0x55c6c5(0xc5)](_0x2f912b){this['functions']['push'](_0x2f912b);}['remove'](_0x189e29){const _0x52a1e7=_0x55c6c5,_0x3da1ac=this[_0x52a1e7(0xc3)][_0x52a1e7(0xc2)](_0x189e29);_0x3da1ac>=0x0?this[_0x52a1e7(0xc3)][_0x52a1e7(0xb9)](_0x3da1ac,0x1):console[_0x52a1e7(0xba)](_0x52a1e7(0xb8));}['clear'](){this['functions']=[];}}
28
29
 
29
- function _0x58dc(_0x2de2ae,_0x4ef695){_0x2de2ae=_0x2de2ae-0x87;const _0x208736=_0x2087();let _0x58dcb5=_0x208736[_0x2de2ae];return _0x58dcb5;}function _0x2087(){const _0xc4b106=['userData','app','isQuaternion','addChildComponent','copy','destroy','setFromQuaternion','getBoundsBottomCenterPositionWS','_onClickDelegate','getCenter','compose','target\x20threeObject\x20is\x20invalid','4DSrsAr','attachComponent','order','4856bzSiZg','destroyObject','39846qDjdFh','onHorveringEnd','max','getRotation','getWorldRightDirection','uuid','add','setVisible','parentActor','getWorldPosition','isEmpty','decompose','_parentActor','onClickDelegate','LYObject','matrix','push','_onHoverBeginDelegate','matrixAutoUpdate','607470qYoJyl','world','7670UiDeIG','number','viewport','setScale','onAddedToWorld','isHoverEnabled','22328dcegGH','getWorldScale','129hGaDJm','onClicked','getWorldForwardDirection','newComponent\x20threeObject\x20is\x20invalid','setQuaternion\x20failed,param\x20is\x20invalid','forEach','children','onDoubleClicked','isVisible','clone','isClickEnabled','childrenComponents','detachFromParentComponent','applyQuaternion','setMatrix','getWorldRotation','setLayers','set','position','updateMatrixWorld','broadcast','scale','_onHoverEndDelegate','getComponentById','name','destroyChildren','obj','getWorldQuaternion','getBounds','length','bCanClick','1071vowhMu','onDoubleClickDelegate','visible','removeChildComponent','onHorveringBegin','822PQzAmJ','quaternion','getBoundsTopCenterPositionWS','layers','threeObject','tick','markRenderStateDirty','rotation','12qExAbt','threeObject\x20is\x20invalid','_onDoubleClickDelegate','1807515VbDwQl','parentComponent','onHoverEndDelegate','onHoverBeginDelegate','isVector3','error','setFromObject','KeepWorld','SceneComponent','getMatrix','getBoundsCenterPositionWS','remove','parent','matrixWorld','bCanHover','getWorldMatrix','setWorldMatrix','updateMatrix','worldToLocal','setPosition','2936494xDbiUm','detachComponent','getQuaternion'];_0x2087=function(){return _0xc4b106;};return _0x2087();}const _0x35dfae=_0x58dc;(function(_0x4d1120,_0x1f4f59){const _0x23f697=_0x58dc,_0x5fac34=_0x4d1120();while(!![]){try{const _0x4864c6=parseInt(_0x23f697(0x8f))/0x1*(-parseInt(_0x23f697(0x8a))/0x2)+-parseInt(_0x23f697(0xac))/0x3*(-parseInt(_0x23f697(0xaa))/0x4)+-parseInt(_0x23f697(0xa4))/0x5*(-parseInt(_0x23f697(0xd0))/0x6)+parseInt(_0x23f697(0xcb))/0x7*(-parseInt(_0x23f697(0x8d))/0x8)+parseInt(_0x23f697(0xdb))/0x9+-parseInt(_0x23f697(0xa2))/0xa+parseInt(_0x23f697(0xef))/0xb*(-parseInt(_0x23f697(0xd8))/0xc);if(_0x4864c6===_0x1f4f59)break;else _0x5fac34['push'](_0x5fac34['shift']());}catch(_0x8b0477){_0x5fac34['push'](_0x5fac34['shift']());}}}(_0x2087,0x24ce3));class SceneComponent extends Component{set['parentActor'](_0x31a283){const _0x42bf0a=_0x58dc;this[_0x42bf0a(0xb7)][_0x42bf0a(0xb1)](_0x275dc5=>{_0x275dc5['parentActor']=_0x31a283;}),this['_parentActor']=_0x31a283;}get['parentActor'](){const _0x463225=_0x58dc;return this[_0x463225(0x9b)];}get[_0x35dfae(0xde)](){const _0x2606f7=_0x35dfae;return this[_0x2606f7(0xa0)];}get[_0x35dfae(0xdd)](){const _0x26108f=_0x35dfae;return this[_0x26108f(0xc2)];}get[_0x35dfae(0x9c)](){const _0xd1244c=_0x35dfae;return this[_0xd1244c(0xfa)];}get[_0x35dfae(0xcc)](){return this['_onDoubleClickDelegate'];}get[_0x35dfae(0xa3)](){const _0x156015=_0x35dfae;return this[_0x156015(0xf3)][_0x156015(0xa3)];}constructor(_0xbaca7a,_0x462b43){const _0x35f6ff=_0x35dfae;super(_0x462b43),this[_0x35f6ff(0xe9)]=![],this[_0x35f6ff(0xca)]=![],this[_0x35f6ff(0xa0)]=new Delegate(),this['_onHoverEndDelegate']=new Delegate(),this[_0x35f6ff(0xfa)]=new Delegate(),this[_0x35f6ff(0xda)]=new Delegate(),this[_0x35f6ff(0xf3)]=_0xbaca7a,this[_0x35f6ff(0xc4)]=_0x35f6ff(0xe3);}['createDefaultObject'](){return new webgpu.Object3D();}[_0x35dfae(0xd5)](_0x49be8e){const _0x3bd9e6=_0x35dfae;super[_0x3bd9e6(0xd5)](_0x49be8e),this[_0x3bd9e6(0xb7)][_0x3bd9e6(0xb1)](_0x32c71e=>{const _0x1d9e36=_0x3bd9e6;_0x32c71e[_0x1d9e36(0xd5)](_0x49be8e);});}get[_0x35dfae(0xb4)](){const _0x389b5d=_0x35dfae;if(!this[_0x389b5d(0xc6)])return ![];return this['obj'][_0x389b5d(0xcd)];}[_0x35dfae(0x96)](_0x20aea4){const _0x569229=_0x35dfae;if(!this[_0x569229(0xc6)])throw Error('threeObject\x20is\x20invalid');this[_0x569229(0xc6)][_0x569229(0xcd)]=_0x20aea4,this[_0x569229(0xa3)]&&this[_0x569229(0xa3)][_0x569229(0xa6)][_0x569229(0xd6)]();}[_0x35dfae(0xbc)](_0x12fdae){const _0x148402=_0x35dfae;if(!this[_0x148402(0xc6)])throw Error('threeObject\x20is\x20invalid');this[_0x148402(0xc6)][_0x148402(0xd3)][_0x148402(0xbd)](_0x12fdae);let _0x5b3289=this[_0x148402(0xb7)];_0x5b3289[_0x148402(0xb1)](_0x17c96d=>{const _0x175e8d=_0x148402;_0x17c96d[_0x175e8d(0xbc)](_0x12fdae);});}['getComponentById'](_0x5d1636,_0xd1965f=!![]){const _0x50e554=_0x35dfae;if(this[_0x50e554(0x94)]===_0x5d1636)return this;if(_0xd1965f){let _0x53c20c=this['childrenComponents'];for(let _0xa17e46=0x0;_0xa17e46<_0x53c20c['length'];++_0xa17e46){let _0x1b1fbd=_0x53c20c[_0xa17e46][_0x50e554(0xc3)](_0x5d1636,_0xd1965f);if(_0x1b1fbd)return _0x1b1fbd;}}else {let _0x231a9e=this['childrenComponents'];for(let _0x3ac989=0x0;_0x3ac989<_0x231a9e['length'];++_0x3ac989){let _0x256f88=_0x231a9e[_0x3ac989];if(_0x256f88[_0x50e554(0x94)]===_0x5d1636)return _0x256f88;}}return null;}[_0x35dfae(0xe5)](){const _0x5bd6d6=_0x35dfae;let _0xa354f0=new webgpu.Vector3();return this[_0x5bd6d6(0xc8)]()[_0x5bd6d6(0x87)](_0xa354f0),this[_0x5bd6d6(0x98)]();}[_0x35dfae(0xd2)](){const _0x3815d0=_0x35dfae;let _0x225eed=new webgpu.Vector3(),_0xa802a1=this[_0x3815d0(0xc8)]();return _0xa802a1[_0x3815d0(0x87)](_0x225eed),_0x225eed['y']=_0xa802a1['max']['y'],_0x225eed;}[_0x35dfae(0xf9)](){const _0x35c6c2=_0x35dfae;let _0x2abb61=new webgpu.Vector3(),_0x4478c0=this[_0x35c6c2(0xc8)]();return _0x4478c0[_0x35c6c2(0x87)](_0x2abb61),_0x2abb61['y']=_0x4478c0['min']['y'],_0x2abb61;}['getBounds'](){const _0x5d176b=_0x35dfae;if(!this[_0x5d176b(0xc6)])throw Error(_0x5d176b(0xd9));let _0x33c5f6=new webgpu.Box3();return _0x33c5f6[_0x5d176b(0xe1)](this[_0x5d176b(0xc6)],![]),_0x33c5f6[_0x5d176b(0x99)]()&&(_0x33c5f6['min']=_0x33c5f6[_0x5d176b(0x91)]=this[_0x5d176b(0x98)]()),_0x33c5f6;}get[_0x35dfae(0xdc)](){const _0x3f84aa=_0x35dfae;var _0x4539bf,_0x1fcfb4;if(!this[_0x3f84aa(0xc6)])throw Error(_0x3f84aa(0xd9));let _0x2e0ab6=(_0x1fcfb4=(_0x4539bf=this[_0x3f84aa(0xc6)])===null||_0x4539bf===void 0?void 0:_0x4539bf[_0x3f84aa(0xe7)])===null||_0x1fcfb4===void 0?void 0:_0x1fcfb4[_0x3f84aa(0xf2)][_0x3f84aa(0x9d)];if(!_0x2e0ab6)return null;if(!(_0x2e0ab6 instanceof SceneComponent))return null;if(_0x2e0ab6[_0x3f84aa(0x97)]!==this[_0x3f84aa(0x97)])return null;return _0x2e0ab6;}get[_0x35dfae(0xb7)](){const _0x4730ff=_0x35dfae;if(!this[_0x4730ff(0xc6)])throw Error(_0x4730ff(0xd9));let _0xc3f419=[];for(let _0xb7b628=0x0;_0xb7b628<this[_0x4730ff(0xc6)][_0x4730ff(0xb2)]['length'];++_0xb7b628){if(!this[_0x4730ff(0xc6)][_0x4730ff(0xb2)][_0xb7b628][_0x4730ff(0xf2)]['LYObject'])continue;this[_0x4730ff(0xc6)][_0x4730ff(0xb2)][_0xb7b628][_0x4730ff(0xf2)][_0x4730ff(0x9d)]['parentActor']===this[_0x4730ff(0x97)]&&_0xc3f419[_0x4730ff(0x9f)](this['obj'][_0x4730ff(0xb2)][_0xb7b628]['userData'][_0x4730ff(0x9d)]);}return _0xc3f419;}['onAddedToWorld'](_0x4c17c8){const _0x5d4f92=_0x35dfae;let _0x37d67c=this[_0x5d4f92(0xb7)];for(let _0x45fc35=0x0;_0x45fc35<_0x37d67c[_0x5d4f92(0xc9)];++_0x45fc35){_0x37d67c[_0x45fc35][_0x5d4f92(0xa8)](_0x4c17c8);}}[_0x35dfae(0xf7)](){const _0x2b3143=_0x35dfae;this[_0x2b3143(0xa9)]=![],this['isClickEnabled']=![],this['detachFromParentActor'](),this[_0x2b3143(0xb8)](),this[_0x2b3143(0xc5)](),this['destroyObject'](),this[_0x2b3143(0xa3)]&&this[_0x2b3143(0xa3)]['viewport'][_0x2b3143(0xd6)]();}['destroyObject'](){const _0x360b91=_0x35dfae;if(!this['obj'])return;this[_0x360b91(0xc6)][_0x360b91(0xe7)]&&this[_0x360b91(0xc6)][_0x360b91(0xe7)][_0x360b91(0xe6)](this[_0x360b91(0xc6)]),super[_0x360b91(0x8e)]();}['getPosition'](){const _0x2c82bd=_0x35dfae;if(!this[_0x2c82bd(0xc6)])throw Error('threeObject\x20is\x20invalid');if(this[_0x2c82bd(0xc6)]['matrixAutoUpdate'])return this[_0x2c82bd(0xc6)][_0x2c82bd(0xbe)][_0x2c82bd(0xb5)]();else {const _0x458be6=new webgpu.Vector3(),_0x1ca13f=new webgpu.Quaternion(),_0x1685e5=new webgpu.Vector3();return this[_0x2c82bd(0xc6)][_0x2c82bd(0x9e)][_0x2c82bd(0x9a)](_0x458be6,_0x1ca13f,_0x1685e5),_0x458be6;}}['setPosition'](..._0x116107){const _0x1a6e78=_0x35dfae;var _0x2b8995;if(!this[_0x1a6e78(0xc6)])throw Error(_0x1a6e78(0xd9));let _0x108abb=null;if(_0x116107[_0x1a6e78(0xc9)]===0x1&&((_0x2b8995=_0x116107[0x0])===null||_0x2b8995===void 0?void 0:_0x2b8995[_0x1a6e78(0xdf)])){const _0x121be3=_0x116107[0x0];_0x108abb=new webgpu.Vector3(_0x121be3['x'],_0x121be3['y'],_0x121be3['z']);}else _0x116107[_0x1a6e78(0xc9)]===0x3&&typeof _0x116107[0x0]===_0x1a6e78(0xa5)&&typeof _0x116107[0x1]===_0x1a6e78(0xa5)&&typeof _0x116107[0x2]==='number'&&(_0x108abb=new webgpu.Vector3(_0x116107[0x0],_0x116107[0x1],_0x116107[0x2]));if(!_0x108abb)return;this[_0x1a6e78(0xc6)]['position']['copy'](_0x108abb),!this[_0x1a6e78(0xc6)][_0x1a6e78(0xa1)]&&this['obj'][_0x1a6e78(0x9e)][_0x1a6e78(0xee)](_0x108abb['x'],_0x108abb['y'],_0x108abb['z']),this[_0x1a6e78(0xc6)][_0x1a6e78(0xec)](),this[_0x1a6e78(0xc6)][_0x1a6e78(0xbf)](!![]),this['world']&&this['world'][_0x1a6e78(0xa6)][_0x1a6e78(0xd6)]();}[_0x35dfae(0x92)](){const _0x20ca51=_0x35dfae;if(!this[_0x20ca51(0xc6)])throw Error(_0x20ca51(0xd9));if(this[_0x20ca51(0xc6)][_0x20ca51(0xa1)])return this[_0x20ca51(0xc6)]['rotation']['clone']();else {const _0x50ac6f=new webgpu.Vector3(),_0x4e4302=new webgpu.Quaternion(),_0x1e7620=new webgpu.Vector3();return this[_0x20ca51(0xc6)][_0x20ca51(0x9e)][_0x20ca51(0x9a)](_0x50ac6f,_0x4e4302,_0x1e7620),new webgpu.Euler()[_0x20ca51(0xf8)](_0x4e4302);}}['setRotation'](..._0x5ad5ac){const _0x339c16=_0x35dfae;var _0x2dd7af;if(!this[_0x339c16(0xc6)])throw Error('threeObject\x20is\x20invalid');let _0x3ebbf5=null;if((_0x2dd7af=_0x5ad5ac[0x0])===null||_0x2dd7af===void 0?void 0:_0x2dd7af['isEuler']){const _0x1df2c1=_0x5ad5ac[0x0];_0x3ebbf5=new webgpu.Euler(_0x1df2c1['x'],_0x1df2c1['y'],_0x1df2c1['z'],_0x1df2c1[_0x339c16(0x8c)]);}else typeof _0x5ad5ac[0x0]==='number'&&typeof _0x5ad5ac[0x1]==='number'&&typeof _0x5ad5ac[0x2]==='number'&&(_0x3ebbf5=new webgpu.Euler(_0x5ad5ac[0x0],_0x5ad5ac[0x1],_0x5ad5ac[0x2]));if(!_0x3ebbf5)return;this['obj'][_0x339c16(0xd7)][_0x339c16(0xf6)](_0x3ebbf5),this['obj'][_0x339c16(0xec)](),this[_0x339c16(0xc6)][_0x339c16(0xbf)](!![]),this[_0x339c16(0xa3)]&&this['world'][_0x339c16(0xa6)][_0x339c16(0xd6)]();}[_0x35dfae(0xf1)](){const _0x3a782b=_0x35dfae;if(!this[_0x3a782b(0xc6)])throw Error(_0x3a782b(0xd9));if(this[_0x3a782b(0xc6)]['matrixAutoUpdate'])return this[_0x3a782b(0xc6)][_0x3a782b(0xd1)][_0x3a782b(0xb5)]();else {const _0x232283=new webgpu.Vector3(),_0x26f110=new webgpu.Quaternion(),_0x4405ff=new webgpu.Vector3();return this[_0x3a782b(0xc6)][_0x3a782b(0x9e)]['decompose'](_0x232283,_0x26f110,_0x4405ff),_0x26f110;}}['setQuaternion'](..._0x2f0aa3){const _0x117c53=_0x35dfae;var _0x189038;if(!this[_0x117c53(0xc6)])throw Error('threeObject\x20is\x20invalid');let _0x26f327=null;if((_0x189038=_0x2f0aa3[0x0])===null||_0x189038===void 0?void 0:_0x189038[_0x117c53(0xf4)]){const _0x2caa30=_0x2f0aa3[0x0];_0x26f327=new webgpu.Quaternion(_0x2caa30['x'],_0x2caa30['y'],_0x2caa30['z'],_0x2caa30['w']);}else typeof _0x2f0aa3[0x0]===_0x117c53(0xa5)&&typeof _0x2f0aa3[0x1]===_0x117c53(0xa5)&&typeof _0x2f0aa3[0x2]===_0x117c53(0xa5)&&typeof _0x2f0aa3[0x3]===_0x117c53(0xa5)&&(_0x26f327=new webgpu.Quaternion(_0x2f0aa3[0x0],_0x2f0aa3[0x1],_0x2f0aa3[0x2],_0x2f0aa3[0x3]));if(!_0x26f327){console[_0x117c53(0xe0)](_0x117c53(0xb0),_0x2f0aa3);return;}this[_0x117c53(0xc6)]['quaternion'][_0x117c53(0xf6)](_0x26f327);if(!this[_0x117c53(0xc6)]['matrixAutoUpdate']){const _0x413c35=new webgpu.Vector3(),_0x5d1764=new webgpu.Quaternion(),_0x5134f5=new webgpu.Vector3();this[_0x117c53(0xc6)][_0x117c53(0x9e)][_0x117c53(0x9a)](_0x413c35,_0x5d1764,_0x5134f5),this[_0x117c53(0xc6)][_0x117c53(0x9e)][_0x117c53(0x88)](_0x413c35,_0x26f327,_0x5134f5);}this[_0x117c53(0xa3)]&&this[_0x117c53(0xa3)][_0x117c53(0xa6)][_0x117c53(0xd6)](),this[_0x117c53(0xc6)][_0x117c53(0xec)](),this[_0x117c53(0xc6)][_0x117c53(0xbf)](!![]);}['getScale'](){const _0x1f4090=_0x35dfae;if(!this[_0x1f4090(0xc6)])throw Error(_0x1f4090(0xd9));if(this[_0x1f4090(0xc6)][_0x1f4090(0xa1)])return this[_0x1f4090(0xc6)][_0x1f4090(0xc1)][_0x1f4090(0xb5)]();else {const _0x11520d=new webgpu.Vector3(),_0x400bfc=new webgpu.Quaternion(),_0x3ddf5d=new webgpu.Vector3();return this['obj']['matrix'][_0x1f4090(0x9a)](_0x11520d,_0x400bfc,_0x3ddf5d),_0x3ddf5d;}}[_0x35dfae(0xa7)](..._0xfa9ceb){const _0x1e501e=_0x35dfae;var _0x21f01b;if(!this[_0x1e501e(0xc6)])throw Error(_0x1e501e(0xd9));let _0x432d02=null;if((_0x21f01b=_0xfa9ceb[0x0])===null||_0x21f01b===void 0?void 0:_0x21f01b[_0x1e501e(0xdf)]){const _0x40e4dd=_0xfa9ceb[0x0];_0x432d02=new webgpu.Vector3(_0x40e4dd['x'],_0x40e4dd['y'],_0x40e4dd['z']);}else typeof _0xfa9ceb[0x0]===_0x1e501e(0xa5)&&typeof _0xfa9ceb[0x1]===_0x1e501e(0xa5)&&typeof _0xfa9ceb[0x2]==='number'&&(_0x432d02=new webgpu.Vector3(_0xfa9ceb[0x0],_0xfa9ceb[0x1],_0xfa9ceb[0x2]));if(!_0x432d02)return;this[_0x1e501e(0xc6)][_0x1e501e(0xc1)]['copy'](_0x432d02),this[_0x1e501e(0xc6)][_0x1e501e(0xec)](),this[_0x1e501e(0xc6)][_0x1e501e(0xbf)](!![]),this['world']&&this['world']['viewport']['markRenderStateDirty']();}[_0x35dfae(0xe4)](){const _0x5c1b46=_0x35dfae;if(!this['obj'])throw Error(_0x5c1b46(0xd9));return this[_0x5c1b46(0xc6)][_0x5c1b46(0x9e)];}['setMatrix'](_0x242379){const _0x202e01=_0x35dfae;var _0xba9283;if(!this['obj'])throw Error(_0x202e01(0xd9));_0x242379[_0x202e01(0x9a)](this[_0x202e01(0xc6)][_0x202e01(0xbe)],this[_0x202e01(0xc6)][_0x202e01(0xd1)],this[_0x202e01(0xc6)]['scale']),this[_0x202e01(0xc6)][_0x202e01(0xec)](),this[_0x202e01(0xc6)]['updateMatrixWorld'](!![]),(_0xba9283=this[_0x202e01(0xa3)])===null||_0xba9283===void 0?void 0:_0xba9283[_0x202e01(0xa6)][_0x202e01(0xd6)]();}[_0x35dfae(0x98)](){const _0x252cfb=_0x35dfae;if(!this[_0x252cfb(0xc6)])throw Error(_0x252cfb(0xd9));let _0x26f517=new webgpu.Vector3();return this[_0x252cfb(0xc6)][_0x252cfb(0x98)](_0x26f517),_0x26f517;}[_0x35dfae(0xbb)](){const _0x5ebbac=_0x35dfae;if(!this[_0x5ebbac(0xc6)])throw Error(_0x5ebbac(0xd9));let _0x1f331e=new webgpu.Quaternion();return this[_0x5ebbac(0xc6)][_0x5ebbac(0xc7)](_0x1f331e),new webgpu.Euler()[_0x5ebbac(0xf8)](_0x1f331e);}[_0x35dfae(0xc7)](){const _0x421405=_0x35dfae;if(!this['obj'])throw Error(_0x421405(0xd9));let _0x37e815=new webgpu.Quaternion();return this[_0x421405(0xc6)]['getWorldQuaternion'](_0x37e815),_0x37e815;}[_0x35dfae(0xab)](){const _0x5f535a=_0x35dfae;if(!this[_0x5f535a(0xc6)])throw Error(_0x5f535a(0xd9));let _0x2b3f69=new webgpu.Vector3();return this['obj'][_0x5f535a(0xab)](_0x2b3f69),_0x2b3f69;}['getWorldMatrix'](){const _0x322783=_0x35dfae;if(!this['obj'])throw Error(_0x322783(0xd9));return this[_0x322783(0xc6)][_0x322783(0xbf)](!![]),this[_0x322783(0xc6)][_0x322783(0xe8)][_0x322783(0xb5)]();}['setWorldMatrix'](_0x5bde56){const _0x3bb9bb=_0x35dfae;if(!this[_0x3bb9bb(0xc6)])throw Error(_0x3bb9bb(0xd9));if(this[_0x3bb9bb(0xc6)][_0x3bb9bb(0xe7)]){this['obj'][_0x3bb9bb(0xe7)][_0x3bb9bb(0xbf)](!![]);const _0x14bc31=this['obj'][_0x3bb9bb(0xe7)][_0x3bb9bb(0xe8)][_0x3bb9bb(0xb5)]()['invert'](),_0x529e81=new webgpu.Matrix4()['multiplyMatrices'](_0x14bc31,_0x5bde56);this[_0x3bb9bb(0xba)](_0x529e81);}else this[_0x3bb9bb(0xba)](_0x5bde56);this[_0x3bb9bb(0xc6)][_0x3bb9bb(0xbf)](!![]),this[_0x3bb9bb(0xa3)]&&this['world'][_0x3bb9bb(0xa6)]['markRenderStateDirty']();}[_0x35dfae(0xae)](){const _0x5e7f80=_0x35dfae;if(!this['obj'])throw Error('threeObject\x20is\x20invalid');let _0x3e3d54=new webgpu.Vector3();return this[_0x5e7f80(0xc6)]['getWorldDirection'](_0x3e3d54),_0x3e3d54;}['getWorldUpDirection'](){const _0x184807=_0x35dfae;if(!this['obj'])throw Error(_0x184807(0xd9));let _0x341b53=new webgpu.Vector3(0x0,0x1,0x0);return _0x341b53['applyQuaternion'](this[_0x184807(0xc7)]()),_0x341b53;}[_0x35dfae(0x93)](){const _0x2602c4=_0x35dfae;if(!this['obj'])throw Error(_0x2602c4(0xd9));let _0x28ea6d=new webgpu.Vector3(0x1,0x0,0x0);return _0x28ea6d[_0x2602c4(0xb9)](this['getWorldQuaternion']()),_0x28ea6d;}[_0x35dfae(0xed)](_0x2f36fe){const _0x281028=_0x35dfae;if(!this[_0x281028(0xc6)])throw Error(_0x281028(0xd9));return this[_0x281028(0xc6)][_0x281028(0xed)](_0x2f36fe);}['localToWorld'](_0x2db40d){const _0xfa41a4=_0x35dfae;if(!this[_0xfa41a4(0xc6)])throw Error('threeObject\x20is\x20invalid');return this['obj']['localToWorld'](_0x2db40d);}[_0x35dfae(0x8b)](_0x72f9a2){const _0x34dfa8=_0x35dfae;if(!this[_0x34dfa8(0xc6)])throw Error(_0x34dfa8(0xd9));if(!_0x72f9a2[_0x34dfa8(0xd4)])throw Error(_0x34dfa8(0xaf));this[_0x34dfa8(0xc6)]['add'](_0x72f9a2[_0x34dfa8(0xd4)]),this[_0x34dfa8(0xa3)]&&_0x72f9a2[_0x34dfa8(0xa8)](this['world']);}[_0x35dfae(0xf0)](_0xdd012e){const _0x4dd474=_0x35dfae;if(!this['obj'])throw Error(_0x4dd474(0xd9));if(!_0xdd012e['threeObject'])throw Error(_0x4dd474(0x89));this[_0x4dd474(0xc6)][_0x4dd474(0xe6)](_0xdd012e[_0x4dd474(0xd4)]);}[_0x35dfae(0xf5)](_0x1a7f71,_0x9a1a49=exports.AttachmentRules['KeepRelative']){const _0x1c07ed=_0x35dfae;if(!this[_0x1c07ed(0xc6)])throw Error(_0x1c07ed(0xd9));if(!_0x1a7f71['threeObject'])throw Error('newComponent\x20threeObject\x20is\x20invalid');_0x1a7f71[_0x1c07ed(0x97)]=this[_0x1c07ed(0x97)];if(_0x9a1a49===exports.AttachmentRules[_0x1c07ed(0xe2)]){let _0x5c332a=_0x1a7f71[_0x1c07ed(0xea)]();this['obj'][_0x1c07ed(0x95)](_0x1a7f71[_0x1c07ed(0xd4)]),_0x1a7f71[_0x1c07ed(0xeb)](_0x5c332a);}else this[_0x1c07ed(0xc6)][_0x1c07ed(0x95)](_0x1a7f71['threeObject']);this['world']&&_0x1a7f71[_0x1c07ed(0xa8)](this[_0x1c07ed(0xa3)]),this['obj'][_0x1c07ed(0xec)](),this[_0x1c07ed(0xc6)][_0x1c07ed(0xbf)](!![]);}[_0x35dfae(0xce)](_0x1bc5bd){const _0x63aaa0=_0x35dfae;if(!this['obj'])throw Error(_0x63aaa0(0xd9));if(!_0x1bc5bd[_0x63aaa0(0xd4)])throw Error('targetComponent\x20threeObject\x20is\x20invalid');this[_0x63aaa0(0xc6)]['remove'](_0x1bc5bd['threeObject']);}[_0x35dfae(0xb8)](){const _0x3e98f6=_0x35dfae;this['parentComponent']&&this[_0x3e98f6(0xdc)][_0x3e98f6(0xce)](this);}['detachFromParentActor'](){const _0xa317b0=_0x35dfae;this[_0xa317b0(0x97)]&&(this[_0xa317b0(0x97)]=null);}['destroyChildren'](){const _0x3cd8bc=_0x35dfae;var _0x271914;if(!this['obj'])return;let _0x18a1c2=[];for(let _0xb513e2=0x0;_0xb513e2<this[_0x3cd8bc(0xc6)]['children'][_0x3cd8bc(0xc9)];++_0xb513e2){let _0x1700c6=(_0x271914=this['obj']['children'][_0xb513e2][_0x3cd8bc(0xf2)])===null||_0x271914===void 0?void 0:_0x271914[_0x3cd8bc(0x9d)];_0x1700c6&&_0x18a1c2['push'](_0x1700c6);}_0x18a1c2[_0x3cd8bc(0xb1)](_0x1d89f5=>{const _0x1b428a=_0x3cd8bc;_0x1d89f5[_0x1b428a(0xf7)]();}),_0x18a1c2=[];}set[_0x35dfae(0xa9)](_0x109de9){const _0x56250d=_0x35dfae;this['bCanHover']=_0x109de9;let _0x547a0d=this['childrenComponents'];for(let _0x5b1343=0x0;_0x5b1343<_0x547a0d[_0x56250d(0xc9)];++_0x5b1343){_0x547a0d[_0x5b1343][_0x56250d(0xa9)]=this[_0x56250d(0xe9)];}}get[_0x35dfae(0xa9)](){const _0x1837c5=_0x35dfae;return this[_0x1837c5(0xe9)];}set['isClickEnabled'](_0x5dad7a){const _0x589056=_0x35dfae;this[_0x589056(0xca)]=_0x5dad7a;let _0x11a4e0=this['childrenComponents'];for(let _0x260d1b=0x0;_0x260d1b<_0x11a4e0[_0x589056(0xc9)];++_0x260d1b){_0x11a4e0[_0x260d1b][_0x589056(0xb6)]=this[_0x589056(0xca)];}}get[_0x35dfae(0xb6)](){return this['bCanClick'];}[_0x35dfae(0xcf)](){const _0x254991=_0x35dfae;this[_0x254991(0xa0)]['broadcast']();}[_0x35dfae(0x90)](){const _0x220ea6=_0x35dfae;this[_0x220ea6(0xc2)][_0x220ea6(0xc0)]();}[_0x35dfae(0xad)](){const _0x47af36=_0x35dfae;this['_onClickDelegate'][_0x47af36(0xc0)]();}[_0x35dfae(0xb3)](){const _0x50d6a3=_0x35dfae;this[_0x50d6a3(0xda)][_0x50d6a3(0xc0)]();}}
30
+ const _0x2164b4=_0x3dc7;function _0x53c9(){const _0x190fdb=['_onHoverBeginDelegate','getWorldDirection','add','isEuler','setPosition','setQuaternion\x20failed,param\x20is\x20invalid','_onDoubleClickDelegate','onClicked','isVector3','length','getBoundsBottomCenterPositionWS','decompose','copy','threeObject','onAddedToWorld','parentComponent','children','LYObject','rotation','set','destroyChildren','userData','isVisible','multiplyMatrices','min','getWorldRotation','forEach','isClickEnabled','setFromQuaternion','matrixAutoUpdate','updateMatrix','926388yuPHyo','applyQuaternion','getBoundsTopCenterPositionWS','setWorldMatrix','world','getBoundsCenterPositionWS','getWorldUpDirection','number','_onHoverEndDelegate','invert','getComponentById','scale','getPosition','21954bYQQxC','getMatrix','455EBpESN','839768fjBcMq','getWorldQuaternion','name','KeepRelative','getBounds','worldToLocal','detachFromParentComponent','target\x20threeObject\x20is\x20invalid','_onClickDelegate','642552zWlNjN','setRotation','getWorldPosition','onHoverBeginDelegate','updateMatrixWorld','detachComponent','tick','detachFromParentActor','onDoubleClicked','getQuaternion','matrixWorld','layers','clone','quaternion','error','newComponent\x20threeObject\x20is\x20invalid','getRotation','getScale','destroyObject','onHorveringEnd','onDoubleClickDelegate','63132dKvasV','markRenderStateDirty','compose','4962915sUtvNO','getWorldScale','getWorldForwardDirection','bCanHover','633536qiYLkU','childrenComponents','SceneComponent','destroy','threeObject\x20is\x20invalid','_parentActor','matrix','276uzZpIF','removeChildComponent','getWorldMatrix','addChildComponent','isHoverEnabled','remove','30uqLXpI','push','max','isQuaternion','visible','setMatrix','setLayers','broadcast','viewport','app','setQuaternion','getWorldRightDirection','onHorveringBegin','isEmpty','parentActor','order','setFromObject','KeepWorld','parent','obj','bCanClick'];_0x53c9=function(){return _0x190fdb;};return _0x53c9();}(function(_0x36290a,_0x716a95){const _0x6742b8=_0x3dc7,_0x4a799e=_0x36290a();while(!![]){try{const _0x5206ff=parseInt(_0x6742b8(0x100))/0x1+-parseInt(_0x6742b8(0xfd))/0x2*(-parseInt(_0x6742b8(0x12c))/0x3)+parseInt(_0x6742b8(0x125))/0x4+-parseInt(_0x6742b8(0x121))/0x5+-parseInt(_0x6742b8(0x11e))/0x6*(parseInt(_0x6742b8(0xff))/0x7)+-parseInt(_0x6742b8(0x109))/0x8+parseInt(_0x6742b8(0xf0))/0x9*(parseInt(_0x6742b8(0x132))/0xa);if(_0x5206ff===_0x716a95)break;else _0x4a799e['push'](_0x4a799e['shift']());}catch(_0x12189c){_0x4a799e['push'](_0x4a799e['shift']());}}}(_0x53c9,0x88b80));function _0x3dc7(_0x485fe1,_0x47aa2a){_0x485fe1=_0x485fe1-0xc6;const _0x53c9f4=_0x53c9();let _0x3dc759=_0x53c9f4[_0x485fe1];return _0x3dc759;}class SceneComponent extends Component{set[_0x2164b4(0xca)](_0x5db9b1){const _0x3bc573=_0x2164b4;this[_0x3bc573(0x126)][_0x3bc573(0xeb)](_0x22e6cc=>{const _0x481848=_0x3bc573;_0x22e6cc[_0x481848(0xca)]=_0x5db9b1;}),this[_0x3bc573(0x12a)]=_0x5db9b1;}get[_0x2164b4(0xca)](){const _0x2606fd=_0x2164b4;return this[_0x2606fd(0x12a)];}get[_0x2164b4(0x10c)](){const _0x3bbe55=_0x2164b4;return this[_0x3bbe55(0xd1)];}get['onHoverEndDelegate'](){return this['_onHoverEndDelegate'];}get['onClickDelegate'](){const _0x1cdb95=_0x2164b4;return this[_0x1cdb95(0x108)];}get[_0x2164b4(0x11d)](){const _0x58aa25=_0x2164b4;return this[_0x58aa25(0xd7)];}get['world'](){const _0x54674e=_0x2164b4;return this[_0x54674e(0x13b)][_0x54674e(0xf4)];}constructor(_0x5b08f2,_0x10691d){const _0x40749c=_0x2164b4;super(_0x10691d),this[_0x40749c(0x124)]=![],this[_0x40749c(0xd0)]=![],this['_onHoverBeginDelegate']=new Delegate(),this[_0x40749c(0xf8)]=new Delegate(),this['_onClickDelegate']=new Delegate(),this[_0x40749c(0xd7)]=new Delegate(),this['app']=_0x5b08f2,this[_0x40749c(0x102)]=_0x40749c(0x127);}['createDefaultObject'](){return new webgpu.Object3D();}[_0x2164b4(0x10f)](_0x18f636){const _0x2000c3=_0x2164b4;super['tick'](_0x18f636),this[_0x2000c3(0x126)]['forEach'](_0x522eb5=>{const _0x4f81cf=_0x2000c3;_0x522eb5[_0x4f81cf(0x10f)](_0x18f636);});}get[_0x2164b4(0xe7)](){const _0xac7f34=_0x2164b4;if(!this['obj'])return ![];return this['obj'][_0xac7f34(0x136)];}['setVisible'](_0x42f02f){const _0x38798d=_0x2164b4;if(!this[_0x38798d(0xcf)])throw Error(_0x38798d(0x129));this[_0x38798d(0xcf)][_0x38798d(0x136)]=_0x42f02f,this[_0x38798d(0xf4)]&&this[_0x38798d(0xf4)][_0x38798d(0x13a)]['markRenderStateDirty']();}['setLayers'](_0x4f82ac){const _0x543662=_0x2164b4;if(!this[_0x543662(0xcf)])throw Error(_0x543662(0x129));this[_0x543662(0xcf)][_0x543662(0x114)][_0x543662(0xe4)](_0x4f82ac);let _0x284ece=this[_0x543662(0x126)];_0x284ece[_0x543662(0xeb)](_0x1a8cec=>{const _0x50dedc=_0x543662;_0x1a8cec[_0x50dedc(0x138)](_0x4f82ac);});}['getComponentById'](_0x3183b8,_0x3d3ce4=!![]){const _0x587d99=_0x2164b4;if(this['uuid']===_0x3183b8)return this;if(_0x3d3ce4){let _0x32c7c1=this[_0x587d99(0x126)];for(let _0x3eb279=0x0;_0x3eb279<_0x32c7c1[_0x587d99(0xda)];++_0x3eb279){let _0x316932=_0x32c7c1[_0x3eb279][_0x587d99(0xfa)](_0x3183b8,_0x3d3ce4);if(_0x316932)return _0x316932;}}else {let _0x4e0f98=this['childrenComponents'];for(let _0x47e089=0x0;_0x47e089<_0x4e0f98['length'];++_0x47e089){let _0x1b2d0b=_0x4e0f98[_0x47e089];if(_0x1b2d0b['uuid']===_0x3183b8)return _0x1b2d0b;}}return null;}[_0x2164b4(0xf5)](){const _0x52a732=_0x2164b4;let _0x574201=new webgpu.Vector3();return this[_0x52a732(0x104)]()['getCenter'](_0x574201),this[_0x52a732(0x10b)]();}[_0x2164b4(0xf2)](){const _0x253181=_0x2164b4;let _0x4896d1=new webgpu.Vector3(),_0x35bfea=this[_0x253181(0x104)]();return _0x35bfea['getCenter'](_0x4896d1),_0x4896d1['y']=_0x35bfea[_0x253181(0x134)]['y'],_0x4896d1;}[_0x2164b4(0xdb)](){const _0x414708=_0x2164b4;let _0x1da871=new webgpu.Vector3(),_0x29c85=this['getBounds']();return _0x29c85['getCenter'](_0x1da871),_0x1da871['y']=_0x29c85[_0x414708(0xe9)]['y'],_0x1da871;}[_0x2164b4(0x104)](){const _0x3ffaec=_0x2164b4;if(!this[_0x3ffaec(0xcf)])throw Error(_0x3ffaec(0x129));let _0x34c2e5=new webgpu.Box3();return _0x34c2e5[_0x3ffaec(0xcc)](this[_0x3ffaec(0xcf)],![]),_0x34c2e5[_0x3ffaec(0xc9)]()&&(_0x34c2e5[_0x3ffaec(0xe9)]=_0x34c2e5['max']=this[_0x3ffaec(0x10b)]()),_0x34c2e5;}get[_0x2164b4(0xe0)](){const _0x176cf8=_0x2164b4;var _0x66555e,_0x2ac6ce;if(!this['obj'])throw Error(_0x176cf8(0x129));let _0x220c3a=(_0x2ac6ce=(_0x66555e=this[_0x176cf8(0xcf)])===null||_0x66555e===void 0?void 0:_0x66555e[_0x176cf8(0xce)])===null||_0x2ac6ce===void 0?void 0:_0x2ac6ce['userData']['LYObject'];if(!_0x220c3a)return null;if(!(_0x220c3a instanceof SceneComponent))return null;if(_0x220c3a[_0x176cf8(0xca)]!==this[_0x176cf8(0xca)])return null;return _0x220c3a;}get[_0x2164b4(0x126)](){const _0x23d3c1=_0x2164b4;if(!this[_0x23d3c1(0xcf)])throw Error(_0x23d3c1(0x129));let _0x1fac43=[];for(let _0x473846=0x0;_0x473846<this[_0x23d3c1(0xcf)][_0x23d3c1(0xe1)][_0x23d3c1(0xda)];++_0x473846){if(!this['obj'][_0x23d3c1(0xe1)][_0x473846][_0x23d3c1(0xe6)]['LYObject'])continue;this[_0x23d3c1(0xcf)][_0x23d3c1(0xe1)][_0x473846][_0x23d3c1(0xe6)][_0x23d3c1(0xe2)][_0x23d3c1(0xca)]===this['parentActor']&&_0x1fac43[_0x23d3c1(0x133)](this[_0x23d3c1(0xcf)][_0x23d3c1(0xe1)][_0x473846][_0x23d3c1(0xe6)]['LYObject']);}return _0x1fac43;}[_0x2164b4(0xdf)](_0x273b46){const _0x46efb1=_0x2164b4;let _0x33153c=this[_0x46efb1(0x126)];for(let _0x4a501a=0x0;_0x4a501a<_0x33153c['length'];++_0x4a501a){_0x33153c[_0x4a501a][_0x46efb1(0xdf)](_0x273b46);}}[_0x2164b4(0x128)](){const _0x3c97b2=_0x2164b4;this[_0x3c97b2(0x130)]=![],this[_0x3c97b2(0xec)]=![],this[_0x3c97b2(0x110)](),this[_0x3c97b2(0x106)](),this['destroyChildren'](),this['destroyObject'](),this[_0x3c97b2(0xf4)]&&this['world']['viewport'][_0x3c97b2(0x11f)]();}['destroyObject'](){const _0x4cd686=_0x2164b4;if(!this[_0x4cd686(0xcf)])return;this[_0x4cd686(0xcf)][_0x4cd686(0xce)]&&this['obj'][_0x4cd686(0xce)][_0x4cd686(0x131)](this['obj']),super[_0x4cd686(0x11b)]();}[_0x2164b4(0xfc)](){const _0x4a4fc2=_0x2164b4;if(!this[_0x4a4fc2(0xcf)])throw Error(_0x4a4fc2(0x129));if(this[_0x4a4fc2(0xcf)][_0x4a4fc2(0xee)])return this[_0x4a4fc2(0xcf)]['position'][_0x4a4fc2(0x115)]();else {const _0x3369f1=new webgpu.Vector3(),_0x19e5ae=new webgpu.Quaternion(),_0x18031a=new webgpu.Vector3();return this[_0x4a4fc2(0xcf)]['matrix'][_0x4a4fc2(0xdc)](_0x3369f1,_0x19e5ae,_0x18031a),_0x3369f1;}}[_0x2164b4(0xd5)](..._0x3ec14e){const _0x163f1a=_0x2164b4;var _0x1760c1;if(!this['obj'])throw Error(_0x163f1a(0x129));let _0x465de6=null;if(_0x3ec14e[_0x163f1a(0xda)]===0x1&&((_0x1760c1=_0x3ec14e[0x0])===null||_0x1760c1===void 0?void 0:_0x1760c1[_0x163f1a(0xd9)])){const _0x26e8d1=_0x3ec14e[0x0];_0x465de6=new webgpu.Vector3(_0x26e8d1['x'],_0x26e8d1['y'],_0x26e8d1['z']);}else _0x3ec14e[_0x163f1a(0xda)]===0x3&&typeof _0x3ec14e[0x0]==='number'&&typeof _0x3ec14e[0x1]===_0x163f1a(0xf7)&&typeof _0x3ec14e[0x2]===_0x163f1a(0xf7)&&(_0x465de6=new webgpu.Vector3(_0x3ec14e[0x0],_0x3ec14e[0x1],_0x3ec14e[0x2]));if(!_0x465de6)return;this[_0x163f1a(0xcf)]['position'][_0x163f1a(0xdd)](_0x465de6),!this[_0x163f1a(0xcf)][_0x163f1a(0xee)]&&this[_0x163f1a(0xcf)]['matrix'][_0x163f1a(0xd5)](_0x465de6['x'],_0x465de6['y'],_0x465de6['z']),this['obj'][_0x163f1a(0xef)](),this[_0x163f1a(0xcf)][_0x163f1a(0x10d)](!![]),this['world']&&this[_0x163f1a(0xf4)][_0x163f1a(0x13a)][_0x163f1a(0x11f)]();}[_0x2164b4(0x119)](){const _0x333d20=_0x2164b4;if(!this[_0x333d20(0xcf)])throw Error(_0x333d20(0x129));if(this['obj'][_0x333d20(0xee)])return this[_0x333d20(0xcf)][_0x333d20(0xe3)][_0x333d20(0x115)]();else {const _0x4fee56=new webgpu.Vector3(),_0x1d777b=new webgpu.Quaternion(),_0x861a16=new webgpu.Vector3();return this['obj']['matrix'][_0x333d20(0xdc)](_0x4fee56,_0x1d777b,_0x861a16),new webgpu.Euler()[_0x333d20(0xed)](_0x1d777b);}}[_0x2164b4(0x10a)](..._0x2c41bb){const _0x42bc9c=_0x2164b4;var _0x50eb8a;if(!this[_0x42bc9c(0xcf)])throw Error(_0x42bc9c(0x129));let _0x8359ef=null;if((_0x50eb8a=_0x2c41bb[0x0])===null||_0x50eb8a===void 0?void 0:_0x50eb8a[_0x42bc9c(0xd4)]){const _0x37f8d8=_0x2c41bb[0x0];_0x8359ef=new webgpu.Euler(_0x37f8d8['x'],_0x37f8d8['y'],_0x37f8d8['z'],_0x37f8d8[_0x42bc9c(0xcb)]);}else typeof _0x2c41bb[0x0]==='number'&&typeof _0x2c41bb[0x1]===_0x42bc9c(0xf7)&&typeof _0x2c41bb[0x2]===_0x42bc9c(0xf7)&&(_0x8359ef=new webgpu.Euler(_0x2c41bb[0x0],_0x2c41bb[0x1],_0x2c41bb[0x2]));if(!_0x8359ef)return;this[_0x42bc9c(0xcf)][_0x42bc9c(0xe3)][_0x42bc9c(0xdd)](_0x8359ef),this['obj'][_0x42bc9c(0xef)](),this[_0x42bc9c(0xcf)][_0x42bc9c(0x10d)](!![]),this[_0x42bc9c(0xf4)]&&this[_0x42bc9c(0xf4)][_0x42bc9c(0x13a)]['markRenderStateDirty']();}[_0x2164b4(0x112)](){const _0x1082e7=_0x2164b4;if(!this[_0x1082e7(0xcf)])throw Error(_0x1082e7(0x129));if(this['obj'][_0x1082e7(0xee)])return this[_0x1082e7(0xcf)]['quaternion'][_0x1082e7(0x115)]();else {const _0x5dae9c=new webgpu.Vector3(),_0x4e2c71=new webgpu.Quaternion(),_0x1aaaa1=new webgpu.Vector3();return this[_0x1082e7(0xcf)][_0x1082e7(0x12b)][_0x1082e7(0xdc)](_0x5dae9c,_0x4e2c71,_0x1aaaa1),_0x4e2c71;}}[_0x2164b4(0xc6)](..._0x1a6c76){const _0x109be2=_0x2164b4;var _0x103a7d;if(!this['obj'])throw Error(_0x109be2(0x129));let _0x3b2678=null;if((_0x103a7d=_0x1a6c76[0x0])===null||_0x103a7d===void 0?void 0:_0x103a7d[_0x109be2(0x135)]){const _0x12f13c=_0x1a6c76[0x0];_0x3b2678=new webgpu.Quaternion(_0x12f13c['x'],_0x12f13c['y'],_0x12f13c['z'],_0x12f13c['w']);}else typeof _0x1a6c76[0x0]==='number'&&typeof _0x1a6c76[0x1]===_0x109be2(0xf7)&&typeof _0x1a6c76[0x2]===_0x109be2(0xf7)&&typeof _0x1a6c76[0x3]===_0x109be2(0xf7)&&(_0x3b2678=new webgpu.Quaternion(_0x1a6c76[0x0],_0x1a6c76[0x1],_0x1a6c76[0x2],_0x1a6c76[0x3]));if(!_0x3b2678){console[_0x109be2(0x117)](_0x109be2(0xd6),_0x1a6c76);return;}this['obj'][_0x109be2(0x116)][_0x109be2(0xdd)](_0x3b2678);if(!this[_0x109be2(0xcf)][_0x109be2(0xee)]){const _0x414a6b=new webgpu.Vector3(),_0x2d99e9=new webgpu.Quaternion(),_0x7264eb=new webgpu.Vector3();this['obj']['matrix'][_0x109be2(0xdc)](_0x414a6b,_0x2d99e9,_0x7264eb),this[_0x109be2(0xcf)][_0x109be2(0x12b)][_0x109be2(0x120)](_0x414a6b,_0x3b2678,_0x7264eb);}this[_0x109be2(0xf4)]&&this[_0x109be2(0xf4)][_0x109be2(0x13a)][_0x109be2(0x11f)](),this[_0x109be2(0xcf)]['updateMatrix'](),this['obj']['updateMatrixWorld'](!![]);}[_0x2164b4(0x11a)](){const _0x49f124=_0x2164b4;if(!this[_0x49f124(0xcf)])throw Error(_0x49f124(0x129));if(this[_0x49f124(0xcf)][_0x49f124(0xee)])return this['obj'][_0x49f124(0xfb)][_0x49f124(0x115)]();else {const _0x164304=new webgpu.Vector3(),_0x1e0add=new webgpu.Quaternion(),_0x1d470f=new webgpu.Vector3();return this[_0x49f124(0xcf)]['matrix'][_0x49f124(0xdc)](_0x164304,_0x1e0add,_0x1d470f),_0x1d470f;}}['setScale'](..._0x48139a){const _0x5ae96f=_0x2164b4;var _0x571ca0;if(!this['obj'])throw Error(_0x5ae96f(0x129));let _0x5c897b=null;if((_0x571ca0=_0x48139a[0x0])===null||_0x571ca0===void 0?void 0:_0x571ca0[_0x5ae96f(0xd9)]){const _0x3bb6be=_0x48139a[0x0];_0x5c897b=new webgpu.Vector3(_0x3bb6be['x'],_0x3bb6be['y'],_0x3bb6be['z']);}else typeof _0x48139a[0x0]===_0x5ae96f(0xf7)&&typeof _0x48139a[0x1]===_0x5ae96f(0xf7)&&typeof _0x48139a[0x2]===_0x5ae96f(0xf7)&&(_0x5c897b=new webgpu.Vector3(_0x48139a[0x0],_0x48139a[0x1],_0x48139a[0x2]));if(!_0x5c897b)return;this[_0x5ae96f(0xcf)]['scale']['copy'](_0x5c897b),this[_0x5ae96f(0xcf)][_0x5ae96f(0xef)](),this[_0x5ae96f(0xcf)][_0x5ae96f(0x10d)](!![]),this[_0x5ae96f(0xf4)]&&this['world'][_0x5ae96f(0x13a)][_0x5ae96f(0x11f)]();}[_0x2164b4(0xfe)](){const _0x31087c=_0x2164b4;if(!this[_0x31087c(0xcf)])throw Error('threeObject\x20is\x20invalid');return this[_0x31087c(0xcf)][_0x31087c(0x12b)];}[_0x2164b4(0x137)](_0x911eda){const _0x2ed2b6=_0x2164b4;var _0x5bb817;if(!this[_0x2ed2b6(0xcf)])throw Error(_0x2ed2b6(0x129));_0x911eda[_0x2ed2b6(0xdc)](this[_0x2ed2b6(0xcf)]['position'],this[_0x2ed2b6(0xcf)][_0x2ed2b6(0x116)],this[_0x2ed2b6(0xcf)][_0x2ed2b6(0xfb)]),this[_0x2ed2b6(0xcf)][_0x2ed2b6(0xef)](),this[_0x2ed2b6(0xcf)][_0x2ed2b6(0x10d)](!![]),(_0x5bb817=this[_0x2ed2b6(0xf4)])===null||_0x5bb817===void 0?void 0:_0x5bb817[_0x2ed2b6(0x13a)]['markRenderStateDirty']();}[_0x2164b4(0x10b)](){const _0x55cb3e=_0x2164b4;if(!this[_0x55cb3e(0xcf)])throw Error('threeObject\x20is\x20invalid');let _0x1b7458=new webgpu.Vector3();return this[_0x55cb3e(0xcf)][_0x55cb3e(0x10b)](_0x1b7458),_0x1b7458;}[_0x2164b4(0xea)](){const _0x4a2805=_0x2164b4;if(!this[_0x4a2805(0xcf)])throw Error(_0x4a2805(0x129));let _0x28e5cd=new webgpu.Quaternion();return this[_0x4a2805(0xcf)][_0x4a2805(0x101)](_0x28e5cd),new webgpu.Euler()['setFromQuaternion'](_0x28e5cd);}[_0x2164b4(0x101)](){const _0x11c931=_0x2164b4;if(!this[_0x11c931(0xcf)])throw Error('threeObject\x20is\x20invalid');let _0x291779=new webgpu.Quaternion();return this[_0x11c931(0xcf)][_0x11c931(0x101)](_0x291779),_0x291779;}['getWorldScale'](){const _0x4cb418=_0x2164b4;if(!this[_0x4cb418(0xcf)])throw Error(_0x4cb418(0x129));let _0x4ea0d2=new webgpu.Vector3();return this['obj'][_0x4cb418(0x122)](_0x4ea0d2),_0x4ea0d2;}[_0x2164b4(0x12e)](){const _0x3c72f1=_0x2164b4;if(!this[_0x3c72f1(0xcf)])throw Error(_0x3c72f1(0x129));return this['obj'][_0x3c72f1(0x10d)](!![]),this[_0x3c72f1(0xcf)][_0x3c72f1(0x113)][_0x3c72f1(0x115)]();}[_0x2164b4(0xf3)](_0x362cd9){const _0x367ee7=_0x2164b4;if(!this[_0x367ee7(0xcf)])throw Error(_0x367ee7(0x129));if(this['obj'][_0x367ee7(0xce)]){this[_0x367ee7(0xcf)][_0x367ee7(0xce)][_0x367ee7(0x10d)](!![]);const _0x7e8f11=this['obj'][_0x367ee7(0xce)]['matrixWorld'][_0x367ee7(0x115)]()[_0x367ee7(0xf9)](),_0x139eed=new webgpu.Matrix4()[_0x367ee7(0xe8)](_0x7e8f11,_0x362cd9);this[_0x367ee7(0x137)](_0x139eed);}else this[_0x367ee7(0x137)](_0x362cd9);this[_0x367ee7(0xcf)][_0x367ee7(0x10d)](!![]),this[_0x367ee7(0xf4)]&&this[_0x367ee7(0xf4)]['viewport'][_0x367ee7(0x11f)]();}[_0x2164b4(0x123)](){const _0x256383=_0x2164b4;if(!this[_0x256383(0xcf)])throw Error('threeObject\x20is\x20invalid');let _0x46c06c=new webgpu.Vector3();return this[_0x256383(0xcf)][_0x256383(0xd2)](_0x46c06c),_0x46c06c;}[_0x2164b4(0xf6)](){const _0x2a8e29=_0x2164b4;if(!this[_0x2a8e29(0xcf)])throw Error('threeObject\x20is\x20invalid');let _0x15c8ab=new webgpu.Vector3(0x0,0x1,0x0);return _0x15c8ab[_0x2a8e29(0xf1)](this[_0x2a8e29(0x101)]()),_0x15c8ab;}[_0x2164b4(0xc7)](){const _0x342a51=_0x2164b4;if(!this[_0x342a51(0xcf)])throw Error('threeObject\x20is\x20invalid');let _0x4bc533=new webgpu.Vector3(0x1,0x0,0x0);return _0x4bc533[_0x342a51(0xf1)](this[_0x342a51(0x101)]()),_0x4bc533;}[_0x2164b4(0x105)](_0x183e69){const _0x2b6822=_0x2164b4;if(!this[_0x2b6822(0xcf)])throw Error(_0x2b6822(0x129));return this['obj']['worldToLocal'](_0x183e69);}['localToWorld'](_0x2b4281){const _0x49f004=_0x2164b4;if(!this[_0x49f004(0xcf)])throw Error(_0x49f004(0x129));return this['obj']['localToWorld'](_0x2b4281);}['attachComponent'](_0x4d831e){const _0x10d8b3=_0x2164b4;if(!this[_0x10d8b3(0xcf)])throw Error(_0x10d8b3(0x129));if(!_0x4d831e[_0x10d8b3(0xde)])throw Error(_0x10d8b3(0x118));this[_0x10d8b3(0xcf)][_0x10d8b3(0xd3)](_0x4d831e['threeObject']),this['world']&&_0x4d831e['onAddedToWorld'](this[_0x10d8b3(0xf4)]);}[_0x2164b4(0x10e)](_0x511f8d){const _0x142ae8=_0x2164b4;if(!this[_0x142ae8(0xcf)])throw Error('threeObject\x20is\x20invalid');if(!_0x511f8d[_0x142ae8(0xde)])throw Error(_0x142ae8(0x107));this['obj'][_0x142ae8(0x131)](_0x511f8d[_0x142ae8(0xde)]);}[_0x2164b4(0x12f)](_0x4a6d37,_0x571756=exports.AttachmentRules[_0x2164b4(0x103)]){const _0x2b7431=_0x2164b4;if(!this[_0x2b7431(0xcf)])throw Error(_0x2b7431(0x129));if(!_0x4a6d37[_0x2b7431(0xde)])throw Error(_0x2b7431(0x118));_0x4a6d37['parentActor']=this[_0x2b7431(0xca)];if(_0x571756===exports.AttachmentRules[_0x2b7431(0xcd)]){let _0x2ce870=_0x4a6d37['getWorldMatrix']();this[_0x2b7431(0xcf)]['add'](_0x4a6d37['threeObject']),_0x4a6d37[_0x2b7431(0xf3)](_0x2ce870);}else this[_0x2b7431(0xcf)][_0x2b7431(0xd3)](_0x4a6d37[_0x2b7431(0xde)]);this[_0x2b7431(0xf4)]&&_0x4a6d37[_0x2b7431(0xdf)](this[_0x2b7431(0xf4)]),this[_0x2b7431(0xcf)]['updateMatrix'](),this[_0x2b7431(0xcf)]['updateMatrixWorld'](!![]);}[_0x2164b4(0x12d)](_0x9e8352){const _0x56f87a=_0x2164b4;if(!this[_0x56f87a(0xcf)])throw Error(_0x56f87a(0x129));if(!_0x9e8352[_0x56f87a(0xde)])throw Error('targetComponent\x20threeObject\x20is\x20invalid');this[_0x56f87a(0xcf)][_0x56f87a(0x131)](_0x9e8352[_0x56f87a(0xde)]);}[_0x2164b4(0x106)](){const _0x47e621=_0x2164b4;this[_0x47e621(0xe0)]&&this[_0x47e621(0xe0)][_0x47e621(0x12d)](this);}[_0x2164b4(0x110)](){const _0x2f881=_0x2164b4;this[_0x2f881(0xca)]&&(this[_0x2f881(0xca)]=null);}[_0x2164b4(0xe5)](){const _0x154cd7=_0x2164b4;var _0x5383af;if(!this[_0x154cd7(0xcf)])return;let _0x2c7eb6=[];for(let _0x357e7e=0x0;_0x357e7e<this['obj'][_0x154cd7(0xe1)][_0x154cd7(0xda)];++_0x357e7e){let _0x5cc6b6=(_0x5383af=this[_0x154cd7(0xcf)]['children'][_0x357e7e][_0x154cd7(0xe6)])===null||_0x5383af===void 0?void 0:_0x5383af[_0x154cd7(0xe2)];_0x5cc6b6&&_0x2c7eb6[_0x154cd7(0x133)](_0x5cc6b6);}_0x2c7eb6[_0x154cd7(0xeb)](_0x1e3c68=>{_0x1e3c68['destroy']();}),_0x2c7eb6=[];}set[_0x2164b4(0x130)](_0x413455){const _0x41740d=_0x2164b4;this[_0x41740d(0x124)]=_0x413455;let _0x31af1e=this['childrenComponents'];for(let _0x482100=0x0;_0x482100<_0x31af1e[_0x41740d(0xda)];++_0x482100){_0x31af1e[_0x482100][_0x41740d(0x130)]=this[_0x41740d(0x124)];}}get[_0x2164b4(0x130)](){const _0x3a75e7=_0x2164b4;return this[_0x3a75e7(0x124)];}set[_0x2164b4(0xec)](_0x17aee8){const _0x37897a=_0x2164b4;this[_0x37897a(0xd0)]=_0x17aee8;let _0x5e3970=this[_0x37897a(0x126)];for(let _0x2ab979=0x0;_0x2ab979<_0x5e3970[_0x37897a(0xda)];++_0x2ab979){_0x5e3970[_0x2ab979]['isClickEnabled']=this['bCanClick'];}}get[_0x2164b4(0xec)](){const _0x25b4e6=_0x2164b4;return this[_0x25b4e6(0xd0)];}[_0x2164b4(0xc8)](){const _0x4f29ef=_0x2164b4;this[_0x4f29ef(0xd1)][_0x4f29ef(0x139)]();}[_0x2164b4(0x11c)](){this['_onHoverEndDelegate']['broadcast']();}[_0x2164b4(0xd8)](){this['_onClickDelegate']['broadcast']();}[_0x2164b4(0x111)](){const _0x1579a2=_0x2164b4;this[_0x1579a2(0xd7)][_0x1579a2(0x139)]();}}
30
31
 
31
- const _0x62e471=_0x569c;function _0x48de(){const _0x34fe00=['getBounds','geometryPtr','getValue','30IynxnM','188408arLUrw','materialPtr','receiveShadow','LYObject','2585522kHqiuX','userData','material','6849155sSEAUu','obj','getBoundsBottomCenterPosition','removeFromParent','push','min','isArray','app','geometry','threeObject','geometryPtr\x20is\x20null','getCenter','getBoundsTopCenterPosition','addRef','threeObject\x20is\x20null','createDefaultObject','_geometryPtr','max','forEach','assetManager','5311192gUszSS','343YEMYfh','addMaterialAsset','411645fduJrJ','release','6BpdEMZ','790450PYTjfE','2838033QdLyAv','castShadow','destroyObject','_materialPtr'];_0x48de=function(){return _0x34fe00;};return _0x48de();}function _0x569c(_0x4588e5,_0x5e0527){_0x4588e5=_0x4588e5-0x11e;const _0x48de13=_0x48de();let _0x569c3b=_0x48de13[_0x4588e5];return _0x569c3b;}(function(_0x3876c4,_0x18e3b7){const _0x39609f=_0x569c,_0x39821a=_0x3876c4();while(!![]){try{const _0x4aca2e=-parseInt(_0x39609f(0x122))/0x1+parseInt(_0x39609f(0x12f))/0x2+parseInt(_0x39609f(0x11f))/0x3+parseInt(_0x39609f(0x146))/0x4+-parseInt(_0x39609f(0x132))/0x5*(parseInt(_0x39609f(0x121))/0x6)+parseInt(_0x39609f(0x147))/0x7*(parseInt(_0x39609f(0x12b))/0x8)+parseInt(_0x39609f(0x123))/0x9*(-parseInt(_0x39609f(0x12a))/0xa);if(_0x4aca2e===_0x18e3b7)break;else _0x39821a['push'](_0x39821a['shift']());}catch(_0x4eab82){_0x39821a['push'](_0x39821a['shift']());}}}(_0x48de,0xc4a69));class MeshComponent extends SceneComponent{get['threeObject'](){const _0x1729c5=_0x569c;if(!this[_0x1729c5(0x133)])throw new Error(_0x1729c5(0x140));return this[_0x1729c5(0x133)];}set['threeObject'](_0x254f3e){const _0x5c13ae=_0x569c;this[_0x5c13ae(0x133)]=_0x254f3e,this[_0x5c13ae(0x133)]&&(this['obj'][_0x5c13ae(0x130)][_0x5c13ae(0x12e)]=this);}get[_0x62e471(0x13a)](){const _0x2a7d03=_0x62e471;if(!this[_0x2a7d03(0x142)])throw new Error(_0x2a7d03(0x13c));return this[_0x2a7d03(0x142)][_0x2a7d03(0x129)]();}set['geometry'](_0xcb027f){const _0x51c43c=_0x62e471;let _0x1cb43e=this[_0x51c43c(0x139)]['assetManager']['addGeometryAsset'](_0xcb027f);this[_0x51c43c(0x128)]=_0x1cb43e;}get[_0x62e471(0x128)](){if(!this['_geometryPtr'])throw new Error('geometryPtr\x20is\x20null');return this['_geometryPtr'];}set[_0x62e471(0x128)](_0x33bc70){const _0x38bc2c=_0x62e471;this[_0x38bc2c(0x142)]&&(this['_geometryPtr'][_0x38bc2c(0x120)](),this[_0x38bc2c(0x142)]=null);this[_0x38bc2c(0x142)]=_0x33bc70;let _0x1ee909=_0x33bc70['getValue']();this['threeObject']&&_0x1ee909&&(this['threeObject'][_0x38bc2c(0x13a)]=_0x1ee909);}get[_0x62e471(0x131)](){const _0x518bdf=_0x62e471;let _0xc62452=[];return this[_0x518bdf(0x126)][_0x518bdf(0x144)](_0xeef218=>{const _0x27c117=_0x518bdf;let _0x5cc66d=_0xeef218[_0x27c117(0x129)]();if(_0x5cc66d)_0xc62452[_0x27c117(0x136)](_0x5cc66d);}),_0xc62452['length']>0x1?_0xc62452:_0xc62452[0x0];}get[_0x62e471(0x12c)](){const _0x516a97=_0x62e471;return this[_0x516a97(0x12c)];}set[_0x62e471(0x131)](_0x1005a9){const _0x90d0f2=_0x62e471;let _0x202228=Array['isArray'](_0x1005a9)?_0x1005a9:[_0x1005a9],_0x2a7f8e=[];_0x202228[_0x90d0f2(0x144)](_0x5aae57=>{const _0x5c0331=_0x90d0f2;let _0xde1b58=this[_0x5c0331(0x139)][_0x5c0331(0x145)][_0x5c0331(0x11e)](_0x5aae57);if(_0xde1b58)_0x2a7f8e[_0x5c0331(0x136)](_0xde1b58);}),this['materialPtr']=_0x2a7f8e;}set['materialPtr'](_0x59c517){const _0x2b8193=_0x62e471;this['_materialPtr']&&(this['_materialPtr'][_0x2b8193(0x144)](_0x90f8c4=>{const _0x1555da=_0x2b8193;_0x90f8c4[_0x1555da(0x120)]();}),this[_0x2b8193(0x126)]=[]);let _0x5f4d10=Array[_0x2b8193(0x138)](_0x59c517)?_0x59c517:[_0x59c517],_0x4cf76d=[];_0x5f4d10[_0x2b8193(0x144)](_0x5f42cb=>{const _0x589814=_0x2b8193;let _0x3d08c7=_0x5f42cb['getValue']();if(_0x3d08c7)_0x4cf76d[_0x589814(0x136)](_0x3d08c7);_0x5f42cb[_0x589814(0x13f)]();});if(this[_0x2b8193(0x13b)]){if(_0x4cf76d['length']>0x0)this['threeObject'][_0x2b8193(0x131)]=Array['isArray'](_0x59c517)?_0x4cf76d[0x0]:_0x4cf76d;}this['_materialPtr']=_0x5f4d10;}constructor(_0x2a6564,_0x2e8e0a,_0x24ca36,_0x10ead0){const _0x131dc4=_0x62e471;let _0x2af264=[],_0x10bd44=Array[_0x131dc4(0x138)](_0x24ca36)?_0x24ca36:[_0x24ca36];_0x10bd44[_0x131dc4(0x144)](_0x3309ac=>{const _0x9dc804=_0x131dc4;let _0x43c82a=_0x2a6564[_0x9dc804(0x145)]['addMaterialAsset'](_0x3309ac);if(_0x43c82a)_0x2af264['push'](_0x43c82a);}),super(_0x2a6564,_0x10ead0),this[_0x131dc4(0x142)]=_0x2a6564[_0x131dc4(0x145)]['addGeometryAsset'](_0x2e8e0a),this[_0x131dc4(0x126)]=_0x2af264,_0x2af264[_0x131dc4(0x144)](_0x3b4486=>{const _0x32b8b6=_0x131dc4;_0x3b4486[_0x32b8b6(0x13f)]();}),this['threeObject']['material']=_0x24ca36,this[_0x131dc4(0x13b)][_0x131dc4(0x13a)]=_0x2e8e0a;}[_0x62e471(0x141)](){return new webgpu.Mesh();}set[_0x62e471(0x124)](_0x24c3f0){const _0x495eaa=_0x62e471;if(this[_0x495eaa(0x13b)])this[_0x495eaa(0x13b)][_0x495eaa(0x124)]=_0x24c3f0;}get[_0x62e471(0x124)](){const _0x1a55be=_0x62e471;return this[_0x1a55be(0x13b)]?this[_0x1a55be(0x13b)]['castShadow']:![];}set[_0x62e471(0x12d)](_0x1cb2bc){const _0xdc968c=_0x62e471;if(!this[_0xdc968c(0x13b)])return;this['threeObject'][_0xdc968c(0x12d)]=_0x1cb2bc;}get[_0x62e471(0x12d)](){const _0x4e9172=_0x62e471;return this[_0x4e9172(0x13b)]?this[_0x4e9172(0x13b)][_0x4e9172(0x12d)]:![];}['getBoundsCenterPosition'](){const _0x52297f=_0x62e471;let _0x50c133=new webgpu.Vector3();return this[_0x52297f(0x127)]()[_0x52297f(0x13d)](_0x50c133),_0x50c133;}[_0x62e471(0x13e)](){const _0x4c757f=_0x62e471;let _0x541d1d=new webgpu.Vector3(),_0x5c1332=this[_0x4c757f(0x127)]();return _0x5c1332[_0x4c757f(0x13d)](_0x541d1d),_0x541d1d['y']=_0x5c1332[_0x4c757f(0x143)]['y'],_0x541d1d;}[_0x62e471(0x134)](){const _0x223e63=_0x62e471;let _0x5960fb=new webgpu.Vector3(),_0x52caa3=this[_0x223e63(0x127)]();return _0x52caa3[_0x223e63(0x13d)](_0x5960fb),_0x5960fb['y']=_0x52caa3[_0x223e63(0x137)]['y'],_0x5960fb;}[_0x62e471(0x125)](){const _0x31fc57=_0x62e471;var _0x5c3eb8;this[_0x31fc57(0x13b)]&&this['threeObject'][_0x31fc57(0x135)]();(_0x5c3eb8=this[_0x31fc57(0x142)])===null||_0x5c3eb8===void 0?void 0:_0x5c3eb8[_0x31fc57(0x120)]();let _0x50e050=Array[_0x31fc57(0x138)](this[_0x31fc57(0x126)])?this[_0x31fc57(0x126)]:[this['_materialPtr']];_0x50e050[_0x31fc57(0x144)](_0x4d7c20=>{const _0x39fc82=_0x31fc57;_0x4d7c20[_0x39fc82(0x120)]();}),super[_0x31fc57(0x125)]();}}
32
+ const _0x3c774b=_0x502a;function _0x27ac(){const _0x520d9e=['isArray','material','addRef','min','getBoundsCenterPosition','_geometryPtr','receiveShadow','10GIWzeg','getBounds','addMaterialAsset','getBoundsBottomCenterPosition','materialPtr','396499pLEZFh','368650XwqIpB','_materialPtr','release','146922XxomiC','addGeometryAsset','geometryPtr','geometryPtr\x20is\x20null','1336200JdLWKJ','geometry','assetManager','obj','getBoundsTopCenterPosition','destroyObject','app','threeObject','max','26YQnGiN','userData','castShadow','301mhgivG','218440IotdwM','forEach','getCenter','79446LHIcYR','length','getValue','createDefaultObject','9flEbzk','push','3125540zQJsZw'];_0x27ac=function(){return _0x520d9e;};return _0x27ac();}(function(_0x1321ff,_0x288be3){const _0x1df22e=_0x502a,_0x4838ff=_0x1321ff();while(!![]){try{const _0x1205ea=parseInt(_0x1df22e(0x151))/0x1+parseInt(_0x1df22e(0x162))/0x2*(parseInt(_0x1df22e(0x155))/0x3)+parseInt(_0x1df22e(0x159))/0x4+-parseInt(_0x1df22e(0x152))/0x5+parseInt(_0x1df22e(0x169))/0x6*(-parseInt(_0x1df22e(0x165))/0x7)+-parseInt(_0x1df22e(0x166))/0x8*(parseInt(_0x1df22e(0x16d))/0x9)+-parseInt(_0x1df22e(0x14c))/0xa*(parseInt(_0x1df22e(0x16f))/0xb);if(_0x1205ea===_0x288be3)break;else _0x4838ff['push'](_0x4838ff['shift']());}catch(_0x33ccf7){_0x4838ff['push'](_0x4838ff['shift']());}}}(_0x27ac,0x64c01));function _0x502a(_0x1499ea,_0xb18464){_0x1499ea=_0x1499ea-0x14a;const _0x27ac69=_0x27ac();let _0x502a4d=_0x27ac69[_0x1499ea];return _0x502a4d;}class MeshComponent extends SceneComponent{get[_0x3c774b(0x160)](){const _0x2d34f6=_0x3c774b;if(!this['obj'])throw new Error('threeObject\x20is\x20null');return this[_0x2d34f6(0x15c)];}set['threeObject'](_0x19e762){const _0x1df354=_0x3c774b;this['obj']=_0x19e762,this[_0x1df354(0x15c)]&&(this['obj'][_0x1df354(0x163)]['LYObject']=this);}get['geometry'](){const _0xe64272=_0x3c774b;if(!this[_0xe64272(0x14a)])throw new Error(_0xe64272(0x158));return this['_geometryPtr'][_0xe64272(0x16b)]();}set['geometry'](_0x4cbf5f){const _0x477037=_0x3c774b;let _0x258337=this[_0x477037(0x15f)]['assetManager'][_0x477037(0x156)](_0x4cbf5f);this[_0x477037(0x157)]=_0x258337;}get[_0x3c774b(0x157)](){const _0x58526d=_0x3c774b;if(!this[_0x58526d(0x14a)])throw new Error(_0x58526d(0x158));return this['_geometryPtr'];}set['geometryPtr'](_0x8b949d){const _0x23519f=_0x3c774b;this[_0x23519f(0x14a)]&&(this[_0x23519f(0x14a)]['release'](),this[_0x23519f(0x14a)]=null);this['_geometryPtr']=_0x8b949d;let _0x160cdc=_0x8b949d[_0x23519f(0x16b)]();this[_0x23519f(0x160)]&&_0x160cdc&&(this[_0x23519f(0x160)]['geometry']=_0x160cdc);}get[_0x3c774b(0x171)](){const _0x47c212=_0x3c774b;let _0x4a90b0=[];return this[_0x47c212(0x153)][_0x47c212(0x167)](_0x419f02=>{const _0x42bcde=_0x47c212;let _0x3e0239=_0x419f02['getValue']();if(_0x3e0239)_0x4a90b0[_0x42bcde(0x16e)](_0x3e0239);}),_0x4a90b0['length']>0x1?_0x4a90b0:_0x4a90b0[0x0];}get[_0x3c774b(0x150)](){return this['materialPtr'];}set[_0x3c774b(0x171)](_0x38e27a){const _0x3f62f8=_0x3c774b;let _0x6ad15b=Array[_0x3f62f8(0x170)](_0x38e27a)?_0x38e27a:[_0x38e27a],_0x2c868c=[];_0x6ad15b[_0x3f62f8(0x167)](_0x31bb7b=>{const _0x44fac8=_0x3f62f8;let _0x50eab3=this['app'][_0x44fac8(0x15b)][_0x44fac8(0x14e)](_0x31bb7b);if(_0x50eab3)_0x2c868c[_0x44fac8(0x16e)](_0x50eab3);}),this[_0x3f62f8(0x150)]=_0x2c868c;}set['materialPtr'](_0x51fcbf){const _0x3cd154=_0x3c774b;this[_0x3cd154(0x153)]&&(this['_materialPtr'][_0x3cd154(0x167)](_0x59756a=>{_0x59756a['release']();}),this[_0x3cd154(0x153)]=[]);let _0x292e34=Array[_0x3cd154(0x170)](_0x51fcbf)?_0x51fcbf:[_0x51fcbf],_0x5c6f41=[];_0x292e34[_0x3cd154(0x167)](_0x3227fb=>{const _0x3a371a=_0x3cd154;let _0x1d61d9=_0x3227fb[_0x3a371a(0x16b)]();if(_0x1d61d9)_0x5c6f41['push'](_0x1d61d9);_0x3227fb[_0x3a371a(0x172)]();});if(this['threeObject']){if(_0x5c6f41[_0x3cd154(0x16a)]>0x0)this['threeObject'][_0x3cd154(0x171)]=Array['isArray'](_0x51fcbf)?_0x5c6f41[0x0]:_0x5c6f41;}this['_materialPtr']=_0x292e34;}constructor(_0x458eac,_0x32668e,_0x1e5a03,_0x1a1e1b){const _0x410829=_0x3c774b;let _0x4cf0c0=[],_0x4b5173=Array[_0x410829(0x170)](_0x1e5a03)?_0x1e5a03:[_0x1e5a03];_0x4b5173['forEach'](_0x57703=>{const _0xe3f7cd=_0x410829;let _0x1a619d=_0x458eac['assetManager'][_0xe3f7cd(0x14e)](_0x57703);if(_0x1a619d)_0x4cf0c0[_0xe3f7cd(0x16e)](_0x1a619d);}),super(_0x458eac,_0x1a1e1b),this[_0x410829(0x14a)]=_0x458eac[_0x410829(0x15b)][_0x410829(0x156)](_0x32668e),this[_0x410829(0x153)]=_0x4cf0c0,_0x4cf0c0[_0x410829(0x167)](_0x1c35f2=>{const _0x36465e=_0x410829;_0x1c35f2[_0x36465e(0x172)]();}),this[_0x410829(0x160)]['material']=_0x1e5a03,this['threeObject'][_0x410829(0x15a)]=_0x32668e;}[_0x3c774b(0x16c)](){return new webgpu.Mesh();}set['castShadow'](_0x11a811){const _0xda1140=_0x3c774b;if(this[_0xda1140(0x160)])this[_0xda1140(0x160)][_0xda1140(0x164)]=_0x11a811;}get[_0x3c774b(0x164)](){const _0x1b14ed=_0x3c774b;return this['threeObject']?this[_0x1b14ed(0x160)][_0x1b14ed(0x164)]:![];}set['receiveShadow'](_0xdaf3ca){const _0x14d2f1=_0x3c774b;if(!this['threeObject'])return;this[_0x14d2f1(0x160)][_0x14d2f1(0x14b)]=_0xdaf3ca;}get[_0x3c774b(0x14b)](){const _0x11d4b2=_0x3c774b;return this['threeObject']?this[_0x11d4b2(0x160)][_0x11d4b2(0x14b)]:![];}[_0x3c774b(0x174)](){const _0x305e03=_0x3c774b;let _0x1226a0=new webgpu.Vector3();return this[_0x305e03(0x14d)]()[_0x305e03(0x168)](_0x1226a0),_0x1226a0;}[_0x3c774b(0x15d)](){const _0x2cede3=_0x3c774b;let _0x1ebb20=new webgpu.Vector3(),_0x118bf4=this['getBounds']();return _0x118bf4[_0x2cede3(0x168)](_0x1ebb20),_0x1ebb20['y']=_0x118bf4[_0x2cede3(0x161)]['y'],_0x1ebb20;}[_0x3c774b(0x14f)](){const _0x499e7b=_0x3c774b;let _0x237a3b=new webgpu.Vector3(),_0x59f2aa=this[_0x499e7b(0x14d)]();return _0x59f2aa['getCenter'](_0x237a3b),_0x237a3b['y']=_0x59f2aa[_0x499e7b(0x173)]['y'],_0x237a3b;}[_0x3c774b(0x15e)](){const _0x4727db=_0x3c774b;var _0xf100c;this[_0x4727db(0x160)]&&this[_0x4727db(0x160)]['removeFromParent']();(_0xf100c=this[_0x4727db(0x14a)])===null||_0xf100c===void 0?void 0:_0xf100c[_0x4727db(0x154)]();let _0x40f83b=Array[_0x4727db(0x170)](this['_materialPtr'])?this['_materialPtr']:[this['_materialPtr']];_0x40f83b[_0x4727db(0x167)](_0x37c9a8=>{const _0x20799e=_0x4727db;_0x37c9a8[_0x20799e(0x154)]();}),super[_0x4727db(0x15e)]();}}
32
33
 
33
- var _0x2515bf=_0x597e;(function(_0x2c99c0,_0x2d290a){var _0x360f0e=_0x597e,_0x1d6abe=_0x2c99c0();while(!![]){try{var _0xeb9202=parseInt(_0x360f0e(0x126))/0x1+parseInt(_0x360f0e(0x121))/0x2+parseInt(_0x360f0e(0x11a))/0x3*(parseInt(_0x360f0e(0x128))/0x4)+-parseInt(_0x360f0e(0x129))/0x5*(parseInt(_0x360f0e(0x11f))/0x6)+-parseInt(_0x360f0e(0x125))/0x7+parseInt(_0x360f0e(0x124))/0x8+parseInt(_0x360f0e(0x123))/0x9*(-parseInt(_0x360f0e(0x122))/0xa);if(_0xeb9202===_0x2d290a)break;else _0x1d6abe['push'](_0x1d6abe['shift']());}catch(_0x14854f){_0x1d6abe['push'](_0x1d6abe['shift']());}}}(_0x2634,0x901e9));function _0x597e(_0x438c91,_0x8d4a9a){_0x438c91=_0x438c91-0x11a;var _0x26345d=_0x2634();var _0x597ef9=_0x26345d[_0x438c91];return _0x597ef9;}class TSmartPointer{constructor(_0x52a15d,_0x3a3a6a=0x1){var _0x398e13=_0x597e;this[_0x398e13(0x11b)]=0x1,this['value']=null,this[_0x398e13(0x11c)]=_0x52a15d,this[_0x398e13(0x11b)]=_0x3a3a6a;}[_0x2515bf(0x120)](){return this['referenceCount'];}['isValid'](){var _0x120599=_0x2515bf;return this[_0x120599(0x11c)]!==null;}[_0x2515bf(0x11e)](_0x5b2d7e=0x1){var _0x530ce0=_0x2515bf;this[_0x530ce0(0x11c)]!==null&&(this[_0x530ce0(0x11b)]+=_0x5b2d7e);}['release'](){var _0x1df07d=_0x2515bf;this['value']!==null&&this['referenceCount']>0x0&&(this[_0x1df07d(0x11b)]--,this[_0x1df07d(0x11b)]===0x0&&this[_0x1df07d(0x127)]());}[_0x2515bf(0x11d)](){var _0x193ae7=_0x2515bf;this[_0x193ae7(0x11c)]!==null&&(this[_0x193ae7(0x127)](),this[_0x193ae7(0x11b)]=0x0);}[_0x2515bf(0x127)](){var _0x18b575=_0x2515bf;this[_0x18b575(0x11c)]=null;}['getValue'](){var _0x49ab8e=_0x2515bf;return this[_0x49ab8e(0x11c)];}}function _0x2634(){var _0x5a4a21=['706674risDXH','getRefCount','845286ORqhbr','30WFTKUH','2750427tHImGu','4431896GVohho','2817535NDpWcI','274909mCVJyH','dispose','175900afqLYK','15rOnFiU','69HpXXwj','referenceCount','value','forceRelease','addRef'];_0x2634=function(){return _0x5a4a21;};return _0x2634();}
34
+ var _0x38b63e=_0x2a0a;function _0x2a0a(_0x2f2666,_0x4dfc58){_0x2f2666=_0x2f2666-0xcc;var _0x2d2694=_0x2d26();var _0x2a0a1d=_0x2d2694[_0x2f2666];return _0x2a0a1d;}(function(_0x60271e,_0x43bf89){var _0x846cc6=_0x2a0a,_0x54597e=_0x60271e();while(!![]){try{var _0x481dc9=-parseInt(_0x846cc6(0xd8))/0x1*(parseInt(_0x846cc6(0xd6))/0x2)+parseInt(_0x846cc6(0xd1))/0x3+parseInt(_0x846cc6(0xd3))/0x4+parseInt(_0x846cc6(0xd7))/0x5*(-parseInt(_0x846cc6(0xcc))/0x6)+-parseInt(_0x846cc6(0xd0))/0x7+-parseInt(_0x846cc6(0xd5))/0x8*(-parseInt(_0x846cc6(0xd4))/0x9)+parseInt(_0x846cc6(0xd2))/0xa*(-parseInt(_0x846cc6(0xce))/0xb);if(_0x481dc9===_0x43bf89)break;else _0x54597e['push'](_0x54597e['shift']());}catch(_0x59402a){_0x54597e['push'](_0x54597e['shift']());}}}(_0x2d26,0xcc081));class TSmartPointer{constructor(_0x5c54b7,_0x24359b=0x1){var _0x4f85c3=_0x2a0a;this[_0x4f85c3(0xd9)]=0x1,this[_0x4f85c3(0xda)]=null,this['value']=_0x5c54b7,this[_0x4f85c3(0xd9)]=_0x24359b;}['getRefCount'](){var _0xdb5ace=_0x2a0a;return this[_0xdb5ace(0xd9)];}['isValid'](){var _0x537123=_0x2a0a;return this[_0x537123(0xda)]!==null;}['addRef'](_0x57be05=0x1){var _0x299f78=_0x2a0a;this[_0x299f78(0xda)]!==null&&(this[_0x299f78(0xd9)]+=_0x57be05);}['release'](){var _0x1de289=_0x2a0a;this[_0x1de289(0xda)]!==null&&this[_0x1de289(0xd9)]>0x0&&(this[_0x1de289(0xd9)]--,this[_0x1de289(0xd9)]===0x0&&this[_0x1de289(0xcd)]());}['forceRelease'](){var _0x522b29=_0x2a0a;this['value']!==null&&(this[_0x522b29(0xcd)](),this[_0x522b29(0xd9)]=0x0);}[_0x38b63e(0xcd)](){var _0x422f8f=_0x38b63e;this[_0x422f8f(0xda)]=null;}[_0x38b63e(0xcf)](){var _0x4016f1=_0x38b63e;return this[_0x4016f1(0xda)];}}function _0x2d26(){var _0xbccd6=['5272yTSHPs','6742EIxFRS','125lfsdEb','363TCdAsu','referenceCount','value','54906nmZQdd','dispose','11JDWRqe','getValue','6124972cGBlWa','4755513PXZdQB','11360490MRTKjz','4590368eCrtPZ','21393AOzkgy'];_0x2d26=function(){return _0xbccd6;};return _0x2d26();}
34
35
 
35
- const _0xc290f5=_0x593e;function _0x593e(_0x41e0f1,_0xa7e4c2){_0x41e0f1=_0x41e0f1-0x1c0;const _0x1dbb2b=_0x1dbb();let _0x593e0f=_0x1dbb2b[_0x41e0f1];return _0x593e0f;}(function(_0x2a0d82,_0x3bef3c){const _0x5db093=_0x593e,_0x53bf76=_0x2a0d82();while(!![]){try{const _0x155758=-parseInt(_0x5db093(0x1c3))/0x1*(parseInt(_0x5db093(0x1c6))/0x2)+-parseInt(_0x5db093(0x1c9))/0x3+-parseInt(_0x5db093(0x1c5))/0x4*(parseInt(_0x5db093(0x1ce))/0x5)+parseInt(_0x5db093(0x1cd))/0x6+-parseInt(_0x5db093(0x1c4))/0x7*(-parseInt(_0x5db093(0x1ca))/0x8)+-parseInt(_0x5db093(0x1c8))/0x9*(-parseInt(_0x5db093(0x1c2))/0xa)+parseInt(_0x5db093(0x1cf))/0xb;if(_0x155758===_0x3bef3c)break;else _0x53bf76['push'](_0x53bf76['shift']());}catch(_0x355bb4){_0x53bf76['push'](_0x53bf76['shift']());}}}(_0x1dbb,0x5b27a));const ASSET_POINTER_KEY=_0xc290f5(0x1d0);const EDITOR_ASSET_ID_KEY='editorAssetId';function _0x1dbb(){const _0x4fdfde=['userData','function','3911514QgEDfh','10ACHoid','1227347vteMJZ','assetPointer','value','dispose','3745850PYDFZF','1842XzmPuY','175APImcQ','1297216VcIxCt','298tjfHvm','_uuid','9qIWCLQ','1580760RmnXlh','219288LPMavb'];_0x1dbb=function(){return _0x4fdfde;};return _0x1dbb();}class TAssetPointer extends TSmartPointer{get['uuid'](){const _0x27bf1b=_0xc290f5;return this[_0x27bf1b(0x1c7)];}constructor(_0x1e0491,_0x7e8ef=0x0){const _0x1223c6=_0xc290f5;super(_0x1e0491,_0x7e8ef),this[_0x1223c6(0x1c7)]=_0x1e0491['uuid'],_0x1e0491['userData'][ASSET_POINTER_KEY]=this;}[_0xc290f5(0x1c1)](){const _0x16b67d=_0xc290f5;this[_0x16b67d(0x1c0)]&&(this[_0x16b67d(0x1c0)][_0x16b67d(0x1cb)]&&(delete this['value'][_0x16b67d(0x1cb)][ASSET_POINTER_KEY],delete this[_0x16b67d(0x1c0)]['userData'][EDITOR_ASSET_ID_KEY]),typeof this['value'][_0x16b67d(0x1c1)]===_0x16b67d(0x1cc)&&this['value']['dispose']()),super[_0x16b67d(0x1c1)]();}}
36
+ function _0x21aa(_0x6a7abc,_0x49c7b0){_0x6a7abc=_0x6a7abc-0x170;const _0x215e64=_0x215e();let _0x21aac0=_0x215e64[_0x6a7abc];return _0x21aac0;}const _0x5f0eec=_0x21aa;(function(_0x5a9112,_0x419778){const _0x171579=_0x21aa,_0x5f420b=_0x5a9112();while(!![]){try{const _0x5e337e=parseInt(_0x171579(0x174))/0x1+-parseInt(_0x171579(0x17b))/0x2*(-parseInt(_0x171579(0x17c))/0x3)+-parseInt(_0x171579(0x177))/0x4*(-parseInt(_0x171579(0x17f))/0x5)+-parseInt(_0x171579(0x175))/0x6+parseInt(_0x171579(0x176))/0x7+parseInt(_0x171579(0x173))/0x8+parseInt(_0x171579(0x179))/0x9*(-parseInt(_0x171579(0x170))/0xa);if(_0x5e337e===_0x419778)break;else _0x5f420b['push'](_0x5f420b['shift']());}catch(_0x39dc1c){_0x5f420b['push'](_0x5f420b['shift']());}}}(_0x215e,0x5b1c6));const ASSET_POINTER_KEY=_0x5f0eec(0x171);const EDITOR_ASSET_ID_KEY='editorAssetId';function _0x215e(){const _0xeea3b3=['assetPointer','value','5237576BlExyC','253998GAHsAG','3620484AyUQSz','2903208pkWoeE','844NAEnHK','function','45eVymky','uuid','231038VqYDHE','3CarfMf','userData','dispose','8105uITHxz','1608770SLvhrJ'];_0x215e=function(){return _0xeea3b3;};return _0x215e();}class TAssetPointer extends TSmartPointer{get[_0x5f0eec(0x17a)](){return this['_uuid'];}constructor(_0x14ba8f,_0xc67953=0x0){const _0xbeeea4=_0x5f0eec;super(_0x14ba8f,_0xc67953),this['_uuid']=_0x14ba8f[_0xbeeea4(0x17a)],_0x14ba8f[_0xbeeea4(0x17d)][ASSET_POINTER_KEY]=this;}[_0x5f0eec(0x17e)](){const _0x26f6f3=_0x5f0eec;this[_0x26f6f3(0x172)]&&(this[_0x26f6f3(0x172)][_0x26f6f3(0x17d)]&&(delete this[_0x26f6f3(0x172)][_0x26f6f3(0x17d)][ASSET_POINTER_KEY],delete this[_0x26f6f3(0x172)]['userData'][EDITOR_ASSET_ID_KEY]),typeof this['value']['dispose']===_0x26f6f3(0x178)&&this[_0x26f6f3(0x172)]['dispose']()),super['dispose']();}}
36
37
 
37
- const _0x217407=_0x2c9b;(function(_0x5a53b0,_0x579729){const _0x4d3af4=_0x2c9b,_0x2e3844=_0x5a53b0();while(!![]){try{const _0x4c9929=parseInt(_0x4d3af4(0x164))/0x1+parseInt(_0x4d3af4(0x15f))/0x2*(parseInt(_0x4d3af4(0x163))/0x3)+parseInt(_0x4d3af4(0x16d))/0x4+-parseInt(_0x4d3af4(0x169))/0x5+-parseInt(_0x4d3af4(0x160))/0x6+parseInt(_0x4d3af4(0x166))/0x7+-parseInt(_0x4d3af4(0x16f))/0x8;if(_0x4c9929===_0x579729)break;else _0x2e3844['push'](_0x2e3844['shift']());}catch(_0x406f2a){_0x2e3844['push'](_0x2e3844['shift']());}}}(_0xe0cb,0x4b1fa));function _0xe0cb(){const _0xf4847d=['getValue','addRef','values','removeTexture','delete','8kXdIlC','1392096kMlXKT','dispose','release','195969XlLVqy','374974aLCXYj','set','260911lsCnVy','texturePointers','textures','1829200LDrIZt','setTexture','Material\x20is\x20null','needsUpdate','1983608JdUYRo','get','2111032AIWghQ'];_0xe0cb=function(){return _0xf4847d;};return _0xe0cb();}function _0x2c9b(_0x192e63,_0x2f0f89){_0x192e63=_0x192e63-0x15b;const _0xe0cb28=_0xe0cb();let _0x2c9b00=_0xe0cb28[_0x192e63];return _0x2c9b00;}class MaterialAssetPointer extends TAssetPointer{constructor(_0x2afab2,_0x2c8031,_0x4a6819=0x0){super(_0x2afab2,_0x4a6819),this['textures']=_0x2c8031;}get[_0x217407(0x167)](){const _0x298c5f=_0x217407;return this[_0x298c5f(0x168)];}[_0x217407(0x16a)](_0x2ffe2f,_0xa50687){const _0x7ed9e0=_0x217407,_0x4c32a7=this[_0x7ed9e0(0x170)](),_0x50a22d=_0xa50687['getValue']();if(!_0x50a22d)throw new Error('Texture\x20is\x20null');if(!_0x4c32a7)throw new Error(_0x7ed9e0(0x16b));const _0x328f68=this[_0x7ed9e0(0x168)][_0x7ed9e0(0x16e)](_0x2ffe2f);_0x328f68!==_0xa50687&&(_0x328f68&&_0x328f68[_0x7ed9e0(0x162)](),this[_0x7ed9e0(0x168)][_0x7ed9e0(0x165)](_0x2ffe2f,_0xa50687),_0x4c32a7[_0x2ffe2f]=_0x50a22d,_0xa50687[_0x7ed9e0(0x15b)](),_0x4c32a7['needsUpdate']=!![]);}[_0x217407(0x15d)](_0x35a999){const _0x2f1452=_0x217407,_0x1e65d4=this[_0x2f1452(0x170)](),_0xcb48f1=this[_0x2f1452(0x168)]['get'](_0x35a999);_0xcb48f1&&(_0xcb48f1[_0x2f1452(0x162)](),this[_0x2f1452(0x168)][_0x2f1452(0x15e)](_0x35a999),_0x1e65d4&&(_0x1e65d4[_0x35a999]=null,_0x1e65d4[_0x2f1452(0x16c)]=!![]));}[_0x217407(0x161)](){const _0x4c4f1e=_0x217407;for(const _0x16c185 of this[_0x4c4f1e(0x168)][_0x4c4f1e(0x15c)]()){_0x16c185[_0x4c4f1e(0x162)]();}this[_0x4c4f1e(0x168)]['clear'](),super[_0x4c4f1e(0x161)]();}}
38
+ const _0x48c67f=_0x3ca6;function _0x3ca6(_0x399b9,_0x3cf667){_0x399b9=_0x399b9-0x155;const _0x135854=_0x1358();let _0x3ca675=_0x135854[_0x399b9];return _0x3ca675;}(function(_0x341c1f,_0x2ed7ea){const _0x23a2c0=_0x3ca6,_0x59befc=_0x341c1f();while(!![]){try{const _0x2fd8d1=-parseInt(_0x23a2c0(0x165))/0x1*(-parseInt(_0x23a2c0(0x159))/0x2)+-parseInt(_0x23a2c0(0x16b))/0x3+-parseInt(_0x23a2c0(0x15e))/0x4+parseInt(_0x23a2c0(0x15a))/0x5*(parseInt(_0x23a2c0(0x160))/0x6)+-parseInt(_0x23a2c0(0x167))/0x7*(-parseInt(_0x23a2c0(0x15b))/0x8)+parseInt(_0x23a2c0(0x161))/0x9+-parseInt(_0x23a2c0(0x15f))/0xa;if(_0x2fd8d1===_0x2ed7ea)break;else _0x59befc['push'](_0x59befc['shift']());}catch(_0x19f7f6){_0x59befc['push'](_0x59befc['shift']());}}}(_0x1358,0x9d412));function _0x1358(){const _0x2bc19e=['removeTexture','576434ylQAAy','delete','4529sRvdvQ','Material\x20is\x20null','clear','getValue','1947390eUARar','textures','dispose','get','Texture\x20is\x20null','2EeyMbC','45685SKKsyz','14824fcqlLz','release','texturePointers','1763216WKbLnN','12485130haJwFV','306NoriKS','6671241kPzMos','needsUpdate','setTexture'];_0x1358=function(){return _0x2bc19e;};return _0x1358();}class MaterialAssetPointer extends TAssetPointer{constructor(_0xf51a2e,_0x4ed9dd,_0x324e51=0x0){const _0x42c187=_0x3ca6;super(_0xf51a2e,_0x324e51),this[_0x42c187(0x155)]=_0x4ed9dd;}get[_0x48c67f(0x15d)](){const _0x1c25fa=_0x48c67f;return this[_0x1c25fa(0x155)];}[_0x48c67f(0x163)](_0x4fa163,_0x16a2cd){const _0x17290d=_0x48c67f,_0x3447ec=this['getValue'](),_0x366a55=_0x16a2cd[_0x17290d(0x16a)]();if(!_0x366a55)throw new Error(_0x17290d(0x158));if(!_0x3447ec)throw new Error(_0x17290d(0x168));const _0x4aabbb=this['textures'][_0x17290d(0x157)](_0x4fa163);_0x4aabbb!==_0x16a2cd&&(_0x4aabbb&&_0x4aabbb[_0x17290d(0x15c)](),this[_0x17290d(0x155)]['set'](_0x4fa163,_0x16a2cd),_0x3447ec[_0x4fa163]=_0x366a55,_0x16a2cd['addRef'](),_0x3447ec[_0x17290d(0x162)]=!![]);}[_0x48c67f(0x164)](_0x21725c){const _0x44b6f9=_0x48c67f,_0x21197a=this[_0x44b6f9(0x16a)](),_0x129157=this['textures'][_0x44b6f9(0x157)](_0x21725c);_0x129157&&(_0x129157['release'](),this[_0x44b6f9(0x155)][_0x44b6f9(0x166)](_0x21725c),_0x21197a&&(_0x21197a[_0x21725c]=null,_0x21197a[_0x44b6f9(0x162)]=!![]));}['dispose'](){const _0x81aae2=_0x48c67f;for(const _0x1d1ffb of this[_0x81aae2(0x155)]['values']()){_0x1d1ffb[_0x81aae2(0x15c)]();}this[_0x81aae2(0x155)][_0x81aae2(0x169)](),super[_0x81aae2(0x156)]();}}
38
39
 
39
- (function(_0x22ac12,_0x182b8a){var _0x141959=_0xfb30,_0x503dad=_0x22ac12();while(!![]){try{var _0x30819a=-parseInt(_0x141959(0x1a9))/0x1+parseInt(_0x141959(0x1ac))/0x2*(parseInt(_0x141959(0x1a7))/0x3)+parseInt(_0x141959(0x1ab))/0x4+parseInt(_0x141959(0x1ad))/0x5*(parseInt(_0x141959(0x1a8))/0x6)+parseInt(_0x141959(0x1a6))/0x7*(-parseInt(_0x141959(0x1aa))/0x8)+parseInt(_0x141959(0x1a5))/0x9*(-parseInt(_0x141959(0x1ae))/0xa)+parseInt(_0x141959(0x1af))/0xb;if(_0x30819a===_0x182b8a)break;else _0x503dad['push'](_0x503dad['shift']());}catch(_0x165be7){_0x503dad['push'](_0x503dad['shift']());}}}(_0xc28c,0xeefce));function _0xfb30(_0x5d6dc4,_0x424d37){_0x5d6dc4=_0x5d6dc4-0x1a5;var _0xc28c8f=_0xc28c();var _0xfb302d=_0xc28c8f[_0x5d6dc4];return _0xfb302d;}function _0xc28c(){var _0x152b52=['1891312CeQWxU','8AzbMKL','1350152QGYcfH','50HWldSA','11240Rfbldd','10rrWJzG','32568657doqYpv','667179mcBBwj','6867343NDLGpK','73359PJjmiV','42wJCNAe'];_0xc28c=function(){return _0x152b52;};return _0xc28c();}class TextureAssetPointer extends TAssetPointer{constructor(_0x16c9b0,_0x553fef=0x1){super(_0x16c9b0,_0x553fef);}}
40
+ (function(_0x541252,_0x1f6eb5){var _0x5107be=_0x3062,_0x2ab365=_0x541252();while(!![]){try{var _0x26c41e=-parseInt(_0x5107be(0x1ba))/0x1*(-parseInt(_0x5107be(0x1b9))/0x2)+parseInt(_0x5107be(0x1b8))/0x3*(-parseInt(_0x5107be(0x1bb))/0x4)+parseInt(_0x5107be(0x1b7))/0x5+parseInt(_0x5107be(0x1b5))/0x6*(parseInt(_0x5107be(0x1b1))/0x7)+-parseInt(_0x5107be(0x1b3))/0x8+-parseInt(_0x5107be(0x1b0))/0x9*(-parseInt(_0x5107be(0x1b6))/0xa)+parseInt(_0x5107be(0x1b2))/0xb*(-parseInt(_0x5107be(0x1b4))/0xc);if(_0x26c41e===_0x1f6eb5)break;else _0x2ab365['push'](_0x2ab365['shift']());}catch(_0xea4f5){_0x2ab365['push'](_0x2ab365['shift']());}}}(_0x99fc,0x2e0e9));function _0x99fc(){var _0x4aa8ab=['156hDXsXy','9nYVztp','1296645lKeXop','741004VUgNGw','1166176OIRYHj','24cxpZpP','6vlDTVU','848490cQeBzx','141195dvHqfm','3231isCRJB','141886rrfwnY','3zplqMs'];_0x99fc=function(){return _0x4aa8ab;};return _0x99fc();}function _0x3062(_0x20279e,_0x606f6a){_0x20279e=_0x20279e-0x1b0;var _0x99fc08=_0x99fc();var _0x30621e=_0x99fc08[_0x20279e];return _0x30621e;}class TextureAssetPointer extends TAssetPointer{constructor(_0x17797b,_0x2585b1=0x1){super(_0x17797b,_0x2585b1);}}
40
41
 
41
- function _0x218b(_0x111626,_0x12ffd2){_0x111626=_0x111626-0xca;var _0x5946ea=_0x5946();var _0x218bca=_0x5946ea[_0x111626];return _0x218bca;}function _0x5946(){var _0x10fb32=['2599465BskUVt','1235088TqPugd','10xZmync','6BHxITR','387sEtkXg','128680YvvlTQ','88348PRjfgb','4KdGoEa','6209080LNqXBs','3001719Dfffkv','19798812QTFKHV'];_0x5946=function(){return _0x10fb32;};return _0x5946();}(function(_0x5b1c2a,_0x39a413){var _0xb9555d=_0x218b,_0x280290=_0x5b1c2a();while(!![]){try{var _0x4b60c4=parseInt(_0xb9555d(0xd0))/0x1*(-parseInt(_0xb9555d(0xd4))/0x2)+-parseInt(_0xb9555d(0xcf))/0x3+-parseInt(_0xb9555d(0xca))/0x4*(parseInt(_0xb9555d(0xce))/0x5)+-parseInt(_0xb9555d(0xd1))/0x6*(-parseInt(_0xb9555d(0xcc))/0x7)+parseInt(_0xb9555d(0xd3))/0x8*(-parseInt(_0xb9555d(0xd2))/0x9)+parseInt(_0xb9555d(0xcb))/0xa+parseInt(_0xb9555d(0xcd))/0xb;if(_0x4b60c4===_0x39a413)break;else _0x280290['push'](_0x280290['shift']());}catch(_0x58f2dd){_0x280290['push'](_0x280290['shift']());}}}(_0x5946,0xbf8f9));class GeometryAssetPointer extends TAssetPointer{constructor(_0x27c185,_0x22c908=0x1){super(_0x27c185,_0x22c908);}}
42
+ function _0x90f3(){var _0x2b43e5=['4918300DvJhyJ','441936TevIKs','9990ySWwrM','148437GxFATv','9782660sqNiur','154JAusII','695583WiTlXE','5vDNmKI','40aLMKMj','165rsCVrN','6569431vCgeTq'];_0x90f3=function(){return _0x2b43e5;};return _0x90f3();}(function(_0x348162,_0x1b9a5d){var _0x2e5373=_0x5dfb,_0x51230c=_0x348162();while(!![]){try{var _0xd775f=-parseInt(_0x2e5373(0x83))/0x1+-parseInt(_0x2e5373(0x7f))/0x2*(-parseInt(_0x2e5373(0x86))/0x3)+-parseInt(_0x2e5373(0x7d))/0x4*(-parseInt(_0x2e5373(0x84))/0x5)+parseInt(_0x2e5373(0x7e))/0x6*(parseInt(_0x2e5373(0x82))/0x7)+-parseInt(_0x2e5373(0x85))/0x8*(-parseInt(_0x2e5373(0x80))/0x9)+-parseInt(_0x2e5373(0x81))/0xa+-parseInt(_0x2e5373(0x87))/0xb;if(_0xd775f===_0x1b9a5d)break;else _0x51230c['push'](_0x51230c['shift']());}catch(_0x4c9e08){_0x51230c['push'](_0x51230c['shift']());}}}(_0x90f3,0xe48bf));function _0x5dfb(_0x4ca178,_0x45bb05){_0x4ca178=_0x4ca178-0x7d;var _0x90f3ab=_0x90f3();var _0x5dfba3=_0x90f3ab[_0x4ca178];return _0x5dfba3;}class GeometryAssetPointer extends TAssetPointer{constructor(_0x543e15,_0x33654d=0x1){super(_0x543e15,_0x33654d);}}
42
43
 
43
- const _0x3ccc64=_0x3b7d;(function(_0x28e320,_0x16ec26){const _0x56130a=_0x3b7d,_0x3743b4=_0x28e320();while(!![]){try{const _0x439fcf=parseInt(_0x56130a(0x1a2))/0x1*(-parseInt(_0x56130a(0x1cf))/0x2)+parseInt(_0x56130a(0x194))/0x3+parseInt(_0x56130a(0x18f))/0x4+-parseInt(_0x56130a(0x1ba))/0x5+parseInt(_0x56130a(0x1c2))/0x6*(parseInt(_0x56130a(0x1be))/0x7)+parseInt(_0x56130a(0x1b0))/0x8+-parseInt(_0x56130a(0x18d))/0x9;if(_0x439fcf===_0x16ec26)break;else _0x3743b4['push'](_0x3743b4['shift']());}catch(_0x305c93){_0x3743b4['push'](_0x3743b4['shift']());}}}(_0x26f9,0x445e3));function _0x3b7d(_0x4fbdcd,_0x248523){_0x4fbdcd=_0x4fbdcd-0x18c;const _0x26f943=_0x26f9();let _0x3b7d73=_0x26f943[_0x4fbdcd];return _0x3b7d73;}function _0x26f9(){const _0x4b268f=['geometries','call','manager','onProgress','hasOwnProperty','materials','480123UjwwDr','convertThreeObjectToLYObject','1978416awVEbv','addRef','uuid','loadGltfFromPathAsync','addMaterialAsset','967065tyNqnB','userData','_dracoPatched','bind','onStart','scale','material','textureAssets','set','type','loadingManager','get','isArray','textures','350843kpCujL','checkMeshResource','entries','Worker','LoadingManager','clone','object','dracoLoader','decoderConfig','loadGltfFromBuffer','materialAssets','children','loadAsync','layers','312488jMeVdv','setPosition','rotation','/SceneResource/draco/','dispose','forceRelease','geometry','loadGltfFromPath','geometryAssets','assetPointer','920800hcFDtv','loadFile','setupDracoLoader','clear','17311pbPJsY','forEach','assign','parse','30veDvWT','addGeometryAsset','addAsset','gltfLoader','init','addTextureAsset','load','isMesh','position','values','setScale','app','traverse','2uHaopy','setDRACOLoader','onError','clearAssets','postMessage','setRotation'];_0x26f9=function(){return _0x4b268f;};return _0x26f9();}class AssetManager{constructor(_0x50726d){const _0x1e843a=_0x3b7d;this[_0x1e843a(0x1b8)]=new Map(),this[_0x1e843a(0x19b)]=new Map(),this[_0x1e843a(0x1ac)]=new Map(),this[_0x1e843a(0x1a9)]=null,this[_0x1e843a(0x19e)]=new webgpu.LoadingManager(),this[_0x1e843a(0x1c5)]=new Addons_js.GLTFLoader(this[_0x1e843a(0x19e)]),this[_0x1e843a(0x1cd)]=_0x50726d;}get[_0x3ccc64(0x1a6)](){const _0x209833=_0x3ccc64;return this[_0x209833(0x19e)];}async[_0x3ccc64(0x1c6)](){return;}['setupDracoLoader'](_0x5b7433){const _0x5cc4e7=_0x3ccc64;if(!this[_0x5cc4e7(0x1a9)]){this[_0x5cc4e7(0x1a9)]=new Addons_js.DRACOLoader();if(this['dracoLoader'][_0x5cc4e7(0x1d7)]){const _0x511476=this[_0x5cc4e7(0x1a9)][_0x5cc4e7(0x1d7)];_0x511476[_0x5cc4e7(0x198)]=undefined,_0x511476['onLoad']=undefined,_0x511476[_0x5cc4e7(0x1d8)]=undefined,_0x511476[_0x5cc4e7(0x1d1)]=undefined;}this[_0x5cc4e7(0x1a9)]['setDecoderPath'](_0x5b7433);const _0xcd02ce=window['Worker'];if(_0xcd02ce&&!_0xcd02ce[_0x5cc4e7(0x196)]){_0xcd02ce[_0x5cc4e7(0x196)]=!![],window[_0x5cc4e7(0x1a5)]=function(_0x28aaa1,_0x471864){const _0x5868ef=_0x5cc4e7,_0x429be4=new _0xcd02ce(_0x28aaa1,_0x471864),_0x322abb=_0x429be4[_0x5868ef(0x1d3)][_0x5868ef(0x197)](_0x429be4);return _0x429be4[_0x5868ef(0x1d3)]=function(_0x5b17da,_0x3cf1a8){const _0x3a4ef6=_0x5868ef;if(_0x5b17da&&_0x5b17da[_0x3a4ef6(0x1aa)]&&typeof _0x5b17da[_0x3a4ef6(0x1aa)]===_0x3a4ef6(0x1a8)){const _0x28f7db=_0x5b17da['decoderConfig'],_0x4661f1={};for(const _0x4018bc in _0x28f7db){Object['prototype']['hasOwnProperty']['call'](_0x28f7db,_0x4018bc)&&(_0x4661f1[_0x4018bc]=_0x28f7db[_0x4018bc]);}_0x5b17da=Object[_0x3a4ef6(0x1c0)](Object[_0x3a4ef6(0x1c0)]({},_0x5b17da),{'decoderConfig':_0x4661f1});}return _0x322abb(_0x5b17da,_0x3cf1a8);},_0x429be4;};for(const _0x4a7040 in _0xcd02ce){Object['prototype'][_0x5cc4e7(0x1d9)][_0x5cc4e7(0x1d6)](_0xcd02ce,_0x4a7040)&&(window[_0x5cc4e7(0x1a5)][_0x4a7040]=_0xcd02ce[_0x4a7040]);}}this['dracoLoader']['preload'](),this[_0x5cc4e7(0x1c5)][_0x5cc4e7(0x1d0)](this[_0x5cc4e7(0x1a9)]);}}[_0x3ccc64(0x18e)](_0x14648e,_0x3cd406){const _0x3e2459=_0x3ccc64,_0xabf0cd=_0x3cd406[_0x3e2459(0x1ca)][_0x3e2459(0x1a7)](),_0x58e439=_0x3cd406[_0x3e2459(0x1b2)][_0x3e2459(0x1a7)](),_0x2e07f5=_0x3cd406[_0x3e2459(0x199)][_0x3e2459(0x1a7)]();let _0x2906e8=null;const _0x94ed15=_0x3cd406[_0x3e2459(0x1ad)];_0x3cd406[_0x3e2459(0x1ad)]=[];if(_0x3cd406[_0x3e2459(0x19d)]==='Group'||_0x3cd406[_0x3e2459(0x19d)]==='Object3D')_0x2906e8=new SceneComponent(this[_0x3e2459(0x1cd)],_0x3cd406[_0x3e2459(0x191)]);else {if(_0x3cd406[_0x3e2459(0x1c9)]){const _0x4c4f43=_0x3cd406;_0x2906e8=new MeshComponent(this['app'],_0x4c4f43[_0x3e2459(0x1b6)],_0x4c4f43[_0x3e2459(0x19a)]),_0x3cd406[_0x3e2459(0x1af)]['set'](0x0);}else _0x2906e8=new SceneComponent(this[_0x3e2459(0x1cd)],_0x3cd406[_0x3e2459(0x191)]);}if(_0x2906e8===null)return _0x3cd406[_0x3e2459(0x1ad)]=_0x94ed15,null;_0x14648e['addChildComponent'](_0x2906e8),_0x2906e8[_0x3e2459(0x1b1)](_0xabf0cd),_0x2906e8[_0x3e2459(0x1d4)](_0x58e439),_0x2906e8[_0x3e2459(0x1cc)](_0x2e07f5);for(const _0x317968 of _0x94ed15){this[_0x3e2459(0x18e)](_0x2906e8,_0x317968);}return _0x2906e8;}['collectResourcesAndReferences'](_0x52fa92){const _0x1fca3e=_0x3ccc64,_0x1c6e0a=(_0x1d390d,_0x2faeab)=>{const _0x34b9ef=_0x3b7d;var _0x1d52a3;const _0xdd6039=(_0x1d52a3=_0x1d390d[_0x34b9ef(0x19f)](_0x2faeab))!==null&&_0x1d52a3!==void 0?_0x1d52a3:0x0;_0x1d390d[_0x34b9ef(0x19c)](_0x2faeab,_0xdd6039+0x1);},_0x45089d={'geometries':new Map(),'materials':new Map(),'textures':new Map()};_0x52fa92[_0x1fca3e(0x1ce)](_0x4576fb=>{const _0x3eb727=_0x1fca3e,_0x9e75a4=_0x4576fb;_0x9e75a4[_0x3eb727(0x1b6)]instanceof webgpu.BufferGeometry&&_0x1c6e0a(_0x45089d[_0x3eb727(0x1d5)],_0x9e75a4[_0x3eb727(0x1b6)]);if(_0x9e75a4[_0x3eb727(0x19a)]){const _0x39171b=Array['isArray'](_0x9e75a4[_0x3eb727(0x19a)])?_0x9e75a4['material']:[_0x9e75a4[_0x3eb727(0x19a)]];_0x39171b[_0x3eb727(0x1bf)](_0x5f3c7a=>{const _0x3f85ae=_0x3eb727;_0x5f3c7a&&(_0x1c6e0a(_0x45089d[_0x3f85ae(0x18c)],_0x5f3c7a),Object['values'](_0x5f3c7a)['forEach'](_0x1f6061=>{_0x1f6061 instanceof webgpu.Texture&&_0x1c6e0a(_0x45089d['textures'],_0x1f6061);}));});}}),_0x45089d['geometries'][_0x1fca3e(0x1bf)]((_0x37a783,_0x380c7c)=>this[_0x1fca3e(0x1c4)](_0x380c7c,_0x37a783)),_0x45089d[_0x1fca3e(0x18c)][_0x1fca3e(0x1bf)]((_0x37ec3f,_0x4ef4bc)=>this[_0x1fca3e(0x1c4)](_0x4ef4bc,_0x37ec3f)),_0x45089d[_0x1fca3e(0x1a1)][_0x1fca3e(0x1bf)]((_0x2bc4fa,_0x4d4c24)=>this[_0x1fca3e(0x1c4)](_0x4d4c24,_0x2bc4fa));}[_0x3ccc64(0x1a3)](_0x3d30a0){const _0x2446e0=_0x3ccc64;_0x3d30a0['geometry']&&!_0x3d30a0[_0x2446e0(0x1b6)][_0x2446e0(0x195)][_0x2446e0(0x1b9)]&&this[_0x2446e0(0x1c4)](_0x3d30a0[_0x2446e0(0x1b6)]);if(_0x3d30a0['material']){const _0x543564=Array[_0x2446e0(0x1a0)](_0x3d30a0['material'])?_0x3d30a0[_0x2446e0(0x19a)]:[_0x3d30a0['material']];_0x543564[_0x2446e0(0x1bf)](_0x37b7ae=>{const _0x4388ce=_0x2446e0;if(!_0x37b7ae)return;!_0x37b7ae[_0x4388ce(0x195)][_0x4388ce(0x1b9)]&&this[_0x4388ce(0x1c4)](_0x37b7ae),Object[_0x4388ce(0x1cb)](_0x37b7ae)[_0x4388ce(0x1bf)](_0x21de0b=>{const _0x3d21ef=_0x4388ce;_0x21de0b instanceof webgpu.Texture&&!_0x21de0b[_0x3d21ef(0x195)][_0x3d21ef(0x1b9)]&&this[_0x3d21ef(0x1c4)](_0x21de0b);});});}}async[_0x3ccc64(0x192)](_0x260f9a){const _0x46d66d=_0x3ccc64;return this[_0x46d66d(0x1bc)](_0x46d66d(0x1b3)),await this[_0x46d66d(0x1c5)][_0x46d66d(0x1ae)](_0x260f9a);}[_0x3ccc64(0x1b7)](_0x2068de,_0x2c0a5b){const _0x197f7a=_0x3ccc64;this[_0x197f7a(0x1bc)]('/SceneResource/draco/'),this[_0x197f7a(0x1c5)][_0x197f7a(0x1c8)](_0x2068de,_0x2c0a5b);}[_0x3ccc64(0x1ab)](_0x3f12ce,_0x17cbda,_0x26a7b5){const _0x2f1320=_0x3ccc64;this[_0x2f1320(0x1bc)]('/SceneResource/draco/'),this['gltfLoader'][_0x2f1320(0x1c1)](_0x3f12ce,_0x17cbda,_0x26a7b5);}[_0x3ccc64(0x1bb)](_0x54e47a='',_0x5072db){const _0x49a7bc=new webgpu.FileLoader();_0x49a7bc['load'](_0x54e47a,_0x5072db);}[_0x3ccc64(0x1c4)](_0x2cd105,_0x47a888=0x0){const _0x19d65e=_0x3ccc64;if(_0x2cd105 instanceof webgpu.BufferGeometry)return this[_0x19d65e(0x1c3)](_0x2cd105,_0x47a888);if(_0x2cd105 instanceof webgpu.Material)return this['addMaterialAsset'](_0x2cd105,_0x47a888);if(_0x2cd105 instanceof webgpu.Texture)return this[_0x19d65e(0x1c7)](_0x2cd105,_0x47a888);return undefined;}[_0x3ccc64(0x193)](_0x5b919b,_0x3fc263=0x0){const _0x2dce51=_0x3ccc64;let _0x222ead=_0x5b919b['userData']['assetPointer'];if(!_0x222ead){const _0x550104=new Map();Object[_0x2dce51(0x1a4)](_0x5b919b)[_0x2dce51(0x1bf)](([_0x5ce477,_0x64f4f7])=>{const _0xbafda0=_0x2dce51;if(_0x64f4f7 instanceof webgpu.Texture){const _0x26e838=this[_0xbafda0(0x1c7)](_0x64f4f7,0x1);_0x550104['set'](_0x5ce477,_0x26e838);}}),_0x222ead=new MaterialAssetPointer(_0x5b919b,_0x550104,_0x3fc263),this[_0x2dce51(0x1ac)]['set'](_0x5b919b[_0x2dce51(0x191)],_0x222ead);}else _0x222ead['addRef'](_0x3fc263);return _0x222ead;}[_0x3ccc64(0x1c7)](_0x59d31b,_0x6b8f3e=0x0){const _0x24fac8=_0x3ccc64;let _0x15e0cc=_0x59d31b[_0x24fac8(0x195)][_0x24fac8(0x1b9)];return !_0x15e0cc?(_0x15e0cc=new TextureAssetPointer(_0x59d31b,_0x6b8f3e),this[_0x24fac8(0x19b)]['set'](_0x59d31b[_0x24fac8(0x191)],_0x15e0cc)):_0x15e0cc[_0x24fac8(0x190)](_0x6b8f3e),_0x15e0cc;}[_0x3ccc64(0x1c3)](_0x22a4e3,_0x3cfabe=0x0){const _0x5d6cf4=_0x3ccc64;let _0x3e5292=_0x22a4e3['userData'][_0x5d6cf4(0x1b9)];return !_0x3e5292?(_0x3e5292=new GeometryAssetPointer(_0x22a4e3,_0x3cfabe),this['geometryAssets']['set'](_0x22a4e3[_0x5d6cf4(0x191)],_0x3e5292)):_0x3e5292[_0x5d6cf4(0x190)](_0x3cfabe),_0x3e5292;}['releaseAsset'](_0xabfe8b){const _0x4d5092=_0x3ccc64,_0x2a1a1e=_0xabfe8b['userData']['assetPointer'];_0x2a1a1e?_0x2a1a1e['release']():_0xabfe8b[_0x4d5092(0x1b4)]();}[_0x3ccc64(0x1d2)](){const _0x31c024=_0x3ccc64;this[_0x31c024(0x1b8)][_0x31c024(0x1bf)](_0x322b6c=>_0x322b6c[_0x31c024(0x1b5)]()),this['geometryAssets'][_0x31c024(0x1bd)](),this[_0x31c024(0x1ac)]['forEach'](_0x3268fc=>_0x3268fc[_0x31c024(0x1b5)]()),this[_0x31c024(0x1ac)][_0x31c024(0x1bd)](),this[_0x31c024(0x19b)][_0x31c024(0x1bf)](_0x27fc6d=>_0x27fc6d[_0x31c024(0x1b5)]()),this[_0x31c024(0x19b)][_0x31c024(0x1bd)]();}}
44
+ function _0x2ec8(){const _0x2f2607=['get','setRotation','geometries','decoderConfig','name','Worker','object','_dracoPatched','addAsset','assetPointer','children','544907TridfI','setScale','forceRelease','320148wbUWFu','isArray','onProgress','addGeometryAsset','forEach','addRef','addTextureAsset','uuid','assign','dracoLoader','199184ZsWefN','textureAssets','onLoad','set','geometryAssets','values','type','dispose','load','manager','materialAssets','bind','parse','LoadingManager','gltfLoader','onStart','app','2578bpRKRV','onError','/SceneResource/draco/','hasOwnProperty','rotation','textures','setDecoderPath','9070857FLoSmi','setPosition','convertThreeObjectToLYObject','clear','loadGltfFromPath','call','clearAssets','collectResourcesAndReferences','userData','prototype','layers','2736cRgIlq','loadingManager','Object3D','geometry','loadFile','4562660DYshBy','clone','10dQaMZK','materials','7rlwqvW','material','postMessage','loadGltfFromBuffer','5114056eXqEVh','addChildComponent','setupDracoLoader','10lBazdC'];_0x2ec8=function(){return _0x2f2607;};return _0x2ec8();}const _0x4781c7=_0x52ae;(function(_0x36bb77,_0x26f4d5){const _0x2e01fd=_0x52ae,_0x23c974=_0x36bb77();while(!![]){try{const _0x1af05d=parseInt(_0x2e01fd(0xa3))/0x1+-parseInt(_0x2e01fd(0xb4))/0x2*(-parseInt(_0x2e01fd(0x7a))/0x3)+parseInt(_0x2e01fd(0x7f))/0x4+parseInt(_0x2e01fd(0x8a))/0x5*(-parseInt(_0x2e01fd(0x99))/0x6)+-parseInt(_0x2e01fd(0x83))/0x7*(parseInt(_0x2e01fd(0x87))/0x8)+-parseInt(_0x2e01fd(0xbb))/0x9+-parseInt(_0x2e01fd(0x81))/0xa*(parseInt(_0x2e01fd(0x96))/0xb);if(_0x1af05d===_0x26f4d5)break;else _0x23c974['push'](_0x23c974['shift']());}catch(_0x1b9ece){_0x23c974['push'](_0x23c974['shift']());}}}(_0x2ec8,0xadd62));function _0x52ae(_0x1fb3dd,_0xe36cd9){_0x1fb3dd=_0x1fb3dd-0x76;const _0x2ec82e=_0x2ec8();let _0x52ae9f=_0x2ec82e[_0x1fb3dd];return _0x52ae9f;}class AssetManager{constructor(_0x48fd01){const _0x4a2e11=_0x52ae;this[_0x4a2e11(0xa7)]=new Map(),this[_0x4a2e11(0xa4)]=new Map(),this[_0x4a2e11(0xad)]=new Map(),this[_0x4a2e11(0xa2)]=null,this[_0x4a2e11(0x7b)]=new webgpu.LoadingManager(),this[_0x4a2e11(0xb1)]=new Addons_js.GLTFLoader(this[_0x4a2e11(0x7b)]),this[_0x4a2e11(0xb3)]=_0x48fd01;}get[_0x4781c7(0xb0)](){const _0x32da1a=_0x4781c7;return this[_0x32da1a(0x7b)];}async['init'](){return;}[_0x4781c7(0x89)](_0x29a453){const _0x3b735c=_0x4781c7;if(!this['dracoLoader']){this[_0x3b735c(0xa2)]=new Addons_js.DRACOLoader();if(this[_0x3b735c(0xa2)]['manager']){const _0x40825a=this[_0x3b735c(0xa2)][_0x3b735c(0xac)];_0x40825a[_0x3b735c(0xb2)]=undefined,_0x40825a[_0x3b735c(0xa5)]=undefined,_0x40825a[_0x3b735c(0x9b)]=undefined,_0x40825a[_0x3b735c(0xb5)]=undefined;}this['dracoLoader'][_0x3b735c(0xba)](_0x29a453);const _0x53c7f4=window[_0x3b735c(0x90)];if(_0x53c7f4&&!_0x53c7f4['_dracoPatched']){_0x53c7f4[_0x3b735c(0x92)]=!![],window[_0x3b735c(0x90)]=function(_0x8eba4a,_0x56c494){const _0x25bce1=_0x3b735c,_0x17a60a=new _0x53c7f4(_0x8eba4a,_0x56c494),_0x463418=_0x17a60a[_0x25bce1(0x85)][_0x25bce1(0xae)](_0x17a60a);return _0x17a60a['postMessage']=function(_0x2cf74b,_0xc8c8ab){const _0x24fffb=_0x25bce1;if(_0x2cf74b&&_0x2cf74b['decoderConfig']&&typeof _0x2cf74b[_0x24fffb(0x8e)]===_0x24fffb(0x91)){const _0x22813d=_0x2cf74b['decoderConfig'],_0x12adeb={};for(const _0x5c31c4 in _0x22813d){Object[_0x24fffb(0x78)]['hasOwnProperty'][_0x24fffb(0xc0)](_0x22813d,_0x5c31c4)&&(_0x12adeb[_0x5c31c4]=_0x22813d[_0x5c31c4]);}_0x2cf74b=Object[_0x24fffb(0xa1)](Object[_0x24fffb(0xa1)]({},_0x2cf74b),{'decoderConfig':_0x12adeb});}return _0x463418(_0x2cf74b,_0xc8c8ab);},_0x17a60a;};for(const _0x5ab4de in _0x53c7f4){Object[_0x3b735c(0x78)][_0x3b735c(0xb7)][_0x3b735c(0xc0)](_0x53c7f4,_0x5ab4de)&&(window['Worker'][_0x5ab4de]=_0x53c7f4[_0x5ab4de]);}}this[_0x3b735c(0xa2)]['preload'](),this[_0x3b735c(0xb1)]['setDRACOLoader'](this['dracoLoader']);}}[_0x4781c7(0xbd)](_0x4e2b08,_0x157aac){const _0x294341=_0x4781c7,_0x4e0f7c=_0x157aac['position'][_0x294341(0x80)](),_0x407a5f=_0x157aac[_0x294341(0xb8)]['clone'](),_0x3bbb03=_0x157aac['scale'][_0x294341(0x80)]();let _0x60a314=null;const _0x3753ec=_0x157aac[_0x294341(0x95)];_0x157aac[_0x294341(0x95)]=[];if(_0x157aac[_0x294341(0xa9)]==='Group'||_0x157aac[_0x294341(0xa9)]===_0x294341(0x7c))_0x60a314=new SceneComponent(this[_0x294341(0xb3)],_0x157aac[_0x294341(0xa0)]);else {if(_0x157aac['isMesh']){const _0xcd2f05=_0x157aac;_0x60a314=new MeshComponent(this[_0x294341(0xb3)],_0xcd2f05[_0x294341(0x7d)],_0xcd2f05[_0x294341(0x84)],_0xcd2f05[_0x294341(0xa0)]),_0x60a314[_0x294341(0x8f)]=_0xcd2f05['name'],_0x157aac[_0x294341(0x79)]['set'](0x0);}else _0x60a314=new SceneComponent(this[_0x294341(0xb3)],_0x157aac[_0x294341(0xa0)]);}if(_0x60a314===null)return _0x157aac[_0x294341(0x95)]=_0x3753ec,null;_0x4e2b08[_0x294341(0x88)](_0x60a314),_0x60a314[_0x294341(0xbc)](_0x4e0f7c),_0x60a314[_0x294341(0x8c)](_0x407a5f),_0x60a314[_0x294341(0x97)](_0x3bbb03);for(const _0x4cb2e4 of _0x3753ec){this['convertThreeObjectToLYObject'](_0x60a314,_0x4cb2e4);}return _0x60a314;}[_0x4781c7(0x76)](_0x403719){const _0x28dda9=_0x4781c7,_0x4d5470=(_0x1e4dae,_0x2921f0)=>{const _0x23102f=_0x52ae;var _0x156336;const _0x20852e=(_0x156336=_0x1e4dae[_0x23102f(0x8b)](_0x2921f0))!==null&&_0x156336!==void 0?_0x156336:0x0;_0x1e4dae['set'](_0x2921f0,_0x20852e+0x1);},_0x5aba38={'geometries':new Map(),'materials':new Map(),'textures':new Map()};_0x403719['traverse'](_0x783403=>{const _0x1b0d09=_0x52ae,_0x55de13=_0x783403;_0x55de13[_0x1b0d09(0x7d)]instanceof webgpu.BufferGeometry&&_0x4d5470(_0x5aba38[_0x1b0d09(0x8d)],_0x55de13[_0x1b0d09(0x7d)]);if(_0x55de13[_0x1b0d09(0x84)]){const _0x3c1cc9=Array[_0x1b0d09(0x9a)](_0x55de13['material'])?_0x55de13['material']:[_0x55de13['material']];_0x3c1cc9[_0x1b0d09(0x9d)](_0x51f9fd=>{const _0x463864=_0x1b0d09;_0x51f9fd&&(_0x4d5470(_0x5aba38[_0x463864(0x82)],_0x51f9fd),Object[_0x463864(0xa8)](_0x51f9fd)[_0x463864(0x9d)](_0x47797a=>{const _0x194ed5=_0x463864;_0x47797a instanceof webgpu.Texture&&_0x4d5470(_0x5aba38[_0x194ed5(0xb9)],_0x47797a);}));});}}),_0x5aba38['geometries'][_0x28dda9(0x9d)]((_0x3617fc,_0x47000f)=>this[_0x28dda9(0x93)](_0x47000f,_0x3617fc)),_0x5aba38['materials']['forEach']((_0x402828,_0x4533f5)=>this[_0x28dda9(0x93)](_0x4533f5,_0x402828)),_0x5aba38['textures']['forEach']((_0x50bd4e,_0x182598)=>this[_0x28dda9(0x93)](_0x182598,_0x50bd4e));}['checkMeshResource'](_0x2dbce3){const _0xb818cc=_0x4781c7;_0x2dbce3[_0xb818cc(0x7d)]&&!_0x2dbce3[_0xb818cc(0x7d)]['userData'][_0xb818cc(0x94)]&&this['addAsset'](_0x2dbce3[_0xb818cc(0x7d)]);if(_0x2dbce3[_0xb818cc(0x84)]){const _0x684334=Array[_0xb818cc(0x9a)](_0x2dbce3[_0xb818cc(0x84)])?_0x2dbce3['material']:[_0x2dbce3[_0xb818cc(0x84)]];_0x684334[_0xb818cc(0x9d)](_0x161d1=>{const _0x4b5698=_0xb818cc;if(!_0x161d1)return;!_0x161d1[_0x4b5698(0x77)]['assetPointer']&&this['addAsset'](_0x161d1),Object[_0x4b5698(0xa8)](_0x161d1)[_0x4b5698(0x9d)](_0x9e31ab=>{const _0x461163=_0x4b5698;_0x9e31ab instanceof webgpu.Texture&&!_0x9e31ab['userData'][_0x461163(0x94)]&&this[_0x461163(0x93)](_0x9e31ab);});});}}async['loadGltfFromPathAsync'](_0x3d862f){const _0x16b1cf=_0x4781c7;return this[_0x16b1cf(0x89)](_0x16b1cf(0xb6)),await this['gltfLoader']['loadAsync'](_0x3d862f);}[_0x4781c7(0xbf)](_0x492988,_0x2b1af5){const _0x5f1cd7=_0x4781c7;this[_0x5f1cd7(0x89)](_0x5f1cd7(0xb6)),this['gltfLoader'][_0x5f1cd7(0xab)](_0x492988,_0x2b1af5);}[_0x4781c7(0x86)](_0x465efc,_0x1e3e63,_0x3f2a6d){const _0xaffd38=_0x4781c7;this[_0xaffd38(0x89)](_0xaffd38(0xb6)),this[_0xaffd38(0xb1)][_0xaffd38(0xaf)](_0x465efc,_0x1e3e63,_0x3f2a6d);}[_0x4781c7(0x7e)](_0xe85d8c='',_0x44ba6e){const _0x5e5f7d=_0x4781c7,_0x5e3a5a=new webgpu.FileLoader();_0x5e3a5a[_0x5e5f7d(0xab)](_0xe85d8c,_0x44ba6e);}[_0x4781c7(0x93)](_0x4a2582,_0x49a4d9=0x0){const _0x55c3db=_0x4781c7;if(_0x4a2582 instanceof webgpu.BufferGeometry)return this[_0x55c3db(0x9c)](_0x4a2582,_0x49a4d9);if(_0x4a2582 instanceof webgpu.Material)return this['addMaterialAsset'](_0x4a2582,_0x49a4d9);if(_0x4a2582 instanceof webgpu.Texture)return this[_0x55c3db(0x9f)](_0x4a2582,_0x49a4d9);return undefined;}['addMaterialAsset'](_0x1df321,_0x437808=0x0){const _0xda1de5=_0x4781c7;let _0x3b7876=_0x1df321[_0xda1de5(0x77)][_0xda1de5(0x94)];if(!_0x3b7876){const _0x3b2828=new Map();Object['entries'](_0x1df321)[_0xda1de5(0x9d)](([_0x118c59,_0x1b0bb0])=>{const _0x25330c=_0xda1de5;if(_0x1b0bb0 instanceof webgpu.Texture){const _0x1b9999=this[_0x25330c(0x9f)](_0x1b0bb0,0x1);_0x3b2828[_0x25330c(0xa6)](_0x118c59,_0x1b9999);}}),_0x3b7876=new MaterialAssetPointer(_0x1df321,_0x3b2828,_0x437808),this[_0xda1de5(0xad)][_0xda1de5(0xa6)](_0x1df321['uuid'],_0x3b7876);}else _0x3b7876['addRef'](_0x437808);return _0x3b7876;}[_0x4781c7(0x9f)](_0x3bc90f,_0x5dacf5=0x0){const _0x24ab6b=_0x4781c7;let _0x171eeb=_0x3bc90f[_0x24ab6b(0x77)][_0x24ab6b(0x94)];return !_0x171eeb?(_0x171eeb=new TextureAssetPointer(_0x3bc90f,_0x5dacf5),this[_0x24ab6b(0xa4)]['set'](_0x3bc90f[_0x24ab6b(0xa0)],_0x171eeb)):_0x171eeb[_0x24ab6b(0x9e)](_0x5dacf5),_0x171eeb;}[_0x4781c7(0x9c)](_0x40465c,_0x4b87c0=0x0){const _0x1143a5=_0x4781c7;let _0x504e9d=_0x40465c[_0x1143a5(0x77)][_0x1143a5(0x94)];return !_0x504e9d?(_0x504e9d=new GeometryAssetPointer(_0x40465c,_0x4b87c0),this[_0x1143a5(0xa7)][_0x1143a5(0xa6)](_0x40465c[_0x1143a5(0xa0)],_0x504e9d)):_0x504e9d[_0x1143a5(0x9e)](_0x4b87c0),_0x504e9d;}['releaseAsset'](_0xa2eaa8){const _0x1729fe=_0x4781c7,_0x46608b=_0xa2eaa8['userData'][_0x1729fe(0x94)];_0x46608b?_0x46608b['release']():_0xa2eaa8[_0x1729fe(0xaa)]();}[_0x4781c7(0xc1)](){const _0x4292ce=_0x4781c7;this[_0x4292ce(0xa7)]['forEach'](_0x48ef5a=>_0x48ef5a[_0x4292ce(0x98)]()),this['geometryAssets'][_0x4292ce(0xbe)](),this['materialAssets'][_0x4292ce(0x9d)](_0x288403=>_0x288403[_0x4292ce(0x98)]()),this[_0x4292ce(0xad)][_0x4292ce(0xbe)](),this[_0x4292ce(0xa4)]['forEach'](_0x45a168=>_0x45a168[_0x4292ce(0x98)]()),this['textureAssets'][_0x4292ce(0xbe)]();}}
44
45
 
45
- (function(_0x15ef5e,_0x35b74a){var _0x4f5d55=_0x4207,_0x1f47ec=_0x15ef5e();while(!![]){try{var _0x541aad=-parseInt(_0x4f5d55(0x153))/0x1+-parseInt(_0x4f5d55(0x160))/0x2*(parseInt(_0x4f5d55(0x16a))/0x3)+parseInt(_0x4f5d55(0x154))/0x4*(-parseInt(_0x4f5d55(0x151))/0x5)+-parseInt(_0x4f5d55(0x161))/0x6*(parseInt(_0x4f5d55(0x176))/0x7)+-parseInt(_0x4f5d55(0x150))/0x8*(-parseInt(_0x4f5d55(0x158))/0x9)+-parseInt(_0x4f5d55(0x173))/0xa*(-parseInt(_0x4f5d55(0x16d))/0xb)+parseInt(_0x4f5d55(0x167))/0xc*(parseInt(_0x4f5d55(0x155))/0xd);if(_0x541aad===_0x35b74a)break;else _0x1f47ec['push'](_0x1f47ec['shift']());}catch(_0x479a7a){_0x1f47ec['push'](_0x1f47ec['shift']());}}}(_0x36ce,0x90215));exports.AssetCategory = void 0;(function(_0x1930b4){var _0x36162e=_0x4207;_0x1930b4[_0x36162e(0x14f)]=_0x36162e(0x15f),_0x1930b4[_0x36162e(0x170)]=_0x36162e(0x15c),_0x1930b4[_0x36162e(0x162)]='texture',_0x1930b4[_0x36162e(0x168)]=_0x36162e(0x172),_0x1930b4[_0x36162e(0x175)]=_0x36162e(0x15a),_0x1930b4[_0x36162e(0x157)]=_0x36162e(0x16c),_0x1930b4[_0x36162e(0x174)]=_0x36162e(0x159),_0x1930b4[_0x36162e(0x15e)]=_0x36162e(0x163),_0x1930b4['Undefined']='undefined';}(exports.AssetCategory||(exports.AssetCategory={})));exports.AssetLoadState = void 0;function _0x4207(_0x5b47bb,_0x41bdc9){_0x5b47bb=_0x5b47bb-0x14f;var _0x36ce20=_0x36ce();var _0x420726=_0x36ce20[_0x5b47bb];return _0x420726;}function _0x36ce(){var _0x2a375e=['220KIhYgJ','HTML','ActorManager','345793NRQvcl','assetPointer','Geometry','8yvWpcO','14570hXFADJ','External','179019vsPdih','1108QiTKqP','130xMbuYQ','Loading','Level','426339oWAQHT','html','actorManager','undefined','material','Unloaded','Code','geometry','2lucjEv','108PwGAOy','Texture','code','Component','unloaded','error','3088872NDsnbh','Actor','AssetPointer','2487279ZOdLdK','texture','level','336699AMQwss','Error','loaded','Material','external','actor'];_0x36ce=function(){return _0x2a375e;};return _0x36ce();}(function(_0x4f2bb0){var _0xc80061=_0x4207;_0x4f2bb0[_0xc80061(0x15d)]=_0xc80061(0x165),_0x4f2bb0[_0xc80061(0x156)]='loading',_0x4f2bb0['Loaded']=_0xc80061(0x16f),_0x4f2bb0[_0xc80061(0x16e)]=_0xc80061(0x166);}(exports.AssetLoadState||(exports.AssetLoadState={})));exports.ReferenceType = void 0;(function(_0x2c710e){var _0x370e8d=_0x4207;_0x2c710e[_0x370e8d(0x168)]=_0x370e8d(0x172),_0x2c710e[_0x370e8d(0x164)]='component',_0x2c710e['Material']=_0x370e8d(0x15c),_0x2c710e[_0x370e8d(0x157)]=_0x370e8d(0x16c),_0x2c710e[_0x370e8d(0x169)]=_0x370e8d(0x177),_0x2c710e[_0x370e8d(0x152)]=_0x370e8d(0x171);}(exports.ReferenceType||(exports.ReferenceType={})));exports.AssetType = void 0;(function(_0x3264e4){var _0x29d39e=_0x4207;_0x3264e4[_0x3264e4[_0x29d39e(0x15f)]=0x1]='geometry',_0x3264e4[_0x3264e4[_0x29d39e(0x15c)]=0x2]=_0x29d39e(0x15c),_0x3264e4[_0x3264e4[_0x29d39e(0x16b)]=0x3]=_0x29d39e(0x16b),_0x3264e4[_0x3264e4[_0x29d39e(0x15b)]=-1]='undefined';}(exports.AssetType||(exports.AssetType={})));
46
+ (function(_0x357f3b,_0x8cc849){var _0x44122e=_0x5a11,_0x189e3d=_0x357f3b();while(!![]){try{var _0x492ad4=parseInt(_0x44122e(0x1ba))/0x1+-parseInt(_0x44122e(0x1aa))/0x2*(-parseInt(_0x44122e(0x1c1))/0x3)+-parseInt(_0x44122e(0x1c9))/0x4+parseInt(_0x44122e(0x1a5))/0x5*(parseInt(_0x44122e(0x1c4))/0x6)+-parseInt(_0x44122e(0x1b3))/0x7*(parseInt(_0x44122e(0x1ae))/0x8)+parseInt(_0x44122e(0x1a4))/0x9*(parseInt(_0x44122e(0x1a6))/0xa)+-parseInt(_0x44122e(0x1b8))/0xb*(parseInt(_0x44122e(0x1c7))/0xc);if(_0x492ad4===_0x8cc849)break;else _0x189e3d['push'](_0x189e3d['shift']());}catch(_0x5538e5){_0x189e3d['push'](_0x189e3d['shift']());}}}(_0x96a5,0xf409d));exports.AssetCategory = void 0;(function(_0x3a3f60){var _0x120e1f=_0x5a11;_0x3a3f60[_0x120e1f(0x1a2)]=_0x120e1f(0x1a7),_0x3a3f60[_0x120e1f(0x1b7)]=_0x120e1f(0x1ca),_0x3a3f60[_0x120e1f(0x1b4)]=_0x120e1f(0x1bb),_0x3a3f60[_0x120e1f(0x1c0)]=_0x120e1f(0x1a3),_0x3a3f60[_0x120e1f(0x1b2)]='actorManager',_0x3a3f60[_0x120e1f(0x1c3)]=_0x120e1f(0x1ac),_0x3a3f60[_0x120e1f(0x1b6)]=_0x120e1f(0x1ad),_0x3a3f60[_0x120e1f(0x1bd)]=_0x120e1f(0x1c6),_0x3a3f60[_0x120e1f(0x1a9)]=_0x120e1f(0x1c5);}(exports.AssetCategory||(exports.AssetCategory={})));function _0x5a11(_0x31e481,_0x4e6903){_0x31e481=_0x31e481-0x1a2;var _0x96a593=_0x96a5();var _0x5a1192=_0x96a593[_0x31e481];return _0x5a1192;}exports.AssetLoadState = void 0;function _0x96a5(){var _0x2d2b57=['undefined','code','1464552DiOekC','loading','1823300XCFJsL','material','Geometry','actor','54DuGSWb','6055ZkksOI','3094090oxJyOj','geometry','external','Undefined','132HtGwwO','unloaded','level','html','360HuypFi','component','error','Loading','ActorManager','29519hDNTPy','Texture','Unloaded','HTML','Material','352jluaUL','Component','1842224GeTSab','texture','assetPointer','Code','External','Error','Actor','1557bFROwR','loaded','Level','9006hfCNSc'];_0x96a5=function(){return _0x2d2b57;};return _0x96a5();}(function(_0x36b7a8){var _0x286c75=_0x5a11;_0x36b7a8[_0x286c75(0x1b5)]=_0x286c75(0x1ab),_0x36b7a8[_0x286c75(0x1b1)]=_0x286c75(0x1c8),_0x36b7a8['Loaded']=_0x286c75(0x1c2),_0x36b7a8[_0x286c75(0x1bf)]=_0x286c75(0x1b0);}(exports.AssetLoadState||(exports.AssetLoadState={})));exports.ReferenceType = void 0;(function(_0x396fa7){var _0x53ce2a=_0x5a11;_0x396fa7['Actor']='actor',_0x396fa7[_0x53ce2a(0x1b9)]=_0x53ce2a(0x1af),_0x396fa7['Material']=_0x53ce2a(0x1ca),_0x396fa7[_0x53ce2a(0x1c3)]=_0x53ce2a(0x1ac),_0x396fa7['AssetPointer']=_0x53ce2a(0x1bc),_0x396fa7[_0x53ce2a(0x1be)]=_0x53ce2a(0x1a8);}(exports.ReferenceType||(exports.ReferenceType={})));exports.AssetType = void 0;(function(_0x68cc02){var _0x19b489=_0x5a11;_0x68cc02[_0x68cc02[_0x19b489(0x1a7)]=0x1]=_0x19b489(0x1a7),_0x68cc02[_0x68cc02['material']=0x2]='material',_0x68cc02[_0x68cc02[_0x19b489(0x1bb)]=0x3]='texture',_0x68cc02[_0x68cc02['undefined']=-1]=_0x19b489(0x1c5);}(exports.AssetType||(exports.AssetType={})));
46
47
 
47
- function _0x329f(){const _0x1ab80d=['329198INZtgo','Antialiasing','ScreenSpaceReflection','Bloom','Outline','2838bQpzwm','10740OSyezZ','LensFlare','1106470blIFGK','8hQKUeb','2617290BkRcIR','DepthOfField','4cnsRLH','GroundTruthAmbientOcclusion','498411RscDhw','527724fiuDXt','12Dspidj','601748oCeMVf','1FEPAxf'];_0x329f=function(){return _0x1ab80d;};return _0x329f();}function _0x1804(_0xcac385,_0x38853a){_0xcac385=_0xcac385-0x1c9;const _0x329fd6=_0x329f();let _0x1804f4=_0x329fd6[_0xcac385];return _0x1804f4;}(function(_0x5a6464,_0x3196a9){const _0x57c125=_0x1804,_0x420453=_0x5a6464();while(!![]){try{const _0x162322=-parseInt(_0x57c125(0x1cc))/0x1*(parseInt(_0x57c125(0x1cd))/0x2)+parseInt(_0x57c125(0x1c9))/0x3+parseInt(_0x57c125(0x1d9))/0x4*(parseInt(_0x57c125(0x1d5))/0x5)+-parseInt(_0x57c125(0x1ca))/0x6*(parseInt(_0x57c125(0x1cb))/0x7)+parseInt(_0x57c125(0x1d6))/0x8*(parseInt(_0x57c125(0x1db))/0x9)+parseInt(_0x57c125(0x1d7))/0xa+parseInt(_0x57c125(0x1d2))/0xb*(-parseInt(_0x57c125(0x1d3))/0xc);if(_0x162322===_0x3196a9)break;else _0x420453['push'](_0x420453['shift']());}catch(_0x2b6678){_0x420453['push'](_0x420453['shift']());}}}(_0x329f,0x23db9));const DefaultPostProcessParam={'steps':[]};exports.PostProcessStepType = void 0;(function(_0xdb412a){const _0x4e2293=_0x1804;_0xdb412a[_0xdb412a[_0x4e2293(0x1d0)]=0x0]=_0x4e2293(0x1d0),_0xdb412a[_0xdb412a[_0x4e2293(0x1d8)]=0x1]=_0x4e2293(0x1d8),_0xdb412a[_0xdb412a[_0x4e2293(0x1cf)]=0x2]=_0x4e2293(0x1cf),_0xdb412a[_0xdb412a[_0x4e2293(0x1da)]=0x3]=_0x4e2293(0x1da),_0xdb412a[_0xdb412a[_0x4e2293(0x1d1)]=0x4]=_0x4e2293(0x1d1),_0xdb412a[_0xdb412a[_0x4e2293(0x1ce)]=0x5]=_0x4e2293(0x1ce),_0xdb412a[_0xdb412a['LensFlare']=0x6]=_0x4e2293(0x1d4);}(exports.PostProcessStepType||(exports.PostProcessStepType={})));
48
+ (function(_0x4cd5f1,_0x264c27){const _0x40eadd=_0x301a,_0x37653d=_0x4cd5f1();while(!![]){try{const _0x446d8e=-parseInt(_0x40eadd(0x194))/0x1*(-parseInt(_0x40eadd(0x197))/0x2)+parseInt(_0x40eadd(0x19a))/0x3+parseInt(_0x40eadd(0x19e))/0x4+-parseInt(_0x40eadd(0x1a2))/0x5*(parseInt(_0x40eadd(0x1a3))/0x6)+-parseInt(_0x40eadd(0x19b))/0x7+parseInt(_0x40eadd(0x19c))/0x8+-parseInt(_0x40eadd(0x195))/0x9;if(_0x446d8e===_0x264c27)break;else _0x37653d['push'](_0x37653d['shift']());}catch(_0x706325){_0x37653d['push'](_0x37653d['shift']());}}}(_0x1dd4,0xbeabe));const DefaultPostProcessParam={'steps':[]};function _0x1dd4(){const _0x292c20=['2510qScUHG','6490062zMTeCv','Outline','1240nKubRF','LensFlare','Antialiasing','2938896eazEPi','3389519nUHYUe','3233208YZmbvF','DepthOfField','27308TMmFWN','Bloom','GroundTruthAmbientOcclusion','ScreenSpaceReflection','25nJOarT','1152582boMtOy'];_0x1dd4=function(){return _0x292c20;};return _0x1dd4();}function _0x301a(_0x29867e,_0xea6b36){_0x29867e=_0x29867e-0x194;const _0x1dd4de=_0x1dd4();let _0x301a6f=_0x1dd4de[_0x29867e];return _0x301a6f;}exports.PostProcessStepType = void 0;(function(_0x545fcf){const _0xe248c5=_0x301a;_0x545fcf[_0x545fcf[_0xe248c5(0x19f)]=0x0]='Bloom',_0x545fcf[_0x545fcf[_0xe248c5(0x19d)]=0x1]=_0xe248c5(0x19d),_0x545fcf[_0x545fcf['ScreenSpaceReflection']=0x2]=_0xe248c5(0x1a1),_0x545fcf[_0x545fcf[_0xe248c5(0x1a0)]=0x3]='GroundTruthAmbientOcclusion',_0x545fcf[_0x545fcf[_0xe248c5(0x196)]=0x4]=_0xe248c5(0x196),_0x545fcf[_0x545fcf[_0xe248c5(0x199)]=0x5]=_0xe248c5(0x199),_0x545fcf[_0x545fcf[_0xe248c5(0x198)]=0x6]='LensFlare';}(exports.PostProcessStepType||(exports.PostProcessStepType={})));
48
49
 
49
- function _0x404f(_0x23f0eb,_0x4aa5a2){_0x23f0eb=_0x23f0eb-0x110;var _0x21ac4d=_0x21ac();var _0x404fed=_0x21ac4d[_0x23f0eb];return _0x404fed;}var _0x2755bc=_0x404f;(function(_0x4d8142,_0x8cb09a){var _0xf3970d=_0x404f,_0x38955e=_0x4d8142();while(!![]){try{var _0x3d8f12=-parseInt(_0xf3970d(0x11b))/0x1*(-parseInt(_0xf3970d(0x117))/0x2)+parseInt(_0xf3970d(0x115))/0x3*(parseInt(_0xf3970d(0x11f))/0x4)+parseInt(_0xf3970d(0x12e))/0x5+parseInt(_0xf3970d(0x131))/0x6*(parseInt(_0xf3970d(0x111))/0x7)+-parseInt(_0xf3970d(0x11e))/0x8+parseInt(_0xf3970d(0x134))/0x9*(parseInt(_0xf3970d(0x123))/0xa)+-parseInt(_0xf3970d(0x12b))/0xb;if(_0x3d8f12===_0x8cb09a)break;else _0x38955e['push'](_0x38955e['shift']());}catch(_0x13c7c4){_0x38955e['push'](_0x38955e['shift']());}}}(_0x21ac,0xabfff));function _0x21ac(){var _0x1b7cf1=['removeTickableActor','removeActor','clear','forEach','rootActor\x20is\x20null','_rootActor','11429220iIYLtz','scene','KeepRelative','5380035VOWcEC','markRenderStateDirty','onAddedToWorld','54vgRiUE','worldParam','add','18243tJbIFc','controller','rootActor','viewport','470267EPZeLv','actors','app','removeFromParent','12JBLLXh','getChildActorById','44buyDtJ','delete','destroy','init','31851qWLeIf','addChildActor','tickableActors','9705424XWXINQ','492244gWXPgJ','getChildActorsByIds','levelActorClass','scene\x20is\x20null','410cxTkIi','removeActors'];_0x21ac=function(){return _0x1b7cf1;};return _0x21ac();}class World{get[_0x2755bc(0x12c)](){var _0x5bcb19=_0x2755bc,_0x14e128;let _0x19a783=(_0x14e128=this[_0x5bcb19(0x12a)])===null||_0x14e128===void 0?void 0:_0x14e128[_0x5bcb19(0x12c)];if(!_0x19a783)throw new Error(_0x5bcb19(0x122));return _0x19a783;}get[_0x2755bc(0x110)](){var _0x2cde2b=_0x2755bc;return this[_0x2cde2b(0x113)][_0x2cde2b(0x110)];}get[_0x2755bc(0x135)](){var _0x2047e1=_0x2755bc;return this['app'][_0x2047e1(0x135)];}get[_0x2755bc(0x136)](){var _0xaed849=_0x2755bc;if(!this[_0xaed849(0x12a)])throw new Error(_0xaed849(0x129));return this[_0xaed849(0x12a)];}constructor(_0x22905b,_0x312290){var _0x82f28e=_0x2755bc;this[_0x82f28e(0x12a)]=null,this['actors']=new Set(),this[_0x82f28e(0x11d)]=new Set(),this[_0x82f28e(0x113)]=_0x22905b,this['worldParam']=_0x312290;}[_0x2755bc(0x11a)](){var _0x27d5ca=_0x2755bc;this[_0x27d5ca(0x12a)]=new this[(_0x27d5ca(0x132))][(_0x27d5ca(0x121))](this[_0x27d5ca(0x113)]);}['addTickableActor'](_0x29e65e){var _0x2ff3b6=_0x2755bc;this[_0x2ff3b6(0x11d)][_0x2ff3b6(0x133)](_0x29e65e);}[_0x2755bc(0x125)](_0x2e2d69){var _0x293cd1=_0x2755bc;this[_0x293cd1(0x11d)]['delete'](_0x2e2d69);}['tick'](_0x1deee5){var _0x1c10ca=_0x2755bc;this[_0x1c10ca(0x11d)][_0x1c10ca(0x128)](_0x3ef77e=>{_0x3ef77e['tick'](_0x1deee5);});}[_0x2755bc(0x119)](){var _0x18c2d2=_0x2755bc,_0x6ee097;this[_0x18c2d2(0x11d)]['clear'](),this['actors'][_0x18c2d2(0x128)](_0x1cf02b=>{var _0x3dc46d=_0x18c2d2;_0x1cf02b[_0x3dc46d(0x119)]();}),this['actors'][_0x18c2d2(0x127)](),(_0x6ee097=this[_0x18c2d2(0x12a)])===null||_0x6ee097===void 0?void 0:_0x6ee097[_0x18c2d2(0x119)](),this[_0x18c2d2(0x12a)]=null;}['addActor'](_0x460a1e){var _0xbb813=_0x2755bc,_0xb92e98;if(!_0x460a1e['rootComponent']['threeObject'])throw new Error('actor.threeObject\x20is\x20null');_0x460a1e[_0xbb813(0x114)](),(_0xb92e98=this[_0xbb813(0x12a)])===null||_0xb92e98===void 0?void 0:_0xb92e98[_0xbb813(0x11c)](_0x460a1e,exports.AttachmentRules[_0xbb813(0x12d)]),this[_0xbb813(0x112)][_0xbb813(0x133)](_0x460a1e),_0x460a1e[_0xbb813(0x130)](this),this[_0xbb813(0x110)][_0xbb813(0x12f)]();}[_0x2755bc(0x126)](_0x5e8b42){var _0x39ddcf=_0x2755bc;_0x5e8b42['destroy'](),this[_0x39ddcf(0x112)][_0x39ddcf(0x118)](_0x5e8b42),this[_0x39ddcf(0x110)][_0x39ddcf(0x12f)]();}[_0x2755bc(0x124)](_0x560624){var _0x2d0be6=_0x2755bc;for(const _0x360ec1 of _0x560624){_0x360ec1['destroy'](),this[_0x2d0be6(0x112)][_0x2d0be6(0x118)](_0x360ec1);}this['viewport'][_0x2d0be6(0x12f)]();}['getActorById'](_0x440826){var _0x48dbf2=_0x2755bc;return this[_0x48dbf2(0x136)][_0x48dbf2(0x116)](_0x440826,!![]);}['getActorsByIds'](_0x4a8658){var _0x5821ef=_0x2755bc;return this[_0x5821ef(0x136)][_0x5821ef(0x120)](_0x4a8658,!![]);}}
50
+ function _0x1dc2(){var _0x1b8017=['levelActorClass','clear','getChildActorsByIds','rootActor\x20is\x20null','viewport','addActor','171846LldDRA','1932470oMehnS','KeepRelative','getChildActorById','14EazmGC','24CGiMQu','13pktDUn','init','rootActor','app','markRenderStateDirty','scene\x20is\x20null','22UVvJAJ','tick','controller','tickableActors','threeObject','1604430GLEaMp','105414HYsdqR','removeFromParent','forEach','actor.threeObject\x20is\x20null','scene','1485432nMHmnI','_rootActor','worldParam','5709508bmVUQd','addTickableActor','5EmWJPb','delete','rootComponent','33957276AzOxUZ','actors','destroy','66ezvHvz'];_0x1dc2=function(){return _0x1b8017;};return _0x1dc2();}var _0x5772cc=_0x2044;(function(_0x551b10,_0x55d6be){var _0x560b8e=_0x2044,_0x5b7fcd=_0x551b10();while(!![]){try{var _0x5da140=parseInt(_0x560b8e(0x19f))/0x1+-parseInt(_0x560b8e(0x194))/0x2*(parseInt(_0x560b8e(0x19a))/0x3)+parseInt(_0x560b8e(0x1a2))/0x4*(-parseInt(_0x560b8e(0x1a4))/0x5)+-parseInt(_0x560b8e(0x199))/0x6*(parseInt(_0x560b8e(0x18c))/0x7)+parseInt(_0x560b8e(0x18d))/0x8*(-parseInt(_0x560b8e(0x1b1))/0x9)+-parseInt(_0x560b8e(0x1b2))/0xa*(parseInt(_0x560b8e(0x1aa))/0xb)+-parseInt(_0x560b8e(0x1a7))/0xc*(-parseInt(_0x560b8e(0x18e))/0xd);if(_0x5da140===_0x55d6be)break;else _0x5b7fcd['push'](_0x5b7fcd['shift']());}catch(_0x298570){_0x5b7fcd['push'](_0x5b7fcd['shift']());}}}(_0x1dc2,0xb70a8));function _0x2044(_0x5856d8,_0x1d4e6c){_0x5856d8=_0x5856d8-0x18b;var _0x1dc205=_0x1dc2();var _0x20447f=_0x1dc205[_0x5856d8];return _0x20447f;}class World{get[_0x5772cc(0x19e)](){var _0x880b0a=_0x5772cc,_0x22f259;let _0x8ab06e=(_0x22f259=this[_0x880b0a(0x1a0)])===null||_0x22f259===void 0?void 0:_0x22f259['scene'];if(!_0x8ab06e)throw new Error(_0x880b0a(0x193));return _0x8ab06e;}get[_0x5772cc(0x1af)](){var _0x1ea01d=_0x5772cc;return this[_0x1ea01d(0x191)][_0x1ea01d(0x1af)];}get[_0x5772cc(0x196)](){var _0x45f7b2=_0x5772cc;return this[_0x45f7b2(0x191)]['controller'];}get['rootActor'](){var _0x4db257=_0x5772cc;if(!this[_0x4db257(0x1a0)])throw new Error(_0x4db257(0x1ae));return this['_rootActor'];}constructor(_0x3499ab,_0x33291e){var _0x1bddba=_0x5772cc;this[_0x1bddba(0x1a0)]=null,this['actors']=new Set(),this['tickableActors']=new Set(),this['app']=_0x3499ab,this[_0x1bddba(0x1a1)]=_0x33291e;}[_0x5772cc(0x18f)](){var _0x5e0484=_0x5772cc;this['_rootActor']=new this[(_0x5e0484(0x1a1))][(_0x5e0484(0x1ab))](this['app']);}[_0x5772cc(0x1a3)](_0x4ef041){this['tickableActors']['add'](_0x4ef041);}['removeTickableActor'](_0x5d368e){var _0x319d95=_0x5772cc;this[_0x319d95(0x197)][_0x319d95(0x1a5)](_0x5d368e);}[_0x5772cc(0x195)](_0x3807f8){var _0x1d9316=_0x5772cc;this['tickableActors'][_0x1d9316(0x19c)](_0x5434fe=>{var _0x76195a=_0x1d9316;_0x5434fe[_0x76195a(0x195)](_0x3807f8);});}[_0x5772cc(0x1a9)](){var _0xc64b62=_0x5772cc,_0x7337f9;this[_0xc64b62(0x197)]['clear'](),this[_0xc64b62(0x1a8)][_0xc64b62(0x19c)](_0x24a64=>{var _0xd0730e=_0xc64b62;_0x24a64[_0xd0730e(0x1a9)]();}),this[_0xc64b62(0x1a8)][_0xc64b62(0x1ac)](),(_0x7337f9=this[_0xc64b62(0x1a0)])===null||_0x7337f9===void 0?void 0:_0x7337f9[_0xc64b62(0x1a9)](),this['_rootActor']=null;}[_0x5772cc(0x1b0)](_0x2df954){var _0xf6efad=_0x5772cc,_0x2032dc;if(!_0x2df954[_0xf6efad(0x1a6)][_0xf6efad(0x198)])throw new Error(_0xf6efad(0x19d));_0x2df954[_0xf6efad(0x19b)](),(_0x2032dc=this['_rootActor'])===null||_0x2032dc===void 0?void 0:_0x2032dc['addChildActor'](_0x2df954,exports.AttachmentRules[_0xf6efad(0x1b3)]),this['actors']['add'](_0x2df954),_0x2df954['onAddedToWorld'](this),this[_0xf6efad(0x1af)][_0xf6efad(0x192)]();}['removeActor'](_0x5777e7){var _0x2d9aca=_0x5772cc;_0x5777e7[_0x2d9aca(0x1a9)](),this[_0x2d9aca(0x1a8)][_0x2d9aca(0x1a5)](_0x5777e7),this[_0x2d9aca(0x1af)][_0x2d9aca(0x192)]();}['removeActors'](_0x4b6427){var _0x232b6c=_0x5772cc;for(const _0x5ec9cc of _0x4b6427){_0x5ec9cc[_0x232b6c(0x1a9)](),this[_0x232b6c(0x1a8)]['delete'](_0x5ec9cc);}this[_0x232b6c(0x1af)][_0x232b6c(0x192)]();}['getActorById'](_0x2b021f){var _0x242d2d=_0x5772cc;return this[_0x242d2d(0x190)][_0x242d2d(0x18b)](_0x2b021f,!![]);}['getActorsByIds'](_0x542b5c){var _0x7a8243=_0x5772cc;return this[_0x7a8243(0x190)][_0x7a8243(0x1ad)](_0x542b5c,!![]);}}
50
51
 
51
- (function(_0x275fc0,_0x11fe87){const _0x108c25=_0x5bea,_0x3ed9af=_0x275fc0();while(!![]){try{const _0x45ea80=parseInt(_0x108c25(0x12a))/0x1*(-parseInt(_0x108c25(0x130))/0x2)+-parseInt(_0x108c25(0x134))/0x3+-parseInt(_0x108c25(0x12f))/0x4*(-parseInt(_0x108c25(0x133))/0x5)+parseInt(_0x108c25(0x132))/0x6*(-parseInt(_0x108c25(0x12c))/0x7)+-parseInt(_0x108c25(0x12b))/0x8*(parseInt(_0x108c25(0x12e))/0x9)+-parseInt(_0x108c25(0x12d))/0xa+parseInt(_0x108c25(0x131))/0xb;if(_0x45ea80===_0x11fe87)break;else _0x3ed9af['push'](_0x3ed9af['shift']());}catch(_0x51985b){_0x3ed9af['push'](_0x3ed9af['shift']());}}}(_0x276f,0x90df8));function _0x5bea(_0x39af96,_0x363ac5){_0x39af96=_0x39af96-0x12a;const _0x276f0f=_0x276f();let _0x5beaa2=_0x276f0f[_0x39af96];return _0x5beaa2;}const DefaultBloomParam={'type':exports.PostProcessStepType['Bloom'],'threshold':0x0,'strength':0x1,'radius':0x0};function _0x276f(){const _0x364df2=['2036334tsXYZj','13690wXEaip','124488vyYQdm','359867LcolfE','219448kNnLhf','7oFeOAn','11210020ppIwbd','9ENmtot','1136MojqyF','2BDAMSE','18754923XTYkaK'];_0x276f=function(){return _0x364df2;};return _0x276f();}
52
+ const _0x1defa0=_0xcdab;(function(_0x150b2c,_0x5d94c0){const _0x49a864=_0xcdab,_0x1b2567=_0x150b2c();while(!![]){try{const _0x357f1d=parseInt(_0x49a864(0x89))/0x1*(parseInt(_0x49a864(0x8d))/0x2)+-parseInt(_0x49a864(0x92))/0x3+parseInt(_0x49a864(0x8f))/0x4+parseInt(_0x49a864(0x8c))/0x5*(-parseInt(_0x49a864(0x90))/0x6)+-parseInt(_0x49a864(0x93))/0x7+parseInt(_0x49a864(0x8a))/0x8+-parseInt(_0x49a864(0x8e))/0x9*(-parseInt(_0x49a864(0x91))/0xa);if(_0x357f1d===_0x5d94c0)break;else _0x1b2567['push'](_0x1b2567['shift']());}catch(_0x1a57cd){_0x1b2567['push'](_0x1b2567['shift']());}}}(_0x5718,0x84b1a));function _0xcdab(_0x4b0a11,_0x603d40){_0x4b0a11=_0x4b0a11-0x89;const _0x5718af=_0x5718();let _0xcdab70=_0x5718af[_0x4b0a11];return _0xcdab70;}const DefaultBloomParam={'type':exports.PostProcessStepType[_0x1defa0(0x8b)],'threshold':0x0,'strength':0x1,'radius':0x0};function _0x5718(){const _0x55618c=['104uaCnIc','83043lqHDNT','2695816nlajUT','1026omTXxR','510waPnlt','25671xsujRi','7442092UsMwgI','15769jdeJqM','4911608bNSszZ','Bloom','28165BigKqI'];_0x5718=function(){return _0x55618c;};return _0x5718();}
52
53
 
53
- function _0x5543(_0x135daa,_0x2cf46b){_0x135daa=_0x135daa-0xb5;const _0x1f972c=_0x1f97();let _0x5543cf=_0x1f972c[_0x135daa];return _0x5543cf;}const _0x237157=_0x5543;(function(_0x1c0654,_0x118982){const _0x1b4370=_0x5543,_0x19eaea=_0x1c0654();while(!![]){try{const _0x21e606=parseInt(_0x1b4370(0xb9))/0x1+parseInt(_0x1b4370(0xbe))/0x2*(parseInt(_0x1b4370(0xba))/0x3)+-parseInt(_0x1b4370(0xbb))/0x4+parseInt(_0x1b4370(0xb5))/0x5+-parseInt(_0x1b4370(0xb7))/0x6+-parseInt(_0x1b4370(0xbc))/0x7+parseInt(_0x1b4370(0xb8))/0x8*(parseInt(_0x1b4370(0xb6))/0x9);if(_0x21e606===_0x118982)break;else _0x19eaea['push'](_0x19eaea['shift']());}catch(_0x1086cc){_0x19eaea['push'](_0x19eaea['shift']());}}}(_0x1f97,0xde169));const DefaultDOFParam={'type':exports.PostProcessStepType[_0x237157(0xbd)],'focus':0x1f4,'aperture':0x5,'maxblur':0.01};function _0x1f97(){const _0x4e89e1=['137151eFmoDY','10723686RcTMLM','1256xSpxMb','402493DSMpgm','228xcmdPO','6661800aOjwHN','3558170rqECuS','DepthOfField','44216DEEAnU','1977450wVBqOk'];_0x1f97=function(){return _0x4e89e1;};return _0x1f97();}
54
+ const _0x21604f=_0x393d;function _0x393d(_0x15d4ff,_0x16f7b8){_0x15d4ff=_0x15d4ff-0x108;const _0x5ea9a4=_0x5ea9();let _0x393d4b=_0x5ea9a4[_0x15d4ff];return _0x393d4b;}(function(_0x5f3721,_0x2f8835){const _0x27796c=_0x393d,_0x4bc23b=_0x5f3721();while(!![]){try{const _0x516250=parseInt(_0x27796c(0x10a))/0x1+-parseInt(_0x27796c(0x111))/0x2*(parseInt(_0x27796c(0x113))/0x3)+-parseInt(_0x27796c(0x10e))/0x4*(-parseInt(_0x27796c(0x109))/0x5)+parseInt(_0x27796c(0x10d))/0x6*(parseInt(_0x27796c(0x10c))/0x7)+parseInt(_0x27796c(0x108))/0x8*(-parseInt(_0x27796c(0x10f))/0x9)+parseInt(_0x27796c(0x112))/0xa+-parseInt(_0x27796c(0x10b))/0xb;if(_0x516250===_0x2f8835)break;else _0x4bc23b['push'](_0x4bc23b['shift']());}catch(_0x29e7be){_0x4bc23b['push'](_0x4bc23b['shift']());}}}(_0x5ea9,0xd4da6));function _0x5ea9(){const _0x4af7c5=['DepthOfField','3820bUCEmV','9612720baQNFP','984SptjqA','32456ZHmYBQ','5lLsmbS','6329PIIkNb','4470972mkmVbw','7889NIOiXe','7278JjwDdz','990580oXCSaW','1503OyGYwA'];_0x5ea9=function(){return _0x4af7c5;};return _0x5ea9();}const DefaultDOFParam={'type':exports.PostProcessStepType[_0x21604f(0x110)],'focus':0x1f4,'aperture':0x5,'maxblur':0.01};
54
55
 
55
- function _0x502d(){const _0x27fda5=['4123182hldUDr','2202272ZXWnVX','711245XJapVJ','140GUIuXJ','82840GrECnA','6QPzgPV','111788xUbbdi','38372976NyUrXh','4299715HHcXJD'];_0x502d=function(){return _0x27fda5;};return _0x502d();}(function(_0x54e3a5,_0x5a7f20){const _0x22e68a=_0x47a5,_0x598dc8=_0x54e3a5();while(!![]){try{const _0x193b92=-parseInt(_0x22e68a(0x10a))/0x1+-parseInt(_0x22e68a(0x112))/0x2+-parseInt(_0x22e68a(0x111))/0x3+-parseInt(_0x22e68a(0x10e))/0x4*(parseInt(_0x22e68a(0x10b))/0x5)+-parseInt(_0x22e68a(0x10d))/0x6*(-parseInt(_0x22e68a(0x110))/0x7)+parseInt(_0x22e68a(0x10c))/0x8+parseInt(_0x22e68a(0x10f))/0x9;if(_0x193b92===_0x5a7f20)break;else _0x598dc8['push'](_0x598dc8['shift']());}catch(_0x361f9d){_0x598dc8['push'](_0x598dc8['shift']());}}}(_0x502d,0xe05bd));function _0x47a5(_0x35503e,_0x1ac6ea){_0x35503e=_0x35503e-0x10a;const _0x502dca=_0x502d();let _0x47a5bd=_0x502dca[_0x35503e];return _0x47a5bd;}const DefaultGTAOParam={'type':exports.PostProcessStepType['GroundTruthAmbientOcclusion'],'distanceExponent':0x1,'distanceFallOff':0x1,'radius':0.25,'scale':0x1,'thickness':0x1,'samples':0x10,'useTemporalFiltering':![]};
56
+ function _0x3d98(_0x547674,_0x41eba7){_0x547674=_0x547674-0x113;const _0x1726c7=_0x1726();let _0x3d98da=_0x1726c7[_0x547674];return _0x3d98da;}const _0x59aab2=_0x3d98;(function(_0x49e42e,_0x11b16a){const _0x5d36b3=_0x3d98,_0x498147=_0x49e42e();while(!![]){try{const _0x4a5ed0=-parseInt(_0x5d36b3(0x117))/0x1+parseInt(_0x5d36b3(0x113))/0x2+-parseInt(_0x5d36b3(0x114))/0x3*(parseInt(_0x5d36b3(0x11c))/0x4)+-parseInt(_0x5d36b3(0x116))/0x5*(-parseInt(_0x5d36b3(0x11b))/0x6)+-parseInt(_0x5d36b3(0x115))/0x7+parseInt(_0x5d36b3(0x119))/0x8*(-parseInt(_0x5d36b3(0x11a))/0x9)+parseInt(_0x5d36b3(0x11d))/0xa;if(_0x4a5ed0===_0x11b16a)break;else _0x498147['push'](_0x498147['shift']());}catch(_0x4560a8){_0x498147['push'](_0x498147['shift']());}}}(_0x1726,0x9a5df));function _0x1726(){const _0x1760c8=['4088070tSJOhL','5SGdNXC','1095732YQJMYd','GroundTruthAmbientOcclusion','8OxIboz','3794130kiJbWV','6418122PbQblY','80vUdXTQ','10809130KJBiMB','2240318NUhtDH','80574kRiIPw'];_0x1726=function(){return _0x1760c8;};return _0x1726();}const DefaultGTAOParam={'type':exports.PostProcessStepType[_0x59aab2(0x118)],'distanceExponent':0x1,'distanceFallOff':0x1,'radius':0.25,'scale':0x1,'thickness':0x1,'samples':0x10,'useTemporalFiltering':![]};
56
57
 
57
- const _0x3a51e4=_0x1a59;function _0x1a0c(){const _0x10bc27=['3146975qefMwY','4589796EiFWEn','5576418AdsbHN','204312LvneAt','19vYxcfM','1639872AqEljl','Outline','21TkKgDJ','16602gScJKQ','40swNnbF','959690HKMdOI'];_0x1a0c=function(){return _0x10bc27;};return _0x1a0c();}function _0x1a59(_0x4c375d,_0x1a5037){_0x4c375d=_0x4c375d-0x114;const _0x1a0cf1=_0x1a0c();let _0x1a591a=_0x1a0cf1[_0x4c375d];return _0x1a591a;}(function(_0x236770,_0x2f16aa){const _0x215359=_0x1a59,_0x5af1c3=_0x236770();while(!![]){try{const _0x536ab6=-parseInt(_0x215359(0x115))/0x1*(-parseInt(_0x215359(0x119))/0x2)+-parseInt(_0x215359(0x114))/0x3*(-parseInt(_0x215359(0x11a))/0x4)+-parseInt(_0x215359(0x11c))/0x5+-parseInt(_0x215359(0x11d))/0x6+-parseInt(_0x215359(0x118))/0x7*(-parseInt(_0x215359(0x116))/0x8)+parseInt(_0x215359(0x11e))/0x9+-parseInt(_0x215359(0x11b))/0xa;if(_0x536ab6===_0x2f16aa)break;else _0x5af1c3['push'](_0x5af1c3['shift']());}catch(_0xeb9a57){_0x5af1c3['push'](_0x5af1c3['shift']());}}}(_0x1a0c,0x8e547));const DefaultOutlineParams={'type':exports.PostProcessStepType[_0x3a51e4(0x117)],'edgeStrength':0x3,'edgeGlow':0x1,'edgeThickness':0x1,'pulsePeriod':0x0,'visibleEdgeColor':0xffffff,'hiddenEdgeColor':0xffffff};
58
+ const _0x3c1218=_0x1d64;function _0x10aa(){const _0x5843f5=['1099028BVOJLi','133168LpUfNv','1478200Tzqxzn','153AYOGeP','4254VEHtYW','14357egsraG','3tVmaPM','906680IESClr','2280432bfaLSW','2355qJGiLr','Outline'];_0x10aa=function(){return _0x5843f5;};return _0x10aa();}function _0x1d64(_0x43cfab,_0x4105b2){_0x43cfab=_0x43cfab-0x191;const _0x10aa6c=_0x10aa();let _0x1d6451=_0x10aa6c[_0x43cfab];return _0x1d6451;}(function(_0x2d49c5,_0x37348b){const _0x488dd4=_0x1d64,_0x161130=_0x2d49c5();while(!![]){try{const _0x9fbb23=-parseInt(_0x488dd4(0x191))/0x1+-parseInt(_0x488dd4(0x193))/0x2+parseInt(_0x488dd4(0x192))/0x3*(parseInt(_0x488dd4(0x197))/0x4)+parseInt(_0x488dd4(0x195))/0x5*(parseInt(_0x488dd4(0x19b))/0x6)+-parseInt(_0x488dd4(0x194))/0x7+parseInt(_0x488dd4(0x198))/0x8*(parseInt(_0x488dd4(0x19a))/0x9)+parseInt(_0x488dd4(0x199))/0xa;if(_0x9fbb23===_0x37348b)break;else _0x161130['push'](_0x161130['shift']());}catch(_0x58cb55){_0x161130['push'](_0x161130['shift']());}}}(_0x10aa,0x3c109));const DefaultOutlineParams={'type':exports.PostProcessStepType[_0x3c1218(0x196)],'edgeStrength':0x3,'edgeGlow':0x1,'edgeThickness':0x1,'pulsePeriod':0x0,'visibleEdgeColor':0xffffff,'hiddenEdgeColor':0xffffff};
58
59
 
59
- function _0x546c(_0x389a69,_0x52ae72){_0x389a69=_0x389a69-0x192;const _0x3feda1=_0x3fed();let _0x546c3a=_0x3feda1[_0x389a69];return _0x546c3a;}(function(_0x1b6721,_0x124183){const _0x47f985=_0x546c,_0x1a2547=_0x1b6721();while(!![]){try{const _0x335eb5=-parseInt(_0x47f985(0x197))/0x1*(parseInt(_0x47f985(0x19c))/0x2)+parseInt(_0x47f985(0x19b))/0x3*(parseInt(_0x47f985(0x196))/0x4)+-parseInt(_0x47f985(0x198))/0x5+parseInt(_0x47f985(0x199))/0x6+-parseInt(_0x47f985(0x194))/0x7+-parseInt(_0x47f985(0x192))/0x8*(parseInt(_0x47f985(0x195))/0x9)+parseInt(_0x47f985(0x19a))/0xa*(parseInt(_0x47f985(0x193))/0xb);if(_0x335eb5===_0x124183)break;else _0x1a2547['push'](_0x1a2547['shift']());}catch(_0x49d080){_0x1a2547['push'](_0x1a2547['shift']());}}}(_0x3fed,0x83c39));function _0x3fed(){const _0x58c6cc=['215623WoMOEi','4479640cqVIQE','5931162jflhHf','754130VTigDf','300dCuhii','2IteOrd','776eJDwAY','275QykPrL','5900881lNSjBn','58761yDLNUk','10148mrEwWF'];_0x3fed=function(){return _0x58c6cc;};return _0x3fed();}const DefaultLensFlareParam={'type':exports.PostProcessStepType['LensFlare'],'threshold':0.5,'ghostSamples':0x4,'ghostSpacing':0.25,'ghostAttenuationFactor':0x19,'ghostTint':[0x1,0x1,0x1],'downSampleRatio':0x4};
60
+ const _0xe81f4b=_0x3aaa;function _0x3aaa(_0x2631bf,_0x3e41bf){_0x2631bf=_0x2631bf-0xae;const _0x4cb685=_0x4cb6();let _0x3aaabc=_0x4cb685[_0x2631bf];return _0x3aaabc;}(function(_0x383204,_0x4b9cb2){const _0xe60cc3=_0x3aaa,_0x3be8b6=_0x383204();while(!![]){try{const _0x2f2f47=-parseInt(_0xe60cc3(0xb6))/0x1+-parseInt(_0xe60cc3(0xb0))/0x2+parseInt(_0xe60cc3(0xb8))/0x3*(-parseInt(_0xe60cc3(0xae))/0x4)+parseInt(_0xe60cc3(0xb7))/0x5+-parseInt(_0xe60cc3(0xaf))/0x6+-parseInt(_0xe60cc3(0xb2))/0x7*(parseInt(_0xe60cc3(0xb3))/0x8)+-parseInt(_0xe60cc3(0xb4))/0x9*(-parseInt(_0xe60cc3(0xb5))/0xa);if(_0x2f2f47===_0x4b9cb2)break;else _0x3be8b6['push'](_0x3be8b6['shift']());}catch(_0x19363a){_0x3be8b6['push'](_0x3be8b6['shift']());}}}(_0x4cb6,0x2092e));function _0x4cb6(){const _0x7e5f43=['9teXgKp','8267690CbmLfG','206889HslWll','743910IBiNxw','80439bdlVVA','20GWNxhn','489540oRSNfJ','446238uKzlEt','LensFlare','687631qgfUWa','16xpzbjN'];_0x4cb6=function(){return _0x7e5f43;};return _0x4cb6();}const DefaultLensFlareParam={'type':exports.PostProcessStepType[_0xe81f4b(0xb1)],'threshold':0.5,'ghostSamples':0x4,'ghostSpacing':0.25,'ghostAttenuationFactor':0x19,'ghostTint':[0x1,0x1,0x1],'downSampleRatio':0x4};
60
61
 
61
- const _0x14f0d4=_0x1564$1;(function(_0x4582fc,_0x1bd46f){const _0x59c77a=_0x1564$1,_0x50dd8c=_0x4582fc();while(!![]){try{const _0x573ad5=parseInt(_0x59c77a(0x167))/0x1+parseInt(_0x59c77a(0x165))/0x2+-parseInt(_0x59c77a(0xfd))/0x3+parseInt(_0x59c77a(0x130))/0x4*(-parseInt(_0x59c77a(0x155))/0x5)+parseInt(_0x59c77a(0x168))/0x6*(parseInt(_0x59c77a(0x12d))/0x7)+parseInt(_0x59c77a(0xfc))/0x8+-parseInt(_0x59c77a(0x13f))/0x9*(-parseInt(_0x59c77a(0x150))/0xa);if(_0x573ad5===_0x1bd46f)break;else _0x50dd8c['push'](_0x50dd8c['shift']());}catch(_0x4d53fb){_0x50dd8c['push'](_0x50dd8c['shift']());}}}(_0x3e48,0xdb04e));function _0x3e48(){const _0x42c5b3=['2088265YhczTi','updateCamera','output','fxaaEnabled','normal','smaaEnabled','has','setOutlineObjects','useTemporalFiltering','maxblur','bloomThreshold','getLUT3DTexture','outputNode','selectedObjects','method','Bloom','312246kZkVml','find','867423JFlJgI','6yqhugn','buildPipeline','resolutionScale','ghostTint','addOutlineObject','dofEnabled','destroy','markDirty','outlineEnabled','postProcessParam','gtaoThickness','8717192NIToqN','2823072WqxKhb','ghostSamples','edgeThickness','distanceFallOff','dispose','scene','dofMaxBlur','push','greaterThan','focus','updateSteps','outlinePulsePeriod','GroundTruthAmbientOcclusion','gtaoPass','scale','getViewZNode','mul','outlinePass','bloomPass','onDirtyCallback','setMRT','pulsePeriod','setup','needsUpdate','effectUniforms','edgeGlowNode','removeOutlineObject','velocity','lut3dTexture','steps','focusDistanceNode','traaPass','outlineVisibleEdgeColor','threshold','lensflarePass','bloomEnabled','outlineEdgeStrength','Outline','getStepParam','includes','assign','samples','outlineObjects','gtaoSamples','hiddenEdgeColor','outlineEdgeGlow','bloomStrength','distanceExponent','3944962YmLLwK','getTextureNode','createEffectUniforms','12eDaEtq','div','aperture','Antialiasing','ghostAttenuationFactor','onBuildFinalNode','bloomRadius','add','gtaoScale','camera','gtaoEnabled','edgeStrength','render','renderer','postProcessing','324XXgGho','value','select','visibleEdgeColor','strength','gtaoDistanceExponent','updateAllUniforms','ghostSpacing','dofPass','radius','DepthOfField','type','LensFlare','edgeGlow','indexOf','traa','outlineHiddenEdgeColor','115090xUTDOG','set','bokehScaleNode','thickness','lensflareEnabled'];_0x3e48=function(){return _0x42c5b3;};return _0x3e48();}function _0x1564$1(_0x351253,_0x4ca105){_0x351253=_0x351253-0xf4;const _0x3e4860=_0x3e48();let _0x15646d=_0x3e4860[_0x351253];return _0x15646d;}class PostProcessManager{constructor(_0x380fac,_0x314df6,_0x4d7b3f,_0x2fe4a9,_0x2b3164){const _0x296f4f=_0x1564$1;this['postProcessing']=null,this[_0x296f4f(0x127)]=[],this['effectUniforms']=null,this[_0x296f4f(0x10e)]=null,this[_0x296f4f(0x10f)]=null,this['dofPass']=null,this[_0x296f4f(0x10a)]=null,this[_0x296f4f(0x11c)]=null,this['lensflarePass']=null,this[_0x296f4f(0x119)]=null,this[_0x296f4f(0x110)]=null,this['renderer']=_0x380fac,this['scene']=_0x314df6,this[_0x296f4f(0x139)]=_0x4d7b3f,this[_0x296f4f(0xfa)]=Object[_0x296f4f(0x125)]({},_0x2fe4a9),this[_0x296f4f(0x110)]=_0x2b3164!==null&&_0x2b3164!==void 0?_0x2b3164:null;}get['processing'](){const _0x4cc8ac=_0x1564$1;return this[_0x4cc8ac(0x13e)];}[_0x14f0d4(0x156)](_0x396fa7){const _0x51b7aa=_0x14f0d4;this[_0x51b7aa(0x139)]=_0x396fa7,(!this[_0x51b7aa(0x13e)]||!this[_0x51b7aa(0x115)])&&(this[_0x51b7aa(0x169)](),this['updateAllUniforms'](),this[_0x51b7aa(0xf8)]());}[_0x14f0d4(0x113)](){const _0x5e5b27=_0x14f0d4;(!this[_0x5e5b27(0x13e)]||!this[_0x5e5b27(0x115)])&&this[_0x5e5b27(0x169)](),this['updateAllUniforms'](),this[_0x5e5b27(0xf8)]();}[_0x14f0d4(0x169)](){const _0x3a5c1c=_0x14f0d4;var _0x47459d,_0xc3ef2e,_0x533cee,_0x4709dd,_0x4c9a97;this['postProcessing']&&this[_0x3a5c1c(0x13e)][_0x3a5c1c(0x101)]();this[_0x3a5c1c(0x13e)]=new webgpu.PostProcessing(this[_0x3a5c1c(0x13d)]),this['effectUniforms']=this[_0x3a5c1c(0x12f)]();const _0x5ee135=tsl.pass(this[_0x3a5c1c(0x102)],this[_0x3a5c1c(0x139)]);_0x5ee135[_0x3a5c1c(0x111)](tsl.mrt({'output':tsl.output,'normal':tsl.normalView,'velocity':tsl.velocity}));const _0x46a0d1=_0x5ee135[_0x3a5c1c(0x12e)](_0x3a5c1c(0x157)),_0x152055=_0x5ee135[_0x3a5c1c(0x12e)](_0x3a5c1c(0x159)),_0x293683=_0x5ee135[_0x3a5c1c(0x12e)]('depth'),_0x27ea10=_0x5ee135[_0x3a5c1c(0x12e)](_0x3a5c1c(0x118)),_0x48c63b=_0x5ee135[_0x3a5c1c(0x10c)](),_0x4e157d=this[_0x3a5c1c(0x115)],_0x45c6f4=(_0x47459d=this[_0x3a5c1c(0x123)](exports.PostProcessStepType['Bloom']))!==null&&_0x47459d!==void 0?_0x47459d:DefaultBloomParam;this[_0x3a5c1c(0x10f)]=BloomNode_js.bloom(_0x46a0d1),this['bloomPass']['threshold'][_0x3a5c1c(0x140)]=_0x45c6f4[_0x3a5c1c(0x11e)],this[_0x3a5c1c(0x10f)]['strength'][_0x3a5c1c(0x140)]=_0x45c6f4['strength'],this[_0x3a5c1c(0x10f)][_0x3a5c1c(0x148)]['value']=_0x45c6f4[_0x3a5c1c(0x148)];const _0x506d50=_0x46a0d1['add'](this[_0x3a5c1c(0x10f)][_0x3a5c1c(0x10d)](_0x4e157d[_0x3a5c1c(0x12b)])),_0x306b79=_0x4e157d[_0x3a5c1c(0x120)][_0x3a5c1c(0x105)](0.5)[_0x3a5c1c(0x141)](_0x506d50,_0x46a0d1),_0x5cfa3d=(_0xc3ef2e=this['getStepParam'](exports.PostProcessStepType['LensFlare']))!==null&&_0xc3ef2e!==void 0?_0xc3ef2e:DefaultLensFlareParam;this[_0x3a5c1c(0x11f)]=LensflareNode_js.lensflare(this['bloomPass'][_0x3a5c1c(0x12e)](),{'ghostTint':tsl.vec3(_0x5cfa3d[_0x3a5c1c(0xf4)][0x0],_0x5cfa3d[_0x3a5c1c(0xf4)][0x1],_0x5cfa3d[_0x3a5c1c(0xf4)][0x2]),'threshold':tsl.float(_0x5cfa3d[_0x3a5c1c(0x11e)]),'ghostSamples':tsl.float(_0x5cfa3d[_0x3a5c1c(0xfe)]),'ghostSpacing':tsl.float(_0x5cfa3d[_0x3a5c1c(0x146)]),'ghostAttenuationFactor':tsl.float(_0x5cfa3d[_0x3a5c1c(0x134)]),'downSampleRatio':_0x5cfa3d['downSampleRatio']});const _0x5ba523=_0x306b79[_0x3a5c1c(0x137)](this[_0x3a5c1c(0x11f)][_0x3a5c1c(0x12e)]()),_0x5c4e3d=_0x4e157d[_0x3a5c1c(0x154)]['greaterThan'](0.5)['select'](_0x5ba523,_0x306b79),_0x10ac02=(_0x533cee=this[_0x3a5c1c(0x123)](exports.PostProcessStepType['DepthOfField']))!==null&&_0x533cee!==void 0?_0x533cee:DefaultDOFParam;this['dofPass']=DepthOfFieldNode_js.dof(_0x5c4e3d,_0x48c63b,tsl.uniform(_0x10ac02['focus']),tsl.uniform(_0x10ac02[_0x3a5c1c(0x132)]),tsl.uniform(_0x10ac02[_0x3a5c1c(0x15e)]));const _0x4e75ce=_0x4e157d[_0x3a5c1c(0xf6)][_0x3a5c1c(0x105)](0.5)[_0x3a5c1c(0x141)](this['dofPass'],_0x5c4e3d),_0x450f70=(_0x4709dd=this[_0x3a5c1c(0x123)](exports.PostProcessStepType[_0x3a5c1c(0x109)]))!==null&&_0x4709dd!==void 0?_0x4709dd:DefaultGTAOParam;this['gtaoPass']=GTAONode_js.ao(_0x293683,_0x152055,this[_0x3a5c1c(0x139)]),this[_0x3a5c1c(0x10a)][_0x3a5c1c(0x16a)]=0.5,this[_0x3a5c1c(0x10a)][_0x3a5c1c(0x12c)][_0x3a5c1c(0x140)]=_0x450f70[_0x3a5c1c(0x12c)],this[_0x3a5c1c(0x10a)][_0x3a5c1c(0x100)][_0x3a5c1c(0x140)]=_0x450f70[_0x3a5c1c(0x100)],this[_0x3a5c1c(0x10a)]['radius'][_0x3a5c1c(0x140)]=_0x450f70[_0x3a5c1c(0x148)],this[_0x3a5c1c(0x10a)][_0x3a5c1c(0x10b)][_0x3a5c1c(0x140)]=_0x450f70['scale'],this[_0x3a5c1c(0x10a)][_0x3a5c1c(0x153)][_0x3a5c1c(0x140)]=_0x450f70[_0x3a5c1c(0x153)],this[_0x3a5c1c(0x10a)][_0x3a5c1c(0x126)][_0x3a5c1c(0x140)]=_0x450f70[_0x3a5c1c(0x126)],this['gtaoPass']['useTemporalFiltering']=_0x450f70[_0x3a5c1c(0x15d)];const _0xe46d97=this[_0x3a5c1c(0x10a)]['getTextureNode'](),_0x21f1e3=_0xe46d97['r'],_0x2e540a=_0x4e75ce[_0x3a5c1c(0x10d)](_0x21f1e3),_0x2ad125=_0x4e157d['gtaoEnabled'][_0x3a5c1c(0x105)](0.5)[_0x3a5c1c(0x141)](_0x2e540a,_0x4e75ce),_0x46f0f1=(_0x4c9a97=this[_0x3a5c1c(0x123)](exports.PostProcessStepType['Outline']))!==null&&_0x4c9a97!==void 0?_0x4c9a97:DefaultOutlineParams;this['outlinePass']=OutlineNode_js.outline(this[_0x3a5c1c(0x102)],this[_0x3a5c1c(0x139)],{'selectedObjects':this[_0x3a5c1c(0x127)],'edgeGlow':tsl.uniform(_0x46f0f1[_0x3a5c1c(0x14c)]),'edgeThickness':tsl.uniform(_0x46f0f1['edgeThickness'])});const {visibleEdge:_0x3f86c1,hiddenEdge:_0x58d6ab}=this['outlinePass'],_0x344283=_0x4e157d[_0x3a5c1c(0x108)]['greaterThan'](0x0)[_0x3a5c1c(0x141)](_0x4e157d[_0x3a5c1c(0x108)],tsl.uniform(0x1)),_0x4f3bef=tsl.time[_0x3a5c1c(0x131)](_0x344283)[_0x3a5c1c(0x10d)](0x2),_0x4637db=tsl.oscSine(_0x4f3bef)[_0x3a5c1c(0x10d)](0.5)[_0x3a5c1c(0x137)](0.5),_0x301a08=_0x3f86c1['mul'](_0x4e157d['outlineVisibleEdgeColor'])[_0x3a5c1c(0x137)](_0x58d6ab[_0x3a5c1c(0x10d)](_0x4e157d[_0x3a5c1c(0x14f)]))[_0x3a5c1c(0x10d)](_0x4e157d['outlineEdgeStrength']),_0x3da29f=_0x4e157d[_0x3a5c1c(0x108)][_0x3a5c1c(0x105)](0x0)[_0x3a5c1c(0x141)](_0x301a08[_0x3a5c1c(0x10d)](_0x4637db),_0x301a08),_0x4245c5=_0x3da29f[_0x3a5c1c(0x137)](_0x2ad125),_0x36d8cc=_0x4e157d[_0x3a5c1c(0xf9)][_0x3a5c1c(0x105)](0.5)[_0x3a5c1c(0x141)](_0x4245c5,_0x2ad125),_0x17d9b6=FXAANode_js.fxaa(_0x36d8cc),_0x378225=_0x4e157d[_0x3a5c1c(0x158)][_0x3a5c1c(0x105)](0.5)[_0x3a5c1c(0x141)](_0x17d9b6,_0x36d8cc),_0x3ad589=SMAANode_js.smaa(_0x378225),_0x58face=_0x4e157d[_0x3a5c1c(0x15a)]['greaterThan'](0.5)[_0x3a5c1c(0x141)](_0x3ad589,_0x378225),_0x3fc9e2=this[_0x3a5c1c(0x123)](exports.PostProcessStepType['Antialiasing']);let _0xc5b979=_0x58face;_0x3fc9e2&&_0x3fc9e2[_0x3a5c1c(0x163)]===_0x3a5c1c(0x14e)&&(this[_0x3a5c1c(0x11c)]=TRAANode_js.traa(_0x58face,_0x293683,_0x27ea10,this[_0x3a5c1c(0x139)]),_0xc5b979=this[_0x3a5c1c(0x11c)][_0x3a5c1c(0x12e)]()),_0xc5b979=this[_0x3a5c1c(0x135)](_0xc5b979),this[_0x3a5c1c(0x13e)][_0x3a5c1c(0x161)]=_0xc5b979,this[_0x3a5c1c(0x13e)][_0x3a5c1c(0x114)]=!![];}[_0x14f0d4(0x135)](_0x28a26a){return _0x28a26a;}['createEffectUniforms'](){const _0x5f069f=_0x14f0d4;var _0x481773,_0x2a98e0,_0x2b6113,_0x4f9a42;const _0x5eaaef=(_0x481773=this[_0x5f069f(0x123)](exports.PostProcessStepType[_0x5f069f(0x164)]))!==null&&_0x481773!==void 0?_0x481773:DefaultBloomParam,_0xfaf8c1=(_0x2a98e0=this[_0x5f069f(0x123)](exports.PostProcessStepType[_0x5f069f(0x149)]))!==null&&_0x2a98e0!==void 0?_0x2a98e0:DefaultDOFParam,_0x304205=(_0x2b6113=this['getStepParam'](exports.PostProcessStepType['GroundTruthAmbientOcclusion']))!==null&&_0x2b6113!==void 0?_0x2b6113:DefaultGTAOParam,_0x531c16=(_0x4f9a42=this[_0x5f069f(0x123)](exports.PostProcessStepType['Outline']))!==null&&_0x4f9a42!==void 0?_0x4f9a42:DefaultOutlineParams;return {'bloomEnabled':tsl.uniform(0x0),'bloomStrength':tsl.uniform(_0x5eaaef[_0x5f069f(0x143)]),'bloomThreshold':tsl.uniform(_0x5eaaef[_0x5f069f(0x11e)]),'bloomRadius':tsl.uniform(_0x5eaaef[_0x5f069f(0x148)]),'dofEnabled':tsl.uniform(0x0),'dofFocus':tsl.uniform(_0xfaf8c1[_0x5f069f(0x106)]),'dofAperture':tsl.uniform(_0xfaf8c1[_0x5f069f(0x132)]),'dofMaxBlur':tsl.uniform(_0xfaf8c1[_0x5f069f(0x15e)]),'gtaoEnabled':tsl.uniform(0x0),'gtaoScale':tsl.uniform(_0x304205[_0x5f069f(0x10b)]),'gtaoDistanceExponent':tsl.uniform(_0x304205['distanceExponent']),'gtaoDistanceFallOff':tsl.uniform(_0x304205[_0x5f069f(0x100)]),'gtaoRadius':tsl.uniform(_0x304205[_0x5f069f(0x148)]),'gtaoThickness':tsl.uniform(_0x304205[_0x5f069f(0x153)]),'gtaoSamples':tsl.uniform(_0x304205['samples']),'outlineEnabled':tsl.uniform(0x0),'outlineEdgeStrength':tsl.uniform(_0x531c16[_0x5f069f(0x13b)]),'outlineEdgeGlow':tsl.uniform(_0x531c16[_0x5f069f(0x14c)]),'outlineEdgeThickness':tsl.uniform(_0x531c16['edgeThickness']),'outlinePulsePeriod':tsl.uniform(_0x531c16[_0x5f069f(0x112)]),'outlineVisibleEdgeColor':tsl.uniform(new webgpu.Color(_0x531c16[_0x5f069f(0x142)])),'outlineHiddenEdgeColor':tsl.uniform(new webgpu.Color(_0x531c16[_0x5f069f(0x129)])),'fxaaEnabled':tsl.uniform(0x0),'smaaEnabled':tsl.uniform(0x0),'lensflareEnabled':tsl.uniform(0x0)};}['getStepParam'](_0x47286c){const _0x4f7016=_0x14f0d4;var _0x43446c;return (_0x43446c=this['postProcessParam']['steps'][_0x4f7016(0x166)](_0xc49cea=>_0xc49cea[_0x4f7016(0x14a)]===_0x47286c))!==null&&_0x43446c!==void 0?_0x43446c:null;}[_0x14f0d4(0x145)](){const _0x19f050=_0x14f0d4;if(!this[_0x19f050(0x115)])return;const _0x2b9741=this[_0x19f050(0x115)],_0x3d3894=new Set(this['postProcessParam']['steps']['map'](_0x2057f9=>_0x2057f9[_0x19f050(0x14a)]));_0x2b9741[_0x19f050(0x120)][_0x19f050(0x140)]=_0x3d3894[_0x19f050(0x15b)](exports.PostProcessStepType['Bloom'])?0x1:0x0,_0x2b9741['dofEnabled'][_0x19f050(0x140)]=_0x3d3894['has'](exports.PostProcessStepType['DepthOfField'])?0x1:0x0,_0x2b9741[_0x19f050(0x13a)][_0x19f050(0x140)]=_0x3d3894[_0x19f050(0x15b)](exports.PostProcessStepType[_0x19f050(0x109)])?0x1:0x0,_0x2b9741[_0x19f050(0xf9)][_0x19f050(0x140)]=_0x3d3894[_0x19f050(0x15b)](exports.PostProcessStepType[_0x19f050(0x122)])?0x1:0x0,_0x2b9741[_0x19f050(0x154)][_0x19f050(0x140)]=_0x3d3894[_0x19f050(0x15b)](exports.PostProcessStepType[_0x19f050(0x14b)])?0x1:0x0;const _0x5931e9=this['getStepParam'](exports.PostProcessStepType[_0x19f050(0x133)]);_0x5931e9?(_0x2b9741[_0x19f050(0x158)]['value']=_0x5931e9[_0x19f050(0x163)]==='fxaa'?0x1:0x0,_0x2b9741[_0x19f050(0x15a)][_0x19f050(0x140)]=_0x5931e9['method']==='smaa'?0x1:0x0):(_0x2b9741[_0x19f050(0x158)][_0x19f050(0x140)]=0x0,_0x2b9741['smaaEnabled']['value']=0x0);const _0x37a408=this['getStepParam'](exports.PostProcessStepType[_0x19f050(0x164)]);_0x37a408&&(_0x2b9741[_0x19f050(0x12b)][_0x19f050(0x140)]=_0x37a408['strength'],_0x2b9741[_0x19f050(0x15f)][_0x19f050(0x140)]=_0x37a408[_0x19f050(0x11e)],_0x2b9741[_0x19f050(0x136)][_0x19f050(0x140)]=_0x37a408[_0x19f050(0x148)],this[_0x19f050(0x10f)]&&(this[_0x19f050(0x10f)]['threshold']['value']=_0x37a408[_0x19f050(0x11e)],this[_0x19f050(0x10f)][_0x19f050(0x143)]['value']=_0x37a408[_0x19f050(0x143)],this[_0x19f050(0x10f)][_0x19f050(0x148)]['value']=_0x37a408[_0x19f050(0x148)]));const _0x1aa635=this[_0x19f050(0x123)](exports.PostProcessStepType[_0x19f050(0x14b)]);if(_0x1aa635&&this[_0x19f050(0x11f)]);const _0xf158a6=this[_0x19f050(0x123)](exports.PostProcessStepType[_0x19f050(0x149)]);_0xf158a6&&(_0x2b9741['dofFocus'][_0x19f050(0x140)]=_0xf158a6['focus'],_0x2b9741['dofAperture']['value']=_0xf158a6[_0x19f050(0x132)],_0x2b9741[_0x19f050(0x103)][_0x19f050(0x140)]=_0xf158a6[_0x19f050(0x15e)],this['dofPass']&&(this[_0x19f050(0x147)][_0x19f050(0x11b)][_0x19f050(0x140)]=_0xf158a6['focus'],this[_0x19f050(0x147)]['focalLengthNode']['value']=_0xf158a6[_0x19f050(0x132)],this[_0x19f050(0x147)][_0x19f050(0x152)][_0x19f050(0x140)]=_0xf158a6[_0x19f050(0x15e)]));const _0x1a9212=this[_0x19f050(0x123)](exports.PostProcessStepType[_0x19f050(0x109)]);_0x1a9212&&(_0x2b9741[_0x19f050(0x138)][_0x19f050(0x140)]=_0x1a9212['scale'],_0x2b9741[_0x19f050(0x144)][_0x19f050(0x140)]=_0x1a9212[_0x19f050(0x12c)],_0x2b9741['gtaoDistanceFallOff']['value']=_0x1a9212[_0x19f050(0x100)],_0x2b9741['gtaoRadius'][_0x19f050(0x140)]=_0x1a9212[_0x19f050(0x148)],_0x2b9741[_0x19f050(0xfb)]['value']=_0x1a9212[_0x19f050(0x153)],_0x2b9741[_0x19f050(0x128)][_0x19f050(0x140)]=_0x1a9212[_0x19f050(0x126)],this[_0x19f050(0x10a)]&&(this['gtaoPass'][_0x19f050(0x12c)][_0x19f050(0x140)]=_0x1a9212[_0x19f050(0x12c)],this[_0x19f050(0x10a)][_0x19f050(0x100)][_0x19f050(0x140)]=_0x1a9212[_0x19f050(0x100)],this[_0x19f050(0x10a)]['radius']['value']=_0x1a9212[_0x19f050(0x148)],this['gtaoPass'][_0x19f050(0x10b)]['value']=_0x1a9212[_0x19f050(0x10b)],this[_0x19f050(0x10a)]['thickness'][_0x19f050(0x140)]=_0x1a9212[_0x19f050(0x153)],this['gtaoPass'][_0x19f050(0x126)][_0x19f050(0x140)]=_0x1a9212[_0x19f050(0x126)],this['gtaoPass'][_0x19f050(0x15d)]=_0x1a9212[_0x19f050(0x15d)]));const _0x5341e9=this['getStepParam'](exports.PostProcessStepType[_0x19f050(0x122)]);_0x5341e9&&(_0x2b9741[_0x19f050(0x121)][_0x19f050(0x140)]=_0x5341e9['edgeStrength'],_0x2b9741[_0x19f050(0x12a)]['value']=_0x5341e9['edgeGlow'],_0x2b9741['outlineEdgeThickness'][_0x19f050(0x140)]=_0x5341e9['edgeThickness'],_0x2b9741[_0x19f050(0x108)][_0x19f050(0x140)]=_0x5341e9['pulsePeriod'],_0x2b9741[_0x19f050(0x11d)][_0x19f050(0x140)][_0x19f050(0x151)](_0x5341e9[_0x19f050(0x142)]),_0x2b9741[_0x19f050(0x14f)]['value'][_0x19f050(0x151)](_0x5341e9['hiddenEdgeColor']),this[_0x19f050(0x10e)]&&(this[_0x19f050(0x10e)][_0x19f050(0x116)]['value']=_0x5341e9[_0x19f050(0x14c)],this[_0x19f050(0x10e)]['edgeThicknessNode'][_0x19f050(0x140)]=_0x5341e9[_0x19f050(0xff)],this[_0x19f050(0x10e)][_0x19f050(0x162)]=this['outlineObjects']));}[_0x14f0d4(0x107)](_0x2c3cc7){const _0xc30042=_0x14f0d4;this[_0xc30042(0xfa)][_0xc30042(0x11a)]=_0x2c3cc7,(!this[_0xc30042(0x115)]||!this[_0xc30042(0x13e)])&&this[_0xc30042(0x169)](),this[_0xc30042(0x145)](),this[_0xc30042(0xf8)]();}[_0x14f0d4(0xf5)](_0x2bab39){const _0x57371c=_0x14f0d4;!this['outlineObjects'][_0x57371c(0x124)](_0x2bab39)&&(this['outlineObjects']['push'](_0x2bab39),this[_0x57371c(0x10e)]&&(this['outlinePass'][_0x57371c(0x162)]=this[_0x57371c(0x127)])),this['markDirty']();}[_0x14f0d4(0x15c)](_0x232d19){const _0x42b163=_0x14f0d4;this['outlineObjects']['length']=0x0,this['outlineObjects'][_0x42b163(0x104)](..._0x232d19),this[_0x42b163(0x10e)]&&(this['outlinePass']['selectedObjects']=this[_0x42b163(0x127)]),this['markDirty']();}[_0x14f0d4(0x117)](_0x193250){const _0xce803c=_0x14f0d4,_0x24689c=this[_0xce803c(0x127)][_0xce803c(0x14d)](_0x193250);_0x24689c>-1&&(this[_0xce803c(0x127)]['splice'](_0x24689c,0x1),this[_0xce803c(0x10e)]&&(this[_0xce803c(0x10e)][_0xce803c(0x162)]=this[_0xce803c(0x127)])),this[_0xce803c(0xf8)]();}['setLUT3DTexture'](_0x3d7fea){const _0x5291ea=_0x14f0d4;this['lut3dTexture']=_0x3d7fea,this[_0x5291ea(0x169)](),this[_0x5291ea(0x145)](),this[_0x5291ea(0xf8)]();}[_0x14f0d4(0x160)](){const _0x28aa23=_0x14f0d4;return this[_0x28aa23(0x119)];}['render'](){const _0x40300d=_0x14f0d4;if(this[_0x40300d(0x13e)])return this[_0x40300d(0x13e)][_0x40300d(0x13c)](),!![];return ![];}[_0x14f0d4(0xf7)](){const _0x32c033=_0x14f0d4;this[_0x32c033(0x127)]=[],this[_0x32c033(0x115)]=null,this[_0x32c033(0x10e)]=null,this['bloomPass']=null,this[_0x32c033(0x147)]=null,this[_0x32c033(0x10a)]=null,this[_0x32c033(0x11c)]=null,this[_0x32c033(0x11f)]=null,this[_0x32c033(0x119)]=null,this[_0x32c033(0x13e)]&&(this['postProcessing'][_0x32c033(0x101)](),this[_0x32c033(0x13e)]=null);}[_0x14f0d4(0xf8)](){const _0xa582c4=_0x14f0d4;this[_0xa582c4(0x110)]&&this['onDirtyCallback']();}}
62
+ const _0xe739a1=_0x4f2a;(function(_0x32e5e0,_0xcf8567){const _0x44eead=_0x4f2a,_0x1517b0=_0x32e5e0();while(!![]){try{const _0x3887a=parseInt(_0x44eead(0xec))/0x1*(parseInt(_0x44eead(0xe7))/0x2)+-parseInt(_0x44eead(0x114))/0x3*(-parseInt(_0x44eead(0x12b))/0x4)+parseInt(_0x44eead(0x12f))/0x5+parseInt(_0x44eead(0xd8))/0x6*(parseInt(_0x44eead(0xd6))/0x7)+-parseInt(_0x44eead(0x121))/0x8+-parseInt(_0x44eead(0xfe))/0x9+-parseInt(_0x44eead(0xe3))/0xa;if(_0x3887a===_0xcf8567)break;else _0x1517b0['push'](_0x1517b0['shift']());}catch(_0x3e5422){_0x1517b0['push'](_0x1517b0['shift']());}}}(_0x141b,0xc45ac));function _0x4f2a(_0x25ed06,_0x5b082b){_0x25ed06=_0x25ed06-0xd0;const _0x141b0f=_0x141b();let _0x4f2a8f=_0x141b0f[_0x25ed06];return _0x4f2a8f;}function _0x141b(){const _0x2c7619=['Bloom','distanceFallOff','pulsePeriod','renderer','bloomStrength','onDirtyCallback','outputNode','updateAllUniforms','markDirty','outlineObjects','dofAperture','needsUpdate','thickness','3coaCRa','bokehScaleNode','indexOf','DepthOfField','traa','updateSteps','outlineEdgeGlow','steps','resolutionScale','outlineEdgeThickness','map','gtaoRadius','threshold','1323232hKxGlf','setOutlineObjects','dispose','scale','gtaoSamples','splice','aperture','normal','postProcessParam','effectUniforms','490436GqRXsn','createEffectUniforms','edgeGlow','destroy','3398440oXaWSj','getStepParam','outlineVisibleEdgeColor','gtaoThickness','render','gtaoDistanceExponent','setup','radius','maxblur','greaterThan','fxaaEnabled','includes','setLUT3DTexture','focus','selectedObjects','processing','strength','updateCamera','buildPipeline','Antialiasing','method','select','removeOutlineObject','focusDistanceNode','hiddenEdgeColor','smaa','getLUT3DTexture','dofEnabled','onBuildFinalNode','postProcessing','addOutlineObject','add','find','ghostTint','set','has','13867UiOiOD','smaaEnabled','1374CnfXAa','LensFlare','bloomThreshold','outlinePulsePeriod','setMRT','gtaoPass','value','push','lensflarePass','dofMaxBlur','outlineEdgeStrength','5784810FWzgeN','div','dofPass','outlineHiddenEdgeColor','20GsStSF','assign','edgeGlowNode','downSampleRatio','getTextureNode','143777jcSAuj','ghostSamples','lensflareEnabled','useTemporalFiltering','length','lut3dTexture','visibleEdgeColor','gtaoEnabled','scene','mul','dofFocus','ghostSpacing','type','camera','traaPass','focalLengthNode','outlinePass','velocity','10310067CIVtcj','bloomPass','samples','distanceExponent','Outline','outlineEnabled','edgeStrength','depth','edgeThickness'];_0x141b=function(){return _0x2c7619;};return _0x141b();}class PostProcessManager{constructor(_0x49f369,_0x2a8fbb,_0x48a4c5,_0x1b6c22,_0x4bb1c1){const _0x3db5e0=_0x4f2a;this['postProcessing']=null,this[_0x3db5e0(0x110)]=[],this[_0x3db5e0(0x12a)]=null,this[_0x3db5e0(0xfc)]=null,this['bloomPass']=null,this[_0x3db5e0(0xe5)]=null,this[_0x3db5e0(0xdd)]=null,this[_0x3db5e0(0xfa)]=null,this[_0x3db5e0(0xe0)]=null,this[_0x3db5e0(0xf1)]=null,this[_0x3db5e0(0x10c)]=null,this[_0x3db5e0(0x10a)]=_0x49f369,this[_0x3db5e0(0xf4)]=_0x2a8fbb,this['camera']=_0x48a4c5,this[_0x3db5e0(0x129)]=Object[_0x3db5e0(0xe8)]({},_0x1b6c22),this[_0x3db5e0(0x10c)]=_0x4bb1c1!==null&&_0x4bb1c1!==void 0?_0x4bb1c1:null;}get[_0xe739a1(0x13e)](){const _0x1e0d05=_0xe739a1;return this[_0x1e0d05(0x14c)];}[_0xe739a1(0x140)](_0x3fb457){const _0x5c026c=_0xe739a1;this[_0x5c026c(0xf9)]=_0x3fb457,(!this['postProcessing']||!this['effectUniforms'])&&(this[_0x5c026c(0x141)](),this[_0x5c026c(0x10e)](),this['markDirty']());}[_0xe739a1(0x135)](){const _0x1a73e5=_0xe739a1;(!this[_0x1a73e5(0x14c)]||!this[_0x1a73e5(0x12a)])&&this['buildPipeline'](),this['updateAllUniforms'](),this['markDirty']();}[_0xe739a1(0x141)](){const _0x3ec172=_0xe739a1;var _0x537a42,_0x25c7f0,_0x57a6a2,_0xfc1fba,_0x4e70c3;this['postProcessing']&&this[_0x3ec172(0x14c)]['dispose']();this['postProcessing']=new webgpu.PostProcessing(this[_0x3ec172(0x10a)]),this['effectUniforms']=this[_0x3ec172(0x12c)]();const _0x5474ae=tsl.pass(this[_0x3ec172(0xf4)],this[_0x3ec172(0xf9)]);_0x5474ae[_0x3ec172(0xdc)](tsl.mrt({'output':tsl.output,'normal':tsl.normalView,'velocity':tsl.velocity}));const _0x17497c=_0x5474ae[_0x3ec172(0xeb)]('output'),_0x52e757=_0x5474ae[_0x3ec172(0xeb)](_0x3ec172(0x128)),_0x23e334=_0x5474ae[_0x3ec172(0xeb)](_0x3ec172(0x105)),_0x2bc321=_0x5474ae[_0x3ec172(0xeb)](_0x3ec172(0xfd)),_0x17c222=_0x5474ae['getViewZNode'](),_0x57e7e5=this[_0x3ec172(0x12a)],_0x31d7f5=(_0x537a42=this[_0x3ec172(0x130)](exports.PostProcessStepType['Bloom']))!==null&&_0x537a42!==void 0?_0x537a42:DefaultBloomParam;this['bloomPass']=BloomNode_js.bloom(_0x17497c),this[_0x3ec172(0xff)][_0x3ec172(0x120)]['value']=_0x31d7f5[_0x3ec172(0x120)],this[_0x3ec172(0xff)][_0x3ec172(0x13f)][_0x3ec172(0xde)]=_0x31d7f5[_0x3ec172(0x13f)],this['bloomPass']['radius'][_0x3ec172(0xde)]=_0x31d7f5[_0x3ec172(0x136)];const _0x1e541b=_0x17497c[_0x3ec172(0xd1)](this['bloomPass'][_0x3ec172(0xf5)](_0x57e7e5[_0x3ec172(0x10b)])),_0x35d2cd=_0x57e7e5['bloomEnabled'][_0x3ec172(0x138)](0.5)[_0x3ec172(0x144)](_0x1e541b,_0x17497c),_0x28a445=(_0x25c7f0=this['getStepParam'](exports.PostProcessStepType[_0x3ec172(0xd9)]))!==null&&_0x25c7f0!==void 0?_0x25c7f0:DefaultLensFlareParam;this['lensflarePass']=LensflareNode_js.lensflare(this[_0x3ec172(0xff)][_0x3ec172(0xeb)](),{'ghostTint':tsl.vec3(_0x28a445[_0x3ec172(0xd3)][0x0],_0x28a445[_0x3ec172(0xd3)][0x1],_0x28a445[_0x3ec172(0xd3)][0x2]),'threshold':tsl.float(_0x28a445['threshold']),'ghostSamples':tsl.float(_0x28a445[_0x3ec172(0xed)]),'ghostSpacing':tsl.float(_0x28a445[_0x3ec172(0xf7)]),'ghostAttenuationFactor':tsl.float(_0x28a445['ghostAttenuationFactor']),'downSampleRatio':_0x28a445[_0x3ec172(0xea)]});const _0x856b7e=_0x35d2cd[_0x3ec172(0xd1)](this['lensflarePass'][_0x3ec172(0xeb)]()),_0x2e64c9=_0x57e7e5['lensflareEnabled'][_0x3ec172(0x138)](0.5)[_0x3ec172(0x144)](_0x856b7e,_0x35d2cd),_0x1c6bf5=(_0x57a6a2=this[_0x3ec172(0x130)](exports.PostProcessStepType[_0x3ec172(0x117)]))!==null&&_0x57a6a2!==void 0?_0x57a6a2:DefaultDOFParam;this['dofPass']=DepthOfFieldNode_js.dof(_0x2e64c9,_0x17c222,tsl.uniform(_0x1c6bf5[_0x3ec172(0x13c)]),tsl.uniform(_0x1c6bf5[_0x3ec172(0x127)]),tsl.uniform(_0x1c6bf5[_0x3ec172(0x137)]));const _0x47178b=_0x57e7e5[_0x3ec172(0x14a)][_0x3ec172(0x138)](0.5)['select'](this[_0x3ec172(0xe5)],_0x2e64c9),_0xd46321=(_0xfc1fba=this[_0x3ec172(0x130)](exports.PostProcessStepType['GroundTruthAmbientOcclusion']))!==null&&_0xfc1fba!==void 0?_0xfc1fba:DefaultGTAOParam;this[_0x3ec172(0xdd)]=GTAONode_js.ao(_0x23e334,_0x52e757,this['camera']),this[_0x3ec172(0xdd)][_0x3ec172(0x11c)]=0.5,this[_0x3ec172(0xdd)][_0x3ec172(0x101)][_0x3ec172(0xde)]=_0xd46321['distanceExponent'],this[_0x3ec172(0xdd)][_0x3ec172(0x108)][_0x3ec172(0xde)]=_0xd46321[_0x3ec172(0x108)],this[_0x3ec172(0xdd)][_0x3ec172(0x136)][_0x3ec172(0xde)]=_0xd46321[_0x3ec172(0x136)],this[_0x3ec172(0xdd)][_0x3ec172(0x124)]['value']=_0xd46321['scale'],this[_0x3ec172(0xdd)][_0x3ec172(0x113)][_0x3ec172(0xde)]=_0xd46321[_0x3ec172(0x113)],this[_0x3ec172(0xdd)][_0x3ec172(0x100)][_0x3ec172(0xde)]=_0xd46321[_0x3ec172(0x100)],this['gtaoPass'][_0x3ec172(0xef)]=_0xd46321[_0x3ec172(0xef)];const _0x17a240=this[_0x3ec172(0xdd)][_0x3ec172(0xeb)](),_0x134467=_0x17a240['r'],_0x36d203=_0x47178b[_0x3ec172(0xf5)](_0x134467),_0x3b3542=_0x57e7e5[_0x3ec172(0xf3)][_0x3ec172(0x138)](0.5)['select'](_0x36d203,_0x47178b),_0x531f6e=(_0x4e70c3=this[_0x3ec172(0x130)](exports.PostProcessStepType[_0x3ec172(0x102)]))!==null&&_0x4e70c3!==void 0?_0x4e70c3:DefaultOutlineParams;this[_0x3ec172(0xfc)]=OutlineNode_js.outline(this['scene'],this[_0x3ec172(0xf9)],{'selectedObjects':this[_0x3ec172(0x110)],'edgeGlow':tsl.uniform(_0x531f6e[_0x3ec172(0x12d)]),'edgeThickness':tsl.uniform(_0x531f6e[_0x3ec172(0x106)])});const {visibleEdge:_0x3ffe24,hiddenEdge:_0x21ea93}=this['outlinePass'],_0x385c63=_0x57e7e5[_0x3ec172(0xdb)]['greaterThan'](0x0)[_0x3ec172(0x144)](_0x57e7e5['outlinePulsePeriod'],tsl.uniform(0x1)),_0xe68625=tsl.time[_0x3ec172(0xe4)](_0x385c63)[_0x3ec172(0xf5)](0x2),_0x455b7d=tsl.oscSine(_0xe68625)[_0x3ec172(0xf5)](0.5)[_0x3ec172(0xd1)](0.5),_0x3071ba=_0x3ffe24[_0x3ec172(0xf5)](_0x57e7e5[_0x3ec172(0x131)])[_0x3ec172(0xd1)](_0x21ea93[_0x3ec172(0xf5)](_0x57e7e5[_0x3ec172(0xe6)]))['mul'](_0x57e7e5[_0x3ec172(0xe2)]),_0x2dc315=_0x57e7e5['outlinePulsePeriod'][_0x3ec172(0x138)](0x0)[_0x3ec172(0x144)](_0x3071ba[_0x3ec172(0xf5)](_0x455b7d),_0x3071ba),_0x3351a9=_0x2dc315[_0x3ec172(0xd1)](_0x3b3542),_0x3aaad2=_0x57e7e5[_0x3ec172(0x103)]['greaterThan'](0.5)[_0x3ec172(0x144)](_0x3351a9,_0x3b3542),_0x58971a=FXAANode_js.fxaa(_0x3aaad2),_0x384b81=_0x57e7e5[_0x3ec172(0x139)][_0x3ec172(0x138)](0.5)[_0x3ec172(0x144)](_0x58971a,_0x3aaad2),_0x293f1e=SMAANode_js.smaa(_0x384b81),_0x3e8f8c=_0x57e7e5[_0x3ec172(0xd7)][_0x3ec172(0x138)](0.5)[_0x3ec172(0x144)](_0x293f1e,_0x384b81),_0x4a656b=this[_0x3ec172(0x130)](exports.PostProcessStepType[_0x3ec172(0x142)]);let _0x5b9593=_0x3e8f8c;_0x4a656b&&_0x4a656b[_0x3ec172(0x143)]===_0x3ec172(0x118)&&(this['traaPass']=TRAANode_js.traa(_0x3e8f8c,_0x23e334,_0x2bc321,this[_0x3ec172(0xf9)]),_0x5b9593=this[_0x3ec172(0xfa)][_0x3ec172(0xeb)]()),_0x5b9593=this[_0x3ec172(0x14b)](_0x5b9593),this[_0x3ec172(0x14c)][_0x3ec172(0x10d)]=_0x5b9593,this[_0x3ec172(0x14c)][_0x3ec172(0x112)]=!![];}[_0xe739a1(0x14b)](_0x411808){return _0x411808;}[_0xe739a1(0x12c)](){const _0x5b675c=_0xe739a1;var _0x1f182a,_0x4f4a89,_0x2dc491,_0x2f7f27;const _0x50f6f1=(_0x1f182a=this[_0x5b675c(0x130)](exports.PostProcessStepType['Bloom']))!==null&&_0x1f182a!==void 0?_0x1f182a:DefaultBloomParam,_0x346ccf=(_0x4f4a89=this['getStepParam'](exports.PostProcessStepType[_0x5b675c(0x117)]))!==null&&_0x4f4a89!==void 0?_0x4f4a89:DefaultDOFParam,_0x338384=(_0x2dc491=this[_0x5b675c(0x130)](exports.PostProcessStepType['GroundTruthAmbientOcclusion']))!==null&&_0x2dc491!==void 0?_0x2dc491:DefaultGTAOParam,_0x429572=(_0x2f7f27=this[_0x5b675c(0x130)](exports.PostProcessStepType[_0x5b675c(0x102)]))!==null&&_0x2f7f27!==void 0?_0x2f7f27:DefaultOutlineParams;return {'bloomEnabled':tsl.uniform(0x0),'bloomStrength':tsl.uniform(_0x50f6f1[_0x5b675c(0x13f)]),'bloomThreshold':tsl.uniform(_0x50f6f1['threshold']),'bloomRadius':tsl.uniform(_0x50f6f1[_0x5b675c(0x136)]),'dofEnabled':tsl.uniform(0x0),'dofFocus':tsl.uniform(_0x346ccf[_0x5b675c(0x13c)]),'dofAperture':tsl.uniform(_0x346ccf[_0x5b675c(0x127)]),'dofMaxBlur':tsl.uniform(_0x346ccf[_0x5b675c(0x137)]),'gtaoEnabled':tsl.uniform(0x0),'gtaoScale':tsl.uniform(_0x338384['scale']),'gtaoDistanceExponent':tsl.uniform(_0x338384['distanceExponent']),'gtaoDistanceFallOff':tsl.uniform(_0x338384[_0x5b675c(0x108)]),'gtaoRadius':tsl.uniform(_0x338384[_0x5b675c(0x136)]),'gtaoThickness':tsl.uniform(_0x338384[_0x5b675c(0x113)]),'gtaoSamples':tsl.uniform(_0x338384['samples']),'outlineEnabled':tsl.uniform(0x0),'outlineEdgeStrength':tsl.uniform(_0x429572[_0x5b675c(0x104)]),'outlineEdgeGlow':tsl.uniform(_0x429572['edgeGlow']),'outlineEdgeThickness':tsl.uniform(_0x429572['edgeThickness']),'outlinePulsePeriod':tsl.uniform(_0x429572[_0x5b675c(0x109)]),'outlineVisibleEdgeColor':tsl.uniform(new webgpu.Color(_0x429572[_0x5b675c(0xf2)])),'outlineHiddenEdgeColor':tsl.uniform(new webgpu.Color(_0x429572[_0x5b675c(0x147)])),'fxaaEnabled':tsl.uniform(0x0),'smaaEnabled':tsl.uniform(0x0),'lensflareEnabled':tsl.uniform(0x0)};}['getStepParam'](_0x296edf){const _0x26661a=_0xe739a1;var _0x1972e7;return (_0x1972e7=this[_0x26661a(0x129)][_0x26661a(0x11b)][_0x26661a(0xd2)](_0x217c07=>_0x217c07[_0x26661a(0xf8)]===_0x296edf))!==null&&_0x1972e7!==void 0?_0x1972e7:null;}[_0xe739a1(0x10e)](){const _0x3b76f5=_0xe739a1;if(!this[_0x3b76f5(0x12a)])return;const _0x5b1a1d=this['effectUniforms'],_0x49e47d=new Set(this['postProcessParam'][_0x3b76f5(0x11b)][_0x3b76f5(0x11e)](_0x43c95b=>_0x43c95b['type']));_0x5b1a1d['bloomEnabled'][_0x3b76f5(0xde)]=_0x49e47d[_0x3b76f5(0xd5)](exports.PostProcessStepType[_0x3b76f5(0x107)])?0x1:0x0,_0x5b1a1d[_0x3b76f5(0x14a)][_0x3b76f5(0xde)]=_0x49e47d[_0x3b76f5(0xd5)](exports.PostProcessStepType[_0x3b76f5(0x117)])?0x1:0x0,_0x5b1a1d['gtaoEnabled'][_0x3b76f5(0xde)]=_0x49e47d['has'](exports.PostProcessStepType['GroundTruthAmbientOcclusion'])?0x1:0x0,_0x5b1a1d[_0x3b76f5(0x103)]['value']=_0x49e47d[_0x3b76f5(0xd5)](exports.PostProcessStepType['Outline'])?0x1:0x0,_0x5b1a1d[_0x3b76f5(0xee)][_0x3b76f5(0xde)]=_0x49e47d['has'](exports.PostProcessStepType[_0x3b76f5(0xd9)])?0x1:0x0;const _0x281a55=this[_0x3b76f5(0x130)](exports.PostProcessStepType[_0x3b76f5(0x142)]);_0x281a55?(_0x5b1a1d[_0x3b76f5(0x139)]['value']=_0x281a55[_0x3b76f5(0x143)]==='fxaa'?0x1:0x0,_0x5b1a1d[_0x3b76f5(0xd7)][_0x3b76f5(0xde)]=_0x281a55['method']===_0x3b76f5(0x148)?0x1:0x0):(_0x5b1a1d[_0x3b76f5(0x139)][_0x3b76f5(0xde)]=0x0,_0x5b1a1d[_0x3b76f5(0xd7)][_0x3b76f5(0xde)]=0x0);const _0x4054e7=this[_0x3b76f5(0x130)](exports.PostProcessStepType[_0x3b76f5(0x107)]);_0x4054e7&&(_0x5b1a1d['bloomStrength'][_0x3b76f5(0xde)]=_0x4054e7[_0x3b76f5(0x13f)],_0x5b1a1d[_0x3b76f5(0xda)]['value']=_0x4054e7['threshold'],_0x5b1a1d['bloomRadius'][_0x3b76f5(0xde)]=_0x4054e7[_0x3b76f5(0x136)],this[_0x3b76f5(0xff)]&&(this['bloomPass']['threshold']['value']=_0x4054e7[_0x3b76f5(0x120)],this[_0x3b76f5(0xff)]['strength'][_0x3b76f5(0xde)]=_0x4054e7['strength'],this['bloomPass'][_0x3b76f5(0x136)][_0x3b76f5(0xde)]=_0x4054e7[_0x3b76f5(0x136)]));const _0x5877b9=this[_0x3b76f5(0x130)](exports.PostProcessStepType[_0x3b76f5(0xd9)]);if(_0x5877b9&&this[_0x3b76f5(0xe0)]);const _0x139cd8=this[_0x3b76f5(0x130)](exports.PostProcessStepType['DepthOfField']);_0x139cd8&&(_0x5b1a1d[_0x3b76f5(0xf6)][_0x3b76f5(0xde)]=_0x139cd8[_0x3b76f5(0x13c)],_0x5b1a1d[_0x3b76f5(0x111)]['value']=_0x139cd8[_0x3b76f5(0x127)],_0x5b1a1d[_0x3b76f5(0xe1)][_0x3b76f5(0xde)]=_0x139cd8[_0x3b76f5(0x137)],this[_0x3b76f5(0xe5)]&&(this['dofPass'][_0x3b76f5(0x146)][_0x3b76f5(0xde)]=_0x139cd8[_0x3b76f5(0x13c)],this[_0x3b76f5(0xe5)][_0x3b76f5(0xfb)][_0x3b76f5(0xde)]=_0x139cd8[_0x3b76f5(0x127)],this[_0x3b76f5(0xe5)][_0x3b76f5(0x115)][_0x3b76f5(0xde)]=_0x139cd8[_0x3b76f5(0x137)]));const _0x2748f5=this['getStepParam'](exports.PostProcessStepType['GroundTruthAmbientOcclusion']);_0x2748f5&&(_0x5b1a1d['gtaoScale']['value']=_0x2748f5[_0x3b76f5(0x124)],_0x5b1a1d[_0x3b76f5(0x134)][_0x3b76f5(0xde)]=_0x2748f5['distanceExponent'],_0x5b1a1d['gtaoDistanceFallOff']['value']=_0x2748f5[_0x3b76f5(0x108)],_0x5b1a1d[_0x3b76f5(0x11f)][_0x3b76f5(0xde)]=_0x2748f5['radius'],_0x5b1a1d[_0x3b76f5(0x132)][_0x3b76f5(0xde)]=_0x2748f5['thickness'],_0x5b1a1d[_0x3b76f5(0x125)][_0x3b76f5(0xde)]=_0x2748f5[_0x3b76f5(0x100)],this['gtaoPass']&&(this[_0x3b76f5(0xdd)][_0x3b76f5(0x101)]['value']=_0x2748f5[_0x3b76f5(0x101)],this['gtaoPass'][_0x3b76f5(0x108)][_0x3b76f5(0xde)]=_0x2748f5['distanceFallOff'],this['gtaoPass'][_0x3b76f5(0x136)][_0x3b76f5(0xde)]=_0x2748f5[_0x3b76f5(0x136)],this['gtaoPass'][_0x3b76f5(0x124)][_0x3b76f5(0xde)]=_0x2748f5[_0x3b76f5(0x124)],this['gtaoPass'][_0x3b76f5(0x113)][_0x3b76f5(0xde)]=_0x2748f5[_0x3b76f5(0x113)],this[_0x3b76f5(0xdd)][_0x3b76f5(0x100)][_0x3b76f5(0xde)]=_0x2748f5['samples'],this['gtaoPass'][_0x3b76f5(0xef)]=_0x2748f5[_0x3b76f5(0xef)]));const _0x546f68=this['getStepParam'](exports.PostProcessStepType['Outline']);_0x546f68&&(_0x5b1a1d['outlineEdgeStrength']['value']=_0x546f68['edgeStrength'],_0x5b1a1d[_0x3b76f5(0x11a)][_0x3b76f5(0xde)]=_0x546f68[_0x3b76f5(0x12d)],_0x5b1a1d[_0x3b76f5(0x11d)][_0x3b76f5(0xde)]=_0x546f68['edgeThickness'],_0x5b1a1d[_0x3b76f5(0xdb)][_0x3b76f5(0xde)]=_0x546f68[_0x3b76f5(0x109)],_0x5b1a1d[_0x3b76f5(0x131)][_0x3b76f5(0xde)][_0x3b76f5(0xd4)](_0x546f68[_0x3b76f5(0xf2)]),_0x5b1a1d[_0x3b76f5(0xe6)]['value'][_0x3b76f5(0xd4)](_0x546f68[_0x3b76f5(0x147)]),this[_0x3b76f5(0xfc)]&&(this['outlinePass'][_0x3b76f5(0xe9)]['value']=_0x546f68[_0x3b76f5(0x12d)],this['outlinePass']['edgeThicknessNode'][_0x3b76f5(0xde)]=_0x546f68[_0x3b76f5(0x106)],this[_0x3b76f5(0xfc)][_0x3b76f5(0x13d)]=this[_0x3b76f5(0x110)]));}[_0xe739a1(0x119)](_0x313bf0){const _0x3f05d0=_0xe739a1;this[_0x3f05d0(0x129)][_0x3f05d0(0x11b)]=_0x313bf0,(!this[_0x3f05d0(0x12a)]||!this[_0x3f05d0(0x14c)])&&this[_0x3f05d0(0x141)](),this[_0x3f05d0(0x10e)](),this[_0x3f05d0(0x10f)]();}[_0xe739a1(0xd0)](_0x5c97c2){const _0x1e8db8=_0xe739a1;!this['outlineObjects'][_0x1e8db8(0x13a)](_0x5c97c2)&&(this[_0x1e8db8(0x110)][_0x1e8db8(0xdf)](_0x5c97c2),this[_0x1e8db8(0xfc)]&&(this[_0x1e8db8(0xfc)][_0x1e8db8(0x13d)]=this[_0x1e8db8(0x110)])),this[_0x1e8db8(0x10f)]();}[_0xe739a1(0x122)](_0x4e4901){const _0x493c7b=_0xe739a1;this[_0x493c7b(0x110)][_0x493c7b(0xf0)]=0x0,this['outlineObjects']['push'](..._0x4e4901),this[_0x493c7b(0xfc)]&&(this[_0x493c7b(0xfc)]['selectedObjects']=this[_0x493c7b(0x110)]),this[_0x493c7b(0x10f)]();}[_0xe739a1(0x145)](_0x352a3f){const _0x16ad87=_0xe739a1,_0x5f0110=this['outlineObjects'][_0x16ad87(0x116)](_0x352a3f);_0x5f0110>-1&&(this[_0x16ad87(0x110)][_0x16ad87(0x126)](_0x5f0110,0x1),this[_0x16ad87(0xfc)]&&(this[_0x16ad87(0xfc)][_0x16ad87(0x13d)]=this[_0x16ad87(0x110)])),this[_0x16ad87(0x10f)]();}[_0xe739a1(0x13b)](_0x42a8b6){const _0x28b600=_0xe739a1;this['lut3dTexture']=_0x42a8b6,this[_0x28b600(0x141)](),this[_0x28b600(0x10e)](),this['markDirty']();}[_0xe739a1(0x149)](){return this['lut3dTexture'];}[_0xe739a1(0x133)](){const _0xff0112=_0xe739a1;if(this[_0xff0112(0x14c)])return this['postProcessing'][_0xff0112(0x133)](),!![];return ![];}[_0xe739a1(0x12e)](){const _0x35d837=_0xe739a1;this[_0x35d837(0x110)]=[],this['effectUniforms']=null,this[_0x35d837(0xfc)]=null,this[_0x35d837(0xff)]=null,this[_0x35d837(0xe5)]=null,this[_0x35d837(0xdd)]=null,this['traaPass']=null,this['lensflarePass']=null,this[_0x35d837(0xf1)]=null,this[_0x35d837(0x14c)]&&(this['postProcessing'][_0x35d837(0x123)](),this[_0x35d837(0x14c)]=null);}['markDirty'](){const _0x2a10fa=_0xe739a1;this[_0x2a10fa(0x10c)]&&this['onDirtyCallback']();}}
62
63
 
63
- const _0x3ffbbe=_0x26fc;(function(_0x49e01,_0x4c43e3){const _0x2a4c24=_0x26fc,_0x1b3093=_0x49e01();while(!![]){try{const _0xa85da0=parseInt(_0x2a4c24(0x23a))/0x1+parseInt(_0x2a4c24(0x231))/0x2+-parseInt(_0x2a4c24(0x244))/0x3*(-parseInt(_0x2a4c24(0x249))/0x4)+parseInt(_0x2a4c24(0x1fd))/0x5*(-parseInt(_0x2a4c24(0x1f2))/0x6)+parseInt(_0x2a4c24(0x236))/0x7+-parseInt(_0x2a4c24(0x20a))/0x8*(-parseInt(_0x2a4c24(0x22c))/0x9)+-parseInt(_0x2a4c24(0x21b))/0xa*(parseInt(_0x2a4c24(0x1de))/0xb);if(_0xa85da0===_0x4c43e3)break;else _0x1b3093['push'](_0x1b3093['shift']());}catch(_0x420337){_0x1b3093['push'](_0x1b3093['shift']());}}}(_0x1138,0x3a70d));function _0x26fc(_0x45e091,_0xe8cb34){_0x45e091=_0x45e091-0x1de;const _0x11387c=_0x1138();let _0x26fc2d=_0x11387c[_0x45e091];return _0x26fc2d;}function _0x1138(){const _0x5f0378=['postProcessManager','57KcHEbu','createElement','isRenderStateDirty','logarithmicDepthBuffer','_renderer','9904NwVzcU','toDataURL','contentBoxSize','setDepth','3990679hlGDmA','none','setOutlineObjects','add','position','renderAsImage','init','.scene-uiLayer','labelRenderer','createLabelRenderer','camera','updatePostProcess','left','clientWidth','setPixelRatio','setLogarithmicDepthBufferEnabled','elementId','destroyPostProcess','scene','createUILayer','696FXzOLc','world','App\x20is\x20not\x20initialized','pointerEvents','setupPostProcess','div','remove','canvas','100%','forceWebGL','stencil','10050reOKTA','shadowMap','0px','height','width','samples','isUILayerNeeded','renderer','style','_app','addOutlineObject','resizeObserver','shadowMapEnabled','523272fdDbIn','absolute','depth','updateSteps','antialias','destroy','Can\x20not\x20create\x20context','dispose','onCameraChangedDelegate','app','domElement','updateRendererSettings','Renderer\x20is\x20not\x20initialized','postProcessParam','_outerContainer','enabled','setToneMapping','10QtvuxZ','top','createPostProcessManager','setAlpha','scene-uiLayer','setup','setSize','removeChild','_uiDom','observe','markRenderStateDirty','setShadowMapType','onWindowResize','_canvasContainer','getContext','toneMapping','getElementById','63GbURmu','appendChild','alpha','querySelector','disconnect','56078LhITbT','image/jpeg','render','isLabelRendererNeeded','drawImage','1648080SFCvqZ','type','removeOutlineObject','setAnimationLoop','66936uWsGvD','onAfterPostProcessRender','createRenderer','clientHeight','shadowMapType','className','devicePixelRatio','toneMappingExposure','outputBufferType'];_0x1138=function(){return _0x5f0378;};return _0x1138();}class Viewport{get['uiDom'](){const _0x469331=_0x26fc;return this[_0x469331(0x223)];}get['canvas'](){const _0x16e89d=_0x26fc;return this[_0x16e89d(0x228)];}get['outer'](){const _0x3e1753=_0x26fc;return this[_0x3e1753(0x218)];}get['renderer'](){const _0x284821=_0x26fc;if(!this[_0x284821(0x248)])throw Error(_0x284821(0x216));return this[_0x284821(0x248)];}get[_0x3ffbbe(0x213)](){const _0x3c436f=_0x3ffbbe;if(!this[_0x3c436f(0x206)])throw Error(_0x3c436f(0x1f4));return this[_0x3c436f(0x206)];}constructor(_0x40fbce,_0x1fb730,_0x2d652f,_0x2a0c0d){const _0x3f6db4=_0x3ffbbe;this[_0x3f6db4(0x223)]=null,this[_0x3f6db4(0x248)]=null,this[_0x3f6db4(0x1e6)]=null,this[_0x3f6db4(0x206)]=null,this[_0x3f6db4(0x208)]=null,this['_outerContainer']=null,this[_0x3f6db4(0x228)]=null,this[_0x3f6db4(0x246)]=!![],this[_0x3f6db4(0x243)]=null,this[_0x3f6db4(0x217)]=Object['assign']({},_0x2a0c0d),this['_app']=_0x40fbce,_0x1fb730[_0x3f6db4(0x1ee)]&&(this['_outerContainer']=document[_0x3f6db4(0x22b)](_0x1fb730['elementId'])),this[_0x3f6db4(0x23c)](_0x2d652f),_0x1fb730[_0x3f6db4(0x234)]&&this[_0x3f6db4(0x1e7)](),_0x1fb730[_0x3f6db4(0x203)]&&this[_0x3f6db4(0x1f1)](),this['_outerContainer']&&(this[_0x3f6db4(0x208)]=new ResizeObserver(_0x1ca3db=>{const _0x383917=_0x3f6db4;for(let _0x1c70ef of _0x1ca3db){_0x1c70ef[_0x383917(0x24b)]&&this[_0x383917(0x227)]();}}),this['resizeObserver'][_0x3f6db4(0x224)](this[_0x3f6db4(0x218)])),this['app'][_0x3f6db4(0x212)][_0x3f6db4(0x1e1)](()=>{const _0x33cb1a=_0x3f6db4;this[_0x33cb1a(0x243)]&&(this[_0x33cb1a(0x243)]['updateCamera'](this[_0x33cb1a(0x213)]['camera']),this[_0x33cb1a(0x243)][_0x33cb1a(0x220)]());});}['createRenderer'](_0x47c286){const _0x570966=_0x3ffbbe;this[_0x570966(0x218)]&&!this['_canvasContainer']&&(this[_0x570966(0x228)]=document['createElement']('div'),this['_canvasContainer']['style'][_0x570966(0x1ea)]=_0x570966(0x1ff),this[_0x570966(0x228)]['style']['top']=_0x570966(0x1ff),this[_0x570966(0x228)][_0x570966(0x205)][_0x570966(0x201)]=_0x570966(0x1fa),this[_0x570966(0x228)]['style']['height']='100%',this[_0x570966(0x218)]['appendChild'](this[_0x570966(0x228)]));const _0x507a17=this[_0x570966(0x228)];this[_0x570966(0x248)]&&(_0x507a17&&_0x507a17[_0x570966(0x222)](this['_renderer'][_0x570966(0x214)]),this['_renderer'][_0x570966(0x211)]());let _0x1cc464=_0x507a17?_0x507a17[_0x570966(0x1eb)]:0x200,_0x4991a9=_0x507a17?_0x507a17[_0x570966(0x23d)]:0x200,_0x28ca2b={};_0x28ca2b[_0x570966(0x1fb)]=_0x47c286[_0x570966(0x1fb)],_0x28ca2b[_0x570966(0x20e)]=_0x47c286['antialias'],_0x28ca2b[_0x570966(0x20c)]=_0x47c286[_0x570966(0x20c)],_0x28ca2b[_0x570966(0x1fc)]=_0x47c286['stencil'],_0x28ca2b['alpha']=_0x47c286['alpha'],_0x28ca2b['logarithmicDepthBuffer']=_0x47c286[_0x570966(0x247)],_0x28ca2b[_0x570966(0x202)]=_0x47c286[_0x570966(0x202)],_0x28ca2b[_0x570966(0x242)]=_0x47c286['outputBufferType'],this['_renderer']=new webgpu.WebGPURenderer(_0x28ca2b),this[_0x570966(0x248)][_0x570966(0x1ec)](window[_0x570966(0x240)]),this[_0x570966(0x248)][_0x570966(0x221)](_0x1cc464,_0x4991a9),this['_renderer']['shadowMap'][_0x570966(0x219)]=_0x47c286[_0x570966(0x209)],this[_0x570966(0x248)]['shadowMap'][_0x570966(0x237)]=_0x47c286[_0x570966(0x23e)],this['_renderer'][_0x570966(0x22a)]=_0x47c286[_0x570966(0x22a)],this[_0x570966(0x248)]['toneMappingExposure']=_0x47c286[_0x570966(0x241)],this[_0x570966(0x248)]['setClearAlpha'](0x0),_0x507a17&&_0x507a17['appendChild'](this['_renderer'][_0x570966(0x214)]);}[_0x3ffbbe(0x1e7)](){const _0x3f68b9=_0x3ffbbe,_0x372a8b=this['_outerContainer'];this['labelRenderer']&&(_0x372a8b&&_0x372a8b['removeChild'](this[_0x3f68b9(0x1e6)][_0x3f68b9(0x214)]));let _0x52f6c1=_0x372a8b?_0x372a8b[_0x3f68b9(0x1eb)]:0x200,_0x3218e3=_0x372a8b?_0x372a8b['clientHeight']:0x200;this[_0x3f68b9(0x1e6)]=new Addons_js.CSS2DRenderer(),this[_0x3f68b9(0x1e6)]['setSize'](_0x52f6c1,_0x3218e3),this[_0x3f68b9(0x1e6)][_0x3f68b9(0x214)][_0x3f68b9(0x205)][_0x3f68b9(0x1f5)]=_0x3f68b9(0x1df),this[_0x3f68b9(0x1e6)]['domElement'][_0x3f68b9(0x205)][_0x3f68b9(0x1e2)]=_0x3f68b9(0x20b),this['labelRenderer'][_0x3f68b9(0x214)][_0x3f68b9(0x205)][_0x3f68b9(0x21c)]=_0x3f68b9(0x1ff),this[_0x3f68b9(0x1e6)][_0x3f68b9(0x214)]['className']='scene-labelRenderer',_0x372a8b&&_0x372a8b['appendChild'](this[_0x3f68b9(0x1e6)][_0x3f68b9(0x214)]);}[_0x3ffbbe(0x1f1)](){const _0x4552a4=_0x3ffbbe;if(!this[_0x4552a4(0x218)])return;let _0x1dfc84=this[_0x4552a4(0x218)][_0x4552a4(0x22f)](_0x4552a4(0x1e5));!_0x1dfc84&&(_0x1dfc84=document[_0x4552a4(0x245)](_0x4552a4(0x1f7)),_0x1dfc84[_0x4552a4(0x23f)]=_0x4552a4(0x21f),_0x1dfc84['id']='scene-uiLayer',_0x1dfc84[_0x4552a4(0x205)][_0x4552a4(0x1e2)]=_0x4552a4(0x20b),_0x1dfc84[_0x4552a4(0x205)][_0x4552a4(0x1ea)]='0',_0x1dfc84[_0x4552a4(0x205)][_0x4552a4(0x21c)]='0',_0x1dfc84['style'][_0x4552a4(0x201)]='100%',_0x1dfc84[_0x4552a4(0x205)][_0x4552a4(0x200)]='100%',_0x1dfc84[_0x4552a4(0x205)][_0x4552a4(0x1f5)]='none',_0x1dfc84['style']['zIndex']='10',this['_outerContainer'][_0x4552a4(0x22d)](_0x1dfc84),this[_0x4552a4(0x223)]=_0x1dfc84);}[_0x3ffbbe(0x1e4)](){const _0x2b72a4=_0x3ffbbe;this[_0x2b72a4(0x1f6)]();}[_0x3ffbbe(0x1f6)](){const _0x172a4a=_0x3ffbbe;!this[_0x172a4a(0x243)]&&(this[_0x172a4a(0x243)]=this[_0x172a4a(0x21d)]()),this[_0x172a4a(0x243)][_0x172a4a(0x220)]();}['createPostProcessManager'](){const _0x5b36d5=_0x3ffbbe;return new PostProcessManager(this[_0x5b36d5(0x204)],this[_0x5b36d5(0x213)][_0x5b36d5(0x1f3)]['scene'],this[_0x5b36d5(0x213)]['camera'],this[_0x5b36d5(0x217)],()=>this[_0x5b36d5(0x225)]());}[_0x3ffbbe(0x1e9)](_0x284f40){const _0x2e9f5b=_0x3ffbbe;this['postProcessManager']&&this[_0x2e9f5b(0x243)][_0x2e9f5b(0x20d)](_0x284f40);}[_0x3ffbbe(0x215)](_0x2a67f7){const _0x2355e2=_0x3ffbbe;this['createRenderer'](_0x2a67f7),this[_0x2355e2(0x225)]();}[_0x3ffbbe(0x207)](_0x2d4e8c){const _0x31427b=_0x3ffbbe;this['postProcessManager']&&this['postProcessManager'][_0x31427b(0x207)](_0x2d4e8c);}[_0x3ffbbe(0x1e0)](_0x2b9e23){const _0x21f6bf=_0x3ffbbe;this[_0x21f6bf(0x243)]&&this[_0x21f6bf(0x243)][_0x21f6bf(0x1e0)](_0x2b9e23);}['removeOutlineObject'](_0x5eac8d){const _0x5055bf=_0x3ffbbe;this[_0x5055bf(0x243)]&&this[_0x5055bf(0x243)][_0x5055bf(0x238)](_0x5eac8d);}[_0x3ffbbe(0x1ef)](){const _0x3c3423=_0x3ffbbe;this[_0x3c3423(0x243)]&&(this['postProcessManager'][_0x3c3423(0x20f)](),this['postProcessManager']=null);}['onWindowResize'](){const _0x259cca=_0x3ffbbe;let _0x4b38a9=this[_0x259cca(0x218)];if(!_0x4b38a9)return;this[_0x259cca(0x213)][_0x259cca(0x227)](_0x4b38a9['clientWidth'],_0x4b38a9[_0x259cca(0x23d)]),this[_0x259cca(0x204)][_0x259cca(0x221)](_0x4b38a9['clientWidth'],_0x4b38a9[_0x259cca(0x23d)]);if(this[_0x259cca(0x1e6)])this[_0x259cca(0x1e6)]['setSize'](_0x4b38a9[_0x259cca(0x1eb)],_0x4b38a9[_0x259cca(0x23d)]);this['markRenderStateDirty']();}[_0x3ffbbe(0x225)](){const _0x1ca8ac=_0x3ffbbe;this[_0x1ca8ac(0x246)]=!![];}['render'](){const _0x4052d4=_0x3ffbbe;if(!this[_0x4052d4(0x246)])return;if(this[_0x4052d4(0x243)]&&this[_0x4052d4(0x243)][_0x4052d4(0x233)]());else this[_0x4052d4(0x204)][_0x4052d4(0x233)](this[_0x4052d4(0x213)][_0x4052d4(0x1f3)][_0x4052d4(0x1f0)],this[_0x4052d4(0x213)][_0x4052d4(0x1e8)]);this[_0x4052d4(0x23b)](),this[_0x4052d4(0x1e6)]&&this['labelRenderer'][_0x4052d4(0x233)](this[_0x4052d4(0x213)][_0x4052d4(0x1f3)][_0x4052d4(0x1f0)],this['app']['camera']),this[_0x4052d4(0x246)]=![];}[_0x3ffbbe(0x23b)](){}async[_0x3ffbbe(0x1e3)](_0x2425ae=0x400,_0x146eb4=0x400){const _0x5a1ceb=_0x3ffbbe;try{if(this[_0x5a1ceb(0x243)]&&this[_0x5a1ceb(0x243)]['render']()){}else await this[_0x5a1ceb(0x204)][_0x5a1ceb(0x233)](this['app'][_0x5a1ceb(0x1f3)]['scene'],this[_0x5a1ceb(0x213)][_0x5a1ceb(0x1e8)]);const _0x2ad417=this[_0x5a1ceb(0x204)]['domElement'][_0x5a1ceb(0x201)],_0x3669db=this[_0x5a1ceb(0x204)][_0x5a1ceb(0x214)][_0x5a1ceb(0x200)];let _0x2ddab5=_0x2ad417||_0x2425ae,_0x24cf15=_0x3669db||_0x146eb4;(_0x2ddab5<=0x0||_0x24cf15<=0x0)&&(_0x2ddab5=_0x2425ae,_0x24cf15=_0x146eb4);const _0x45389f=document[_0x5a1ceb(0x245)](_0x5a1ceb(0x1f9));_0x45389f[_0x5a1ceb(0x201)]=_0x2425ae,_0x45389f[_0x5a1ceb(0x200)]=_0x146eb4;const _0x18ccb9=_0x45389f[_0x5a1ceb(0x229)]('2d');if(!_0x18ccb9)throw Error(_0x5a1ceb(0x210));_0x18ccb9[_0x5a1ceb(0x235)](this['renderer'][_0x5a1ceb(0x214)],0x0,0x0,_0x2ddab5,_0x24cf15,0x0,0x0,_0x2425ae,_0x146eb4);const _0x3dd181=_0x45389f[_0x5a1ceb(0x24a)](_0x5a1ceb(0x232));return _0x45389f[_0x5a1ceb(0x1f8)](),_0x3dd181;}catch(_0xf75e9f){return '';}}[_0x3ffbbe(0x21e)](_0x394c1a){const _0x588583=_0x3ffbbe;if(!this[_0x588583(0x248)])return;this[_0x588583(0x248)][_0x588583(0x22e)]=_0x394c1a;}['setShadowMapEnabled'](_0x539a87){const _0x46e944=_0x3ffbbe;if(!this[_0x46e944(0x248)])return;this[_0x46e944(0x248)][_0x46e944(0x1fe)]['enabled']=_0x539a87;}[_0x3ffbbe(0x226)](_0x23c52c){const _0x4e02f5=_0x3ffbbe;if(!this['_renderer'])return;this['_renderer'][_0x4e02f5(0x1fe)]['type']=_0x23c52c;}[_0x3ffbbe(0x21a)](_0x4cd621){const _0x109144=_0x3ffbbe;if(!this[_0x109144(0x248)])return;this[_0x109144(0x248)][_0x109144(0x22a)]=_0x4cd621;}['setToneMappingExposure'](_0x589665){const _0x2904b7=_0x3ffbbe;if(!this[_0x2904b7(0x248)])return;this[_0x2904b7(0x248)][_0x2904b7(0x241)]=_0x589665;}[_0x3ffbbe(0x1ed)](_0x26b500){const _0x3e178e=_0x3ffbbe;if(!this[_0x3e178e(0x248)])return;this[_0x3e178e(0x248)][_0x3e178e(0x247)]=_0x26b500;}[_0x3ffbbe(0x24c)](_0x26469e){const _0x3e0047=_0x3ffbbe;if(!this[_0x3e0047(0x248)])return;this[_0x3e0047(0x248)][_0x3e0047(0x20c)]=_0x26469e;}['setStencil'](_0x4ab1a1){const _0x184bdd=_0x3ffbbe;if(!this[_0x184bdd(0x248)])return;this[_0x184bdd(0x248)][_0x184bdd(0x1fc)]=_0x4ab1a1;}[_0x3ffbbe(0x20f)](){const _0x75bbf5=_0x3ffbbe;this[_0x75bbf5(0x1ef)](),this[_0x75bbf5(0x204)][_0x75bbf5(0x239)](null),this['resizeObserver']&&(this['resizeObserver'][_0x75bbf5(0x230)](),this['resizeObserver']=null),this['labelRenderer']&&(this['labelRenderer'][_0x75bbf5(0x214)][_0x75bbf5(0x1f8)](),this[_0x75bbf5(0x1e6)]=null),this[_0x75bbf5(0x248)]&&(this['renderer'][_0x75bbf5(0x214)][_0x75bbf5(0x1f8)](),this['_renderer'][_0x75bbf5(0x211)](),this['_renderer']=null),this[_0x75bbf5(0x228)]&&(this['_canvasContainer'][_0x75bbf5(0x1f8)](),this[_0x75bbf5(0x228)]=null),this[_0x75bbf5(0x218)]=null,this[_0x75bbf5(0x206)]=null;}}
64
+ const _0x9beb78=_0x6187;(function(_0x58492f,_0x93214f){const _0x529ba6=_0x6187,_0x5ac403=_0x58492f();while(!![]){try{const _0x332335=parseInt(_0x529ba6(0x15c))/0x1*(parseInt(_0x529ba6(0x159))/0x2)+-parseInt(_0x529ba6(0x11e))/0x3*(parseInt(_0x529ba6(0x166))/0x4)+parseInt(_0x529ba6(0x179))/0x5+parseInt(_0x529ba6(0x12e))/0x6*(-parseInt(_0x529ba6(0x158))/0x7)+-parseInt(_0x529ba6(0x139))/0x8+parseInt(_0x529ba6(0x16e))/0x9*(-parseInt(_0x529ba6(0x14f))/0xa)+parseInt(_0x529ba6(0x177))/0xb;if(_0x332335===_0x93214f)break;else _0x5ac403['push'](_0x5ac403['shift']());}catch(_0x41f166){_0x5ac403['push'](_0x5ac403['shift']());}}}(_0x3807,0xc2b2c));class Viewport{get[_0x9beb78(0x11a)](){return this['_uiDom'];}get[_0x9beb78(0x119)](){return this['_canvasContainer'];}get[_0x9beb78(0x165)](){const _0x1b0a0=_0x9beb78;return this[_0x1b0a0(0x169)];}get['renderer'](){const _0x5ac0e2=_0x9beb78;if(!this[_0x5ac0e2(0x124)])throw Error(_0x5ac0e2(0x164));return this[_0x5ac0e2(0x124)];}get['app'](){const _0x25d690=_0x9beb78;if(!this['_app'])throw Error(_0x25d690(0x174));return this[_0x25d690(0x17b)];}constructor(_0x11793a,_0x3a58a6,_0x515ffb,_0xee692d){const _0x418a4f=_0x9beb78;this[_0x418a4f(0x15d)]=null,this[_0x418a4f(0x124)]=null,this['labelRenderer']=null,this[_0x418a4f(0x17b)]=null,this['resizeObserver']=null,this[_0x418a4f(0x169)]=null,this[_0x418a4f(0x11b)]=null,this[_0x418a4f(0x155)]=!![],this[_0x418a4f(0x14c)]=null,this['postProcessParam']=Object['assign']({},_0xee692d),this[_0x418a4f(0x17b)]=_0x11793a,_0x3a58a6['elementId']&&(this[_0x418a4f(0x169)]=document['getElementById'](_0x3a58a6[_0x418a4f(0x15e)])),this[_0x418a4f(0x178)](_0x515ffb),_0x3a58a6[_0x418a4f(0x157)]&&this[_0x418a4f(0x138)](),_0x3a58a6[_0x418a4f(0x149)]&&this[_0x418a4f(0x117)](),this[_0x418a4f(0x169)]&&(this[_0x418a4f(0x12a)]=new ResizeObserver(_0xd187f=>{const _0x1edad5=_0x418a4f;for(let _0x405720 of _0xd187f){_0x405720[_0x1edad5(0x145)]&&this['onWindowResize']();}}),this[_0x418a4f(0x12a)]['observe'](this[_0x418a4f(0x169)])),this[_0x418a4f(0x13e)][_0x418a4f(0x142)][_0x418a4f(0x14e)](()=>{const _0x33a378=_0x418a4f;this[_0x33a378(0x14c)]&&(this['postProcessManager'][_0x33a378(0x137)](this[_0x33a378(0x13e)][_0x33a378(0x125)]),this[_0x33a378(0x14c)][_0x33a378(0x13c)]());});}[_0x9beb78(0x178)](_0x55d997){const _0x80c6e8=_0x9beb78;this['_outerContainer']&&!this['_canvasContainer']&&(this['_canvasContainer']=document[_0x80c6e8(0x16b)](_0x80c6e8(0x135)),this['_canvasContainer']['style']['left']='0px',this[_0x80c6e8(0x11b)][_0x80c6e8(0x147)][_0x80c6e8(0x144)]=_0x80c6e8(0x136),this['_canvasContainer'][_0x80c6e8(0x147)][_0x80c6e8(0x172)]='100%',this[_0x80c6e8(0x11b)][_0x80c6e8(0x147)][_0x80c6e8(0x17a)]=_0x80c6e8(0x151),this['_outerContainer']['appendChild'](this['_canvasContainer']));const _0xa64250=this[_0x80c6e8(0x11b)];this[_0x80c6e8(0x124)]&&(_0xa64250&&_0xa64250[_0x80c6e8(0x13f)](this['_renderer']['domElement']),this[_0x80c6e8(0x124)]['dispose']());let _0x1c938f=_0xa64250?_0xa64250[_0x80c6e8(0x126)]:0x200,_0x3c7b4c=_0xa64250?_0xa64250[_0x80c6e8(0x128)]:0x200,_0x31e28c={};_0x31e28c[_0x80c6e8(0x168)]=_0x55d997[_0x80c6e8(0x168)],_0x31e28c[_0x80c6e8(0x152)]=_0x55d997[_0x80c6e8(0x152)],_0x31e28c[_0x80c6e8(0x161)]=_0x55d997['depth'],_0x31e28c['stencil']=_0x55d997[_0x80c6e8(0x16a)],_0x31e28c[_0x80c6e8(0x15a)]=_0x55d997['alpha'],_0x31e28c[_0x80c6e8(0x148)]=_0x55d997['logarithmicDepthBuffer'],_0x31e28c[_0x80c6e8(0x130)]=_0x55d997[_0x80c6e8(0x130)],_0x31e28c[_0x80c6e8(0x127)]=_0x55d997[_0x80c6e8(0x127)],this[_0x80c6e8(0x124)]=new webgpu.WebGPURenderer(_0x31e28c),this['_renderer'][_0x80c6e8(0x115)](window['devicePixelRatio']),this['_renderer'][_0x80c6e8(0x162)](_0x1c938f,_0x3c7b4c),this[_0x80c6e8(0x124)][_0x80c6e8(0x170)][_0x80c6e8(0x131)]=_0x55d997[_0x80c6e8(0x13a)],this[_0x80c6e8(0x124)][_0x80c6e8(0x170)][_0x80c6e8(0x114)]=_0x55d997[_0x80c6e8(0x14b)],this[_0x80c6e8(0x124)]['toneMapping']=_0x55d997[_0x80c6e8(0x12b)],this[_0x80c6e8(0x124)][_0x80c6e8(0x171)]=_0x55d997[_0x80c6e8(0x171)],this[_0x80c6e8(0x124)][_0x80c6e8(0x16f)](0x0),_0xa64250&&_0xa64250[_0x80c6e8(0x143)](this[_0x80c6e8(0x124)][_0x80c6e8(0x123)]);}[_0x9beb78(0x138)](){const _0x55c3e=_0x9beb78,_0x4b802b=this[_0x55c3e(0x169)];this[_0x55c3e(0x113)]&&(_0x4b802b&&_0x4b802b[_0x55c3e(0x13f)](this[_0x55c3e(0x113)][_0x55c3e(0x123)]));let _0x4c989a=_0x4b802b?_0x4b802b[_0x55c3e(0x126)]:0x200,_0x3bc6bc=_0x4b802b?_0x4b802b[_0x55c3e(0x128)]:0x200;this['labelRenderer']=new Addons_js.CSS2DRenderer(),this[_0x55c3e(0x113)][_0x55c3e(0x162)](_0x4c989a,_0x3bc6bc),this[_0x55c3e(0x113)][_0x55c3e(0x123)][_0x55c3e(0x147)][_0x55c3e(0x14d)]='none',this[_0x55c3e(0x113)][_0x55c3e(0x123)][_0x55c3e(0x147)][_0x55c3e(0x118)]=_0x55c3e(0x12d),this[_0x55c3e(0x113)][_0x55c3e(0x123)]['style'][_0x55c3e(0x144)]=_0x55c3e(0x136),this['labelRenderer'][_0x55c3e(0x123)][_0x55c3e(0x150)]=_0x55c3e(0x15f),_0x4b802b&&_0x4b802b[_0x55c3e(0x143)](this[_0x55c3e(0x113)][_0x55c3e(0x123)]);}[_0x9beb78(0x117)](){const _0x5760c1=_0x9beb78;if(!this[_0x5760c1(0x169)])return;let _0x4a9286=this[_0x5760c1(0x169)][_0x5760c1(0x13d)](_0x5760c1(0x112));!_0x4a9286&&(_0x4a9286=document[_0x5760c1(0x16b)](_0x5760c1(0x135)),_0x4a9286[_0x5760c1(0x150)]=_0x5760c1(0x163),_0x4a9286['id']='scene-uiLayer',_0x4a9286[_0x5760c1(0x147)][_0x5760c1(0x118)]=_0x5760c1(0x12d),_0x4a9286['style']['left']='0',_0x4a9286[_0x5760c1(0x147)][_0x5760c1(0x144)]='0',_0x4a9286['style'][_0x5760c1(0x172)]='100%',_0x4a9286[_0x5760c1(0x147)]['height']='100%',_0x4a9286[_0x5760c1(0x147)][_0x5760c1(0x14d)]=_0x5760c1(0x11d),_0x4a9286[_0x5760c1(0x147)][_0x5760c1(0x153)]='10',this['_outerContainer'][_0x5760c1(0x143)](_0x4a9286),this['_uiDom']=_0x4a9286);}['init'](){this['setupPostProcess']();}['setupPostProcess'](){const _0x9befa=_0x9beb78;!this[_0x9befa(0x14c)]&&(this[_0x9befa(0x14c)]=this['createPostProcessManager']()),this[_0x9befa(0x14c)][_0x9befa(0x13c)]();}[_0x9beb78(0x122)](){const _0x31e3c1=_0x9beb78;return new PostProcessManager(this['renderer'],this['app'][_0x31e3c1(0x141)][_0x31e3c1(0x176)],this[_0x31e3c1(0x13e)][_0x31e3c1(0x125)],this[_0x31e3c1(0x12c)],()=>this[_0x31e3c1(0x17c)]());}[_0x9beb78(0x12f)](_0x43b7a1){const _0x4b504d=_0x9beb78;this['postProcessManager']&&this[_0x4b504d(0x14c)][_0x4b504d(0x154)](_0x43b7a1);}[_0x9beb78(0x175)](_0xdba389){const _0x24305b=_0x9beb78;this[_0x24305b(0x178)](_0xdba389),this[_0x24305b(0x17c)]();}[_0x9beb78(0x167)](_0xcf9a6e){const _0x4f4aa7=_0x9beb78;this[_0x4f4aa7(0x14c)]&&this[_0x4f4aa7(0x14c)]['addOutlineObject'](_0xcf9a6e);}[_0x9beb78(0x173)](_0x49773d){const _0x2c5b46=_0x9beb78;this[_0x2c5b46(0x14c)]&&this[_0x2c5b46(0x14c)]['setOutlineObjects'](_0x49773d);}[_0x9beb78(0x116)](_0x527286){const _0x3109f4=_0x9beb78;this[_0x3109f4(0x14c)]&&this[_0x3109f4(0x14c)][_0x3109f4(0x116)](_0x527286);}[_0x9beb78(0x134)](){const _0x4ff4bd=_0x9beb78;this['postProcessManager']&&(this['postProcessManager'][_0x4ff4bd(0x129)](),this[_0x4ff4bd(0x14c)]=null);}[_0x9beb78(0x120)](){const _0x58a2fc=_0x9beb78;let _0x3282bc=this[_0x58a2fc(0x169)];if(!_0x3282bc)return;this[_0x58a2fc(0x13e)][_0x58a2fc(0x120)](_0x3282bc[_0x58a2fc(0x126)],_0x3282bc[_0x58a2fc(0x128)]),this[_0x58a2fc(0x156)][_0x58a2fc(0x162)](_0x3282bc[_0x58a2fc(0x126)],_0x3282bc[_0x58a2fc(0x128)]);if(this[_0x58a2fc(0x113)])this[_0x58a2fc(0x113)][_0x58a2fc(0x162)](_0x3282bc[_0x58a2fc(0x126)],_0x3282bc[_0x58a2fc(0x128)]);this[_0x58a2fc(0x17c)]();}[_0x9beb78(0x17c)](){const _0x488679=_0x9beb78;this[_0x488679(0x155)]=!![];}['render'](){const _0x5997ac=_0x9beb78;if(!this[_0x5997ac(0x155)])return;if(this[_0x5997ac(0x14c)]&&this[_0x5997ac(0x14c)][_0x5997ac(0x133)]());else this['renderer']['render'](this[_0x5997ac(0x13e)]['world'][_0x5997ac(0x176)],this[_0x5997ac(0x13e)][_0x5997ac(0x125)]);this[_0x5997ac(0x16c)](),this['labelRenderer']&&this['labelRenderer'][_0x5997ac(0x133)](this['app'][_0x5997ac(0x141)][_0x5997ac(0x176)],this['app'][_0x5997ac(0x125)]),this[_0x5997ac(0x155)]=![];}['onAfterPostProcessRender'](){}async[_0x9beb78(0x121)](_0x3556f9=0x400,_0x21f509=0x400){const _0x565463=_0x9beb78;try{if(this['postProcessManager']&&this[_0x565463(0x14c)][_0x565463(0x133)]()){}else await this[_0x565463(0x156)][_0x565463(0x133)](this[_0x565463(0x13e)]['world']['scene'],this[_0x565463(0x13e)]['camera']);const _0x1907de=this[_0x565463(0x156)][_0x565463(0x123)]['width'],_0x54ee9d=this['renderer'][_0x565463(0x123)][_0x565463(0x17a)];let _0x4527eb=_0x1907de||_0x3556f9,_0x268ae5=_0x54ee9d||_0x21f509;(_0x4527eb<=0x0||_0x268ae5<=0x0)&&(_0x4527eb=_0x3556f9,_0x268ae5=_0x21f509);const _0x407a32=document['createElement']('canvas');_0x407a32['width']=_0x3556f9,_0x407a32[_0x565463(0x17a)]=_0x21f509;const _0x1f1ce2=_0x407a32[_0x565463(0x132)]('2d');if(!_0x1f1ce2)throw Error(_0x565463(0x16d));_0x1f1ce2['drawImage'](this[_0x565463(0x156)][_0x565463(0x123)],0x0,0x0,_0x4527eb,_0x268ae5,0x0,0x0,_0x3556f9,_0x21f509);const _0x48ffff=_0x407a32[_0x565463(0x13b)]('image/jpeg');return _0x407a32[_0x565463(0x160)](),_0x48ffff;}catch(_0x5c5b88){return '';}}['setAlpha'](_0x2708d5){const _0xdcfa2f=_0x9beb78;if(!this[_0xdcfa2f(0x124)])return;this[_0xdcfa2f(0x124)][_0xdcfa2f(0x15a)]=_0x2708d5;}[_0x9beb78(0x146)](_0x224355){const _0x26417a=_0x9beb78;if(!this[_0x26417a(0x124)])return;this['_renderer'][_0x26417a(0x170)][_0x26417a(0x131)]=_0x224355;}['setShadowMapType'](_0x49c86b){const _0x1c8a46=_0x9beb78;if(!this[_0x1c8a46(0x124)])return;this[_0x1c8a46(0x124)][_0x1c8a46(0x170)][_0x1c8a46(0x114)]=_0x49c86b;}[_0x9beb78(0x15b)](_0x4efbca){const _0xa9518d=_0x9beb78;if(!this[_0xa9518d(0x124)])return;this[_0xa9518d(0x124)]['toneMapping']=_0x4efbca;}[_0x9beb78(0x11f)](_0x24a360){const _0x28fa81=_0x9beb78;if(!this[_0x28fa81(0x124)])return;this[_0x28fa81(0x124)][_0x28fa81(0x171)]=_0x24a360;}['setLogarithmicDepthBufferEnabled'](_0x449230){const _0x255dac=_0x9beb78;if(!this[_0x255dac(0x124)])return;this['_renderer'][_0x255dac(0x148)]=_0x449230;}[_0x9beb78(0x14a)](_0xf5fb84){const _0x464128=_0x9beb78;if(!this[_0x464128(0x124)])return;this[_0x464128(0x124)]['depth']=_0xf5fb84;}['setStencil'](_0x4354ec){const _0x160442=_0x9beb78;if(!this['_renderer'])return;this[_0x160442(0x124)][_0x160442(0x16a)]=_0x4354ec;}[_0x9beb78(0x129)](){const _0xe91356=_0x9beb78;this['destroyPostProcess'](),this[_0xe91356(0x156)][_0xe91356(0x17d)](null),this[_0xe91356(0x12a)]&&(this[_0xe91356(0x12a)][_0xe91356(0x11c)](),this[_0xe91356(0x12a)]=null),this[_0xe91356(0x113)]&&(this[_0xe91356(0x113)][_0xe91356(0x123)][_0xe91356(0x160)](),this['labelRenderer']=null),this[_0xe91356(0x124)]&&(this[_0xe91356(0x156)][_0xe91356(0x123)][_0xe91356(0x160)](),this[_0xe91356(0x124)][_0xe91356(0x140)](),this[_0xe91356(0x124)]=null),this[_0xe91356(0x11b)]&&(this[_0xe91356(0x11b)]['remove'](),this['_canvasContainer']=null),this[_0xe91356(0x169)]=null,this['_app']=null;}}function _0x6187(_0x3db035,_0x3e2951){_0x3db035=_0x3db035-0x112;const _0x3807de=_0x3807();let _0x618779=_0x3807de[_0x3db035];return _0x618779;}function _0x3807(){const _0x2b1687=['setSize','scene-uiLayer','Renderer\x20is\x20not\x20initialized','outer','4njXGru','addOutlineObject','forceWebGL','_outerContainer','stencil','createElement','onAfterPostProcessRender','Can\x20not\x20create\x20context','99NbLJcf','setClearAlpha','shadowMap','toneMappingExposure','width','setOutlineObjects','App\x20is\x20not\x20initialized','updateRendererSettings','scene','29233105WfihKr','createRenderer','924975gLIOyq','height','_app','markRenderStateDirty','setAnimationLoop','.scene-uiLayer','labelRenderer','type','setPixelRatio','removeOutlineObject','createUILayer','position','canvas','uiDom','_canvasContainer','disconnect','none','4766304xEjRrw','setToneMappingExposure','onWindowResize','renderAsImage','createPostProcessManager','domElement','_renderer','camera','clientWidth','outputBufferType','clientHeight','destroy','resizeObserver','toneMapping','postProcessParam','absolute','7746AGOyZf','updatePostProcess','samples','enabled','getContext','render','destroyPostProcess','div','0px','updateCamera','createLabelRenderer','5798152ypyFCl','shadowMapEnabled','toDataURL','setup','querySelector','app','removeChild','dispose','world','onCameraChangedDelegate','appendChild','top','contentBoxSize','setShadowMapEnabled','style','logarithmicDepthBuffer','isUILayerNeeded','setDepth','shadowMapType','postProcessManager','pointerEvents','add','295790TKCTiE','className','100%','antialias','zIndex','updateSteps','isRenderStateDirty','renderer','isLabelRendererNeeded','861BboQnl','158vLlovC','alpha','setToneMapping','9527ZjPzgs','_uiDom','elementId','scene-labelRenderer','remove','depth'];_0x3807=function(){return _0x2b1687;};return _0x3807();}
64
65
 
65
- var _0x2eaf23=_0x3e1a;(function(_0xa64625,_0x4a27dd){var _0x138e9b=_0x3e1a,_0x4abbc5=_0xa64625();while(!![]){try{var _0x4f4198=parseInt(_0x138e9b(0x123))/0x1+parseInt(_0x138e9b(0x11a))/0x2*(-parseInt(_0x138e9b(0x129))/0x3)+parseInt(_0x138e9b(0x122))/0x4+parseInt(_0x138e9b(0x125))/0x5*(parseInt(_0x138e9b(0x124))/0x6)+parseInt(_0x138e9b(0x113))/0x7+parseInt(_0x138e9b(0x11b))/0x8*(parseInt(_0x138e9b(0x126))/0x9)+parseInt(_0x138e9b(0x121))/0xa*(-parseInt(_0x138e9b(0x128))/0xb);if(_0x4f4198===_0x4a27dd)break;else _0x4abbc5['push'](_0x4abbc5['shift']());}catch(_0x58157e){_0x4abbc5['push'](_0x4abbc5['shift']());}}}(_0x1c2e,0x239a4));function _0x1c2e(){var _0x3bc926=['camera','getFocuingData','unpossess','destroy','73298aBnfAh','32440hlguMg','isTickEnabled','stopFocusing','_control','tick','control','10hZWENr','711476bWEoph','201915HlzgTr','244128EpsWSZ','35AYqUlA','270sEjkNk','Control\x20not\x20initialized','4589024qtLrdY','21kETZeL','233135HtPTbD','possess','enabled'];_0x1c2e=function(){return _0x3bc926;};return _0x1c2e();}function _0x3e1a(_0xa6b853,_0x2e626c){_0xa6b853=_0xa6b853-0x113;var _0x1c2eeb=_0x1c2e();var _0x3e1a18=_0x1c2eeb[_0xa6b853];return _0x3e1a18;}class Pawn{get[_0x2eaf23(0x116)](){var _0x14f750=_0x2eaf23;return this['controller'][_0x14f750(0x116)];}set[_0x2eaf23(0x115)](_0x27739b){var _0x3d183f=_0x2eaf23;this['control'][_0x3d183f(0x115)]=_0x27739b;}get[_0x2eaf23(0x120)](){var _0x239c36=_0x2eaf23;if(!this['_control'])throw new Error(_0x239c36(0x127));return this[_0x239c36(0x11e)];}constructor(_0x253fc4){var _0x5593a5=_0x2eaf23;this[_0x5593a5(0x11e)]=null,this[_0x5593a5(0x11c)]=![],this['controller']=_0x253fc4;}[_0x2eaf23(0x11f)](_0x58810a){return;}[_0x2eaf23(0x114)](){}[_0x2eaf23(0x118)](){}['focusTo'](_0x5123ac,_0x144df6,_0x2ecc04,_0x10cf9c,_0x101c25=null,_0x4b7a9c=null){}[_0x2eaf23(0x11d)](){}[_0x2eaf23(0x117)](){return null;}[_0x2eaf23(0x119)](){}}
66
+ var _0x565fd1=_0x23a8;(function(_0x2ab9e6,_0x12cc2e){var _0x35698b=_0x23a8,_0x3e730f=_0x2ab9e6();while(!![]){try{var _0x3d0f85=parseInt(_0x35698b(0x139))/0x1*(-parseInt(_0x35698b(0x149))/0x2)+-parseInt(_0x35698b(0x13e))/0x3*(-parseInt(_0x35698b(0x13c))/0x4)+parseInt(_0x35698b(0x148))/0x5+-parseInt(_0x35698b(0x142))/0x6*(parseInt(_0x35698b(0x150))/0x7)+parseInt(_0x35698b(0x147))/0x8*(parseInt(_0x35698b(0x13f))/0x9)+parseInt(_0x35698b(0x14e))/0xa*(parseInt(_0x35698b(0x14f))/0xb)+parseInt(_0x35698b(0x144))/0xc;if(_0x3d0f85===_0x12cc2e)break;else _0x3e730f['push'](_0x3e730f['shift']());}catch(_0x3a3d8f){_0x3e730f['push'](_0x3e730f['shift']());}}}(_0x5eff,0x67196));function _0x23a8(_0x2d305a,_0x2d88f3){_0x2d305a=_0x2d305a-0x137;var _0x5efff5=_0x5eff();var _0x23a876=_0x5efff5[_0x2d305a];return _0x23a876;}class Pawn{get[_0x565fd1(0x146)](){var _0x1c28b4=_0x565fd1;return this['controller'][_0x1c28b4(0x146)];}set[_0x565fd1(0x14d)](_0x67dc9f){var _0x3bc250=_0x565fd1;this[_0x3bc250(0x14a)]['enabled']=_0x67dc9f;}get[_0x565fd1(0x14a)](){var _0x1b502c=_0x565fd1;if(!this[_0x1b502c(0x137)])throw new Error(_0x1b502c(0x140));return this['_control'];}constructor(_0x29cfec){var _0x1a9a47=_0x565fd1;this[_0x1a9a47(0x137)]=null,this[_0x1a9a47(0x13a)]=![],this[_0x1a9a47(0x138)]=_0x29cfec;}[_0x565fd1(0x13d)](_0xc72f88){return;}[_0x565fd1(0x14b)](){}[_0x565fd1(0x13b)](){}[_0x565fd1(0x145)](_0x202923,_0x19a251,_0x30cd91,_0x1e4e59,_0x309b7b=null,_0x230e44=null){}[_0x565fd1(0x143)](){}[_0x565fd1(0x14c)](){return null;}[_0x565fd1(0x141)](){}}function _0x5eff(){var _0x3e2fcc=['_control','controller','265741LScAwN','isTickEnabled','unpossess','108tgYEZn','tick','75354ukEwKO','13572FOZZVP','Control\x20not\x20initialized','destroy','6fAJZJq','stopFocusing','4027788dreWvz','focusTo','camera','1336kWRUkd','812385MnPGHp','6OufUTa','control','possess','getFocuingData','enabled','893730vExBQK','77MhGqIF','5839694aveBsA'];_0x5eff=function(){return _0x3e2fcc;};return _0x5eff();}
66
67
 
67
- function _0x7bef(_0x4069c1,_0x26f253){_0x4069c1=_0x4069c1-0xd3;const _0x5e3fd6=_0x5e3f();let _0x7bef01=_0x5e3fd6[_0x4069c1];return _0x7bef01;}const _0x4f420f=_0x7bef;(function(_0x20e154,_0x4446d9){const _0x1345d4=_0x7bef,_0x5c9ca5=_0x20e154();while(!![]){try{const _0x131d54=parseInt(_0x1345d4(0xec))/0x1+-parseInt(_0x1345d4(0xe6))/0x2+parseInt(_0x1345d4(0xeb))/0x3+-parseInt(_0x1345d4(0xee))/0x4+parseInt(_0x1345d4(0xd6))/0x5*(-parseInt(_0x1345d4(0xd7))/0x6)+-parseInt(_0x1345d4(0xdf))/0x7+-parseInt(_0x1345d4(0xf1))/0x8*(-parseInt(_0x1345d4(0xd8))/0x9);if(_0x131d54===_0x4446d9)break;else _0x5c9ca5['push'](_0x5c9ca5['shift']());}catch(_0x179081){_0x5c9ca5['push'](_0x5c9ca5['shift']());}}}(_0x5e3f,0x7a6c1));function _0x5e3f(){const _0x573628=['1961393YpnElU','anim','applyQuaternion','object','control','getFocuingData','addEventListener','346138GNhXaC','set','update','stopFocusing','_control','87498AuVksz','860125EzvtYN','length','1579828SeVvIm','subVectors','copy','488jvsvdX','target','viewPort','controller','isEuler','normalize','clone','possess','change','kill','alpha','setFromEuler','canvas','markRenderStateDirty','1149810eIhOqR','6hJQedl','101853tDnKqn','camera','onChange','position','changeEvent','unpossess','multiplyScalar'];_0x5e3f=function(){return _0x573628;};return _0x5e3f();}class Orbital extends Pawn{get['control'](){const _0x1b3b21=_0x7bef;if(!this[_0x1b3b21(0xea)])throw new Error('Control\x20not\x20initialized');return this['_control'];}get['camera'](){const _0x2ae3e0=_0x7bef;return this[_0x2ae3e0(0xf4)]['camera'];}constructor(_0x25881f){const _0x4d7abf=_0x7bef;super(_0x25881f),this[_0x4d7abf(0xe0)]=null,this['changeEvent']=()=>{const _0x1a3e89=_0x4d7abf;this[_0x1a3e89(0xda)]();},this['_control']=new Addons_js.OrbitControls(_0x25881f[_0x4d7abf(0xd9)],_0x25881f[_0x4d7abf(0xf3)][_0x4d7abf(0xd4)]),this[_0x4d7abf(0xe3)][_0x4d7abf(0xf2)]['set'](0x0,0x0,0x0),_0x25881f['camera'][_0x4d7abf(0xdb)][_0x4d7abf(0xe7)](0x0,0x4,0x4),this['control'][_0x4d7abf(0xe8)]();}[_0x4f420f(0xf8)](){const _0x3e373b=_0x4f420f;super[_0x3e373b(0xf8)](),this[_0x3e373b(0xe3)][_0x3e373b(0xe5)](_0x3e373b(0xf9),this[_0x3e373b(0xdc)]);}[_0x4f420f(0xdd)](){const _0x265b7a=_0x4f420f;super[_0x265b7a(0xdd)](),this[_0x265b7a(0xe3)]['removeEventListener'](_0x265b7a(0xf9),this[_0x265b7a(0xdc)]);}[_0x4f420f(0xda)](){const _0x5d2ca4=_0x4f420f;this[_0x5d2ca4(0xf4)][_0x5d2ca4(0xf3)][_0x5d2ca4(0xd5)]();}['focusTo'](_0x1627c4,_0x30d044,_0x396a29,_0xecc2ae,_0x58f2cf=null,_0x4f8eed=null){const _0x4748fe=_0x4f420f;this[_0x4748fe(0xe9)]();let _0x292623=null;(_0x30d044===null||_0x30d044===void 0?void 0:_0x30d044[_0x4748fe(0xf5)])?_0x292623=new webgpu.Quaternion()[_0x4748fe(0xd3)](_0x30d044):_0x292623=_0x30d044;!_0x30d044&&(_0x292623=this['controller'][_0x4748fe(0xd9)]['quaternion']);_0x292623['normalize']();let _0x9b4ccb=new webgpu.Vector3(0x0,0x0,0x1);_0x9b4ccb[_0x4748fe(0xe1)](_0x292623)[_0x4748fe(0xde)](-1),_0x9b4ccb[_0x4748fe(0xf6)]();let _0x5bba01=this[_0x4748fe(0xd9)][_0x4748fe(0xdb)][_0x4748fe(0xf7)](),_0x3bda87=new webgpu.Vector3(_0x1627c4['x']+_0x9b4ccb['x']*_0x396a29*-1,_0x1627c4['y']+_0x9b4ccb['y']*_0x396a29*-1,_0x1627c4['z']+_0x9b4ccb['z']*_0x396a29*-1),_0x1ca0ce=new webgpu.Vector3()[_0x4748fe(0xef)](_0x3bda87,_0x5bba01),_0x33eb62=_0x1ca0ce[_0x4748fe(0xed)]();_0x1ca0ce[_0x4748fe(0xf6)]();let _0x2b5040=this[_0x4748fe(0xe3)][_0x4748fe(0xf2)][_0x4748fe(0xf7)](),_0x37c207=new webgpu.Vector3()['subVectors'](_0x1627c4,_0x2b5040),_0x53e976=_0x37c207[_0x4748fe(0xed)]();_0x37c207[_0x4748fe(0xf6)]();if(_0x33eb62+_0x53e976<0.1)return;const _0x53fdcc=this;let _0x28ae10={'alpha':0x0};this[_0x4748fe(0xe0)]=gsap.gsap['to'](_0x28ae10,{'duration':_0xecc2ae,'alpha':0x1,'onUpdate':()=>{const _0x4264c8=_0x4748fe;let _0x3aeb71=_0x28ae10[_0x4264c8(0xfb)],_0x3b6555=new webgpu.Vector3(_0x5bba01['x']+_0x1ca0ce['x']*_0x3aeb71*_0x33eb62,_0x5bba01['y']+_0x1ca0ce['y']*_0x3aeb71*_0x33eb62,_0x5bba01['z']+_0x1ca0ce['z']*_0x3aeb71*_0x33eb62),_0x3fccdf=new webgpu.Vector3(_0x2b5040['x']+_0x37c207['x']*_0x3aeb71*_0x53e976,_0x2b5040['y']+_0x37c207['y']*_0x3aeb71*_0x53e976,_0x2b5040['z']+_0x37c207['z']*_0x3aeb71*_0x53e976);_0x53fdcc[_0x4264c8(0xe3)][_0x4264c8(0xe2)]['position'][_0x4264c8(0xf0)](_0x3b6555),_0x53fdcc[_0x4264c8(0xe3)][_0x4264c8(0xf2)][_0x4264c8(0xf0)](_0x3fccdf),_0x53fdcc[_0x4264c8(0xe3)][_0x4264c8(0xe8)]();_0x58f2cf&&_0x58f2cf();if(_0x53fdcc['controller'][_0x4264c8(0xf3)])_0x53fdcc['controller'][_0x4264c8(0xf3)][_0x4264c8(0xd5)]();},'onComplete':function(){const _0x5a7e6c=_0x4748fe;_0x4f8eed&&_0x4f8eed();if(_0x53fdcc[_0x5a7e6c(0xf4)][_0x5a7e6c(0xf3)])_0x53fdcc[_0x5a7e6c(0xf4)][_0x5a7e6c(0xf3)][_0x5a7e6c(0xd5)]();}});}[_0x4f420f(0xe4)](){const _0x5b1cfa=_0x4f420f;if(!this['control']||!this['camera'])return null;const _0x38205a=this[_0x5b1cfa(0xd9)]['position']['clone'](),_0x4aebec=this[_0x5b1cfa(0xd9)]['quaternion'][_0x5b1cfa(0xf7)](),_0x5c0588=this[_0x5b1cfa(0xe3)][_0x5b1cfa(0xf2)][_0x5b1cfa(0xf7)](),_0x9c5ffd=_0x38205a['distanceTo'](_0x5c0588);return {'position':_0x5c0588,'quaternion':_0x4aebec,'distance':_0x9c5ffd};}[_0x4f420f(0xe9)](){const _0x2a0516=_0x4f420f;this[_0x2a0516(0xe0)]&&this[_0x2a0516(0xe0)][_0x2a0516(0xfa)](),this[_0x2a0516(0xe0)]=null;}}
68
+ const _0x52617a=_0x55b3;(function(_0x10476a,_0x363c56){const _0x1785d4=_0x55b3,_0x3e26e0=_0x10476a();while(!![]){try{const _0x5c0f69=parseInt(_0x1785d4(0x1f7))/0x1*(parseInt(_0x1785d4(0x215))/0x2)+parseInt(_0x1785d4(0x202))/0x3*(parseInt(_0x1785d4(0x1fe))/0x4)+parseInt(_0x1785d4(0x1f6))/0x5+parseInt(_0x1785d4(0x213))/0x6+parseInt(_0x1785d4(0x209))/0x7+-parseInt(_0x1785d4(0x1ee))/0x8+parseInt(_0x1785d4(0x207))/0x9*(-parseInt(_0x1785d4(0x20e))/0xa);if(_0x5c0f69===_0x363c56)break;else _0x3e26e0['push'](_0x3e26e0['shift']());}catch(_0x1dc5e8){_0x3e26e0['push'](_0x3e26e0['shift']());}}}(_0x16a9,0x82b8c));function _0x55b3(_0x1f0feb,_0x1c90b3){_0x1f0feb=_0x1f0feb-0x1ed;const _0x16a991=_0x16a9();let _0x55b34e=_0x16a991[_0x1f0feb];return _0x55b34e;}function _0x16a9(){const _0x2abef2=['clone','1668368bcNRTP','possess','subVectors','markRenderStateDirty','onChange','stopFocusing','multiplyScalar','unpossess','730555BXTwsU','19zFcuty','copy','kill','distanceTo','viewPort','Control\x20not\x20initialized','normalize','1119764pEYdbw','applyQuaternion','set','addEventListener','9BOpUvl','quaternion','control','target','removeEventListener','9mDFhkI','length','462707ibtpmr','camera','isEuler','changeEvent','_control','5920570tuXtaH','anim','controller','canvas','position','145302OoGkyF','change','27346NSNZqL'];_0x16a9=function(){return _0x2abef2;};return _0x16a9();}class Orbital extends Pawn{get[_0x52617a(0x204)](){const _0x2a241c=_0x52617a;if(!this[_0x2a241c(0x20d)])throw new Error(_0x2a241c(0x1fc));return this[_0x2a241c(0x20d)];}get[_0x52617a(0x20a)](){const _0xf8f306=_0x52617a;return this[_0xf8f306(0x210)]['camera'];}constructor(_0xcb29eb){const _0x4b4fac=_0x52617a;super(_0xcb29eb),this[_0x4b4fac(0x20f)]=null,this['changeEvent']=()=>{const _0xd70f8f=_0x4b4fac;this[_0xd70f8f(0x1f2)]();},this[_0x4b4fac(0x20d)]=new Addons_js.OrbitControls(_0xcb29eb['camera'],_0xcb29eb[_0x4b4fac(0x1fb)][_0x4b4fac(0x211)]),this['control'][_0x4b4fac(0x205)][_0x4b4fac(0x200)](0x0,0x0,0x0),_0xcb29eb[_0x4b4fac(0x20a)]['position'][_0x4b4fac(0x200)](0x0,0x4,0x4),this[_0x4b4fac(0x204)]['update']();}['possess'](){const _0x410981=_0x52617a;super[_0x410981(0x1ef)](),this[_0x410981(0x204)][_0x410981(0x201)](_0x410981(0x214),this[_0x410981(0x20c)]);}[_0x52617a(0x1f5)](){const _0x38d6df=_0x52617a;super[_0x38d6df(0x1f5)](),this[_0x38d6df(0x204)][_0x38d6df(0x206)](_0x38d6df(0x214),this[_0x38d6df(0x20c)]);}[_0x52617a(0x1f2)](){const _0x51dbd1=_0x52617a;this[_0x51dbd1(0x210)][_0x51dbd1(0x1fb)][_0x51dbd1(0x1f1)]();}['focusTo'](_0x2bbbc3,_0x444d9a,_0x4364fe,_0xf95047,_0x5c8e9b=null,_0x4b85b1=null){const _0x113960=_0x52617a;this[_0x113960(0x1f3)]();let _0x17d490=null;(_0x444d9a===null||_0x444d9a===void 0?void 0:_0x444d9a[_0x113960(0x20b)])?_0x17d490=new webgpu.Quaternion()['setFromEuler'](_0x444d9a):_0x17d490=_0x444d9a;!_0x444d9a&&(_0x17d490=this[_0x113960(0x210)][_0x113960(0x20a)][_0x113960(0x203)]);_0x17d490[_0x113960(0x1fd)]();let _0x4c4878=new webgpu.Vector3(0x0,0x0,0x1);_0x4c4878[_0x113960(0x1ff)](_0x17d490)[_0x113960(0x1f4)](-1),_0x4c4878[_0x113960(0x1fd)]();let _0x159e43=this['camera'][_0x113960(0x212)][_0x113960(0x1ed)](),_0x379c49=new webgpu.Vector3(_0x2bbbc3['x']+_0x4c4878['x']*_0x4364fe*-1,_0x2bbbc3['y']+_0x4c4878['y']*_0x4364fe*-1,_0x2bbbc3['z']+_0x4c4878['z']*_0x4364fe*-1),_0x239929=new webgpu.Vector3()[_0x113960(0x1f0)](_0x379c49,_0x159e43),_0x496830=_0x239929['length']();_0x239929[_0x113960(0x1fd)]();let _0x3ee9a2=this[_0x113960(0x204)][_0x113960(0x205)][_0x113960(0x1ed)](),_0x322446=new webgpu.Vector3()['subVectors'](_0x2bbbc3,_0x3ee9a2),_0x480f07=_0x322446[_0x113960(0x208)]();_0x322446[_0x113960(0x1fd)]();if(_0x496830+_0x480f07<0.1)return;const _0x3a0e16=this;let _0x461479={'alpha':0x0};this[_0x113960(0x20f)]=gsap.gsap['to'](_0x461479,{'duration':_0xf95047,'alpha':0x1,'onUpdate':()=>{const _0x5e1fa8=_0x113960;let _0x1adfae=_0x461479['alpha'],_0x5a3699=new webgpu.Vector3(_0x159e43['x']+_0x239929['x']*_0x1adfae*_0x496830,_0x159e43['y']+_0x239929['y']*_0x1adfae*_0x496830,_0x159e43['z']+_0x239929['z']*_0x1adfae*_0x496830),_0x103b4d=new webgpu.Vector3(_0x3ee9a2['x']+_0x322446['x']*_0x1adfae*_0x480f07,_0x3ee9a2['y']+_0x322446['y']*_0x1adfae*_0x480f07,_0x3ee9a2['z']+_0x322446['z']*_0x1adfae*_0x480f07);_0x3a0e16[_0x5e1fa8(0x204)]['object'][_0x5e1fa8(0x212)][_0x5e1fa8(0x1f8)](_0x5a3699),_0x3a0e16[_0x5e1fa8(0x204)][_0x5e1fa8(0x205)][_0x5e1fa8(0x1f8)](_0x103b4d),_0x3a0e16['control']['update']();_0x5c8e9b&&_0x5c8e9b();if(_0x3a0e16['controller'][_0x5e1fa8(0x1fb)])_0x3a0e16['controller'][_0x5e1fa8(0x1fb)][_0x5e1fa8(0x1f1)]();},'onComplete':function(){const _0x53dea8=_0x113960;_0x4b85b1&&_0x4b85b1();if(_0x3a0e16[_0x53dea8(0x210)][_0x53dea8(0x1fb)])_0x3a0e16[_0x53dea8(0x210)]['viewPort'][_0x53dea8(0x1f1)]();}});}['getFocuingData'](){const _0x57d89c=_0x52617a;if(!this['control']||!this[_0x57d89c(0x20a)])return null;const _0x385981=this['camera'][_0x57d89c(0x212)][_0x57d89c(0x1ed)](),_0x4a9f45=this[_0x57d89c(0x20a)][_0x57d89c(0x203)][_0x57d89c(0x1ed)](),_0x34a0fc=this[_0x57d89c(0x204)]['target'][_0x57d89c(0x1ed)](),_0x7fd03=_0x385981[_0x57d89c(0x1fa)](_0x34a0fc);return {'position':_0x34a0fc,'quaternion':_0x4a9f45,'distance':_0x7fd03};}[_0x52617a(0x1f3)](){const _0x219bc4=_0x52617a;this['anim']&&this[_0x219bc4(0x20f)][_0x219bc4(0x1f9)](),this['anim']=null;}}
68
69
 
69
- function _0x3efb(_0x17ea0a,_0x3345a0){_0x17ea0a=_0x17ea0a-0x151;const _0x1ac6fb=_0x1ac6();let _0x3efbad=_0x1ac6fb[_0x17ea0a];return _0x3efbad;}const _0x29ba1e=_0x3efb;(function(_0x5e3d91,_0x296715){const _0x4b194d=_0x3efb,_0x32989c=_0x5e3d91();while(!![]){try{const _0x3b77e9=-parseInt(_0x4b194d(0x1ae))/0x1*(-parseInt(_0x4b194d(0x15b))/0x2)+-parseInt(_0x4b194d(0x1b6))/0x3+-parseInt(_0x4b194d(0x16c))/0x4+parseInt(_0x4b194d(0x199))/0x5+-parseInt(_0x4b194d(0x152))/0x6+-parseInt(_0x4b194d(0x17e))/0x7+-parseInt(_0x4b194d(0x1a6))/0x8*(-parseInt(_0x4b194d(0x1cd))/0x9);if(_0x3b77e9===_0x296715)break;else _0x32989c['push'](_0x32989c['shift']());}catch(_0x75d651){_0x32989c['push'](_0x32989c['shift']());}}}(_0x1ac6,0x49071));function _0x1ac6(){const _0x45292a=['app','viewport','1585380ObJrJi','onPointerEnterEvent','_onComponentHoverEndDelegate','clearTimeout','_pointButtonIsDown','object','getHitResultFromScreenPoint','_onComponentDoubleClickDelegate','setTimeout','onComponentHoverBeginDelegate','updateCamera','_raycastVec2','handleDoubleClick','8LUrRmk','pawn\x20is\x20null','prepareClickComponent','onActorHoverEnd','pointerleave','fireActorClick','_onActorHoverEndDelegate','onPointerDown','115iNbTMP','pawn','addCorePointerListeners','handled','removeCorePointerListeners','onPointerMove','onPointerLeaveEvent','left','1335816ZGiIoY','unpossess','pointerup','fireClickEvents','pointerenter','onClicked','canvas\x20is\x20null','size','doubleClickDelay','_tempVec2','top','onActorClick','raycaster','init','setFromCamera','subVectors','_onClickNothingDelegate','leftClickTimer','onComponentClickDelegate','onPointerUpEvent','getHitResultUnderCursor','pointerPosition','tick','3295395KgwXXr','focusTo','onActorHoverEndDelegate','ctrlKey','push','74340lcjrpA','set','canvas','hoveringComponent','onActorDoubleClickDelegate','_onActorClickDelegate','destroy','onActorClickDelegate','possess','10370Vewgic','hoveringActor','prepareClickHit','length','intersectObjects','_onComponentPointerDownDelegate','getBoundingClientRect','removeEventListener','clientWidth','addEventListener','_app','userData','enabled','assign','onHorveringEnd','onActorDoubleClick','onPointerEnter','295740EsTtyw','camera','shiftKey','component','getAllHitResultFromScreenPoint','_onActorHoverBeginDelegate','onPointerUp','_pawn','_onActorDoubleClickDelegate','handleFirstClick','children','clearHovering','fireComponentClick','isClickEnabled','clientHeight','scene','world','broadcast','3141516mzZzCd','viewPort','isHoverEnabled','pointermove','pointerdown','prepareClickModifiers','copy','onComponentPointerDownDelegate','hit','clientY','onClickNothingDelegate','button','parentActor','rayIgnored','_onComponentClickDelegate','onPointerDownEvent','clientX','firePointerDownEvent','onComponentDoubleClickDelegate','clearClickTimer','onPointerLeave','fireActorHoverEnd','fireActorHoverBegin','fireComponentHoverEnd','add'];_0x1ac6=function(){return _0x45292a;};return _0x1ac6();}class Controller{get['camera'](){return this['_app']['camera'];}get[_0x29ba1e(0x17c)](){const _0x390289=_0x29ba1e;return this['_app'][_0x390289(0x17c)];}get[_0x29ba1e(0x17f)](){const _0x317966=_0x29ba1e;return this['_app'][_0x317966(0x198)];}get[_0x29ba1e(0x197)](){return this['_app'];}get[_0x29ba1e(0x1af)](){const _0x229c77=_0x29ba1e;if(!this[_0x229c77(0x173)])throw Error(_0x229c77(0x1a7));return this['_pawn'];}get[_0x29ba1e(0x1c8)](){const _0x3c6b02=_0x29ba1e;return this[_0x3c6b02(0x18c)];}get[_0x29ba1e(0x190)](){const _0xd59b93=_0x29ba1e;return this[_0xd59b93(0x1a0)];}get[_0x29ba1e(0x1a2)](){return this['_onComponentHoverBeginDelegate'];}get['onComponentHoverEndDelegate'](){return this['_onComponentHoverEndDelegate'];}get[_0x29ba1e(0x185)](){const _0x41d32a=_0x29ba1e;return this[_0x41d32a(0x160)];}get[_0x29ba1e(0x159)](){const _0x1c56a6=_0x29ba1e;return this[_0x1c56a6(0x157)];}get[_0x29ba1e(0x156)](){return this['_onActorDoubleClickDelegate'];}get['onActorHoverBeginDelegate'](){const _0x5e8058=_0x29ba1e;return this[_0x5e8058(0x171)];}get[_0x29ba1e(0x1cf)](){return this['_onActorHoverEndDelegate'];}get[_0x29ba1e(0x188)](){return this['_onClickNothingDelegate'];}constructor(_0x1f5a92){const _0xa20c96=_0x29ba1e;this[_0xa20c96(0x173)]=null,this[_0xa20c96(0x155)]=null,this['hoveringActor']=null,this[_0xa20c96(0x1a8)]=null,this[_0xa20c96(0x15d)]=null,this['prepareClickModifiers']={'ctrlKey':![],'shiftKey':![],'altKey':![]},this[_0xa20c96(0x19d)]=new Set(),this[_0xa20c96(0x18c)]=new Delegate(),this[_0xa20c96(0x1a0)]=new Delegate(),this['_onComponentHoverBeginDelegate']=new Delegate(),this[_0xa20c96(0x19b)]=new Delegate(),this['_onComponentPointerDownDelegate']=new Delegate(),this[_0xa20c96(0x157)]=new Delegate(),this['_onActorDoubleClickDelegate']=new Delegate(),this[_0xa20c96(0x171)]=new Delegate(),this['_onActorHoverEndDelegate']=new Delegate(),this[_0xa20c96(0x1c6)]=new Delegate(),this[_0xa20c96(0x1cb)]=new webgpu.Vector2(),this['pointerLeftDownPosition']=new webgpu.Vector2(),this[_0xa20c96(0x1bf)]=new webgpu.Vector2(),this[_0xa20c96(0x1a4)]=new webgpu.Vector2(),this[_0xa20c96(0x1be)]=0xfa,this[_0xa20c96(0x1c7)]=null,this['onPointerMove']=_0x32afaa=>this['onPointerMoveEvent'](_0x32afaa),this[_0xa20c96(0x16b)]=_0x3cf543=>this[_0xa20c96(0x19a)](_0x3cf543),this[_0xa20c96(0x192)]=_0x1310a0=>this[_0xa20c96(0x1b4)](_0x1310a0),this['onPointerUp']=_0x12b8fe=>this['onPointerUpEvent'](_0x12b8fe),this['onPointerDown']=_0x5b88ec=>this[_0xa20c96(0x18d)](_0x5b88ec),this[_0xa20c96(0x165)]=_0x1f5a92,this[_0xa20c96(0x173)]=new Orbital(this),this['pawn'][_0xa20c96(0x15a)](),this[_0xa20c96(0x1c2)]=new webgpu.Raycaster();}[_0x29ba1e(0x1c3)](){const _0x950c84=_0x29ba1e,_0x24a132=this[_0x950c84(0x17f)][_0x950c84(0x154)];_0x24a132&&(_0x24a132[_0x950c84(0x164)](_0x950c84(0x1ba),this['onPointerEnter']),_0x24a132[_0x950c84(0x164)](_0x950c84(0x1aa),this[_0x950c84(0x192)]),this[_0x950c84(0x1b0)]());}[_0x29ba1e(0x1a3)](){const _0x11134a=_0x29ba1e;var _0xf6dec4,_0x2b7cfa;const _0xa3186d=this[_0x11134a(0x1af)][_0x11134a(0x167)];(_0xf6dec4=this['_pawn'])===null||_0xf6dec4===void 0?void 0:_0xf6dec4[_0x11134a(0x1b7)](),(_0x2b7cfa=this['_pawn'])===null||_0x2b7cfa===void 0?void 0:_0x2b7cfa['destroy'](),this[_0x11134a(0x173)]=new Orbital(this),this[_0x11134a(0x1af)]['possess'](),this[_0x11134a(0x1af)][_0x11134a(0x167)]=_0xa3186d;}[_0x29ba1e(0x1cc)](_0x47b466){const _0xb4f0c6=_0x29ba1e;this[_0xb4f0c6(0x1af)][_0xb4f0c6(0x1cc)](_0x47b466);}[_0x29ba1e(0x158)](){const _0x2f2528=_0x29ba1e;this[_0x2f2528(0x191)](),this['clearHovering']();const _0x21cc42=this['viewPort']['canvas'];_0x21cc42&&(_0x21cc42[_0x2f2528(0x162)](_0x2f2528(0x1ba),this['onPointerEnter']),_0x21cc42[_0x2f2528(0x162)](_0x2f2528(0x1aa),this['onPointerLeave']),this[_0x2f2528(0x1b2)]()),this[_0x2f2528(0x1af)]['unpossess'](),this[_0x2f2528(0x1af)][_0x2f2528(0x158)](),this[_0x2f2528(0x173)]=null;}['onPointerMoveEvent'](_0x15fbf6){const _0x35da6d=_0x29ba1e;var _0x288609,_0x319fcf;const _0x38d8e9=this[_0x35da6d(0x17f)]['canvas'];if(!_0x38d8e9)throw Error(_0x35da6d(0x1bc));const _0x7534d1=_0x38d8e9[_0x35da6d(0x161)]();this[_0x35da6d(0x1cb)][_0x35da6d(0x153)]((_0x15fbf6[_0x35da6d(0x18e)]-_0x7534d1[_0x35da6d(0x1b5)])/_0x38d8e9[_0x35da6d(0x163)]*0x2-0x1,0x1-(_0x15fbf6[_0x35da6d(0x187)]-_0x7534d1[_0x35da6d(0x1c0)])/_0x38d8e9[_0x35da6d(0x17a)]*0x2);if(this[_0x35da6d(0x19d)][_0x35da6d(0x1bd)]>0x0)return;const _0x49e94b=this['getHitResultUnderCursor'](),_0x59a86d=(_0x288609=_0x49e94b===null||_0x49e94b===void 0?void 0:_0x49e94b[_0x35da6d(0x16f)])!==null&&_0x288609!==void 0?_0x288609:null,_0x583c5a=(_0x319fcf=_0x59a86d===null||_0x59a86d===void 0?void 0:_0x59a86d[_0x35da6d(0x18a)])!==null&&_0x319fcf!==void 0?_0x319fcf:null;_0x59a86d!==this[_0x35da6d(0x155)]&&(this[_0x35da6d(0x155)]&&this[_0x35da6d(0x195)](this[_0x35da6d(0x155)]),_0x59a86d&&_0x59a86d[_0x35da6d(0x180)]&&_0x49e94b&&this['fireComponentHoverBegin'](_0x59a86d,_0x49e94b[_0x35da6d(0x186)])),_0x583c5a!==this[_0x35da6d(0x15c)]&&(this[_0x35da6d(0x15c)]&&this['hoveringComponent']&&this['fireActorHoverEnd'](this[_0x35da6d(0x15c)],this[_0x35da6d(0x155)]),_0x583c5a&&_0x59a86d&&_0x583c5a[_0x35da6d(0x180)]&&_0x49e94b&&this[_0x35da6d(0x194)](_0x583c5a,_0x59a86d,_0x49e94b[_0x35da6d(0x186)])),this[_0x35da6d(0x155)]=_0x59a86d,this[_0x35da6d(0x15c)]=_0x583c5a;}[_0x29ba1e(0x177)](){const _0x2b9fae=_0x29ba1e;this[_0x2b9fae(0x155)]&&this['fireComponentHoverEnd'](this[_0x2b9fae(0x155)]),this['hoveringActor']&&this[_0x2b9fae(0x155)]&&this[_0x2b9fae(0x193)](this[_0x2b9fae(0x15c)],this['hoveringComponent']),this[_0x2b9fae(0x155)]=null,this['hoveringActor']=null;}[_0x29ba1e(0x1c9)](_0x49836d){const _0x4671b8=_0x29ba1e;this['_pointButtonIsDown']['delete'](_0x49836d[_0x4671b8(0x189)]);if(_0x49836d[_0x4671b8(0x189)]!==0x0)return;const _0x227d17=this[_0x4671b8(0x1bf)][_0x4671b8(0x1c5)](this['pointerLeftDownPosition'],this[_0x4671b8(0x1cb)])[_0x4671b8(0x15e)]();if(_0x227d17>0.005){this[_0x4671b8(0x191)]();return;}this[_0x4671b8(0x183)]={'ctrlKey':_0x49836d[_0x4671b8(0x1d0)],'shiftKey':_0x49836d[_0x4671b8(0x16e)],'altKey':_0x49836d['altKey']},!this['leftClickTimer']?this[_0x4671b8(0x175)]():this['handleDoubleClick']();}[_0x29ba1e(0x175)](){const _0x633dc4=_0x29ba1e,_0x36d792=this[_0x633dc4(0x1ca)](),_0x39360f=_0x36d792===null||_0x36d792===void 0?void 0:_0x36d792['component'];_0x39360f instanceof SceneComponent&&_0x39360f['isClickEnabled']&&_0x36d792?(this[_0x633dc4(0x1a8)]=_0x39360f,this[_0x633dc4(0x15d)]=_0x36d792[_0x633dc4(0x186)],this[_0x633dc4(0x1c7)]=window[_0x633dc4(0x1a1)](()=>{const _0x163528=_0x633dc4;this['leftClickTimer']=null,this[_0x163528(0x1a8)]&&this[_0x163528(0x15d)]&&(this[_0x163528(0x1b9)](this[_0x163528(0x1a8)],this[_0x163528(0x15d)],![]),this[_0x163528(0x1a8)]=null,this[_0x163528(0x15d)]=null);},this[_0x633dc4(0x1be)])):this['_onClickNothingDelegate'][_0x633dc4(0x17d)]();}[_0x29ba1e(0x1a5)](){const _0x541956=_0x29ba1e;this[_0x541956(0x191)](),this[_0x541956(0x1a8)]&&this[_0x541956(0x15d)]?this[_0x541956(0x1b9)](this[_0x541956(0x1a8)],this[_0x541956(0x15d)],!![]):this[_0x541956(0x1c6)][_0x541956(0x17d)](),this['prepareClickComponent']=null,this[_0x541956(0x15d)]=null;}[_0x29ba1e(0x18d)](_0x2d5eb0){const _0x333b7f=_0x29ba1e;this[_0x333b7f(0x19d)][_0x333b7f(0x196)](_0x2d5eb0[_0x333b7f(0x189)]);_0x2d5eb0[_0x333b7f(0x189)]===0x0&&this['pointerLeftDownPosition'][_0x333b7f(0x184)](this['pointerPosition']);const _0x3b4106=this[_0x333b7f(0x1ca)](),_0x1a3f88=_0x3b4106===null||_0x3b4106===void 0?void 0:_0x3b4106[_0x333b7f(0x16f)];_0x1a3f88 instanceof SceneComponent&&_0x3b4106&&this[_0x333b7f(0x18f)](_0x1a3f88,_0x3b4106[_0x333b7f(0x186)],_0x2d5eb0[_0x333b7f(0x189)]);}[_0x29ba1e(0x19a)](_0x39454a){const _0x546d42=_0x29ba1e;this[_0x546d42(0x1b0)]();}[_0x29ba1e(0x1b4)](_0x57a0b6){const _0x4e5a8a=_0x29ba1e;this[_0x4e5a8a(0x1b2)]();}['fireComponentHoverBegin'](_0x45220a,_0xeb0696){const _0x570d1c=_0x29ba1e,_0x1333a6={'component':_0x45220a,'hit':_0xeb0696,'handled':![]};this['_onComponentHoverBeginDelegate']['broadcast'](_0x1333a6),!_0x1333a6[_0x570d1c(0x1b1)]&&_0x45220a['onHorveringBegin']();}[_0x29ba1e(0x195)](_0xacaca4){const _0x59d112=_0x29ba1e,_0x50fd8b={'component':_0xacaca4,'hit':null,'handled':![]};this[_0x59d112(0x19b)][_0x59d112(0x17d)](_0x50fd8b),!_0x50fd8b[_0x59d112(0x1b1)]&&_0xacaca4[_0x59d112(0x169)]();}[_0x29ba1e(0x178)](_0x57b62c,_0x23cec4,_0x8c9169){const _0x2e0555=_0x29ba1e,_0x1c610a=Object[_0x2e0555(0x168)]({'component':_0x57b62c,'hit':_0x23cec4,'handled':![]},this[_0x2e0555(0x183)]);_0x8c9169?(this[_0x2e0555(0x1a0)][_0x2e0555(0x17d)](_0x1c610a),!_0x1c610a[_0x2e0555(0x1b1)]&&_0x57b62c['onDoubleClicked']()):(this[_0x2e0555(0x18c)][_0x2e0555(0x17d)](_0x1c610a),!_0x1c610a[_0x2e0555(0x1b1)]&&_0x57b62c[_0x2e0555(0x1bb)]());}[_0x29ba1e(0x18f)](_0x3dd541,_0x2991d2,_0x1bc671){const _0x20a38d=_0x29ba1e,_0x33376b={'component':_0x3dd541,'hit':_0x2991d2,'button':_0x1bc671,'handled':![]};this[_0x20a38d(0x160)][_0x20a38d(0x17d)](_0x33376b);}[_0x29ba1e(0x194)](_0x3cbc1b,_0x24bedc,_0x193b14){const _0x3fefdb=_0x29ba1e,_0x41445d={'actor':_0x3cbc1b,'component':_0x24bedc,'hit':_0x193b14,'handled':![]};this[_0x3fefdb(0x171)]['broadcast'](_0x41445d),!_0x41445d[_0x3fefdb(0x1b1)]&&_0x3cbc1b['onActorHoverBegin'](_0x24bedc);}[_0x29ba1e(0x193)](_0x499f3c,_0x12476e){const _0x2de9be=_0x29ba1e,_0x45443e={'actor':_0x499f3c,'component':_0x12476e,'hit':null,'handled':![]};this[_0x2de9be(0x1ac)][_0x2de9be(0x17d)](_0x45443e),!_0x45443e['handled']&&_0x499f3c[_0x2de9be(0x1a9)](_0x12476e);}['fireActorClick'](_0x135218,_0x201e6d,_0x11cccd,_0x46411c){const _0x4e18ad=_0x29ba1e,_0x105a6b=Object[_0x4e18ad(0x168)]({'actor':_0x135218,'component':_0x201e6d,'hit':_0x11cccd,'handled':![]},this['prepareClickModifiers']);_0x46411c?(this[_0x4e18ad(0x174)][_0x4e18ad(0x17d)](_0x105a6b),!_0x105a6b[_0x4e18ad(0x1b1)]&&_0x135218[_0x4e18ad(0x16a)](_0x201e6d)):(this[_0x4e18ad(0x157)][_0x4e18ad(0x17d)](_0x105a6b),!_0x105a6b[_0x4e18ad(0x1b1)]&&_0x135218[_0x4e18ad(0x1c1)](_0x201e6d));}[_0x29ba1e(0x1b9)](_0x36f435,_0x530a7a,_0x44fdb9){const _0x1ce9aa=_0x29ba1e;this[_0x1ce9aa(0x178)](_0x36f435,_0x530a7a,_0x44fdb9);const _0x7b2a91=_0x36f435[_0x1ce9aa(0x18a)];_0x7b2a91&&_0x7b2a91[_0x1ce9aa(0x179)]&&this[_0x1ce9aa(0x1ab)](_0x7b2a91,_0x36f435,_0x530a7a,_0x44fdb9);}['clearClickTimer'](){const _0xd736d5=_0x29ba1e;this[_0xd736d5(0x1c7)]&&(window[_0xd736d5(0x19c)](this[_0xd736d5(0x1c7)]),this[_0xd736d5(0x1c7)]=null);}[_0x29ba1e(0x1b0)](){const _0x480b62=_0x29ba1e,_0x1f9d66=this[_0x480b62(0x17f)][_0x480b62(0x154)];if(!_0x1f9d66)return;_0x1f9d66[_0x480b62(0x164)](_0x480b62(0x181),this[_0x480b62(0x1b3)]),_0x1f9d66[_0x480b62(0x164)](_0x480b62(0x1b8),this[_0x480b62(0x172)]),_0x1f9d66[_0x480b62(0x164)](_0x480b62(0x182),this['onPointerDown']);}[_0x29ba1e(0x1b2)](){const _0x2ba657=_0x29ba1e,_0x5dede3=this[_0x2ba657(0x17f)][_0x2ba657(0x154)];if(!_0x5dede3)return;_0x5dede3[_0x2ba657(0x162)]('pointermove',this[_0x2ba657(0x1b3)]),_0x5dede3[_0x2ba657(0x162)]('pointerup',this['onPointerUp']),_0x5dede3[_0x2ba657(0x162)](_0x2ba657(0x182),this[_0x2ba657(0x1ad)]);}[_0x29ba1e(0x1ca)](){const _0xab12e0=_0x29ba1e;return this['getHitResultFromScreenPoint'](this[_0xab12e0(0x1cb)]['x'],this['pointerPosition']['y']);}[_0x29ba1e(0x19f)](_0x174cf6,_0x2f6009){const _0x234aa6=_0x29ba1e;this[_0x234aa6(0x1a4)]['set'](_0x174cf6,_0x2f6009),this[_0x234aa6(0x1c2)][_0x234aa6(0x1c4)](this['_raycastVec2'],this[_0x234aa6(0x16d)]);const _0x105394=this[_0x234aa6(0x170)](_0x174cf6,_0x2f6009);for(const _0x487744 of _0x105394){const _0x2cc043=_0x487744['component'][_0x234aa6(0x180)]||_0x487744[_0x234aa6(0x16f)]['isClickEnabled'],_0xdf90da=_0x487744[_0x234aa6(0x16f)][_0x234aa6(0x18a)],_0x53fd17=_0xdf90da&&(_0xdf90da['isHoverEnabled']||_0xdf90da['isClickEnabled']);if(!_0x2cc043&&!_0x53fd17)continue;return _0x487744;}return null;}[_0x29ba1e(0x170)](_0x124718,_0xa2f9fc){const _0x310782=_0x29ba1e;this[_0x310782(0x1a4)]['set'](_0x124718,_0xa2f9fc),this[_0x310782(0x1c2)][_0x310782(0x1c4)](this[_0x310782(0x1a4)],this[_0x310782(0x16d)]);const _0x1dfb71=this[_0x310782(0x1c2)][_0x310782(0x15f)](this[_0x310782(0x17c)][_0x310782(0x17b)][_0x310782(0x176)],!![]),_0x57da60=[];for(const _0x1b557d of _0x1dfb71){if(_0x1b557d[_0x310782(0x19e)]['userData'][_0x310782(0x18b)])continue;const _0x2d09a9=_0x1b557d[_0x310782(0x19e)][_0x310782(0x166)]['LYObject'];if(!_0x2d09a9)continue;_0x57da60[_0x310782(0x151)]({'component':_0x2d09a9,'hit':_0x1b557d});}return _0x57da60;}[_0x29ba1e(0x1ce)](_0x385f96,_0x4ab45b,_0x33ea55,_0x59e017,_0x322537=null,_0x123b47=null){const _0x1fca95=_0x29ba1e;this[_0x1fca95(0x1af)]['focusTo'](_0x385f96,_0x4ab45b,_0x33ea55,_0x59e017,_0x322537,_0x123b47);}}
70
+ const _0x4fe182=_0x1148;function _0x1148(_0x620d68,_0x32d323){_0x620d68=_0x620d68-0xa0;const _0x5adc8b=_0x5adc();let _0x114814=_0x5adc8b[_0x620d68];return _0x114814;}function _0x5adc(){const _0x56e54c=['_onComponentPointerDownDelegate','onPointerEnterEvent','onPointerLeave','enabled','onPointerMove','isClickEnabled','onActorHoverEndDelegate','fireComponentClick','world','_onActorClickDelegate','top','removeCorePointerListeners','focusTo','updateCamera','_pawn','set','fireActorHoverEnd','onActorDoubleClick','fireActorClick','getAllHitResultFromScreenPoint','hoveringActor','onPointerEnter','length','pawn','clearHovering','getHitResultFromScreenPoint','_onActorHoverEndDelegate','onComponentPointerDownDelegate','369027RyPaoR','pointerLeftDownPosition','onActorClick','clearTimeout','_onComponentClickDelegate','shiftKey','_onActorHoverBeginDelegate','_onActorDoubleClickDelegate','5INbfez','onActorHoverEnd','canvas\x20is\x20null','possess','prepareClickModifiers','onClickNothingDelegate','clientWidth','hoveringComponent','onComponentClickDelegate','_onComponentDoubleClickDelegate','children','viewPort','pawn\x20is\x20null','onClicked','onPointerDownEvent','setFromCamera','destroy','fireComponentHoverBegin','_onComponentHoverBeginDelegate','onHorveringEnd','userData','ctrlKey','clientHeight','broadcast','_app','prepareClickComponent','onPointerUpEvent','camera','scene','653639yAURMW','tick','3298160YRxSCB','clientX','pointerPosition','init','viewport','pointerdown','handleFirstClick','pointerup','raycaster','copy','handleDoubleClick','object','parentActor','app','button','handled','prepareClickHit','fireComponentHoverEnd','addCorePointerListeners','3ZMegVt','add','getHitResultUnderCursor','onPointerLeaveEvent','onPointerMoveEvent','_pointButtonIsDown','canvas','903520ymzseN','subVectors','_raycastVec2','onPointerDown','leftClickTimer','addEventListener','firePointerDownEvent','pointerenter','onPointerUp','_onComponentHoverEndDelegate','doubleClickDelay','onComponentDoubleClickDelegate','760076yRERdp','_onClickNothingDelegate','6129882WHiPxi','isHoverEnabled','pointermove','pointerleave','fireClickEvents','left','clientY','component','clearClickTimer','fireActorHoverBegin','3663684CPsYBv','push','removeEventListener','rayIgnored','assign','hit','altKey'];_0x5adc=function(){return _0x56e54c;};return _0x5adc();}(function(_0x2571ab,_0x14fbf9){const _0x3e300f=_0x1148,_0x3747d0=_0x2571ab();while(!![]){try{const _0x2d41b0=-parseInt(_0x3e300f(0x101))/0x1+parseInt(_0x3e300f(0xc6))/0x2+parseInt(_0x3e300f(0xbf))/0x3*(-parseInt(_0x3e300f(0xd2))/0x4)+-parseInt(_0x3e300f(0x109))/0x5*(-parseInt(_0x3e300f(0xde))/0x6)+parseInt(_0x3e300f(0xaa))/0x7+parseInt(_0x3e300f(0xac))/0x8+-parseInt(_0x3e300f(0xd4))/0x9;if(_0x2d41b0===_0x14fbf9)break;else _0x3747d0['push'](_0x3747d0['shift']());}catch(_0x315012){_0x3747d0['push'](_0x3747d0['shift']());}}}(_0x5adc,0x500c5));class Controller{get[_0x4fe182(0xa8)](){const _0x4bf70a=_0x4fe182;return this[_0x4bf70a(0xa5)]['camera'];}get[_0x4fe182(0xed)](){const _0x120617=_0x4fe182;return this[_0x120617(0xa5)][_0x120617(0xed)];}get[_0x4fe182(0x114)](){const _0x5d17d7=_0x4fe182;return this[_0x5d17d7(0xa5)][_0x5d17d7(0xb0)];}get[_0x4fe182(0xb9)](){const _0xb56da2=_0x4fe182;return this[_0xb56da2(0xa5)];}get[_0x4fe182(0xfc)](){const _0x3b6515=_0x4fe182;if(!this[_0x3b6515(0xf3)])throw Error(_0x3b6515(0x115));return this[_0x3b6515(0xf3)];}get[_0x4fe182(0x111)](){return this['_onComponentClickDelegate'];}get[_0x4fe182(0xd1)](){const _0x3cbd9b=_0x4fe182;return this[_0x3cbd9b(0x112)];}get['onComponentHoverBeginDelegate'](){const _0x5443e9=_0x4fe182;return this[_0x5443e9(0x11b)];}get['onComponentHoverEndDelegate'](){const _0x1a6b05=_0x4fe182;return this[_0x1a6b05(0xcf)];}get[_0x4fe182(0x100)](){const _0x4c1874=_0x4fe182;return this[_0x4c1874(0xe5)];}get['onActorClickDelegate'](){const _0x580af3=_0x4fe182;return this[_0x580af3(0xee)];}get['onActorDoubleClickDelegate'](){const _0x3cbc53=_0x4fe182;return this[_0x3cbc53(0x108)];}get['onActorHoverBeginDelegate'](){const _0x1711e9=_0x4fe182;return this[_0x1711e9(0x107)];}get[_0x4fe182(0xeb)](){const _0x90471=_0x4fe182;return this[_0x90471(0xff)];}get[_0x4fe182(0x10e)](){const _0x410b15=_0x4fe182;return this[_0x410b15(0xd3)];}constructor(_0x39ed32){const _0x178f47=_0x4fe182;this[_0x178f47(0xf3)]=null,this[_0x178f47(0x110)]=null,this[_0x178f47(0xf9)]=null,this[_0x178f47(0xa6)]=null,this[_0x178f47(0xbc)]=null,this[_0x178f47(0x10d)]={'ctrlKey':![],'shiftKey':![],'altKey':![]},this[_0x178f47(0xc4)]=new Set(),this['_onComponentClickDelegate']=new Delegate(),this[_0x178f47(0x112)]=new Delegate(),this[_0x178f47(0x11b)]=new Delegate(),this[_0x178f47(0xcf)]=new Delegate(),this[_0x178f47(0xe5)]=new Delegate(),this[_0x178f47(0xee)]=new Delegate(),this[_0x178f47(0x108)]=new Delegate(),this[_0x178f47(0x107)]=new Delegate(),this['_onActorHoverEndDelegate']=new Delegate(),this['_onClickNothingDelegate']=new Delegate(),this[_0x178f47(0xae)]=new webgpu.Vector2(),this[_0x178f47(0x102)]=new webgpu.Vector2(),this['_tempVec2']=new webgpu.Vector2(),this[_0x178f47(0xc8)]=new webgpu.Vector2(),this['doubleClickDelay']=0xfa,this[_0x178f47(0xca)]=null,this['onPointerMove']=_0x4192c3=>this[_0x178f47(0xc3)](_0x4192c3),this[_0x178f47(0xfa)]=_0x5dea70=>this[_0x178f47(0xe6)](_0x5dea70),this[_0x178f47(0xe7)]=_0x45b544=>this[_0x178f47(0xc2)](_0x45b544),this[_0x178f47(0xce)]=_0x4366df=>this[_0x178f47(0xa7)](_0x4366df),this[_0x178f47(0xc9)]=_0x2d1b64=>this[_0x178f47(0x117)](_0x2d1b64),this[_0x178f47(0xa5)]=_0x39ed32,this[_0x178f47(0xf3)]=new Orbital(this),this[_0x178f47(0xfc)][_0x178f47(0x10c)](),this[_0x178f47(0xb4)]=new webgpu.Raycaster();}[_0x4fe182(0xaf)](){const _0x321cc5=_0x4fe182,_0x3edbbb=this[_0x321cc5(0x114)][_0x321cc5(0xc5)];_0x3edbbb&&(_0x3edbbb[_0x321cc5(0xcb)](_0x321cc5(0xcd),this[_0x321cc5(0xfa)]),_0x3edbbb[_0x321cc5(0xcb)]('pointerleave',this[_0x321cc5(0xe7)]),this['addCorePointerListeners']());}[_0x4fe182(0xf2)](){const _0x4c0be8=_0x4fe182;var _0x3ca9a8,_0x488344;const _0x392ac8=this['pawn'][_0x4c0be8(0xe8)];(_0x3ca9a8=this[_0x4c0be8(0xf3)])===null||_0x3ca9a8===void 0?void 0:_0x3ca9a8['unpossess'](),(_0x488344=this[_0x4c0be8(0xf3)])===null||_0x488344===void 0?void 0:_0x488344[_0x4c0be8(0x119)](),this['_pawn']=new Orbital(this),this[_0x4c0be8(0xfc)]['possess'](),this['pawn'][_0x4c0be8(0xe8)]=_0x392ac8;}[_0x4fe182(0xab)](_0x400127){const _0x53c43d=_0x4fe182;this['pawn'][_0x53c43d(0xab)](_0x400127);}['destroy'](){const _0x2b0f3a=_0x4fe182;this['clearClickTimer'](),this[_0x2b0f3a(0xfd)]();const _0x2516a6=this[_0x2b0f3a(0x114)][_0x2b0f3a(0xc5)];_0x2516a6&&(_0x2516a6['removeEventListener']('pointerenter',this[_0x2b0f3a(0xfa)]),_0x2516a6[_0x2b0f3a(0xe0)](_0x2b0f3a(0xd7),this[_0x2b0f3a(0xe7)]),this['removeCorePointerListeners']()),this[_0x2b0f3a(0xfc)]['unpossess'](),this[_0x2b0f3a(0xfc)][_0x2b0f3a(0x119)](),this[_0x2b0f3a(0xf3)]=null;}['onPointerMoveEvent'](_0x46a257){const _0x321d84=_0x4fe182;var _0x1b8c10,_0x19ab4f;const _0x4836da=this['viewPort']['canvas'];if(!_0x4836da)throw Error(_0x321d84(0x10b));const _0x23a786=_0x4836da['getBoundingClientRect']();this[_0x321d84(0xae)]['set']((_0x46a257[_0x321d84(0xad)]-_0x23a786[_0x321d84(0xd9)])/_0x4836da[_0x321d84(0x10f)]*0x2-0x1,0x1-(_0x46a257[_0x321d84(0xda)]-_0x23a786[_0x321d84(0xef)])/_0x4836da[_0x321d84(0xa3)]*0x2);if(this[_0x321d84(0xc4)]['size']>0x0)return;const _0x8e21c2=this[_0x321d84(0xc1)](),_0x1be647=(_0x1b8c10=_0x8e21c2===null||_0x8e21c2===void 0?void 0:_0x8e21c2['component'])!==null&&_0x1b8c10!==void 0?_0x1b8c10:null,_0x4e537d=(_0x19ab4f=_0x1be647===null||_0x1be647===void 0?void 0:_0x1be647[_0x321d84(0xb8)])!==null&&_0x19ab4f!==void 0?_0x19ab4f:null;_0x1be647!==this['hoveringComponent']&&(this[_0x321d84(0x110)]&&this['fireComponentHoverEnd'](this[_0x321d84(0x110)]),_0x1be647&&_0x1be647['isHoverEnabled']&&_0x8e21c2&&this[_0x321d84(0x11a)](_0x1be647,_0x8e21c2[_0x321d84(0xe3)])),_0x4e537d!==this['hoveringActor']&&(this[_0x321d84(0xf9)]&&this[_0x321d84(0x110)]&&this[_0x321d84(0xf5)](this['hoveringActor'],this[_0x321d84(0x110)]),_0x4e537d&&_0x1be647&&_0x4e537d['isHoverEnabled']&&_0x8e21c2&&this[_0x321d84(0xdd)](_0x4e537d,_0x1be647,_0x8e21c2[_0x321d84(0xe3)])),this['hoveringComponent']=_0x1be647,this[_0x321d84(0xf9)]=_0x4e537d;}['clearHovering'](){const _0x69ba35=_0x4fe182;this['hoveringComponent']&&this[_0x69ba35(0xbd)](this[_0x69ba35(0x110)]),this[_0x69ba35(0xf9)]&&this[_0x69ba35(0x110)]&&this[_0x69ba35(0xf5)](this[_0x69ba35(0xf9)],this['hoveringComponent']),this['hoveringComponent']=null,this[_0x69ba35(0xf9)]=null;}[_0x4fe182(0xa7)](_0x149bce){const _0x2ec986=_0x4fe182;this[_0x2ec986(0xc4)]['delete'](_0x149bce[_0x2ec986(0xba)]);if(_0x149bce[_0x2ec986(0xba)]!==0x0)return;const _0x5f38a5=this['_tempVec2'][_0x2ec986(0xc7)](this['pointerLeftDownPosition'],this['pointerPosition'])[_0x2ec986(0xfb)]();if(_0x5f38a5>0.005){this[_0x2ec986(0xdc)]();return;}this['prepareClickModifiers']={'ctrlKey':_0x149bce[_0x2ec986(0xa2)],'shiftKey':_0x149bce[_0x2ec986(0x106)],'altKey':_0x149bce[_0x2ec986(0xe4)]},!this['leftClickTimer']?this[_0x2ec986(0xb2)]():this[_0x2ec986(0xb6)]();}[_0x4fe182(0xb2)](){const _0x14cc90=_0x4fe182,_0x254e32=this['getHitResultUnderCursor'](),_0x57a4d5=_0x254e32===null||_0x254e32===void 0?void 0:_0x254e32[_0x14cc90(0xdb)];_0x57a4d5 instanceof SceneComponent&&_0x57a4d5[_0x14cc90(0xea)]&&_0x254e32?(this[_0x14cc90(0xa6)]=_0x57a4d5,this['prepareClickHit']=_0x254e32['hit'],this[_0x14cc90(0xca)]=window['setTimeout'](()=>{const _0xb0b5f4=_0x14cc90;this['leftClickTimer']=null,this['prepareClickComponent']&&this[_0xb0b5f4(0xbc)]&&(this[_0xb0b5f4(0xd8)](this[_0xb0b5f4(0xa6)],this[_0xb0b5f4(0xbc)],![]),this[_0xb0b5f4(0xa6)]=null,this['prepareClickHit']=null);},this[_0x14cc90(0xd0)])):this['_onClickNothingDelegate'][_0x14cc90(0xa4)]();}[_0x4fe182(0xb6)](){const _0x194c8f=_0x4fe182;this[_0x194c8f(0xdc)](),this[_0x194c8f(0xa6)]&&this['prepareClickHit']?this[_0x194c8f(0xd8)](this['prepareClickComponent'],this[_0x194c8f(0xbc)],!![]):this[_0x194c8f(0xd3)][_0x194c8f(0xa4)](),this[_0x194c8f(0xa6)]=null,this[_0x194c8f(0xbc)]=null;}[_0x4fe182(0x117)](_0x5010a5){const _0x13be6c=_0x4fe182;this['_pointButtonIsDown'][_0x13be6c(0xc0)](_0x5010a5['button']);_0x5010a5[_0x13be6c(0xba)]===0x0&&this['pointerLeftDownPosition'][_0x13be6c(0xb5)](this[_0x13be6c(0xae)]);const _0x25cbde=this[_0x13be6c(0xc1)](),_0x121020=_0x25cbde===null||_0x25cbde===void 0?void 0:_0x25cbde[_0x13be6c(0xdb)];_0x121020 instanceof SceneComponent&&_0x25cbde&&this[_0x13be6c(0xcc)](_0x121020,_0x25cbde[_0x13be6c(0xe3)],_0x5010a5[_0x13be6c(0xba)]);}[_0x4fe182(0xe6)](_0x1aa89b){const _0x4833ef=_0x4fe182;this[_0x4833ef(0xbe)]();}[_0x4fe182(0xc2)](_0x20cb78){this['removeCorePointerListeners']();}['fireComponentHoverBegin'](_0x3453e4,_0x25825b){const _0x1e9925=_0x4fe182,_0x3cdbdc={'component':_0x3453e4,'hit':_0x25825b,'handled':![]};this[_0x1e9925(0x11b)][_0x1e9925(0xa4)](_0x3cdbdc),!_0x3cdbdc[_0x1e9925(0xbb)]&&_0x3453e4['onHorveringBegin']();}[_0x4fe182(0xbd)](_0x4c9921){const _0x528508=_0x4fe182,_0x21e768={'component':_0x4c9921,'hit':null,'handled':![]};this['_onComponentHoverEndDelegate'][_0x528508(0xa4)](_0x21e768),!_0x21e768[_0x528508(0xbb)]&&_0x4c9921[_0x528508(0xa0)]();}[_0x4fe182(0xec)](_0x1c1e76,_0x2d0c41,_0x4f322b){const _0x5337b9=_0x4fe182,_0xc8b3c=Object[_0x5337b9(0xe2)]({'component':_0x1c1e76,'hit':_0x2d0c41,'handled':![]},this[_0x5337b9(0x10d)]);_0x4f322b?(this['_onComponentDoubleClickDelegate'][_0x5337b9(0xa4)](_0xc8b3c),!_0xc8b3c[_0x5337b9(0xbb)]&&_0x1c1e76['onDoubleClicked']()):(this[_0x5337b9(0x105)]['broadcast'](_0xc8b3c),!_0xc8b3c[_0x5337b9(0xbb)]&&_0x1c1e76[_0x5337b9(0x116)]());}[_0x4fe182(0xcc)](_0x31cf51,_0x1d8176,_0x1706f9){const _0x19f8c5=_0x4fe182,_0x310023={'component':_0x31cf51,'hit':_0x1d8176,'button':_0x1706f9,'handled':![]};this[_0x19f8c5(0xe5)]['broadcast'](_0x310023);}[_0x4fe182(0xdd)](_0x2a1f2a,_0x2a8fd9,_0x1a34ee){const _0x46bb3c=_0x4fe182,_0xb9ac6e={'actor':_0x2a1f2a,'component':_0x2a8fd9,'hit':_0x1a34ee,'handled':![]};this[_0x46bb3c(0x107)]['broadcast'](_0xb9ac6e),!_0xb9ac6e['handled']&&_0x2a1f2a['onActorHoverBegin'](_0x2a8fd9);}['fireActorHoverEnd'](_0x148f48,_0x4609ed){const _0x50b809=_0x4fe182,_0x18e93c={'actor':_0x148f48,'component':_0x4609ed,'hit':null,'handled':![]};this['_onActorHoverEndDelegate']['broadcast'](_0x18e93c),!_0x18e93c['handled']&&_0x148f48[_0x50b809(0x10a)](_0x4609ed);}['fireActorClick'](_0x4f7a31,_0x461616,_0x4b2b70,_0x5aac33){const _0x2ac862=_0x4fe182,_0x27fcfd=Object[_0x2ac862(0xe2)]({'actor':_0x4f7a31,'component':_0x461616,'hit':_0x4b2b70,'handled':![]},this[_0x2ac862(0x10d)]);_0x5aac33?(this['_onActorDoubleClickDelegate'][_0x2ac862(0xa4)](_0x27fcfd),!_0x27fcfd[_0x2ac862(0xbb)]&&_0x4f7a31[_0x2ac862(0xf6)](_0x461616)):(this['_onActorClickDelegate'][_0x2ac862(0xa4)](_0x27fcfd),!_0x27fcfd[_0x2ac862(0xbb)]&&_0x4f7a31[_0x2ac862(0x103)](_0x461616));}[_0x4fe182(0xd8)](_0x5249bc,_0xca7635,_0x52aac7){const _0x35e817=_0x4fe182;this[_0x35e817(0xec)](_0x5249bc,_0xca7635,_0x52aac7);const _0x533fb3=_0x5249bc[_0x35e817(0xb8)];_0x533fb3&&_0x533fb3['isClickEnabled']&&this[_0x35e817(0xf7)](_0x533fb3,_0x5249bc,_0xca7635,_0x52aac7);}['clearClickTimer'](){const _0x18b274=_0x4fe182;this[_0x18b274(0xca)]&&(window[_0x18b274(0x104)](this[_0x18b274(0xca)]),this[_0x18b274(0xca)]=null);}[_0x4fe182(0xbe)](){const _0x4c6edd=_0x4fe182,_0x491d6a=this[_0x4c6edd(0x114)][_0x4c6edd(0xc5)];if(!_0x491d6a)return;_0x491d6a[_0x4c6edd(0xcb)](_0x4c6edd(0xd6),this[_0x4c6edd(0xe9)]),_0x491d6a[_0x4c6edd(0xcb)](_0x4c6edd(0xb3),this['onPointerUp']),_0x491d6a[_0x4c6edd(0xcb)](_0x4c6edd(0xb1),this[_0x4c6edd(0xc9)]);}[_0x4fe182(0xf0)](){const _0x543329=_0x4fe182,_0x33b4f5=this[_0x543329(0x114)][_0x543329(0xc5)];if(!_0x33b4f5)return;_0x33b4f5['removeEventListener'](_0x543329(0xd6),this[_0x543329(0xe9)]),_0x33b4f5['removeEventListener'](_0x543329(0xb3),this[_0x543329(0xce)]),_0x33b4f5[_0x543329(0xe0)](_0x543329(0xb1),this[_0x543329(0xc9)]);}[_0x4fe182(0xc1)](){const _0xe9b5ab=_0x4fe182;return this['getHitResultFromScreenPoint'](this[_0xe9b5ab(0xae)]['x'],this[_0xe9b5ab(0xae)]['y']);}[_0x4fe182(0xfe)](_0x171128,_0x255fb6){const _0x1f610b=_0x4fe182;this[_0x1f610b(0xc8)]['set'](_0x171128,_0x255fb6),this[_0x1f610b(0xb4)][_0x1f610b(0x118)](this[_0x1f610b(0xc8)],this[_0x1f610b(0xa8)]);const _0x373f25=this[_0x1f610b(0xf8)](_0x171128,_0x255fb6);for(const _0x414ac5 of _0x373f25){const _0x2897ba=_0x414ac5['component'][_0x1f610b(0xd5)]||_0x414ac5[_0x1f610b(0xdb)][_0x1f610b(0xea)],_0x16391f=_0x414ac5['component'][_0x1f610b(0xb8)],_0x16d2ed=_0x16391f&&(_0x16391f[_0x1f610b(0xd5)]||_0x16391f[_0x1f610b(0xea)]);if(!_0x2897ba&&!_0x16d2ed)continue;return _0x414ac5;}return null;}[_0x4fe182(0xf8)](_0xd50f64,_0x318170){const _0x273c15=_0x4fe182;this['_raycastVec2'][_0x273c15(0xf4)](_0xd50f64,_0x318170),this['raycaster'][_0x273c15(0x118)](this[_0x273c15(0xc8)],this[_0x273c15(0xa8)]);const _0x50a3fe=this[_0x273c15(0xb4)]['intersectObjects'](this[_0x273c15(0xed)][_0x273c15(0xa9)][_0x273c15(0x113)],!![]),_0x36a847=[];for(const _0x3155fc of _0x50a3fe){if(_0x3155fc[_0x273c15(0xb7)][_0x273c15(0xa1)][_0x273c15(0xe1)])continue;const _0x2a4075=_0x3155fc[_0x273c15(0xb7)]['userData']['LYObject'];if(!_0x2a4075)continue;_0x36a847[_0x273c15(0xdf)]({'component':_0x2a4075,'hit':_0x3155fc});}return _0x36a847;}[_0x4fe182(0xf1)](_0x1299be,_0x2d72f4,_0x3dcc56,_0xeaac2a,_0x21bdc6=null,_0x32d132=null){const _0x200462=_0x4fe182;this[_0x200462(0xfc)]['focusTo'](_0x1299be,_0x2d72f4,_0x3dcc56,_0xeaac2a,_0x21bdc6,_0x32d132);}}
70
71
 
71
- function _0x1a4c(_0x598cfc,_0x3909ec){_0x598cfc=_0x598cfc-0x93;const _0x1f915e=_0x1f91();let _0x1a4c28=_0x1f915e[_0x598cfc];return _0x1a4c28;}function _0x1f91(){const _0x23fd46=['6RfzrqY','warn','fov','bottom','5475Yhvxpz','10PwCfDO','right','near','type','far','Orthographic','Perspective','createCamera','37239037MgPZyq','65232mZajHr','7027344CgWmNr','352qKSJDz','Invalid\x20camera\x20type','left','[CameraFactory]Error\x20occurred\x20while\x20creating\x20camera:\x20','[CameraFactory]Update\x20Failed.\x20Return\x20old\x20camera\x20instead','updataCamera','498006nxhgvj','225EITeHS','[CameraFactory]Error\x20occurred\x20while\x20updating\x20camera:\x20','top','7150052PipStC','[CameraFactory]Create\x20default\x20perspective\x20camera\x20instead','aspect','289335SaQgAC'];_0x1f91=function(){return _0x23fd46;};return _0x1f91();}const _0x18e3ae=_0x1a4c;(function(_0xb7f22f,_0x2942c5){const _0xb909a=_0x1a4c,_0x4df9e8=_0xb7f22f();while(!![]){try{const _0x3c9627=-parseInt(_0xb909a(0x98))/0x1*(-parseInt(_0xb909a(0xa4))/0x2)+parseInt(_0xb909a(0xab))/0x3*(parseInt(_0xb909a(0xa2))/0x4)+-parseInt(_0xb909a(0x93))/0x5*(parseInt(_0xb909a(0x94))/0x6)+parseInt(_0xb909a(0xae))/0x7+parseInt(_0xb909a(0xa3))/0x8+-parseInt(_0xb909a(0xaa))/0x9*(-parseInt(_0xb909a(0x99))/0xa)+-parseInt(_0xb909a(0xa1))/0xb;if(_0x3c9627===_0x2942c5)break;else _0x4df9e8['push'](_0x4df9e8['shift']());}catch(_0x16be3b){_0x4df9e8['push'](_0x4df9e8['shift']());}}}(_0x1f91,0xaa91e));class CameraFactory{static[_0x18e3ae(0xa0)](_0x8b0cde){const _0x3efce5=_0x18e3ae;try{switch(_0x8b0cde[_0x3efce5(0x9c)]){case _0x3efce5(0x9f):{let _0x3c6fa9=_0x8b0cde;return new webgpu.PerspectiveCamera(_0x3c6fa9[_0x3efce5(0x96)],_0x3c6fa9[_0x3efce5(0xb0)],_0x3c6fa9[_0x3efce5(0x9b)],_0x3c6fa9['far']);}case _0x3efce5(0x9e):{let _0x5b98e=_0x8b0cde;return new webgpu.OrthographicCamera(_0x5b98e[_0x3efce5(0xa6)],_0x5b98e[_0x3efce5(0x9a)],_0x5b98e['top'],_0x5b98e[_0x3efce5(0x97)],_0x5b98e[_0x3efce5(0x9b)],_0x5b98e['far']);}default:{throw new Error(_0x3efce5(0xa5));}}}catch(_0x39265b){return console['warn'](_0x3efce5(0xa7),_0x39265b),console[_0x3efce5(0x95)](_0x3efce5(0xaf)),new webgpu.PerspectiveCamera(0x32,0x1,0.1,0x3e8);}}static[_0x18e3ae(0xa9)](_0x4a222f,_0x583ea1){const _0x4fa500=_0x18e3ae;try{switch(_0x4a222f[_0x4fa500(0x9c)]){case 'Perspective':{let _0x4da86c=_0x4a222f;if(_0x583ea1 instanceof webgpu.PerspectiveCamera)return _0x583ea1[_0x4fa500(0x9b)]=_0x4da86c[_0x4fa500(0x9b)],_0x583ea1[_0x4fa500(0x9d)]=_0x4da86c[_0x4fa500(0x9d)],_0x583ea1[_0x4fa500(0x96)]=_0x4da86c[_0x4fa500(0x96)],_0x583ea1[_0x4fa500(0xb0)]=_0x4da86c[_0x4fa500(0xb0)],_0x583ea1;return new webgpu.PerspectiveCamera(_0x4da86c['fov'],_0x4da86c[_0x4fa500(0xb0)],_0x4da86c['near'],_0x4da86c['far']);}case _0x4fa500(0x9e):{let _0x488001=_0x4a222f;if(_0x583ea1 instanceof webgpu.OrthographicCamera)return _0x583ea1['near']=_0x488001[_0x4fa500(0x9b)],_0x583ea1['far']=_0x488001[_0x4fa500(0x9d)],_0x583ea1[_0x4fa500(0xa6)]=_0x488001[_0x4fa500(0xa6)],_0x583ea1[_0x4fa500(0x9a)]=_0x488001[_0x4fa500(0x9a)],_0x583ea1[_0x4fa500(0xad)]=_0x488001[_0x4fa500(0xad)],_0x583ea1[_0x4fa500(0x97)]=_0x488001[_0x4fa500(0x97)],_0x583ea1;return new webgpu.OrthographicCamera(_0x488001[_0x4fa500(0xa6)],_0x488001[_0x4fa500(0x9a)],_0x488001[_0x4fa500(0xad)],_0x488001[_0x4fa500(0x97)],_0x488001[_0x4fa500(0x9b)],_0x488001[_0x4fa500(0x9d)]);}default:{throw new Error(_0x4fa500(0xa5));}}}catch(_0x2afdb5){return console[_0x4fa500(0x95)](_0x4fa500(0xac),_0x2afdb5),console[_0x4fa500(0x95)](_0x4fa500(0xa8)),_0x583ea1;}}}
72
+ const _0x41cc23=_0x43b0;function _0x29c6(){const _0x52e2ee=['[CameraFactory]Error\x20occurred\x20while\x20updating\x20camera:\x20','aspect','[CameraFactory]Error\x20occurred\x20while\x20creating\x20camera:\x20','203BKvyam','3212Ozqzmb','180426ARiMUS','25690XKUVca','Invalid\x20camera\x20type','67608aBgnYh','bottom','33nhDvWz','[CameraFactory]Update\x20Failed.\x20Return\x20old\x20camera\x20instead','type','right','40876tQsIFv','5TOZeze','773224iVLcZd','top','far','near','369qDKyWs','Perspective','fov','416380qIMvSK','left','Orthographic','updataCamera','3489840yVJjJJ','warn'];_0x29c6=function(){return _0x52e2ee;};return _0x29c6();}(function(_0x5c3d53,_0x3bfb67){const _0x55e43b=_0x43b0,_0x4a1a03=_0x5c3d53();while(!![]){try{const _0x5a272c=parseInt(_0x55e43b(0x15f))/0x1+-parseInt(_0x55e43b(0x173))/0x2*(-parseInt(_0x55e43b(0x16f))/0x3)+-parseInt(_0x55e43b(0x175))/0x4*(parseInt(_0x55e43b(0x174))/0x5)+-parseInt(_0x55e43b(0x16a))/0x6*(-parseInt(_0x55e43b(0x168))/0x7)+parseInt(_0x55e43b(0x16d))/0x8*(-parseInt(_0x55e43b(0x179))/0x9)+parseInt(_0x55e43b(0x16b))/0xa*(-parseInt(_0x55e43b(0x169))/0xb)+parseInt(_0x55e43b(0x163))/0xc;if(_0x5a272c===_0x3bfb67)break;else _0x4a1a03['push'](_0x4a1a03['shift']());}catch(_0x106634){_0x4a1a03['push'](_0x4a1a03['shift']());}}}(_0x29c6,0x7d854));function _0x43b0(_0x25e847,_0x4e3298){_0x25e847=_0x25e847-0x15f;const _0x29c61=_0x29c6();let _0x43b098=_0x29c61[_0x25e847];return _0x43b098;}class CameraFactory{static['createCamera'](_0x2acf63){const _0x92f68d=_0x43b0;try{switch(_0x2acf63[_0x92f68d(0x171)]){case _0x92f68d(0x17a):{let _0x1900f6=_0x2acf63;return new webgpu.PerspectiveCamera(_0x1900f6[_0x92f68d(0x17b)],_0x1900f6[_0x92f68d(0x166)],_0x1900f6[_0x92f68d(0x178)],_0x1900f6[_0x92f68d(0x177)]);}case 'Orthographic':{let _0x133eda=_0x2acf63;return new webgpu.OrthographicCamera(_0x133eda[_0x92f68d(0x160)],_0x133eda[_0x92f68d(0x172)],_0x133eda[_0x92f68d(0x176)],_0x133eda[_0x92f68d(0x16e)],_0x133eda[_0x92f68d(0x178)],_0x133eda[_0x92f68d(0x177)]);}default:{throw new Error(_0x92f68d(0x16c));}}}catch(_0x961beb){return console[_0x92f68d(0x164)](_0x92f68d(0x167),_0x961beb),console[_0x92f68d(0x164)]('[CameraFactory]Create\x20default\x20perspective\x20camera\x20instead'),new webgpu.PerspectiveCamera(0x32,0x1,0.1,0x3e8);}}static[_0x41cc23(0x162)](_0xae4be8,_0x36f277){const _0x11a4e8=_0x41cc23;try{switch(_0xae4be8['type']){case _0x11a4e8(0x17a):{let _0x53f8c2=_0xae4be8;if(_0x36f277 instanceof webgpu.PerspectiveCamera)return _0x36f277['near']=_0x53f8c2[_0x11a4e8(0x178)],_0x36f277[_0x11a4e8(0x177)]=_0x53f8c2[_0x11a4e8(0x177)],_0x36f277['fov']=_0x53f8c2[_0x11a4e8(0x17b)],_0x36f277['aspect']=_0x53f8c2[_0x11a4e8(0x166)],_0x36f277;return new webgpu.PerspectiveCamera(_0x53f8c2[_0x11a4e8(0x17b)],_0x53f8c2[_0x11a4e8(0x166)],_0x53f8c2[_0x11a4e8(0x178)],_0x53f8c2[_0x11a4e8(0x177)]);}case _0x11a4e8(0x161):{let _0x5b8b35=_0xae4be8;if(_0x36f277 instanceof webgpu.OrthographicCamera)return _0x36f277[_0x11a4e8(0x178)]=_0x5b8b35[_0x11a4e8(0x178)],_0x36f277[_0x11a4e8(0x177)]=_0x5b8b35['far'],_0x36f277['left']=_0x5b8b35['left'],_0x36f277['right']=_0x5b8b35[_0x11a4e8(0x172)],_0x36f277[_0x11a4e8(0x176)]=_0x5b8b35[_0x11a4e8(0x176)],_0x36f277[_0x11a4e8(0x16e)]=_0x5b8b35['bottom'],_0x36f277;return new webgpu.OrthographicCamera(_0x5b8b35[_0x11a4e8(0x160)],_0x5b8b35[_0x11a4e8(0x172)],_0x5b8b35[_0x11a4e8(0x176)],_0x5b8b35[_0x11a4e8(0x16e)],_0x5b8b35[_0x11a4e8(0x178)],_0x5b8b35[_0x11a4e8(0x177)]);}default:{throw new Error(_0x11a4e8(0x16c));}}}catch(_0x157f28){return console[_0x11a4e8(0x164)](_0x11a4e8(0x165),_0x157f28),console['warn'](_0x11a4e8(0x170)),_0x36f277;}}}
72
73
 
73
- const _0x1e6804=_0x23ac;(function(_0x27fde0,_0x3bbf90){const _0x17bc93=_0x23ac,_0x453e01=_0x27fde0();while(!![]){try{const _0x3fa6d6=-parseInt(_0x17bc93(0x162))/0x1*(-parseInt(_0x17bc93(0x157))/0x2)+-parseInt(_0x17bc93(0x160))/0x3+parseInt(_0x17bc93(0x165))/0x4*(-parseInt(_0x17bc93(0x161))/0x5)+-parseInt(_0x17bc93(0x15f))/0x6+parseInt(_0x17bc93(0x164))/0x7*(parseInt(_0x17bc93(0x15a))/0x8)+-parseInt(_0x17bc93(0x15c))/0x9*(parseInt(_0x17bc93(0x15e))/0xa)+parseInt(_0x17bc93(0x159))/0xb*(-parseInt(_0x17bc93(0x15d))/0xc);if(_0x3fa6d6===_0x3bbf90)break;else _0x453e01['push'](_0x453e01['shift']());}catch(_0x228154){_0x453e01['push'](_0x453e01['shift']());}}}(_0x531a,0x7d394));function _0x531a(){const _0x5405ea=['1626597EsHUwQ','25KqCvia','44sjijMi','Orthographic','15673xNuFgm','15460kmHjJL','24232WYdUcx','Perspective','77NGTohU','3464XBoeZl','stringify','9JTyarV','11292nLlFQX','573740kXDjns','2185140KZkfOU'];_0x531a=function(){return _0x5405ea;};return _0x531a();}const DefaultPerspectiveCameraParam={'near':0.1,'far':0x3e8,'type':_0x1e6804(0x158),'fov':0x32,'aspect':0x1};function _0x23ac(_0x224155,_0xbd3790){_0x224155=_0x224155-0x157;const _0x531aa8=_0x531a();let _0x23ac2b=_0x531aa8[_0x224155];return _0x23ac2b;}const DefaultOrthographicCameraParam={'type':_0x1e6804(0x163),'near':0.1,'far':0x3e8,'left':-1,'right':0x1,'top':0x1,'bottom':-1};const DefaultCameraParam=JSON['parse'](JSON[_0x1e6804(0x15b)](DefaultPerspectiveCameraParam));
74
+ function _0xaaf8(){const _0x57c56e=['2179236MHogeJ','parse','8027392vxFYBT','87615ptVpyM','Orthographic','4930710WIAUBd','Perspective','1870101LJbdzv','3806670xturjI','543138lAngRZ','stringify','5GVxlla'];_0xaaf8=function(){return _0x57c56e;};return _0xaaf8();}const _0x4111bd=_0x4db4;(function(_0x5f5bcc,_0x5d93ca){const _0x5a3599=_0x4db4,_0x235306=_0x5f5bcc();while(!![]){try{const _0x46a1bb=parseInt(_0x5a3599(0xf5))/0x1*(parseInt(_0x5a3599(0xff))/0x2)+parseInt(_0x5a3599(0xfd))/0x3+-parseInt(_0x5a3599(0xf6))/0x4+parseInt(_0x5a3599(0xf9))/0x5+parseInt(_0x5a3599(0xfb))/0x6+-parseInt(_0x5a3599(0xfe))/0x7+-parseInt(_0x5a3599(0xf8))/0x8;if(_0x46a1bb===_0x5d93ca)break;else _0x235306['push'](_0x235306['shift']());}catch(_0x1aa113){_0x235306['push'](_0x235306['shift']());}}}(_0xaaf8,0xb1d9d));const DefaultPerspectiveCameraParam={'near':0.1,'far':0x3e8,'type':_0x4111bd(0xfc),'fov':0x32,'aspect':0x1};const DefaultOrthographicCameraParam={'type':_0x4111bd(0xfa),'near':0.1,'far':0x3e8,'left':-1,'right':0x1,'top':0x1,'bottom':-1};function _0x4db4(_0x57ec6b,_0xa5b9a1){_0x57ec6b=_0x57ec6b-0xf4;const _0xaaf830=_0xaaf8();let _0x4db4ad=_0xaaf830[_0x57ec6b];return _0x4db4ad;}const DefaultCameraParam=JSON[_0x4111bd(0xf7)](JSON[_0x4111bd(0xf4)](DefaultPerspectiveCameraParam));
74
75
 
75
- (function(_0x136037,_0x529c84){const _0x4fb22b=_0x2828,_0x53379e=_0x136037();while(!![]){try{const _0x7fdae2=-parseInt(_0x4fb22b(0x77))/0x1+-parseInt(_0x4fb22b(0x7d))/0x2*(parseInt(_0x4fb22b(0x78))/0x3)+-parseInt(_0x4fb22b(0x75))/0x4*(-parseInt(_0x4fb22b(0x7f))/0x5)+-parseInt(_0x4fb22b(0x7c))/0x6*(parseInt(_0x4fb22b(0x74))/0x7)+-parseInt(_0x4fb22b(0x76))/0x8*(-parseInt(_0x4fb22b(0x79))/0x9)+parseInt(_0x4fb22b(0x7b))/0xa+-parseInt(_0x4fb22b(0x7e))/0xb*(-parseInt(_0x4fb22b(0x7a))/0xc);if(_0x7fdae2===_0x529c84)break;else _0x53379e['push'](_0x53379e['shift']());}catch(_0x5110ce){_0x53379e['push'](_0x53379e['shift']());}}}(_0x4191,0xeb166));function _0x4191(){const _0x4792d8=['274136THUnNn','1295813MSpYXT','20898AnsosP','441ziGDQl','12UCICez','15811630SRcibT','7487022djcWre','122eQcgDd','3477683WJKZSj','75TqLjKc','7INGhEu','94692AmdfZW'];_0x4191=function(){return _0x4792d8;};return _0x4191();}function _0x2828(_0xf4f4c8,_0x1fecbb){_0xf4f4c8=_0xf4f4c8-0x74;const _0x4191a4=_0x4191();let _0x2828d7=_0x4191a4[_0xf4f4c8];return _0x2828d7;}const DefaultViewportParam={'elementId':null,'isLabelRendererNeeded':![],'isUILayerNeeded':![]};
76
+ function _0x2e06(){const _0x3f5ec0=['4LaKtAd','2283htIEJR','9204PqKIRV','10693595LqbLjk','665TGZmPe','2192264eLdWFk','2087790HPcwRT','720809NeNEpk','3245425fGyXDn','1668Qphggr','18llMeDC'];_0x2e06=function(){return _0x3f5ec0;};return _0x2e06();}(function(_0x2b9a68,_0x4c0126){const _0x504afe=_0x1859,_0x2eaf30=_0x2b9a68();while(!![]){try{const _0x3a4385=-parseInt(_0x504afe(0x17e))/0x1+parseInt(_0x504afe(0x180))/0x2*(parseInt(_0x504afe(0x178))/0x3)+parseInt(_0x504afe(0x182))/0x4*(parseInt(_0x504afe(0x17f))/0x5)+parseInt(_0x504afe(0x179))/0x6*(parseInt(_0x504afe(0x17b))/0x7)+parseInt(_0x504afe(0x17c))/0x8+-parseInt(_0x504afe(0x181))/0x9*(-parseInt(_0x504afe(0x17d))/0xa)+-parseInt(_0x504afe(0x17a))/0xb;if(_0x3a4385===_0x4c0126)break;else _0x2eaf30['push'](_0x2eaf30['shift']());}catch(_0x5d2b70){_0x2eaf30['push'](_0x2eaf30['shift']());}}}(_0x2e06,0x6885e));function _0x1859(_0x1b22fa,_0x11082e){_0x1b22fa=_0x1b22fa-0x178;const _0x2e06c4=_0x2e06();let _0x18599f=_0x2e06c4[_0x1b22fa];return _0x18599f;}const DefaultViewportParam={'elementId':null,'isLabelRendererNeeded':![],'isUILayerNeeded':![]};
76
77
 
77
- (function(_0x3d3010,_0xfe13d8){const _0x5836db=_0x3909,_0x4c8d4b=_0x3d3010();while(!![]){try{const _0x4beb5d=parseInt(_0x5836db(0x1d1))/0x1+parseInt(_0x5836db(0x1cd))/0x2+-parseInt(_0x5836db(0x1cf))/0x3+-parseInt(_0x5836db(0x1c9))/0x4*(parseInt(_0x5836db(0x1d0))/0x5)+parseInt(_0x5836db(0x1cc))/0x6+parseInt(_0x5836db(0x1ca))/0x7*(parseInt(_0x5836db(0x1ce))/0x8)+parseInt(_0x5836db(0x1cb))/0x9;if(_0x4beb5d===_0xfe13d8)break;else _0x4c8d4b['push'](_0x4c8d4b['shift']());}catch(_0x30471a){_0x4c8d4b['push'](_0x4c8d4b['shift']());}}}(_0x1a66,0x8f42e));function _0x1a66(){const _0x198286=['5501020EYIoZA','658623mnEKzP','4Tdnxeo','3084557PATAxL','176130nOhsYn','5104668dMacxS','1357674OXmFph','8wILlSX','2884371rZpIyu'];_0x1a66=function(){return _0x198286;};return _0x1a66();}function _0x3909(_0x2d2b08,_0x456a84){_0x2d2b08=_0x2d2b08-0x1c9;const _0x1a66ce=_0x1a66();let _0x3909fd=_0x1a66ce[_0x2d2b08];return _0x3909fd;}const DefaultRendererParameters={'logarithmicDepthBuffer':![],'alpha':![],'depth':!![],'stencil':![],'antialias':![],'samples':0x1,'forceWebGL':![],'outputBufferType':0x3f8,'toneMapping':0x0,'toneMappingExposure':0x1,'shadowMapEnabled':!![],'shadowMapType':0x1};
78
+ (function(_0x227c68,_0x12bdf5){const _0x8a91d1=_0x4cb8,_0x3ce02e=_0x227c68();while(!![]){try{const _0x3eebc8=-parseInt(_0x8a91d1(0xf3))/0x1*(parseInt(_0x8a91d1(0xf0))/0x2)+-parseInt(_0x8a91d1(0xf4))/0x3+-parseInt(_0x8a91d1(0xee))/0x4+-parseInt(_0x8a91d1(0xef))/0x5*(parseInt(_0x8a91d1(0xf1))/0x6)+parseInt(_0x8a91d1(0xf2))/0x7+-parseInt(_0x8a91d1(0xed))/0x8+parseInt(_0x8a91d1(0xf5))/0x9;if(_0x3eebc8===_0x12bdf5)break;else _0x3ce02e['push'](_0x3ce02e['shift']());}catch(_0x1fa4ea){_0x3ce02e['push'](_0x3ce02e['shift']());}}}(_0x46b3,0x6e8ff));function _0x4cb8(_0x48a3ba,_0x58fbef){_0x48a3ba=_0x48a3ba-0xed;const _0x46b35f=_0x46b3();let _0x4cb814=_0x46b35f[_0x48a3ba];return _0x4cb814;}const DefaultRendererParameters={'logarithmicDepthBuffer':![],'alpha':![],'depth':!![],'stencil':![],'antialias':![],'samples':0x1,'forceWebGL':![],'outputBufferType':0x3f8,'toneMapping':0x0,'toneMappingExposure':0x1,'shadowMapEnabled':!![],'shadowMapType':0x1};function _0x46b3(){const _0x4146b8=['3427192iVBNJz','118780eGIcZo','3845pIfnvi','3802oNXwmM','4980fsczOG','3185308rdpCju','34AfJGfA','1574946arCITK','15154191wvdRfB'];_0x46b3=function(){return _0x4146b8;};return _0x46b3();}
78
79
 
79
- (function(_0x512460,_0x404421){const _0x2769b4=_0x40b9,_0x2127ce=_0x512460();while(!![]){try{const _0x429c9f=-parseInt(_0x2769b4(0xfd))/0x1*(parseInt(_0x2769b4(0x105))/0x2)+parseInt(_0x2769b4(0xff))/0x3*(-parseInt(_0x2769b4(0x10a))/0x4)+-parseInt(_0x2769b4(0x102))/0x5*(parseInt(_0x2769b4(0x107))/0x6)+-parseInt(_0x2769b4(0x100))/0x7*(parseInt(_0x2769b4(0xfe))/0x8)+parseInt(_0x2769b4(0x109))/0x9*(-parseInt(_0x2769b4(0x101))/0xa)+parseInt(_0x2769b4(0x106))/0xb*(-parseInt(_0x2769b4(0x103))/0xc)+-parseInt(_0x2769b4(0x104))/0xd*(-parseInt(_0x2769b4(0x108))/0xe);if(_0x429c9f===_0x404421)break;else _0x2127ce['push'](_0x2127ce['shift']());}catch(_0x404b41){_0x2127ce['push'](_0x2127ce['shift']());}}}(_0x33a7,0x579f6));function _0x40b9(_0x46f340,_0x5ef1ce){_0x46f340=_0x46f340-0xfd;const _0x33a7f1=_0x33a7();let _0x40b923=_0x33a7f1[_0x46f340];return _0x40b923;}function _0x33a7(){const _0x2d1820=['27927ckryGx','244JKHjEe','86iuHMzh','1222824BHgidA','11841XLuRUt','28rRONJT','1990DAXgke','535DxpoDG','35364zUeYYQ','762658rjQFNr','9304dWicuK','1353jsLLNJ','9318jWnFlK','658UWbUAD'];_0x33a7=function(){return _0x2d1820;};return _0x33a7();}const DefaultAppParam={'renderParam':DefaultRendererParameters,'cameraParam':DefaultCameraParam,'postProcessParam':DefaultPostProcessParam,'viewportParam':DefaultViewportParam,'classes':{'assetManagerClass':AssetManager,'controllerClass':Controller,'worldClass':World,'viewportClass':Viewport}};
80
+ (function(_0x37762a,_0x4a513d){const _0x4b9070=_0x7dbf,_0x260369=_0x37762a();while(!![]){try{const _0x2ac58a=parseInt(_0x4b9070(0x89))/0x1*(-parseInt(_0x4b9070(0x84))/0x2)+-parseInt(_0x4b9070(0x8b))/0x3*(parseInt(_0x4b9070(0x88))/0x4)+parseInt(_0x4b9070(0x8f))/0x5*(-parseInt(_0x4b9070(0x86))/0x6)+-parseInt(_0x4b9070(0x8d))/0x7*(parseInt(_0x4b9070(0x85))/0x8)+parseInt(_0x4b9070(0x8e))/0x9+-parseInt(_0x4b9070(0x87))/0xa+parseInt(_0x4b9070(0x8c))/0xb*(parseInt(_0x4b9070(0x8a))/0xc);if(_0x2ac58a===_0x4a513d)break;else _0x260369['push'](_0x260369['shift']());}catch(_0x1e9676){_0x260369['push'](_0x260369['shift']());}}}(_0x2f51,0xed09f));function _0x2f51(){const _0x510af7=['3132UCCXYQ','11774710YPUIig','1328prazpH','728751UyAMkH','1545132iRXRLr','14721peMyFu','517eJMfVw','5201FFYwyA','1595961foDZqc','2660qBRBwt','2DYWxZQ','15560lkAQDF'];_0x2f51=function(){return _0x510af7;};return _0x2f51();}function _0x7dbf(_0x76a77e,_0x363aca){_0x76a77e=_0x76a77e-0x84;const _0x2f5173=_0x2f51();let _0x7dbf5a=_0x2f5173[_0x76a77e];return _0x7dbf5a;}const DefaultAppParam={'renderParam':DefaultRendererParameters,'cameraParam':DefaultCameraParam,'postProcessParam':DefaultPostProcessParam,'viewportParam':DefaultViewportParam,'classes':{'assetManagerClass':AssetManager,'controllerClass':Controller,'worldClass':World,'viewportClass':Viewport}};
80
81
 
81
- function _0x2f0e(){const _0x33e42e=['app','KeepWorld','getWorldRightDirection','destroyChildren','getChildActorById','length','getBounds','_world','addChildComponent','2087864ItjPjc','delete','setQuaternion','getComponents','setWorldMatrix','onActorClick','1655920SgvUzv','min','push','2jkPBzY','onHoverEndDelegate','worldToLocal','removeTickableActor','removeChildActor','getCenter','forEach','size','markRenderStateDirty','onAddedToWorld','getWorldPosition','_rootComponent','getScale','getWorldForwardDirection','sub','addChildActor','onActorDoubleClick','isTickEnabled','LYObject','getWorldRotation','tick','_onClickDelegate','threeObject','6RqpqLe','parentActor','getComponentById','uuid','10016axMSJR','Actor\x20::\x20addChildActor\x20:\x20the\x20\x27newActor\x27\x20you\x20want\x20to\x20add\x20has\x20no\x20rootcomponent','setRotation','has','478834YMwgCO','getBoundsBottomCenterPosition','4260003PQKJBi','removeFromParent','2979ofwSJk','clearComponent','_onHoverEndDelegate','error','parent','attachComponent','10jHzATU','rootComponent\x20is\x20invalid','onClickDelegate','getRotation','4129489jaqslr','detachComponent','setPosition','viewport','detachFromParentComponent','rootComponent','broadcast','name','onHoverBeginDelegate','destroy','setVisible','getWorldUpDirection','removeComponent','getWorldMatrix','getPosition','_name','KeepRelative','max','isHoverEnabled','getWorldScale','getQuaternion','setScale','isClickEnabled','onDoubleClickDelegate','_onHoverBeginDelegate','childActors','childrenComponents','world','addComponent','getChildActorsByIds','constructRootComponent','addLocalOffset','removeChildComponent','localToWorld','onActorHoverEnd','1657737iOVaDP','setLayers'];_0x2f0e=function(){return _0x33e42e;};return _0x2f0e();}const _0x563800=_0x5421;(function(_0x4f09d4,_0x25bf4f){const _0xf5343=_0x5421,_0x3d1c70=_0x4f09d4();while(!![]){try{const _0x10d56b=-parseInt(_0xf5343(0x16f))/0x1*(-parseInt(_0xf5343(0x18e))/0x2)+-parseInt(_0xf5343(0x15b))/0x3+-parseInt(_0xf5343(0x166))/0x4+parseInt(_0xf5343(0x16c))/0x5+-parseInt(_0xf5343(0x186))/0x6*(-parseInt(_0xf5343(0x138))/0x7)+parseInt(_0xf5343(0x18a))/0x8*(-parseInt(_0xf5343(0x192))/0x9)+parseInt(_0xf5343(0x134))/0xa*(parseInt(_0xf5343(0x190))/0xb);if(_0x10d56b===_0x25bf4f)break;else _0x3d1c70['push'](_0x3d1c70['shift']());}catch(_0x117e77){_0x3d1c70['push'](_0x3d1c70['shift']());}}}(_0x2f0e,0x48d15));function _0x5421(_0x1f0380,_0x3f51e4){_0x1f0380=_0x1f0380-0x134;const _0x2f0e65=_0x2f0e();let _0x54218a=_0x2f0e65[_0x1f0380];return _0x54218a;}class Actor extends BaseObject{get[_0x563800(0x153)](){return this['_world'];}get[_0x563800(0x13f)](){const _0x17a046=_0x563800;return this[_0x17a046(0x147)];}set[_0x563800(0x13f)](_0x469f76){const _0x2a9133=_0x563800;this[_0x2a9133(0x147)]=_0x469f76;}get[_0x563800(0x13d)](){const _0x57e370=_0x563800;if(!this['_rootComponent'])throw Error(_0x57e370(0x135));return this[_0x57e370(0x17a)];}set[_0x563800(0x13d)](_0x1b5b9d){const _0x327285=_0x563800;_0x1b5b9d[_0x327285(0x13c)](),_0x1b5b9d[_0x327285(0x187)]=this;if(this[_0x327285(0x17a)]){let _0x28d86d=this['rootComponent'][_0x327285(0x152)];for(let _0x44d203=0x0;_0x44d203<_0x28d86d['length'];++_0x44d203){_0x1b5b9d[_0x327285(0x165)](_0x28d86d[_0x44d203]);}this['rootComponent']['destroy']();}this[_0x327285(0x17a)]=_0x1b5b9d;}get[_0x563800(0x152)](){const _0x36511c=_0x563800;return this['rootComponent'][_0x36511c(0x152)];}get['childActors'](){const _0x107ebf=_0x563800;var _0x2e8b95;let _0x4d9056=[];return (_0x2e8b95=this[_0x107ebf(0x13d)][_0x107ebf(0x185)])===null||_0x2e8b95===void 0?void 0:_0x2e8b95['children'][_0x107ebf(0x175)](_0x12e721=>{const _0xe81c18=_0x107ebf;var _0xd4118c;let _0xed0516=(_0xd4118c=_0x12e721['userData'][_0xe81c18(0x181)])===null||_0xd4118c===void 0?void 0:_0xd4118c['parentActor'];_0xed0516!==this&&_0xed0516 instanceof Actor&&_0x4d9056[_0xe81c18(0x16e)](_0xed0516);}),_0x4d9056;}get[_0x563800(0x187)](){const _0x1aeb97=_0x563800;var _0x3399f9,_0x47bab1;let _0x24c28a=(_0x47bab1=(_0x3399f9=this[_0x1aeb97(0x13d)]['threeObject'])===null||_0x3399f9===void 0?void 0:_0x3399f9[_0x1aeb97(0x196)])===null||_0x47bab1===void 0?void 0:_0x47bab1['userData'][_0x1aeb97(0x181)][_0x1aeb97(0x187)];return _0x24c28a===this?null:_0x24c28a;}get['isVisible'](){const _0x44e178=_0x563800;return this[_0x44e178(0x13d)]?this[_0x44e178(0x13d)]['isVisible']:![];}get['isTickEnabled'](){const _0x4d9ee0=_0x563800;return super[_0x4d9ee0(0x180)];}set['isTickEnabled'](_0x76fdd2){const _0x2a8565=_0x563800;super[_0x2a8565(0x180)]=_0x76fdd2,this[_0x2a8565(0x180)]?this[_0x2a8565(0x15d)][_0x2a8565(0x153)]['addTickableActor'](this):this['app'][_0x2a8565(0x153)][_0x2a8565(0x172)](this);}get[_0x563800(0x140)](){const _0x5edbf6=_0x563800;return this[_0x5edbf6(0x150)];}get[_0x563800(0x170)](){const _0x4b20ac=_0x563800;return this[_0x4b20ac(0x194)];}get[_0x563800(0x136)](){const _0x456c0e=_0x563800;return this[_0x456c0e(0x184)];}get[_0x563800(0x14f)](){return this['_onDoubleClickDelegate'];}constructor(_0x1a04fd,_0xc329ad){const _0x29527c=_0x563800;super(_0xc329ad),this[_0x29527c(0x147)]='Actor',this[_0x29527c(0x17a)]=null,this['_world']=null,this[_0x29527c(0x150)]=new Delegate(),this[_0x29527c(0x194)]=new Delegate(),this[_0x29527c(0x184)]=new Delegate(),this['_onDoubleClickDelegate']=new Delegate(),this['app']=_0x1a04fd,this[_0x29527c(0x13d)]=this[_0x29527c(0x156)](),this['rootComponent'][_0x29527c(0x187)]=this;}[_0x563800(0x156)](){return new SceneComponent(this['app']);}['getBoundsCenterPosition'](_0x1afd71=!![]){const _0x47f072=_0x563800;let _0x28bdff=new webgpu.Vector3();return this[_0x47f072(0x163)]()['getCenter'](_0x28bdff),!_0x1afd71?_0x28bdff[_0x47f072(0x17d)](this[_0x47f072(0x146)]()):_0x28bdff;}['getChildActorById'](_0x8928e6,_0x41214c=!![]){const _0x38ba51=_0x563800,_0x3f9129=this[_0x38ba51(0x151)];for(const _0x461fb0 of _0x3f9129){if(_0x461fb0['uuid']===_0x8928e6)return _0x461fb0;}if(_0x41214c)for(const _0x10ff40 of _0x3f9129){const _0x22c430=_0x10ff40[_0x38ba51(0x161)](_0x8928e6,!![]);if(_0x22c430)return _0x22c430;}return null;}[_0x563800(0x155)](_0x47ab2a,_0x19aafe=!![]){const _0x5a67f5=_0x563800,_0x34c482=[],_0x593367=new Set(_0x47ab2a),_0x54b0e3=this[_0x5a67f5(0x151)];for(const _0x1f365f of _0x54b0e3){_0x593367[_0x5a67f5(0x18d)](_0x1f365f[_0x5a67f5(0x189)])&&(_0x34c482['push'](_0x1f365f),_0x593367['delete'](_0x1f365f[_0x5a67f5(0x189)]));}if(_0x19aafe&&_0x593367[_0x5a67f5(0x176)]>0x0)for(const _0x2466e2 of _0x54b0e3){const _0x5d223e=_0x2466e2['getChildActorsByIds']([..._0x593367],!![]);for(const _0x10985a of _0x5d223e){_0x34c482[_0x5a67f5(0x16e)](_0x10985a),_0x593367[_0x5a67f5(0x167)](_0x10985a['uuid']);}if(_0x593367[_0x5a67f5(0x176)]===0x0)break;}return _0x34c482;}[_0x563800(0x188)](_0xc3dfe1){const _0x14ab52=_0x563800;return this['rootComponent'][_0x14ab52(0x188)](_0xc3dfe1);}['getBoundsTopCenterPosition'](_0x1e8bcf=!![]){const _0x4540ec=_0x563800;let _0x272b3e=new webgpu.Vector3(),_0x2fd331=this['rootComponent'][_0x4540ec(0x163)]();return _0x2fd331['getCenter'](_0x272b3e),_0x272b3e['y']=_0x2fd331[_0x4540ec(0x149)]['y'],!_0x1e8bcf?_0x272b3e[_0x4540ec(0x17d)](this['getPosition']()):_0x272b3e;}[_0x563800(0x18f)](_0x4c3970=!![]){const _0x2112e7=_0x563800;let _0x543724=new webgpu.Vector3(),_0xa016a7=this[_0x2112e7(0x163)]();return _0xa016a7[_0x2112e7(0x174)](_0x543724),_0x543724['y']=_0xa016a7[_0x2112e7(0x16d)]['y'],!_0x4c3970?_0x543724[_0x2112e7(0x17d)](this[_0x2112e7(0x146)]()):_0x543724;}['getBounds'](){const _0x2a922f=_0x563800;return this[_0x2a922f(0x13d)]['getBounds']();}[_0x563800(0x141)](){const _0x8ec32=_0x563800;let _0x39b968=this[_0x8ec32(0x151)];_0x39b968[_0x8ec32(0x175)](_0x41cc65=>{const _0x3f1f99=_0x8ec32;_0x41cc65[_0x3f1f99(0x141)]();}),this[_0x8ec32(0x13d)]['destroy']();}[_0x563800(0x142)](_0x5150e7){const _0x2d6c22=_0x563800;this[_0x2d6c22(0x13d)][_0x2d6c22(0x142)](_0x5150e7);}[_0x563800(0x15c)](_0x3b0236,_0x163fd2=!![]){const _0x14ef86=_0x563800;this[_0x14ef86(0x13d)][_0x14ef86(0x15c)](_0x3b0236),_0x163fd2&&this[_0x14ef86(0x151)][_0x14ef86(0x175)](_0x5e632b=>{const _0x133435=_0x14ef86;_0x5e632b[_0x133435(0x15c)](_0x3b0236,_0x163fd2);});}[_0x563800(0x183)](_0x2e11d1){const _0x19e322=_0x563800;if(!this[_0x19e322(0x180)])return;super['tick'](_0x2e11d1),this[_0x19e322(0x13d)]['tick'](_0x2e11d1);}[_0x563800(0x146)](){return this['rootComponent']['getPosition']();}[_0x563800(0x13a)](..._0x16eec1){const _0x3a99b6=_0x563800;_0x16eec1[_0x3a99b6(0x162)]===0x1?this[_0x3a99b6(0x13d)][_0x3a99b6(0x13a)](_0x16eec1[0x0]):this[_0x3a99b6(0x13d)][_0x3a99b6(0x13a)](_0x16eec1[0x0],_0x16eec1[0x1],_0x16eec1[0x2]);}[_0x563800(0x137)](){return this['rootComponent']['getRotation']();}[_0x563800(0x18c)](..._0x3ac44f){const _0x41bf0a=_0x563800;_0x3ac44f[_0x41bf0a(0x162)]===0x1?this[_0x41bf0a(0x13d)][_0x41bf0a(0x18c)](_0x3ac44f[0x0]):this['rootComponent'][_0x41bf0a(0x18c)](_0x3ac44f[0x0],_0x3ac44f[0x1],_0x3ac44f[0x2]);}[_0x563800(0x14c)](){const _0x137223=_0x563800;return this[_0x137223(0x13d)][_0x137223(0x14c)]();}['setQuaternion'](..._0x5dfab7){const _0x40af83=_0x563800;_0x5dfab7[_0x40af83(0x162)]===0x1?this[_0x40af83(0x13d)][_0x40af83(0x168)](_0x5dfab7[0x0]):this[_0x40af83(0x13d)][_0x40af83(0x168)](_0x5dfab7[0x0],_0x5dfab7[0x1],_0x5dfab7[0x2],_0x5dfab7[0x3]);}[_0x563800(0x17b)](){const _0x1a9a28=_0x563800;return this['rootComponent'][_0x1a9a28(0x17b)]();}[_0x563800(0x14d)](..._0xd2cf04){const _0x1f88b6=_0x563800;_0xd2cf04['length']===0x1?this[_0x1f88b6(0x13d)][_0x1f88b6(0x14d)](_0xd2cf04[0x0]):this[_0x1f88b6(0x13d)][_0x1f88b6(0x14d)](_0xd2cf04[0x0],_0xd2cf04[0x1],_0xd2cf04[0x2]);}[_0x563800(0x145)](){const _0x1921bc=_0x563800;return this['rootComponent'][_0x1921bc(0x145)]();}[_0x563800(0x16a)](_0x48a3fb){const _0x3d13a4=_0x563800;this[_0x3d13a4(0x13d)][_0x3d13a4(0x16a)](_0x48a3fb);}[_0x563800(0x179)](){const _0xd1e866=_0x563800;return this[_0xd1e866(0x13d)][_0xd1e866(0x179)]();}[_0x563800(0x182)](){const _0x45f490=_0x563800;return this[_0x45f490(0x13d)][_0x45f490(0x182)]();}['getWorldQuaternion'](){const _0x570b5d=_0x563800;return this[_0x570b5d(0x13d)]['getWorldQuaternion']();}['getWorldScale'](){const _0x5910b3=_0x563800;return this[_0x5910b3(0x13d)][_0x5910b3(0x14b)]();}[_0x563800(0x17c)](){const _0x36e758=_0x563800;return this[_0x36e758(0x13d)]['getWorldForwardDirection']();}['getWorldUpDirection'](){const _0x1c8e0c=_0x563800;return this[_0x1c8e0c(0x13d)][_0x1c8e0c(0x143)]();}[_0x563800(0x15f)](){const _0x354291=_0x563800;return this[_0x354291(0x13d)]['getWorldRightDirection']();}[_0x563800(0x157)](_0x25af0e,_0x268c7f){const _0x111f74=_0x563800;let _0x1e6ecb=this[_0x111f74(0x146)]();this[_0x111f74(0x13a)](_0x1e6ecb['x']+_0x25af0e['x']*_0x268c7f,_0x1e6ecb['y']+_0x25af0e['y']*_0x268c7f,_0x1e6ecb['z']+_0x25af0e['z']*_0x268c7f);}[_0x563800(0x171)](_0x574b8e){const _0x5cb66c=_0x563800;return this[_0x5cb66c(0x13d)][_0x5cb66c(0x171)](_0x574b8e);}[_0x563800(0x159)](_0x5dc7ba){return this['rootComponent']['localToWorld'](_0x5dc7ba);}[_0x563800(0x169)](){const _0x4d4756=_0x563800;return this[_0x4d4756(0x13d)][_0x4d4756(0x152)];}[_0x563800(0x154)](_0x264578,_0x2f0b85=exports.AttachmentRules[_0x563800(0x148)]){const _0x9ef972=_0x563800;this['rootComponent'][_0x9ef972(0x165)](_0x264578,_0x2f0b85),this[_0x9ef972(0x164)]&&_0x264578[_0x9ef972(0x178)](this[_0x9ef972(0x164)]);}[_0x563800(0x144)](_0x5679ff){const _0x4f7207=_0x563800;if(_0x5679ff===this['_rootComponent'])return;this[_0x4f7207(0x13d)][_0x4f7207(0x158)](_0x5679ff);}[_0x563800(0x193)](){const _0x5cf69a=_0x563800;this['rootComponent'][_0x5cf69a(0x160)]();}[_0x563800(0x17e)](_0x234fb7,_0x52c02b=exports.AttachmentRules[_0x563800(0x15e)]){const _0xd40d40=_0x563800;if(!_0x234fb7['rootComponent']){console[_0xd40d40(0x195)](_0xd40d40(0x18b));return;}if(_0x234fb7[_0xd40d40(0x187)]===this)return;_0x52c02b===exports.AttachmentRules['KeepRelative']&&this[_0xd40d40(0x13d)][_0xd40d40(0x197)](_0x234fb7[_0xd40d40(0x13d)]);if(_0x52c02b===exports.AttachmentRules['KeepWorld']){let _0x5d9089=_0x234fb7[_0xd40d40(0x145)]();this['rootComponent'][_0xd40d40(0x197)](_0x234fb7[_0xd40d40(0x13d)]),_0x234fb7['setWorldMatrix'](_0x5d9089);}this['_world']&&this[_0xd40d40(0x164)][_0xd40d40(0x13b)][_0xd40d40(0x177)]();}[_0x563800(0x173)](_0x2884a3){const _0x57cf9d=_0x563800;let _0x5674b1=_0x2884a3['getWorldMatrix']();this['rootComponent'][_0x57cf9d(0x139)](_0x2884a3[_0x57cf9d(0x13d)]),_0x2884a3[_0x57cf9d(0x16a)](_0x5674b1);}[_0x563800(0x191)](){const _0x1865a3=_0x563800;this[_0x1865a3(0x187)]&&this[_0x1865a3(0x187)]['removeChildActor'](this);}['onAddedToWorld'](_0x3523a1){const _0x4d9dce=_0x563800;this[_0x4d9dce(0x164)]=_0x3523a1,this[_0x4d9dce(0x13d)]['onAddedToWorld'](this[_0x4d9dce(0x164)]),this[_0x4d9dce(0x151)]['forEach'](_0x4302db=>{const _0x14f5a7=_0x4d9dce;_0x4302db[_0x14f5a7(0x178)](_0x3523a1);});}['onRemovedFromWorld'](){const _0x14d7ef=_0x563800;this[_0x14d7ef(0x164)]=null;}get[_0x563800(0x14a)](){const _0x1d34c2=_0x563800;return this[_0x1d34c2(0x13d)]['isHoverEnabled'];}set[_0x563800(0x14a)](_0xc96b4){const _0x3c5681=_0x563800;this[_0x3c5681(0x13d)][_0x3c5681(0x14a)]=_0xc96b4;}get[_0x563800(0x14e)](){const _0x37ed3b=_0x563800;return this[_0x37ed3b(0x13d)][_0x37ed3b(0x14e)];}set[_0x563800(0x14e)](_0x40abd9){const _0x1091af=_0x563800;this[_0x1091af(0x13d)][_0x1091af(0x14e)]=_0x40abd9;}['onActorHoverBegin'](_0x386145){const _0x4bff55=_0x563800;this[_0x4bff55(0x150)]['broadcast'](_0x386145);}[_0x563800(0x15a)](_0x394783){const _0x317352=_0x563800;this[_0x317352(0x194)]['broadcast'](_0x394783);}[_0x563800(0x16b)](_0x234d8f){this['_onClickDelegate']['broadcast'](_0x234d8f);}[_0x563800(0x17f)](_0x4fd43a){const _0x15ba03=_0x563800;this['_onDoubleClickDelegate'][_0x15ba03(0x13e)](_0x4fd43a);}}
82
+ const _0x1849cf=_0x3293;(function(_0x2a6ca4,_0x11813e){const _0x293d32=_0x3293,_0x163693=_0x2a6ca4();while(!![]){try{const _0x310dd6=parseInt(_0x293d32(0x232))/0x1+-parseInt(_0x293d32(0x1f3))/0x2*(-parseInt(_0x293d32(0x20d))/0x3)+parseInt(_0x293d32(0x1fd))/0x4*(-parseInt(_0x293d32(0x23f))/0x5)+-parseInt(_0x293d32(0x21e))/0x6+parseInt(_0x293d32(0x21f))/0x7*(parseInt(_0x293d32(0x247))/0x8)+parseInt(_0x293d32(0x234))/0x9+parseInt(_0x293d32(0x21d))/0xa*(-parseInt(_0x293d32(0x20a))/0xb);if(_0x310dd6===_0x11813e)break;else _0x163693['push'](_0x163693['shift']());}catch(_0x2417d9){_0x163693['push'](_0x163693['shift']());}}}(_0x12ed,0x56289));function _0x3293(_0x58b573,_0x4f0568){_0x58b573=_0x58b573-0x1e8;const _0x12ed4f=_0x12ed();let _0x3293b9=_0x12ed4f[_0x58b573];return _0x3293b9;}function _0x12ed(){const _0x27a8f9=['_onHoverEndDelegate','forEach','getWorldScale','onActorClick','_world','_rootComponent','_onClickDelegate','getWorldForwardDirection','removeComponent','sub','setWorldMatrix','addComponent','getPosition','2iaInbP','getWorldPosition','getBoundsCenterPosition','Actor','max','getComponents','length','destroyChildren','delete','worldToLocal','25196SMTtgA','getWorldRotation','getBoundsTopCenterPosition','_onDoubleClickDelegate','isTickEnabled','onHoverBeginDelegate','onActorDoubleClick','app','Actor\x20::\x20addChildActor\x20:\x20the\x20\x27newActor\x27\x20you\x20want\x20to\x20add\x20has\x20no\x20rootcomponent','addChildComponent','onAddedToWorld','attachComponent','destroy','337711OhJZlO','detachComponent','getScale','1312257KLTkjX','getChildActorById','LYObject','threeObject','setPosition','world','setLayers','viewport','isVisible','name','isHoverEnabled','setRotation','setScale','tick','has','setQuaternion','210nvfNWB','2693334piAYIy','105IjBFZc','rootComponent','removeTickableActor','KeepWorld','onDoubleClickDelegate','childrenComponents','_onHoverBeginDelegate','userData','parentActor','addLocalOffset','getChildActorsByIds','_name','onClickDelegate','addChildActor','removeChildActor','isClickEnabled','getCenter','size','getWorldRightDirection','671258GIFdQL','childActors','3854745GCzCIf','getRotation','uuid','getComponentById','getWorldMatrix','push','rootComponent\x20is\x20invalid','error','KeepRelative','getBounds','detachFromParentComponent','515ABxIDX','min','getWorldQuaternion','getBoundsBottomCenterPosition','setVisible','broadcast','getQuaternion','localToWorld','297776QXyxEr','addTickableActor'];_0x12ed=function(){return _0x27a8f9;};return _0x12ed();}class Actor extends BaseObject{get['world'](){return this['_world'];}get[_0x1849cf(0x216)](){return this['_name'];}set[_0x1849cf(0x216)](_0x1db262){const _0x38c64f=_0x1849cf;this[_0x38c64f(0x22a)]=_0x1db262;}get[_0x1849cf(0x220)](){const _0x3dd4ea=_0x1849cf;if(!this[_0x3dd4ea(0x1eb)])throw Error(_0x3dd4ea(0x23a));return this[_0x3dd4ea(0x1eb)];}set['rootComponent'](_0x215c07){const _0x18a043=_0x1849cf;_0x215c07[_0x18a043(0x23e)](),_0x215c07[_0x18a043(0x227)]=this;if(this['_rootComponent']){let _0x1e1c7a=this[_0x18a043(0x220)][_0x18a043(0x224)];for(let _0x37e532=0x0;_0x37e532<_0x1e1c7a[_0x18a043(0x1f9)];++_0x37e532){_0x215c07[_0x18a043(0x206)](_0x1e1c7a[_0x37e532]);}this[_0x18a043(0x220)][_0x18a043(0x209)]();}this[_0x18a043(0x1eb)]=_0x215c07;}get[_0x1849cf(0x224)](){const _0x13c885=_0x1849cf;return this[_0x13c885(0x220)][_0x13c885(0x224)];}get['childActors'](){const _0x477de3=_0x1849cf;var _0x1c70d9;let _0x3cdcbe=[];return (_0x1c70d9=this[_0x477de3(0x220)][_0x477de3(0x210)])===null||_0x1c70d9===void 0?void 0:_0x1c70d9['children']['forEach'](_0x494783=>{const _0x3627f2=_0x477de3;var _0x38af5a;let _0xa294d5=(_0x38af5a=_0x494783[_0x3627f2(0x226)][_0x3627f2(0x20f)])===null||_0x38af5a===void 0?void 0:_0x38af5a['parentActor'];_0xa294d5!==this&&_0xa294d5 instanceof Actor&&_0x3cdcbe[_0x3627f2(0x239)](_0xa294d5);}),_0x3cdcbe;}get[_0x1849cf(0x227)](){const _0x312363=_0x1849cf;var _0x4cb71b,_0x20fb66;let _0x50e7fa=(_0x20fb66=(_0x4cb71b=this[_0x312363(0x220)][_0x312363(0x210)])===null||_0x4cb71b===void 0?void 0:_0x4cb71b['parent'])===null||_0x20fb66===void 0?void 0:_0x20fb66[_0x312363(0x226)][_0x312363(0x20f)][_0x312363(0x227)];return _0x50e7fa===this?null:_0x50e7fa;}get[_0x1849cf(0x215)](){const _0x444d7f=_0x1849cf;return this[_0x444d7f(0x220)]?this[_0x444d7f(0x220)]['isVisible']:![];}get[_0x1849cf(0x201)](){return super['isTickEnabled'];}set[_0x1849cf(0x201)](_0x19402d){const _0x399ee9=_0x1849cf;super[_0x399ee9(0x201)]=_0x19402d,this[_0x399ee9(0x201)]?this['app']['world'][_0x399ee9(0x248)](this):this[_0x399ee9(0x204)][_0x399ee9(0x212)][_0x399ee9(0x221)](this);}get[_0x1849cf(0x202)](){const _0x4c8210=_0x1849cf;return this[_0x4c8210(0x225)];}get['onHoverEndDelegate'](){return this['_onHoverEndDelegate'];}get[_0x1849cf(0x22b)](){const _0x940bb1=_0x1849cf;return this[_0x940bb1(0x1ec)];}get[_0x1849cf(0x223)](){const _0x278691=_0x1849cf;return this[_0x278691(0x200)];}constructor(_0x129111,_0x2d271){const _0x57047d=_0x1849cf;super(_0x2d271),this[_0x57047d(0x22a)]=_0x57047d(0x1f6),this['_rootComponent']=null,this[_0x57047d(0x1ea)]=null,this[_0x57047d(0x225)]=new Delegate(),this[_0x57047d(0x249)]=new Delegate(),this['_onClickDelegate']=new Delegate(),this[_0x57047d(0x200)]=new Delegate(),this[_0x57047d(0x204)]=_0x129111,this[_0x57047d(0x220)]=this['constructRootComponent'](),this['rootComponent'][_0x57047d(0x227)]=this;}['constructRootComponent'](){const _0x499baf=_0x1849cf;return new SceneComponent(this[_0x499baf(0x204)]);}[_0x1849cf(0x1f5)](_0x92d2d8=!![]){const _0x20a167=_0x1849cf;let _0x4f86f8=new webgpu.Vector3();return this[_0x20a167(0x23d)]()['getCenter'](_0x4f86f8),!_0x92d2d8?_0x4f86f8['sub'](this['getPosition']()):_0x4f86f8;}[_0x1849cf(0x20e)](_0x3d2496,_0x3dcaac=!![]){const _0x1864f9=_0x1849cf,_0x7d29e0=this['childActors'];for(const _0x133359 of _0x7d29e0){if(_0x133359['uuid']===_0x3d2496)return _0x133359;}if(_0x3dcaac)for(const _0x313f87 of _0x7d29e0){const _0x20d178=_0x313f87[_0x1864f9(0x20e)](_0x3d2496,!![]);if(_0x20d178)return _0x20d178;}return null;}[_0x1849cf(0x229)](_0x365d0,_0x1a3c00=!![]){const _0x48d823=_0x1849cf,_0x5e0e20=[],_0x197914=new Set(_0x365d0),_0x516c22=this[_0x48d823(0x233)];for(const _0x3866e1 of _0x516c22){_0x197914[_0x48d823(0x21b)](_0x3866e1[_0x48d823(0x236)])&&(_0x5e0e20[_0x48d823(0x239)](_0x3866e1),_0x197914[_0x48d823(0x1fb)](_0x3866e1['uuid']));}if(_0x1a3c00&&_0x197914[_0x48d823(0x230)]>0x0)for(const _0x2e3a6c of _0x516c22){const _0x4c0789=_0x2e3a6c[_0x48d823(0x229)]([..._0x197914],!![]);for(const _0x434bd5 of _0x4c0789){_0x5e0e20[_0x48d823(0x239)](_0x434bd5),_0x197914['delete'](_0x434bd5[_0x48d823(0x236)]);}if(_0x197914[_0x48d823(0x230)]===0x0)break;}return _0x5e0e20;}[_0x1849cf(0x237)](_0x3a11d3){const _0x252371=_0x1849cf;return this[_0x252371(0x220)]['getComponentById'](_0x3a11d3);}[_0x1849cf(0x1ff)](_0x24e3da=!![]){const _0xd4b04=_0x1849cf;let _0x251c82=new webgpu.Vector3(),_0x5b5d31=this[_0xd4b04(0x220)]['getBounds']();return _0x5b5d31[_0xd4b04(0x22f)](_0x251c82),_0x251c82['y']=_0x5b5d31[_0xd4b04(0x1f7)]['y'],!_0x24e3da?_0x251c82[_0xd4b04(0x1ef)](this['getPosition']()):_0x251c82;}[_0x1849cf(0x242)](_0x1b5191=!![]){const _0x139e98=_0x1849cf;let _0x40a6f3=new webgpu.Vector3(),_0x4ddf3b=this['getBounds']();return _0x4ddf3b[_0x139e98(0x22f)](_0x40a6f3),_0x40a6f3['y']=_0x4ddf3b[_0x139e98(0x240)]['y'],!_0x1b5191?_0x40a6f3['sub'](this[_0x139e98(0x1f2)]()):_0x40a6f3;}[_0x1849cf(0x23d)](){const _0x4fefae=_0x1849cf;return this[_0x4fefae(0x220)][_0x4fefae(0x23d)]();}['destroy'](){const _0x8a4272=_0x1849cf;let _0x13611f=this[_0x8a4272(0x233)];_0x13611f['forEach'](_0x323bad=>{const _0x57304e=_0x8a4272;_0x323bad[_0x57304e(0x209)]();}),this[_0x8a4272(0x220)][_0x8a4272(0x209)]();}[_0x1849cf(0x243)](_0x238b7b){const _0x58af9d=_0x1849cf;this['rootComponent'][_0x58af9d(0x243)](_0x238b7b);}[_0x1849cf(0x213)](_0x284df8,_0x9ea4c5=!![]){const _0x2e6f80=_0x1849cf;this['rootComponent'][_0x2e6f80(0x213)](_0x284df8),_0x9ea4c5&&this[_0x2e6f80(0x233)]['forEach'](_0x3051c8=>{const _0x48e163=_0x2e6f80;_0x3051c8[_0x48e163(0x213)](_0x284df8,_0x9ea4c5);});}[_0x1849cf(0x21a)](_0x16129a){const _0x32c38f=_0x1849cf;if(!this[_0x32c38f(0x201)])return;super[_0x32c38f(0x21a)](_0x16129a),this[_0x32c38f(0x220)][_0x32c38f(0x21a)](_0x16129a);}[_0x1849cf(0x1f2)](){const _0x24dc75=_0x1849cf;return this['rootComponent'][_0x24dc75(0x1f2)]();}['setPosition'](..._0x25c829){const _0x5541b1=_0x1849cf;_0x25c829[_0x5541b1(0x1f9)]===0x1?this[_0x5541b1(0x220)]['setPosition'](_0x25c829[0x0]):this[_0x5541b1(0x220)][_0x5541b1(0x211)](_0x25c829[0x0],_0x25c829[0x1],_0x25c829[0x2]);}['getRotation'](){const _0x44066f=_0x1849cf;return this[_0x44066f(0x220)][_0x44066f(0x235)]();}[_0x1849cf(0x218)](..._0x51bb4e){const _0x484fc9=_0x1849cf;_0x51bb4e[_0x484fc9(0x1f9)]===0x1?this[_0x484fc9(0x220)][_0x484fc9(0x218)](_0x51bb4e[0x0]):this['rootComponent'][_0x484fc9(0x218)](_0x51bb4e[0x0],_0x51bb4e[0x1],_0x51bb4e[0x2]);}[_0x1849cf(0x245)](){const _0x3a883a=_0x1849cf;return this[_0x3a883a(0x220)][_0x3a883a(0x245)]();}[_0x1849cf(0x21c)](..._0x45abff){const _0x3f0c4b=_0x1849cf;_0x45abff['length']===0x1?this[_0x3f0c4b(0x220)][_0x3f0c4b(0x21c)](_0x45abff[0x0]):this[_0x3f0c4b(0x220)][_0x3f0c4b(0x21c)](_0x45abff[0x0],_0x45abff[0x1],_0x45abff[0x2],_0x45abff[0x3]);}[_0x1849cf(0x20c)](){const _0x20381b=_0x1849cf;return this[_0x20381b(0x220)][_0x20381b(0x20c)]();}[_0x1849cf(0x219)](..._0x3c8064){const _0x52be0c=_0x1849cf;_0x3c8064[_0x52be0c(0x1f9)]===0x1?this[_0x52be0c(0x220)][_0x52be0c(0x219)](_0x3c8064[0x0]):this[_0x52be0c(0x220)][_0x52be0c(0x219)](_0x3c8064[0x0],_0x3c8064[0x1],_0x3c8064[0x2]);}[_0x1849cf(0x238)](){const _0x409fa0=_0x1849cf;return this[_0x409fa0(0x220)]['getWorldMatrix']();}[_0x1849cf(0x1f0)](_0x42b124){const _0x160a51=_0x1849cf;this[_0x160a51(0x220)][_0x160a51(0x1f0)](_0x42b124);}['getWorldPosition'](){const _0xef4d9c=_0x1849cf;return this[_0xef4d9c(0x220)][_0xef4d9c(0x1f4)]();}[_0x1849cf(0x1fe)](){const _0x4e08f0=_0x1849cf;return this[_0x4e08f0(0x220)][_0x4e08f0(0x1fe)]();}[_0x1849cf(0x241)](){const _0xb473e5=_0x1849cf;return this['rootComponent'][_0xb473e5(0x241)]();}[_0x1849cf(0x1e8)](){const _0x5b8ea6=_0x1849cf;return this[_0x5b8ea6(0x220)][_0x5b8ea6(0x1e8)]();}[_0x1849cf(0x1ed)](){const _0x5f9c7b=_0x1849cf;return this['rootComponent'][_0x5f9c7b(0x1ed)]();}['getWorldUpDirection'](){const _0x349e26=_0x1849cf;return this[_0x349e26(0x220)]['getWorldUpDirection']();}[_0x1849cf(0x231)](){const _0x592d6e=_0x1849cf;return this[_0x592d6e(0x220)]['getWorldRightDirection']();}[_0x1849cf(0x228)](_0x4b5844,_0x1a7e1d){const _0x48a82a=_0x1849cf;let _0x476640=this[_0x48a82a(0x1f2)]();this[_0x48a82a(0x211)](_0x476640['x']+_0x4b5844['x']*_0x1a7e1d,_0x476640['y']+_0x4b5844['y']*_0x1a7e1d,_0x476640['z']+_0x4b5844['z']*_0x1a7e1d);}[_0x1849cf(0x1fc)](_0x76af25){const _0x9053f8=_0x1849cf;return this[_0x9053f8(0x220)]['worldToLocal'](_0x76af25);}[_0x1849cf(0x246)](_0x21774c){const _0x20d55d=_0x1849cf;return this[_0x20d55d(0x220)][_0x20d55d(0x246)](_0x21774c);}[_0x1849cf(0x1f8)](){const _0x48ff30=_0x1849cf;return this[_0x48ff30(0x220)][_0x48ff30(0x224)];}[_0x1849cf(0x1f1)](_0x4c4c29,_0x2b85b3=exports.AttachmentRules[_0x1849cf(0x23c)]){const _0x58e8cf=_0x1849cf;this['rootComponent'][_0x58e8cf(0x206)](_0x4c4c29,_0x2b85b3),this[_0x58e8cf(0x1ea)]&&_0x4c4c29[_0x58e8cf(0x207)](this['_world']);}[_0x1849cf(0x1ee)](_0x4f7c16){const _0x14e0df=_0x1849cf;if(_0x4f7c16===this[_0x14e0df(0x1eb)])return;this[_0x14e0df(0x220)]['removeChildComponent'](_0x4f7c16);}['clearComponent'](){const _0x385097=_0x1849cf;this['rootComponent'][_0x385097(0x1fa)]();}[_0x1849cf(0x22c)](_0x4adcb7,_0x344ed8=exports.AttachmentRules[_0x1849cf(0x222)]){const _0x21d3ec=_0x1849cf;if(!_0x4adcb7[_0x21d3ec(0x220)]){console[_0x21d3ec(0x23b)](_0x21d3ec(0x205));return;}if(_0x4adcb7[_0x21d3ec(0x227)]===this)return;_0x344ed8===exports.AttachmentRules[_0x21d3ec(0x23c)]&&this[_0x21d3ec(0x220)][_0x21d3ec(0x208)](_0x4adcb7[_0x21d3ec(0x220)]);if(_0x344ed8===exports.AttachmentRules['KeepWorld']){let _0x5abf2e=_0x4adcb7['getWorldMatrix']();this[_0x21d3ec(0x220)]['attachComponent'](_0x4adcb7[_0x21d3ec(0x220)]),_0x4adcb7[_0x21d3ec(0x1f0)](_0x5abf2e);}this[_0x21d3ec(0x1ea)]&&this[_0x21d3ec(0x1ea)][_0x21d3ec(0x214)]['markRenderStateDirty']();}['removeChildActor'](_0x3fbcf1){const _0x274cd5=_0x1849cf;let _0x6c994d=_0x3fbcf1['getWorldMatrix']();this[_0x274cd5(0x220)][_0x274cd5(0x20b)](_0x3fbcf1[_0x274cd5(0x220)]),_0x3fbcf1[_0x274cd5(0x1f0)](_0x6c994d);}['removeFromParent'](){const _0x5270e4=_0x1849cf;this['parentActor']&&this[_0x5270e4(0x227)][_0x5270e4(0x22d)](this);}[_0x1849cf(0x207)](_0x33926c){const _0xf455c2=_0x1849cf;this[_0xf455c2(0x1ea)]=_0x33926c,this[_0xf455c2(0x220)][_0xf455c2(0x207)](this[_0xf455c2(0x1ea)]),this[_0xf455c2(0x233)][_0xf455c2(0x24a)](_0x3ca906=>{const _0x54d23f=_0xf455c2;_0x3ca906[_0x54d23f(0x207)](_0x33926c);});}['onRemovedFromWorld'](){const _0x393460=_0x1849cf;this[_0x393460(0x1ea)]=null;}get[_0x1849cf(0x217)](){const _0x42099d=_0x1849cf;return this['rootComponent'][_0x42099d(0x217)];}set[_0x1849cf(0x217)](_0x527471){const _0x53ebe3=_0x1849cf;this[_0x53ebe3(0x220)][_0x53ebe3(0x217)]=_0x527471;}get[_0x1849cf(0x22e)](){const _0x306c22=_0x1849cf;return this[_0x306c22(0x220)][_0x306c22(0x22e)];}set[_0x1849cf(0x22e)](_0x5cd869){const _0x2f65b7=_0x1849cf;this[_0x2f65b7(0x220)][_0x2f65b7(0x22e)]=_0x5cd869;}['onActorHoverBegin'](_0x3e7a94){const _0x409fae=_0x1849cf;this[_0x409fae(0x225)][_0x409fae(0x244)](_0x3e7a94);}['onActorHoverEnd'](_0xac9c1f){const _0x5a4193=_0x1849cf;this[_0x5a4193(0x249)][_0x5a4193(0x244)](_0xac9c1f);}[_0x1849cf(0x1e9)](_0x149ba7){const _0x283a9a=_0x1849cf;this[_0x283a9a(0x1ec)]['broadcast'](_0x149ba7);}[_0x1849cf(0x203)](_0x3ef40f){const _0xb8b2d5=_0x1849cf;this['_onDoubleClickDelegate'][_0xb8b2d5(0x244)](_0x3ef40f);}}
82
83
 
83
- const _0x3d9f1d=_0x2ce6;(function(_0x26a812,_0x27ed52){const _0x585a5f=_0x2ce6,_0x113107=_0x26a812();while(!![]){try{const _0x8dfa76=parseInt(_0x585a5f(0xf4))/0x1*(parseInt(_0x585a5f(0xf8))/0x2)+parseInt(_0x585a5f(0xfc))/0x3*(-parseInt(_0x585a5f(0xf7))/0x4)+parseInt(_0x585a5f(0xf3))/0x5+parseInt(_0x585a5f(0x106))/0x6*(parseInt(_0x585a5f(0x107))/0x7)+parseInt(_0x585a5f(0xfd))/0x8*(-parseInt(_0x585a5f(0xff))/0x9)+-parseInt(_0x585a5f(0x102))/0xa+parseInt(_0x585a5f(0x101))/0xb;if(_0x8dfa76===_0x27ed52)break;else _0x113107['push'](_0x113107['shift']());}catch(_0x21f5d4){_0x113107['push'](_0x113107['shift']());}}}(_0x3eec,0x804db));function _0x2ce6(_0x136a07,_0x5538fe){_0x136a07=_0x136a07-0xf2;const _0x3eec78=_0x3eec();let _0x2ce6ba=_0x3eec78[_0x136a07];return _0x2ce6ba;}function _0x3eec(){const _0x4741e1=['disposeMeshMaterial','1767VEgBeC','8QZMlYj','material','5524353IGoMYV','disposeMeshResource','6624299CvxuLb','9819300OXFruh','isTexture','dispose','disposeMaterialTextures','6HSotqs','6374291jVLbAo','disposeObject3DResource','4447990erAIwg','1213RboVVJ','geometry','children','4776RRVeDF','696nCbCfU','forEach','object'];_0x3eec=function(){return _0x4741e1;};return _0x3eec();}class ThreeObjectLibrary{static[_0x3d9f1d(0x105)](_0x103f7b){const _0xd5f32b=_0x3d9f1d;Object['keys'](_0x103f7b)[_0xd5f32b(0xf9)](_0x3364ae=>{const _0x2d9b16=_0xd5f32b,_0x47ee6d=_0x103f7b[_0x3364ae];_0x47ee6d&&typeof _0x47ee6d===_0x2d9b16(0xfa)&&_0x2d9b16(0x103)in _0x47ee6d&&_0x47ee6d[_0x2d9b16(0x104)]();});}static['disposeMeshMaterial'](_0x3f88f6){const _0x5268a4=_0x3d9f1d;let _0xb419a6=Array['isArray'](_0x3f88f6[_0x5268a4(0xfe)])?_0x3f88f6['material']:[_0x3f88f6[_0x5268a4(0xfe)]];_0xb419a6[_0x5268a4(0xf9)](_0x77760f=>{const _0x204e43=_0x5268a4;ThreeObjectLibrary[_0x204e43(0x105)](_0x77760f),_0x77760f[_0x204e43(0x104)]();});}static[_0x3d9f1d(0x100)](_0x586eee,_0x5ad0db=![]){const _0x3da5bc=_0x3d9f1d;ThreeObjectLibrary[_0x3da5bc(0xfb)](_0x586eee),_0x586eee[_0x3da5bc(0xf5)][_0x3da5bc(0x104)](),_0x5ad0db&&_0x586eee[_0x3da5bc(0xf6)][_0x3da5bc(0xf9)](_0x2ce883=>{_0x2ce883 instanceof webgpu.Mesh&&ThreeObjectLibrary['disposeMeshResource'](_0x2ce883,!![]);});}static[_0x3d9f1d(0xf2)](_0x351c4e){_0x351c4e['traverse'](_0x2548b6=>{const _0x499c56=_0x2ce6;_0x2548b6 instanceof webgpu.Mesh&&ThreeObjectLibrary[_0x499c56(0x100)](_0x2548b6);});}}
84
+ const _0x3bafff=_0xd200;(function(_0x4e2a01,_0x5752c2){const _0x8a9ffd=_0xd200,_0x5f1557=_0x4e2a01();while(!![]){try{const _0x4e6df5=-parseInt(_0x8a9ffd(0xae))/0x1*(parseInt(_0x8a9ffd(0xa9))/0x2)+-parseInt(_0x8a9ffd(0xbb))/0x3*(parseInt(_0x8a9ffd(0xac))/0x4)+-parseInt(_0x8a9ffd(0xb1))/0x5*(-parseInt(_0x8a9ffd(0xab))/0x6)+parseInt(_0x8a9ffd(0xb6))/0x7*(-parseInt(_0x8a9ffd(0xba))/0x8)+-parseInt(_0x8a9ffd(0xbe))/0x9*(parseInt(_0x8a9ffd(0xb5))/0xa)+-parseInt(_0x8a9ffd(0xbc))/0xb*(-parseInt(_0x8a9ffd(0xaa))/0xc)+parseInt(_0x8a9ffd(0xbd))/0xd;if(_0x4e6df5===_0x5752c2)break;else _0x5f1557['push'](_0x5f1557['shift']());}catch(_0x249c88){_0x5f1557['push'](_0x5f1557['shift']());}}}(_0x6db5,0xc2b49));function _0xd200(_0x3cd4a8,_0x13744f){_0x3cd4a8=_0x3cd4a8-0xa7;const _0x6db55a=_0x6db5();let _0xd200a0=_0x6db55a[_0x3cd4a8];return _0xd200a0;}class ThreeObjectLibrary{static[_0x3bafff(0xb9)](_0x5e05d3){const _0x50ba4f=_0x3bafff;Object[_0x50ba4f(0xb8)](_0x5e05d3)[_0x50ba4f(0xa7)](_0x4b2f09=>{const _0x23e147=_0x50ba4f,_0x199351=_0x5e05d3[_0x4b2f09];_0x199351&&typeof _0x199351===_0x23e147(0xb3)&&'isTexture'in _0x199351&&_0x199351['dispose']();});}static[_0x3bafff(0xaf)](_0x2a9685){const _0x23d596=_0x3bafff;let _0x15c6ac=Array[_0x23d596(0xad)](_0x2a9685[_0x23d596(0xb7)])?_0x2a9685[_0x23d596(0xb7)]:[_0x2a9685[_0x23d596(0xb7)]];_0x15c6ac[_0x23d596(0xa7)](_0x44dc84=>{const _0x140180=_0x23d596;ThreeObjectLibrary[_0x140180(0xb9)](_0x44dc84),_0x44dc84['dispose']();});}static[_0x3bafff(0xb2)](_0x216fe1,_0x42aae8=![]){const _0x1cc767=_0x3bafff;ThreeObjectLibrary[_0x1cc767(0xaf)](_0x216fe1),_0x216fe1[_0x1cc767(0xb4)][_0x1cc767(0xa8)](),_0x42aae8&&_0x216fe1['children']['forEach'](_0xfb6dcd=>{const _0x42f9c4=_0x1cc767;_0xfb6dcd instanceof webgpu.Mesh&&ThreeObjectLibrary[_0x42f9c4(0xb2)](_0xfb6dcd,!![]);});}static[_0x3bafff(0xb0)](_0x153f4f){_0x153f4f['traverse'](_0x2ad04d=>{const _0x524b92=_0xd200;_0x2ad04d instanceof webgpu.Mesh&&ThreeObjectLibrary[_0x524b92(0xb2)](_0x2ad04d);});}}function _0x6db5(){const _0x2e7470=['disposeMaterialTextures','144752JLWXbM','3sCABIL','397298JTeyvX','7224022boQZzr','957159TDmTCL','forEach','dispose','2lxAHiG','528cMjmKX','114gmdtLV','5110856cgPdvJ','isArray','337009XQnAcv','disposeMeshMaterial','disposeObject3DResource','317375zAPmpf','disposeMeshResource','object','geometry','10hCpklX','322MsQuNB','material','keys'];_0x6db5=function(){return _0x2e7470;};return _0x6db5();}
84
85
 
85
- var _0x4f8957=_0x3c71;function _0x3c71(_0x18b06d,_0x57835d){_0x18b06d=_0x18b06d-0x101;var _0x8f0f15=_0x8f0f();var _0x3c7147=_0x8f0f15[_0x18b06d];return _0x3c7147;}(function(_0x2f303f,_0x44f745){var _0x5d38fb=_0x3c71,_0x108c4b=_0x2f303f();while(!![]){try{var _0xc22636=parseInt(_0x5d38fb(0x101))/0x1*(-parseInt(_0x5d38fb(0x110))/0x2)+-parseInt(_0x5d38fb(0x102))/0x3*(-parseInt(_0x5d38fb(0x105))/0x4)+parseInt(_0x5d38fb(0x10b))/0x5*(parseInt(_0x5d38fb(0x106))/0x6)+parseInt(_0x5d38fb(0x111))/0x7*(-parseInt(_0x5d38fb(0x109))/0x8)+-parseInt(_0x5d38fb(0x112))/0x9*(parseInt(_0x5d38fb(0x10f))/0xa)+-parseInt(_0x5d38fb(0x104))/0xb+parseInt(_0x5d38fb(0x107))/0xc*(parseInt(_0x5d38fb(0x108))/0xd);if(_0xc22636===_0x44f745)break;else _0x108c4b['push'](_0x108c4b['shift']());}catch(_0x5082e7){_0x108c4b['push'](_0x108c4b['shift']());}}}(_0x8f0f,0xbc9fb));function _0x8f0f(){var _0x493764=['1NGkMJd','190386dZplfo','createDefaultObject','15538501AFsOlY','4cTwwqX','37458ZRXqYe','4668ysRSIB','124514tOnvih','1468648TYiTKg','LYObject','265gGuHXq','userData','threeObject','obj','5872690OHTsXp','419416TiAsfv','21zlsueZ','18gnUMll'];_0x8f0f=function(){return _0x493764;};return _0x8f0f();}class LevelComponent extends SceneComponent{get[_0x4f8957(0x10d)](){var _0x3a6ac7=_0x4f8957;if(!this[_0x3a6ac7(0x10e)])throw Error('three\x20object\x20is\x20invalid');return this[_0x3a6ac7(0x10e)];}set[_0x4f8957(0x10d)](_0x489985){var _0x4c65b6=_0x4f8957;this[_0x4c65b6(0x10e)]=_0x489985,this['obj']&&(this[_0x4c65b6(0x10e)][_0x4c65b6(0x10c)][_0x4c65b6(0x10a)]=this);}constructor(_0x383d68,_0x5c2f20){super(_0x383d68,_0x5c2f20);}[_0x4f8957(0x103)](){return new three.Scene();}}
86
+ var _0x3199b3=_0x5624;(function(_0x370453,_0x297622){var _0x1dab27=_0x5624,_0x48b006=_0x370453();while(!![]){try{var _0x4b246a=parseInt(_0x1dab27(0x169))/0x1+parseInt(_0x1dab27(0x162))/0x2*(parseInt(_0x1dab27(0x16a))/0x3)+parseInt(_0x1dab27(0x167))/0x4*(-parseInt(_0x1dab27(0x163))/0x5)+parseInt(_0x1dab27(0x165))/0x6+parseInt(_0x1dab27(0x164))/0x7+-parseInt(_0x1dab27(0x16d))/0x8+-parseInt(_0x1dab27(0x168))/0x9*(parseInt(_0x1dab27(0x166))/0xa);if(_0x4b246a===_0x297622)break;else _0x48b006['push'](_0x48b006['shift']());}catch(_0x2fe571){_0x48b006['push'](_0x48b006['shift']());}}}(_0x9ac1,0x461e1));function _0x9ac1(){var _0x20a4de=['314110jArqqA','1704IStjmY','108aPVvHw','544949mKhxst','746979yTLNxk','obj','LYObject','4322952KvTHli','threeObject','userData','three\x20object\x20is\x20invalid','2vzKJGx','2995Brrpon','2279025VOHpCE','2040954YkCJkJ'];_0x9ac1=function(){return _0x20a4de;};return _0x9ac1();}function _0x5624(_0x118377,_0x3f2c31){_0x118377=_0x118377-0x160;var _0x9ac1f5=_0x9ac1();var _0x56244a=_0x9ac1f5[_0x118377];return _0x56244a;}class LevelComponent extends SceneComponent{get[_0x3199b3(0x16e)](){var _0x38028f=_0x3199b3;if(!this[_0x38028f(0x16b)])throw Error(_0x38028f(0x161));return this[_0x38028f(0x16b)];}set[_0x3199b3(0x16e)](_0x51f74b){var _0x22d860=_0x3199b3;this['obj']=_0x51f74b,this[_0x22d860(0x16b)]&&(this[_0x22d860(0x16b)][_0x22d860(0x160)][_0x22d860(0x16c)]=this);}constructor(_0x21d057,_0x4d5c3b){super(_0x21d057,_0x4d5c3b);}['createDefaultObject'](){return new three.Scene();}}
86
87
 
87
- function _0x69f0(_0x48c9e1,_0xd83e23){_0x48c9e1=_0x48c9e1-0x1b6;var _0x2cb787=_0x2cb7();var _0x69f0b5=_0x2cb787[_0x48c9e1];return _0x69f0b5;}var _0x5df6e5=_0x69f0;(function(_0x4dd27e,_0x2e6ee1){var _0x50cf98=_0x69f0,_0x373eb1=_0x4dd27e();while(!![]){try{var _0x4dbaaf=-parseInt(_0x50cf98(0x1c1))/0x1*(-parseInt(_0x50cf98(0x1c6))/0x2)+parseInt(_0x50cf98(0x1bc))/0x3+parseInt(_0x50cf98(0x1cb))/0x4+-parseInt(_0x50cf98(0x1bb))/0x5*(parseInt(_0x50cf98(0x1c7))/0x6)+-parseInt(_0x50cf98(0x1bd))/0x7+-parseInt(_0x50cf98(0x1c9))/0x8*(parseInt(_0x50cf98(0x1c4))/0x9)+parseInt(_0x50cf98(0x1ca))/0xa;if(_0x4dbaaf===_0x2e6ee1)break;else _0x373eb1['push'](_0x373eb1['shift']());}catch(_0x59d715){_0x373eb1['push'](_0x373eb1['shift']());}}}(_0x2cb7,0x5973f));class LevelActor extends Actor{get['scene'](){var _0x1feb0d=_0x69f0;if(!this[_0x1feb0d(0x1b6)])throw new Error(_0x1feb0d(0x1cc));return this['_scene'];}constructor(_0x4a49dc,_0xcdd4da){var _0x50f24e=_0x69f0;super(_0x4a49dc,_0xcdd4da),this[_0x50f24e(0x1b6)]=null,this[_0x50f24e(0x1b6)]=this['rootComponent'][_0x50f24e(0x1c2)],this[_0x50f24e(0x1ba)]=![];}['constructRootComponent'](){var _0x55e069=_0x69f0;return new LevelComponent(this[_0x55e069(0x1c8)],this[_0x55e069(0x1b8)]);}[_0x5df6e5(0x1c5)](_0x1ae1fc){var _0x3f4ff2=_0x5df6e5;if(!this['isTickEnabled'])return;super[_0x3f4ff2(0x1c5)](_0x1ae1fc);}[_0x5df6e5(0x1b9)](){var _0x3adab3=_0x5df6e5;this[_0x3adab3(0x1bf)](),super['destroy']();}[_0x5df6e5(0x1bf)](){var _0x31dd8d=_0x5df6e5;this[_0x31dd8d(0x1c3)][_0x31dd8d(0x1b7)](_0x203619=>{_0x203619['destroy']();}),this[_0x31dd8d(0x1c0)][_0x31dd8d(0x1be)](_0x5657d3=>{_0x5657d3 instanceof webgpu.Mesh&&ThreeObjectLibrary['disposeMeshResource'](_0x5657d3);});}}function _0x2cb7(){var _0x1fc4f1=['uuid','destroy','isTickEnabled','5VEPEhp','908658HPRBhz','3251598ybYuPm','traverse','clearLevel','scene','521838yVAQZm','threeObject','childActors','36kYAyHu','tick','2roIKSt','152400zeeZpy','app','866736LWZupE','3198320JmyIEd','580500BMIodu','scene\x20is\x20null','_scene','forEach'];_0x2cb7=function(){return _0x1fc4f1;};return _0x2cb7();}
88
+ var _0x3aced5=_0x225b;(function(_0x50add9,_0x1e9389){var _0x20a35c=_0x225b,_0x1fac28=_0x50add9();while(!![]){try{var _0x418d51=-parseInt(_0x20a35c(0x1b6))/0x1+parseInt(_0x20a35c(0x1be))/0x2+-parseInt(_0x20a35c(0x1a9))/0x3+parseInt(_0x20a35c(0x1b2))/0x4+-parseInt(_0x20a35c(0x1aa))/0x5+-parseInt(_0x20a35c(0x1ba))/0x6+parseInt(_0x20a35c(0x1b1))/0x7;if(_0x418d51===_0x1e9389)break;else _0x1fac28['push'](_0x1fac28['shift']());}catch(_0x47d3cb){_0x1fac28['push'](_0x1fac28['shift']());}}}(_0x3d3d,0xb9be7));function _0x225b(_0x2d4fdf,_0x5ee42c){_0x2d4fdf=_0x2d4fdf-0x1a9;var _0x3d3d66=_0x3d3d();var _0x225bd2=_0x3d3d66[_0x2d4fdf];return _0x225bd2;}function _0x3d3d(){var _0x1af640=['639962sQwfXJ','4056522IQZDWl','3311650StXyGS','rootComponent','scene\x20is\x20null','_scene','clearLevel','isTickEnabled','constructRootComponent','18119556vHLgQr','1577556VGVyvm','scene','disposeMeshResource','tick','386117lOrBRV','app','childActors','forEach','848700deQsXZ','destroy','uuid','threeObject'];_0x3d3d=function(){return _0x1af640;};return _0x3d3d();}class LevelActor extends Actor{get[_0x3aced5(0x1b3)](){var _0x1cc68c=_0x3aced5;if(!this[_0x1cc68c(0x1ad)])throw new Error(_0x1cc68c(0x1ac));return this[_0x1cc68c(0x1ad)];}constructor(_0x413fc2,_0x4a9cd8){var _0x5ee82e=_0x3aced5;super(_0x413fc2,_0x4a9cd8),this[_0x5ee82e(0x1ad)]=null,this[_0x5ee82e(0x1ad)]=this[_0x5ee82e(0x1ab)][_0x5ee82e(0x1bd)],this[_0x5ee82e(0x1af)]=![];}[_0x3aced5(0x1b0)](){var _0x348c97=_0x3aced5;return new LevelComponent(this[_0x348c97(0x1b7)],this[_0x348c97(0x1bc)]);}[_0x3aced5(0x1b5)](_0x1adbbb){var _0x2cc35c=_0x3aced5;if(!this[_0x2cc35c(0x1af)])return;super[_0x2cc35c(0x1b5)](_0x1adbbb);}[_0x3aced5(0x1bb)](){var _0x5861e8=_0x3aced5;this[_0x5861e8(0x1ae)](),super[_0x5861e8(0x1bb)]();}['clearLevel'](){var _0x2e6ccc=_0x3aced5;this[_0x2e6ccc(0x1b8)][_0x2e6ccc(0x1b9)](_0x2691f2=>{_0x2691f2['destroy']();}),this[_0x2e6ccc(0x1b3)]['traverse'](_0x3cf1d5=>{var _0xa592f2=_0x2e6ccc;_0x3cf1d5 instanceof webgpu.Mesh&&ThreeObjectLibrary[_0xa592f2(0x1b4)](_0x3cf1d5);});}}
88
89
 
89
- function _0x44a7(){const _0x6801f3=['2316192xVvVhl','21EmuvFv','9535275mAkZeg','408169wuoEQT','49272qEePke','966dYMNHa','4aoNvjH','19477360lIOGGe','460270gDViAA','2985605gLiQse'];_0x44a7=function(){return _0x6801f3;};return _0x44a7();}(function(_0xa6b8bc,_0x403e65){const _0x439e39=_0x38f1,_0x16d9eb=_0xa6b8bc();while(!![]){try{const _0x126bd1=parseInt(_0x439e39(0x176))/0x1+parseInt(_0x439e39(0x171))/0x2*(parseInt(_0x439e39(0x174))/0x3)+parseInt(_0x439e39(0x179))/0x4*(parseInt(_0x439e39(0x172))/0x5)+parseInt(_0x439e39(0x177))/0x6*(-parseInt(_0x439e39(0x178))/0x7)+parseInt(_0x439e39(0x173))/0x8+parseInt(_0x439e39(0x175))/0x9+-parseInt(_0x439e39(0x170))/0xa;if(_0x126bd1===_0x403e65)break;else _0x16d9eb['push'](_0x16d9eb['shift']());}catch(_0x359dd1){_0x16d9eb['push'](_0x16d9eb['shift']());}}}(_0x44a7,0xd7e12));function _0x38f1(_0x42f174,_0x5f2fe8){_0x42f174=_0x42f174-0x170;const _0x44a740=_0x44a7();let _0x38f10b=_0x44a740[_0x42f174];return _0x38f10b;}const DefaultWorldParam={'levelActorClass':LevelActor};
90
+ function _0x517c(){const _0x119cef=['7JyPxDj','4IGgBoI','647181gxyzAb','989262IOiewB','7406280xVeddK','1894935ONixfh','169437rwrMwb','30947609dJFJnc','88DzHyQQ','3cAUVjU','2424604wVILtb'];_0x517c=function(){return _0x119cef;};return _0x517c();}function _0x3176(_0x1af51c,_0x543e63){_0x1af51c=_0x1af51c-0x19d;const _0x517c5d=_0x517c();let _0x317653=_0x517c5d[_0x1af51c];return _0x317653;}(function(_0x1f4ca5,_0x90494e){const _0x16a8ef=_0x3176,_0x477a31=_0x1f4ca5();while(!![]){try{const _0x551ae0=parseInt(_0x16a8ef(0x1a6))/0x1*(parseInt(_0x16a8ef(0x1a1))/0x2)+-parseInt(_0x16a8ef(0x19e))/0x3*(parseInt(_0x16a8ef(0x19f))/0x4)+-parseInt(_0x16a8ef(0x1a5))/0x5+parseInt(_0x16a8ef(0x1a3))/0x6*(-parseInt(_0x16a8ef(0x1a0))/0x7)+parseInt(_0x16a8ef(0x19d))/0x8*(-parseInt(_0x16a8ef(0x1a2))/0x9)+-parseInt(_0x16a8ef(0x1a4))/0xa+parseInt(_0x16a8ef(0x1a7))/0xb;if(_0x551ae0===_0x90494e)break;else _0x477a31['push'](_0x477a31['shift']());}catch(_0x4b2dd8){_0x477a31['push'](_0x477a31['shift']());}}}(_0x517c,0x72e7b));const DefaultWorldParam={'levelActorClass':LevelActor};
90
91
 
91
- const _0x55b4ea=_0x32c1;(function(_0x58c63c,_0x42d19c){const _0x2cfb02=_0x32c1,_0x2d417d=_0x58c63c();while(!![]){try{const _0x53d130=-parseInt(_0x2cfb02(0xf1))/0x1+parseInt(_0x2cfb02(0x108))/0x2*(parseInt(_0x2cfb02(0x107))/0x3)+-parseInt(_0x2cfb02(0xd9))/0x4+parseInt(_0x2cfb02(0x103))/0x5*(parseInt(_0x2cfb02(0xf7))/0x6)+parseInt(_0x2cfb02(0x105))/0x7*(parseInt(_0x2cfb02(0x100))/0x8)+parseInt(_0x2cfb02(0xec))/0x9*(-parseInt(_0x2cfb02(0xfc))/0xa)+parseInt(_0x2cfb02(0xe3))/0xb*(-parseInt(_0x2cfb02(0xe9))/0xc);if(_0x53d130===_0x42d19c)break;else _0x2d417d['push'](_0x2d417d['shift']());}catch(_0x2fc013){_0x2d417d['push'](_0x2d417d['shift']());}}}(_0x149f,0xe775f));function _0x32c1(_0x4a0488,_0x3546aa){_0x4a0488=_0x4a0488-0xd8;const _0x149f21=_0x149f();let _0x32c134=_0x149f21[_0x4a0488];return _0x32c134;}function _0x149f(){const _0x31c460=['_appParam','assetManagerClass','60048xhxWuY','_viewport','removeTickingFunction','_tickingFunctions','postProcessParam','486770wXiuWe','onCameraChangedDelegate','renderParam','destroy','544760CDpLcY','render','forEach','650DXGftl','indexOf','175KRjvTl','addTickingFunction','1427253KUhCVr','2jaYFSB','updateProjectionMatrix','_assetManager','worldClass','postConstruct','createCamera','_onCameraChangedDelegate','camera','isRenderEveryFrame','push','5625504PqlSVI','_camera','tick','markRenderStateDirty','controllerClass','viewport','splice','appParam','_world','controller','33aBxGcP','worldParam','assetManager','world','onWindowResize','updateCamera','3190476gKhtoe','clear','viewportParam','36koaKyT','_clock','cameraParam','classes','viewportClass','132400nhMnBO','renderAsImage','_controller','init'];_0x149f=function(){return _0x31c460;};return _0x149f();}class ThreeJsApp{get[_0x55b4ea(0x10f)](){const _0x20eb4e=_0x55b4ea;return this[_0x20eb4e(0xda)];}get['clock'](){const _0x5ada94=_0x55b4ea;return this[_0x5ada94(0xed)];}get[_0x55b4ea(0xe6)](){return this['_world'];}get['viewport'](){const _0x43255e=_0x55b4ea;return this[_0x43255e(0xf8)];}get[_0x55b4ea(0xe2)](){const _0x1a2807=_0x55b4ea;return this[_0x1a2807(0xf3)];}get[_0x55b4ea(0xe5)](){const _0x49a84b=_0x55b4ea;return this[_0x49a84b(0x10a)];}get[_0x55b4ea(0xe0)](){const _0x5e721b=_0x55b4ea;return this[_0x5e721b(0xf5)];}get[_0x55b4ea(0xfd)](){return this['_onCameraChangedDelegate'];}constructor(_0x21e6ab=DefaultAppParam){const _0x2019ef=_0x55b4ea;this[_0x2019ef(0xfa)]=[],this[_0x2019ef(0xf5)]={'viewportParam':DefaultViewportParam},this[_0x2019ef(0x10e)]=new Delegate(),this['_appParam'][_0x2019ef(0xee)]=_0x21e6ab[_0x2019ef(0xee)]?_0x21e6ab[_0x2019ef(0xee)]:DefaultCameraParam,this['_appParam'][_0x2019ef(0xfe)]=_0x21e6ab[_0x2019ef(0xfe)]?_0x21e6ab[_0x2019ef(0xfe)]:DefaultRendererParameters,this['_appParam'][_0x2019ef(0xfb)]=_0x21e6ab[_0x2019ef(0xfb)]?_0x21e6ab[_0x2019ef(0xfb)]:DefaultPostProcessParam,this[_0x2019ef(0xf5)][_0x2019ef(0xeb)]=_0x21e6ab['viewportParam']?_0x21e6ab[_0x2019ef(0xeb)]:DefaultViewportParam,this[_0x2019ef(0xf5)][_0x2019ef(0xef)]=_0x21e6ab[_0x2019ef(0xef)]?_0x21e6ab[_0x2019ef(0xef)]:{'assetManagerClass':AssetManager,'controllerClass':Controller,'worldClass':World,'viewportClass':Viewport},this[_0x2019ef(0xf5)][_0x2019ef(0x110)]=_0x21e6ab[_0x2019ef(0x110)],this[_0x2019ef(0xed)]=new webgpu.Clock(),this['_camera']=CameraFactory[_0x2019ef(0x10d)](this[_0x2019ef(0xf5)][_0x2019ef(0xee)]),this[_0x2019ef(0xe1)]=new this[(_0x2019ef(0xf5))][(_0x2019ef(0xef))][(_0x2019ef(0x10b))](this,this[_0x2019ef(0xf5)][_0x2019ef(0xe4)]?this[_0x2019ef(0xf5)][_0x2019ef(0xe4)]:DefaultWorldParam),this['_viewport']=new this[(_0x2019ef(0xf5))][(_0x2019ef(0xef))][(_0x2019ef(0xf0))](this,this[_0x2019ef(0xf5)][_0x2019ef(0xeb)],this[_0x2019ef(0xf5)]['renderParam'],this[_0x2019ef(0xf5)][_0x2019ef(0xfb)]),this[_0x2019ef(0xf3)]=new this[(_0x2019ef(0xf5))][(_0x2019ef(0xef))][(_0x2019ef(0xdd))](this),this['_assetManager']=new this[(_0x2019ef(0xf5))][(_0x2019ef(0xef))][(_0x2019ef(0xf6))](this),this['viewport']['renderer']['setAnimationLoop'](()=>{const _0x1d59a0=_0x2019ef,_0x7fe3f9=this[_0x1d59a0(0xed)]['getDelta']();this[_0x1d59a0(0xdb)](_0x7fe3f9);}),this[_0x2019ef(0x10c)]();}[_0x55b4ea(0x10c)](){const _0x2a5376=_0x55b4ea;this[_0x2a5376(0xe2)][_0x2a5376(0xf4)](),this[_0x2a5376(0xe6)][_0x2a5376(0xf4)](),this[_0x2a5376(0xde)][_0x2a5376(0xf4)]();}[_0x55b4ea(0xf4)](){}[_0x55b4ea(0xdb)](_0x32a089){const _0x38c1cd=_0x55b4ea;this[_0x38c1cd(0xf3)][_0x38c1cd(0xdb)](_0x32a089),this['world'][_0x38c1cd(0xdb)](_0x32a089),this[_0x38c1cd(0xfa)][_0x38c1cd(0x102)](_0x191c74=>{_0x191c74(_0x32a089);}),this[_0x38c1cd(0xf5)][_0x38c1cd(0x110)]&&this[_0x38c1cd(0xde)][_0x38c1cd(0xdc)](),this['viewport'][_0x38c1cd(0x101)]();}[_0x55b4ea(0x106)](_0x46dcae){const _0x93bd6b=_0x55b4ea;this['_tickingFunctions'][_0x93bd6b(0xd8)](_0x46dcae);}[_0x55b4ea(0xf9)](_0x5df3d5){const _0x7da528=_0x55b4ea,_0x2f1ec9=this[_0x7da528(0xfa)][_0x7da528(0x104)](_0x5df3d5);_0x2f1ec9>=0x0&&this[_0x7da528(0xfa)][_0x7da528(0xdf)](_0x2f1ec9,0x1);}[_0x55b4ea(0xff)](){const _0x3054a9=_0x55b4ea;this['onCameraChangedDelegate'][_0x3054a9(0xea)](),this[_0x3054a9(0xe2)]['destroy'](),this[_0x3054a9(0xe6)][_0x3054a9(0xff)](),this[_0x3054a9(0xde)][_0x3054a9(0xff)](),this['_assetManager']['clearAssets']();}[_0x55b4ea(0xe8)](_0x4439cd){const _0x2f7f05=_0x55b4ea,_0x48028b=this[_0x2f7f05(0x10f)];this[_0x2f7f05(0xda)]=CameraFactory['updataCamera'](_0x4439cd,this['camera']),_0x48028b!==this[_0x2f7f05(0x10f)]&&(this[_0x2f7f05(0x10e)]['broadcast'](),this[_0x2f7f05(0xe2)][_0x2f7f05(0xe8)]()),this[_0x2f7f05(0xda)][_0x2f7f05(0x109)](),this[_0x2f7f05(0xde)][_0x2f7f05(0xdc)]();}[_0x55b4ea(0xe7)](_0x2ef8c0,_0x5d3908){const _0x19e60b=_0x55b4ea;this[_0x19e60b(0x10f)]instanceof webgpu.PerspectiveCamera&&(this[_0x19e60b(0x10f)]['aspect']=_0x2ef8c0/_0x5d3908),this[_0x19e60b(0x10f)][_0x19e60b(0x109)]();}async[_0x55b4ea(0xf2)](_0x2e34ab=0x400,_0x3feaca=0x400){const _0x43ab0b=_0x55b4ea;return await this[_0x43ab0b(0xde)][_0x43ab0b(0xf2)](_0x2e34ab,_0x3feaca);}}
92
+ const _0x3bab2b=_0x3b0b;(function(_0x639f54,_0x528b04){const _0x9b72df=_0x3b0b,_0x6b225b=_0x639f54();while(!![]){try{const _0x29a73c=parseInt(_0x9b72df(0x123))/0x1*(-parseInt(_0x9b72df(0x13c))/0x2)+-parseInt(_0x9b72df(0x122))/0x3*(parseInt(_0x9b72df(0x13e))/0x4)+-parseInt(_0x9b72df(0x146))/0x5*(-parseInt(_0x9b72df(0x143))/0x6)+parseInt(_0x9b72df(0x138))/0x7*(-parseInt(_0x9b72df(0x14b))/0x8)+parseInt(_0x9b72df(0x121))/0x9+-parseInt(_0x9b72df(0x13d))/0xa*(-parseInt(_0x9b72df(0x142))/0xb)+parseInt(_0x9b72df(0x14c))/0xc*(parseInt(_0x9b72df(0x133))/0xd);if(_0x29a73c===_0x528b04)break;else _0x6b225b['push'](_0x6b225b['shift']());}catch(_0x22e06e){_0x6b225b['push'](_0x6b225b['shift']());}}}(_0x1ba3,0x2395d));function _0x1ba3(){const _0x83facf=['worldParam','onWindowResize','push','clear','camera','isRenderEveryFrame','1312794OOgKzi','33GePrvX','28277yFONLV','addTickingFunction','cameraParam','_viewport','postConstruct','worldClass','controller','world','indexOf','renderParam','onCameraChangedDelegate','updataCamera','tick','_assetManager','clearAssets','viewport','1807AWJqhz','updateProjectionMatrix','classes','appParam','forEach','91ITmtgh','_onCameraChangedDelegate','updateCamera','_clock','12bvOtBx','636890UyXBsU','85468LTPArd','_appParam','_world','postProcessParam','22BGulce','60fcbjOK','markRenderStateDirty','_controller','135735EjJqoU','viewportParam','assetManager','_camera','init','143336Riqoco','20604rIxTdX','splice','_tickingFunctions','removeTickingFunction','controllerClass','setAnimationLoop','renderAsImage','destroy','render'];_0x1ba3=function(){return _0x83facf;};return _0x1ba3();}function _0x3b0b(_0x27ddb4,_0x370494){_0x27ddb4=_0x27ddb4-0x114;const _0x1ba33a=_0x1ba3();let _0x3b0b8e=_0x1ba33a[_0x27ddb4];return _0x3b0b8e;}class ThreeJsApp{get[_0x3bab2b(0x11f)](){const _0x223ff1=_0x3bab2b;return this[_0x223ff1(0x149)];}get['clock'](){const _0x38fafb=_0x3bab2b;return this[_0x38fafb(0x13b)];}get['world'](){const _0x568644=_0x3bab2b;return this[_0x568644(0x140)];}get[_0x3bab2b(0x132)](){return this['_viewport'];}get[_0x3bab2b(0x129)](){const _0x325de9=_0x3bab2b;return this[_0x325de9(0x145)];}get[_0x3bab2b(0x148)](){const _0x22a69d=_0x3bab2b;return this[_0x22a69d(0x130)];}get[_0x3bab2b(0x136)](){return this['_appParam'];}get[_0x3bab2b(0x12d)](){const _0x45f7a0=_0x3bab2b;return this[_0x45f7a0(0x139)];}constructor(_0x32aee5=DefaultAppParam){const _0x59a0ce=_0x3bab2b;this['_tickingFunctions']=[],this[_0x59a0ce(0x13f)]={'viewportParam':DefaultViewportParam},this[_0x59a0ce(0x139)]=new Delegate(),this[_0x59a0ce(0x13f)][_0x59a0ce(0x125)]=_0x32aee5[_0x59a0ce(0x125)]?_0x32aee5['cameraParam']:DefaultCameraParam,this['_appParam']['renderParam']=_0x32aee5[_0x59a0ce(0x12c)]?_0x32aee5[_0x59a0ce(0x12c)]:DefaultRendererParameters,this[_0x59a0ce(0x13f)][_0x59a0ce(0x141)]=_0x32aee5['postProcessParam']?_0x32aee5['postProcessParam']:DefaultPostProcessParam,this[_0x59a0ce(0x13f)]['viewportParam']=_0x32aee5[_0x59a0ce(0x147)]?_0x32aee5[_0x59a0ce(0x147)]:DefaultViewportParam,this[_0x59a0ce(0x13f)][_0x59a0ce(0x135)]=_0x32aee5[_0x59a0ce(0x135)]?_0x32aee5['classes']:{'assetManagerClass':AssetManager,'controllerClass':Controller,'worldClass':World,'viewportClass':Viewport},this[_0x59a0ce(0x13f)][_0x59a0ce(0x120)]=_0x32aee5[_0x59a0ce(0x120)],this[_0x59a0ce(0x13b)]=new webgpu.Clock(),this[_0x59a0ce(0x149)]=CameraFactory['createCamera'](this['_appParam'][_0x59a0ce(0x125)]),this[_0x59a0ce(0x140)]=new this[(_0x59a0ce(0x13f))]['classes'][(_0x59a0ce(0x128))](this,this[_0x59a0ce(0x13f)][_0x59a0ce(0x11b)]?this[_0x59a0ce(0x13f)]['worldParam']:DefaultWorldParam),this[_0x59a0ce(0x126)]=new this[(_0x59a0ce(0x13f))][(_0x59a0ce(0x135))]['viewportClass'](this,this[_0x59a0ce(0x13f)][_0x59a0ce(0x147)],this['_appParam'][_0x59a0ce(0x12c)],this[_0x59a0ce(0x13f)][_0x59a0ce(0x141)]),this[_0x59a0ce(0x145)]=new this[(_0x59a0ce(0x13f))][(_0x59a0ce(0x135))][(_0x59a0ce(0x116))](this),this[_0x59a0ce(0x130)]=new this[(_0x59a0ce(0x13f))][(_0x59a0ce(0x135))]['assetManagerClass'](this),this[_0x59a0ce(0x132)]['renderer'][_0x59a0ce(0x117)](()=>{const _0x5bbf29=_0x59a0ce,_0x1eb602=this['_clock']['getDelta']();this[_0x5bbf29(0x12f)](_0x1eb602);}),this[_0x59a0ce(0x127)]();}['postConstruct'](){const _0x4bcfe4=_0x3bab2b;this['controller'][_0x4bcfe4(0x14a)](),this[_0x4bcfe4(0x12a)]['init'](),this[_0x4bcfe4(0x132)][_0x4bcfe4(0x14a)]();}[_0x3bab2b(0x14a)](){}[_0x3bab2b(0x12f)](_0x28d963){const _0x25b1bd=_0x3bab2b;this['_controller'][_0x25b1bd(0x12f)](_0x28d963),this[_0x25b1bd(0x12a)][_0x25b1bd(0x12f)](_0x28d963),this[_0x25b1bd(0x114)][_0x25b1bd(0x137)](_0x47cb5e=>{_0x47cb5e(_0x28d963);}),this[_0x25b1bd(0x13f)][_0x25b1bd(0x120)]&&this[_0x25b1bd(0x132)][_0x25b1bd(0x144)](),this[_0x25b1bd(0x132)][_0x25b1bd(0x11a)]();}[_0x3bab2b(0x124)](_0x5b730e){const _0x3bc656=_0x3bab2b;this[_0x3bc656(0x114)][_0x3bc656(0x11d)](_0x5b730e);}[_0x3bab2b(0x115)](_0x540820){const _0x63e349=_0x3bab2b,_0x4dea34=this['_tickingFunctions'][_0x63e349(0x12b)](_0x540820);_0x4dea34>=0x0&&this[_0x63e349(0x114)][_0x63e349(0x14d)](_0x4dea34,0x1);}[_0x3bab2b(0x119)](){const _0xab8ff7=_0x3bab2b;this[_0xab8ff7(0x12d)][_0xab8ff7(0x11e)](),this['controller'][_0xab8ff7(0x119)](),this[_0xab8ff7(0x12a)]['destroy'](),this[_0xab8ff7(0x132)][_0xab8ff7(0x119)](),this['_assetManager'][_0xab8ff7(0x131)]();}['updateCamera'](_0x446c83){const _0x14c676=_0x3bab2b,_0x396787=this['camera'];this[_0x14c676(0x149)]=CameraFactory[_0x14c676(0x12e)](_0x446c83,this[_0x14c676(0x11f)]),_0x396787!==this[_0x14c676(0x11f)]&&(this[_0x14c676(0x139)]['broadcast'](),this[_0x14c676(0x129)][_0x14c676(0x13a)]()),this['_camera']['updateProjectionMatrix'](),this[_0x14c676(0x132)][_0x14c676(0x144)]();}[_0x3bab2b(0x11c)](_0x507253,_0x56fef5){const _0x498ffa=_0x3bab2b;this[_0x498ffa(0x11f)]instanceof webgpu.PerspectiveCamera&&(this[_0x498ffa(0x11f)]['aspect']=_0x507253/_0x56fef5),this[_0x498ffa(0x11f)][_0x498ffa(0x134)]();}async[_0x3bab2b(0x118)](_0x582042=0x400,_0x42ca19=0x400){const _0x172141=_0x3bab2b;return await this['viewport'][_0x172141(0x118)](_0x582042,_0x42ca19);}}
92
93
 
93
- var _0x3ec3e2=_0x1404$1;function _0x3a0d(){var _0x1ae141=['getHex','36595PkAGRm','intensity','userData','set','5410930gloUBa','LYObject','10589856VMLOVs','three\x20object\x20is\x20invalid','obj','170cHdfbK','773480rHUnNB','color','threeObject','3piyeMi','1014YdVuLx','5402564nYCcKy','449407drICHD','1724913MyaECq'];_0x3a0d=function(){return _0x1ae141;};return _0x3a0d();}function _0x1404$1(_0x445d4b,_0x3e9ae7){_0x445d4b=_0x445d4b-0x9d;var _0x3a0dee=_0x3a0d();var _0x14046d=_0x3a0dee[_0x445d4b];return _0x14046d;}(function(_0x15620a,_0x3a7aa7){var _0x3665f8=_0x1404$1,_0x318322=_0x15620a();while(!![]){try{var _0x1553cc=parseInt(_0x3665f8(0xab))/0x1+-parseInt(_0x3665f8(0xa5))/0x2*(-parseInt(_0x3665f8(0xa8))/0x3)+parseInt(_0x3665f8(0xaa))/0x4+-parseInt(_0x3665f8(0xae))/0x5*(-parseInt(_0x3665f8(0xa9))/0x6)+-parseInt(_0x3665f8(0x9f))/0x7+parseInt(_0x3665f8(0xa1))/0x8+-parseInt(_0x3665f8(0xac))/0x9*(parseInt(_0x3665f8(0xa4))/0xa);if(_0x1553cc===_0x3a7aa7)break;else _0x318322['push'](_0x318322['shift']());}catch(_0x1f887c){_0x318322['push'](_0x318322['shift']());}}}(_0x3a0d,0xaedf0));class LightComponent extends SceneComponent{get[_0x3ec3e2(0xa7)](){var _0x511d3a=_0x3ec3e2;if(!this['obj'])throw Error(_0x511d3a(0xa2));return this[_0x511d3a(0xa3)];}set[_0x3ec3e2(0xa7)](_0x13cc7b){var _0x8103b9=_0x3ec3e2;this['obj']=_0x13cc7b,this[_0x8103b9(0xa3)]&&(this[_0x8103b9(0xa3)][_0x8103b9(0x9d)][_0x8103b9(0xa0)]=this);}get[_0x3ec3e2(0xa6)](){var _0x1d8001=_0x3ec3e2;return this[_0x1d8001(0xa7)][_0x1d8001(0xa6)][_0x1d8001(0xad)]();}set[_0x3ec3e2(0xa6)](_0x4eedec){var _0x1cb1be=_0x3ec3e2;this[_0x1cb1be(0xa7)][_0x1cb1be(0xa6)][_0x1cb1be(0x9e)](_0x4eedec);}get[_0x3ec3e2(0xaf)](){var _0x3beae4=_0x3ec3e2;return this[_0x3beae4(0xa7)]['intensity'];}set['intensity'](_0x316527){var _0x4d7734=_0x3ec3e2;this[_0x4d7734(0xa7)][_0x4d7734(0xaf)]=_0x316527;}constructor(_0x3a922e,_0x47878d){super(_0x3a922e,_0x47878d);}}
94
+ var _0x2976b2=_0x56c1;(function(_0x19eba8,_0x19ec67){var _0x8494c=_0x56c1,_0xdfda45=_0x19eba8();while(!![]){try{var _0x9516d4=-parseInt(_0x8494c(0x18a))/0x1*(-parseInt(_0x8494c(0x17f))/0x2)+-parseInt(_0x8494c(0x182))/0x3*(parseInt(_0x8494c(0x18b))/0x4)+-parseInt(_0x8494c(0x188))/0x5+parseInt(_0x8494c(0x17e))/0x6+parseInt(_0x8494c(0x180))/0x7+parseInt(_0x8494c(0x189))/0x8*(parseInt(_0x8494c(0x185))/0x9)+parseInt(_0x8494c(0x18c))/0xa*(-parseInt(_0x8494c(0x186))/0xb);if(_0x9516d4===_0x19ec67)break;else _0xdfda45['push'](_0xdfda45['shift']());}catch(_0x56ca9a){_0xdfda45['push'](_0xdfda45['shift']());}}}(_0x512b,0x6516a));class LightComponent extends SceneComponent{get['threeObject'](){var _0x161ecd=_0x56c1;if(!this['obj'])throw Error(_0x161ecd(0x181));return this[_0x161ecd(0x187)];}set[_0x2976b2(0x17d)](_0x4f81ed){var _0x56ae07=_0x2976b2;this['obj']=_0x4f81ed,this[_0x56ae07(0x187)]&&(this[_0x56ae07(0x187)][_0x56ae07(0x18e)]['LYObject']=this);}get[_0x2976b2(0x184)](){var _0x24a42c=_0x2976b2;return this[_0x24a42c(0x17d)][_0x24a42c(0x184)][_0x24a42c(0x183)]();}set['color'](_0x500b16){var _0x57f282=_0x2976b2;this[_0x57f282(0x17d)][_0x57f282(0x184)]['set'](_0x500b16);}get[_0x2976b2(0x18d)](){var _0x158b09=_0x2976b2;return this[_0x158b09(0x17d)][_0x158b09(0x18d)];}set['intensity'](_0x2fc418){var _0x46d3bc=_0x2976b2;this[_0x46d3bc(0x17d)][_0x46d3bc(0x18d)]=_0x2fc418;}constructor(_0x27598e,_0x207eef){super(_0x27598e,_0x207eef);}}function _0x56c1(_0xf4f9a0,_0x48b996){_0xf4f9a0=_0xf4f9a0-0x17d;var _0x512bde=_0x512b();var _0x56c155=_0x512bde[_0xf4f9a0];return _0x56c155;}function _0x512b(){var _0x1accfe=['2728JzQxdS','obj','3202275ReWRDR','2905256gNPwOX','728524wSEErR','28pmgWfI','1470hsKYXC','intensity','userData','threeObject','743412oOrDxf','2PNdhXV','1964284jvRjaa','three\x20object\x20is\x20invalid','329307RDeKAd','getHex','color','18cQjcIG'];_0x512b=function(){return _0x1accfe;};return _0x512b();}
94
95
 
95
- function _0x2b24(_0x53adfb,_0x328619){_0x53adfb=_0x53adfb-0xc6;var _0xf77111=_0xf771();var _0x2b249b=_0xf77111[_0x53adfb];return _0x2b249b;}var _0x57a7b9=_0x2b24;(function(_0x457dd2,_0x27c664){var _0x49d412=_0x2b24,_0xdf5ed6=_0x457dd2();while(!![]){try{var _0x21bd99=parseInt(_0x49d412(0xd8))/0x1+parseInt(_0x49d412(0xdb))/0x2*(-parseInt(_0x49d412(0xcb))/0x3)+parseInt(_0x49d412(0xcc))/0x4*(parseInt(_0x49d412(0xc6))/0x5)+parseInt(_0x49d412(0xd6))/0x6+parseInt(_0x49d412(0xcd))/0x7+-parseInt(_0x49d412(0xd1))/0x8*(-parseInt(_0x49d412(0xd5))/0x9)+-parseInt(_0x49d412(0xca))/0xa;if(_0x21bd99===_0x27c664)break;else _0xdf5ed6['push'](_0xdf5ed6['shift']());}catch(_0x52e06d){_0xdf5ed6['push'](_0xdf5ed6['shift']());}}}(_0xf771,0xe4e19));function _0xf771(){var _0x1506d1=['2529WXaZPU','794204tuHHvi','642362LumRuz','castShadow','setPosition','world','8VGidex','markRenderStateDirty','onAddedToWorld','userData','15704559DSTZWW','3291168JeNawT','set','617731IADHWB','viewport','obj','1550lKQDqt','threeObject','length','20eGqTkJ','update','three\x20object\x20is\x20invalid','LYObject','22063580xSwiOF'];_0xf771=function(){return _0x1506d1;};return _0xf771();}class DirectionalLightComponent extends LightComponent{get['threeObject'](){var _0x17a776=_0x2b24;if(!this[_0x17a776(0xda)])throw Error(_0x17a776(0xc8));return this[_0x17a776(0xda)];}set[_0x57a7b9(0xdc)](_0xd20618){var _0x9a7c9e=_0x57a7b9;this[_0x9a7c9e(0xda)]=_0xd20618,this[_0x9a7c9e(0xda)]&&(this[_0x9a7c9e(0xda)][_0x9a7c9e(0xd4)][_0x9a7c9e(0xc9)]=this);}get[_0x57a7b9(0xce)](){var _0x203810=_0x57a7b9;return this[_0x203810(0xdc)][_0x203810(0xce)];}set[_0x57a7b9(0xce)](_0x25c62b){this['threeObject']['castShadow']=_0x25c62b;}constructor(_0x4ecd4e,_0x17386e=0xffffff,_0x205ef5=0xa,_0x1a1b57){var _0x26c841=_0x57a7b9;super(_0x4ecd4e,_0x1a1b57),this['threeObject']['color'][_0x26c841(0xd7)](_0x17386e),this['threeObject']['intensity']=_0x205ef5;}['createDefaultObject'](){return new webgpu.DirectionalLight(0xffffff,0xa);}[_0x57a7b9(0xcf)](..._0x15a8f0){var _0x17786f=_0x57a7b9;_0x15a8f0[_0x17786f(0xdd)]===0x1?super[_0x17786f(0xcf)](_0x15a8f0[0x0]):super[_0x17786f(0xcf)](_0x15a8f0[0x0],_0x15a8f0[0x1],_0x15a8f0[0x2]),this['update']();}[_0x57a7b9(0xc7)](){var _0x372dca=_0x57a7b9;if(this[_0x372dca(0xd0)])this[_0x372dca(0xd0)][_0x372dca(0xd9)][_0x372dca(0xd2)]();}['onAddedToWorld'](_0x31339d){var _0x1b5cc9=_0x57a7b9;if(!this['threeObject'])throw Error(_0x1b5cc9(0xc8));super[_0x1b5cc9(0xd3)](_0x31339d);}['destroy'](){super['destroy']();}}
96
+ function _0xceaa(){var _0x1fb85e=['9981FFKToU','2467870TUflGZ','3384LeMmRI','setPosition','3472119HNXqTa','world','542361yIXuIR','4308zwFeOT','826652iwapDy','castShadow','three\x20object\x20is\x20invalid','color','2tZZcdC','length','11ZnXFJl','threeObject','LYObject','2775TFwjFJ','obj','146033TWGchk','destroy','markRenderStateDirty','set','update','viewport'];_0xceaa=function(){return _0x1fb85e;};return _0xceaa();}function _0xfb53(_0x13f97d,_0x2fd384){_0x13f97d=_0x13f97d-0x1c2;var _0xceaa27=_0xceaa();var _0xfb5323=_0xceaa27[_0x13f97d];return _0xfb5323;}var _0x6899fa=_0xfb53;(function(_0x1a2603,_0x3f79bd){var _0x4eb0e7=_0xfb53,_0x26f4d4=_0x1a2603();while(!![]){try{var _0x2cba58=parseInt(_0x4eb0e7(0x1d3))/0x1+parseInt(_0x4eb0e7(0x1cc))/0x2*(-parseInt(_0x4eb0e7(0x1c6))/0x3)+parseInt(_0x4eb0e7(0x1c8))/0x4+-parseInt(_0x4eb0e7(0x1d1))/0x5*(-parseInt(_0x4eb0e7(0x1c7))/0x6)+-parseInt(_0x4eb0e7(0x1c4))/0x7+-parseInt(_0x4eb0e7(0x1c2))/0x8*(-parseInt(_0x4eb0e7(0x1d9))/0x9)+-parseInt(_0x4eb0e7(0x1da))/0xa*(parseInt(_0x4eb0e7(0x1ce))/0xb);if(_0x2cba58===_0x3f79bd)break;else _0x26f4d4['push'](_0x26f4d4['shift']());}catch(_0x1bb708){_0x26f4d4['push'](_0x26f4d4['shift']());}}}(_0xceaa,0x486fe));class DirectionalLightComponent extends LightComponent{get[_0x6899fa(0x1cf)](){var _0xd679a8=_0x6899fa;if(!this[_0xd679a8(0x1d2)])throw Error(_0xd679a8(0x1ca));return this[_0xd679a8(0x1d2)];}set['threeObject'](_0x44ae35){var _0x1d39f5=_0x6899fa;this['obj']=_0x44ae35,this[_0x1d39f5(0x1d2)]&&(this[_0x1d39f5(0x1d2)]['userData'][_0x1d39f5(0x1d0)]=this);}get[_0x6899fa(0x1c9)](){var _0x534459=_0x6899fa;return this[_0x534459(0x1cf)][_0x534459(0x1c9)];}set[_0x6899fa(0x1c9)](_0x48acc3){var _0x494261=_0x6899fa;this[_0x494261(0x1cf)][_0x494261(0x1c9)]=_0x48acc3;}constructor(_0x179713,_0x5ac129=0xffffff,_0x4520a0=0xa,_0x1b20fd){var _0x14e08e=_0x6899fa;super(_0x179713,_0x1b20fd),this['threeObject'][_0x14e08e(0x1cb)][_0x14e08e(0x1d6)](_0x5ac129),this['threeObject']['intensity']=_0x4520a0;}['createDefaultObject'](){return new webgpu.DirectionalLight(0xffffff,0xa);}[_0x6899fa(0x1c3)](..._0xd95a61){var _0x58b910=_0x6899fa;_0xd95a61[_0x58b910(0x1cd)]===0x1?super['setPosition'](_0xd95a61[0x0]):super[_0x58b910(0x1c3)](_0xd95a61[0x0],_0xd95a61[0x1],_0xd95a61[0x2]),this[_0x58b910(0x1d7)]();}[_0x6899fa(0x1d7)](){var _0x339a7c=_0x6899fa;if(this['world'])this[_0x339a7c(0x1c5)][_0x339a7c(0x1d8)][_0x339a7c(0x1d5)]();}['onAddedToWorld'](_0x38095b){var _0x1caa71=_0x6899fa;if(!this[_0x1caa71(0x1cf)])throw Error(_0x1caa71(0x1ca));super['onAddedToWorld'](_0x38095b);}[_0x6899fa(0x1d4)](){super['destroy']();}}
96
97
 
97
- function _0x29bf(_0xf4d138,_0x2b1cf2){_0xf4d138=_0xf4d138-0x1c4;var _0x457021=_0x4570();var _0x29bfe9=_0x457021[_0xf4d138];return _0x29bfe9;}var _0x56de05=_0x29bf;(function(_0x14f097,_0x3da417){var _0x28048d=_0x29bf,_0x3cd4de=_0x14f097();while(!![]){try{var _0x1c9a9d=parseInt(_0x28048d(0x1d0))/0x1+-parseInt(_0x28048d(0x1cf))/0x2*(-parseInt(_0x28048d(0x1c4))/0x3)+parseInt(_0x28048d(0x1c5))/0x4*(-parseInt(_0x28048d(0x1cb))/0x5)+parseInt(_0x28048d(0x1d1))/0x6+parseInt(_0x28048d(0x1cd))/0x7*(-parseInt(_0x28048d(0x1c7))/0x8)+-parseInt(_0x28048d(0x1cc))/0x9+-parseInt(_0x28048d(0x1c9))/0xa;if(_0x1c9a9d===_0x3da417)break;else _0x3cd4de['push'](_0x3cd4de['shift']());}catch(_0xdfc919){_0x3cd4de['push'](_0x3cd4de['shift']());}}}(_0x4570,0x515fe));function _0x4570(){var _0x1e259b=['constructRootComponent','lightComponent','1938537NvyWOK','20PzvnkB','castShadow','24pGpjWi','intensity','664830htWIRX','rootComponent','276015PIjFjL','3331557xcCwtu','80129fuAbGN','app','2oCkYHA','227573RFNhTh','1239420ZeWOya'];_0x4570=function(){return _0x1e259b;};return _0x4570();}class DirectionalLightActor extends Actor{constructor(_0x5c41da,_0x3a8f5b=0xffffff,_0x7f831c=0x1,_0x3680d7){var _0x47bf60=_0x29bf;super(_0x5c41da,_0x3680d7),this[_0x47bf60(0x1d3)]=null,this[_0x47bf60(0x1d3)]=this[_0x47bf60(0x1ca)],this[_0x47bf60(0x1d3)]&&(this['lightComponent']['color']=_0x3a8f5b,this[_0x47bf60(0x1d3)][_0x47bf60(0x1c8)]=_0x7f831c,this[_0x47bf60(0x1d3)]['castShadow']=!![]),this[_0x47bf60(0x1d3)][_0x47bf60(0x1c6)]=!![];}[_0x56de05(0x1d2)](){var _0x509469=_0x56de05;return new DirectionalLightComponent(this[_0x509469(0x1ce)]);}}
98
+ var _0x2974e2=_0x24ee;(function(_0x10e265,_0x40f731){var _0x17e912=_0x24ee,_0x582a9a=_0x10e265();while(!![]){try{var _0x2f9190=-parseInt(_0x17e912(0x74))/0x1*(-parseInt(_0x17e912(0x6d))/0x2)+-parseInt(_0x17e912(0x66))/0x3*(-parseInt(_0x17e912(0x6c))/0x4)+parseInt(_0x17e912(0x73))/0x5+parseInt(_0x17e912(0x67))/0x6+parseInt(_0x17e912(0x6f))/0x7+parseInt(_0x17e912(0x6a))/0x8*(parseInt(_0x17e912(0x6e))/0x9)+parseInt(_0x17e912(0x70))/0xa*(-parseInt(_0x17e912(0x6b))/0xb);if(_0x2f9190===_0x40f731)break;else _0x582a9a['push'](_0x582a9a['shift']());}catch(_0x50ee31){_0x582a9a['push'](_0x582a9a['shift']());}}}(_0x667d,0xe13f7));function _0x667d(){var _0xf48166=['6950136dlRcAw','intensity','lightComponent','8yyErcz','231OgKcGT','4hGJdOG','407586oVuGuA','12247353wITmKU','10288103QJuvvS','3062080iwUsoo','rootComponent','castShadow','2409505BIhOlG','9KUSZqK','color','constructRootComponent','3144129SAstPk'];_0x667d=function(){return _0xf48166;};return _0x667d();}function _0x24ee(_0x3c4908,_0x577889){_0x3c4908=_0x3c4908-0x64;var _0x667d91=_0x667d();var _0x24eeb6=_0x667d91[_0x3c4908];return _0x24eeb6;}class DirectionalLightActor extends Actor{constructor(_0x20a109,_0xcd4533=0xffffff,_0x5beccc=0x1,_0xc4e4f8){var _0x1f3290=_0x24ee;super(_0x20a109,_0xc4e4f8),this['lightComponent']=null,this['lightComponent']=this[_0x1f3290(0x71)],this['lightComponent']&&(this[_0x1f3290(0x69)][_0x1f3290(0x64)]=_0xcd4533,this[_0x1f3290(0x69)][_0x1f3290(0x68)]=_0x5beccc,this[_0x1f3290(0x69)][_0x1f3290(0x72)]=!![]),this[_0x1f3290(0x69)][_0x1f3290(0x72)]=!![];}[_0x2974e2(0x65)](){return new DirectionalLightComponent(this['app']);}}
98
99
 
99
- var _0x2bb4c5=_0x3a4a;(function(_0x2f6a81,_0x27a560){var _0x139dc9=_0x3a4a,_0x4bbf70=_0x2f6a81();while(!![]){try{var _0x201b8b=-parseInt(_0x139dc9(0xf3))/0x1*(parseInt(_0x139dc9(0x10e))/0x2)+-parseInt(_0x139dc9(0xfe))/0x3*(-parseInt(_0x139dc9(0x102))/0x4)+-parseInt(_0x139dc9(0x105))/0x5*(parseInt(_0x139dc9(0xfc))/0x6)+parseInt(_0x139dc9(0xf0))/0x7*(parseInt(_0x139dc9(0xf4))/0x8)+-parseInt(_0x139dc9(0x101))/0x9+parseInt(_0x139dc9(0x10c))/0xa*(parseInt(_0x139dc9(0xfd))/0xb)+-parseInt(_0x139dc9(0xfb))/0xc*(-parseInt(_0x139dc9(0x103))/0xd);if(_0x201b8b===_0x27a560)break;else _0x4bbf70['push'](_0x4bbf70['shift']());}catch(_0x3fc227){_0x4bbf70['push'](_0x4bbf70['shift']());}}}(_0x1404,0xc3096));function _0x3a4a(_0x2f55a8,_0x19847e){_0x2f55a8=_0x2f55a8-0xf0;var _0x140428=_0x1404();var _0x3a4afa=_0x140428[_0x2f55a8];return _0x3a4afa;}class AmbientLightComponent extends LightComponent{get['threeObject'](){var _0x23d3eb=_0x3a4a;if(!this[_0x23d3eb(0xf9)])throw Error('three\x20object\x20is\x20invalid');return this[_0x23d3eb(0xf9)];}set[_0x2bb4c5(0xf2)](_0x23f06d){var _0x263cae=_0x2bb4c5;this['obj']=_0x23f06d,this[_0x263cae(0xf9)]&&(this['obj'][_0x263cae(0x104)][_0x263cae(0x100)]=this);}get['castShadow'](){var _0x4eed47=_0x2bb4c5;return this[_0x4eed47(0xf2)][_0x4eed47(0x109)];}set[_0x2bb4c5(0x109)](_0x314ebf){var _0x13ad56=_0x2bb4c5;this[_0x13ad56(0xf2)][_0x13ad56(0x109)]=_0x314ebf;}constructor(_0x25c258,_0x5df69c=0xffffff,_0x180e61=0xa,_0x38e117){var _0x4b42f8=_0x2bb4c5;super(_0x25c258,_0x38e117),this[_0x4b42f8(0xf2)][_0x4b42f8(0xff)][_0x4b42f8(0x10d)](_0x5df69c),this[_0x4b42f8(0xf2)][_0x4b42f8(0x10b)]=_0x180e61;}[_0x2bb4c5(0xfa)](){return new webgpu.AmbientLight(0xffffff,0xa);}[_0x2bb4c5(0xf1)](..._0x6f7932){var _0x378603=_0x2bb4c5;_0x6f7932[_0x378603(0x108)]===0x1?super[_0x378603(0xf1)](_0x6f7932[0x0]):super[_0x378603(0xf1)](_0x6f7932[0x0],_0x6f7932[0x1],_0x6f7932[0x2]),this[_0x378603(0xf5)]();}['update'](){var _0x5d1d15=_0x2bb4c5;if(this[_0x5d1d15(0xf7)])this['world'][_0x5d1d15(0x106)][_0x5d1d15(0xf8)]();}[_0x2bb4c5(0x107)](_0xff344c){var _0x5653dc=_0x2bb4c5;if(!this[_0x5653dc(0xf2)])throw Error(_0x5653dc(0x10a));super['onAddedToWorld'](_0xff344c);}[_0x2bb4c5(0xf6)](){var _0x321043=_0x2bb4c5;super[_0x321043(0xf6)]();}}function _0x1404(){var _0x5849b7=['setPosition','threeObject','1332636GvxmDP','1256umfOyL','update','destroy','world','markRenderStateDirty','obj','createDefaultObject','480OnVcZM','450DfpubU','143zmiddu','796701YyxVug','color','LYObject','450648kQPYOv','4FJLmkV','400426MKbQBJ','userData','7630SIPkUZ','viewport','onAddedToWorld','length','castShadow','three\x20object\x20is\x20invalid','intensity','337940ExjhsB','set','2LbJkYh','16009tIJgjk'];_0x1404=function(){return _0x5849b7;};return _0x1404();}
100
+ var _0x24d1d0=_0x98e6;(function(_0x27179a,_0x1f7a4d){var _0x317cb5=_0x98e6,_0x18d94e=_0x27179a();while(!![]){try{var _0x3539d3=-parseInt(_0x317cb5(0x15c))/0x1+-parseInt(_0x317cb5(0x15b))/0x2+-parseInt(_0x317cb5(0x153))/0x3*(-parseInt(_0x317cb5(0x14a))/0x4)+-parseInt(_0x317cb5(0x14b))/0x5+parseInt(_0x317cb5(0x14f))/0x6*(parseInt(_0x317cb5(0x152))/0x7)+-parseInt(_0x317cb5(0x148))/0x8+parseInt(_0x317cb5(0x151))/0x9;if(_0x3539d3===_0x1f7a4d)break;else _0x18d94e['push'](_0x18d94e['shift']());}catch(_0x2020e9){_0x18d94e['push'](_0x18d94e['shift']());}}}(_0x129d,0x191bf));function _0x129d(){var _0x2e2a74=['454648wglWkH','three\x20object\x20is\x20invalid','126388AzVbwg','536605qHYsNC','threeObject','obj','intensity','35562itkRcU','set','2587536iCCnbS','189EDMOGw','6YRnWiN','markRenderStateDirty','update','setPosition','castShadow','viewport','onAddedToWorld','destroy','337846FNqEyl','74805kBvQjQ','world','length'];_0x129d=function(){return _0x2e2a74;};return _0x129d();}function _0x98e6(_0x3e695e,_0x501b64){_0x3e695e=_0x3e695e-0x146;var _0x129ddb=_0x129d();var _0x98e6f7=_0x129ddb[_0x3e695e];return _0x98e6f7;}class AmbientLightComponent extends LightComponent{get[_0x24d1d0(0x14c)](){var _0x2e8708=_0x24d1d0;if(!this[_0x2e8708(0x14d)])throw Error(_0x2e8708(0x149));return this[_0x2e8708(0x14d)];}set['threeObject'](_0x5ce645){var _0x39b66c=_0x24d1d0;this[_0x39b66c(0x14d)]=_0x5ce645,this[_0x39b66c(0x14d)]&&(this[_0x39b66c(0x14d)]['userData']['LYObject']=this);}get[_0x24d1d0(0x157)](){var _0x3b54af=_0x24d1d0;return this[_0x3b54af(0x14c)][_0x3b54af(0x157)];}set[_0x24d1d0(0x157)](_0x56b0a9){var _0x2254e=_0x24d1d0;this[_0x2254e(0x14c)][_0x2254e(0x157)]=_0x56b0a9;}constructor(_0x22008f,_0x2e0663=0xffffff,_0x15fe51=0xa,_0x5235da){var _0x24f280=_0x24d1d0;super(_0x22008f,_0x5235da),this[_0x24f280(0x14c)]['color'][_0x24f280(0x150)](_0x2e0663),this['threeObject'][_0x24f280(0x14e)]=_0x15fe51;}['createDefaultObject'](){return new webgpu.AmbientLight(0xffffff,0xa);}['setPosition'](..._0x546d6e){var _0x9f33ef=_0x24d1d0;_0x546d6e[_0x9f33ef(0x147)]===0x1?super[_0x9f33ef(0x156)](_0x546d6e[0x0]):super[_0x9f33ef(0x156)](_0x546d6e[0x0],_0x546d6e[0x1],_0x546d6e[0x2]),this[_0x9f33ef(0x155)]();}[_0x24d1d0(0x155)](){var _0x57cbd6=_0x24d1d0;if(this['world'])this[_0x57cbd6(0x146)][_0x57cbd6(0x158)][_0x57cbd6(0x154)]();}['onAddedToWorld'](_0xaab9b1){var _0x1e460b=_0x24d1d0;if(!this[_0x1e460b(0x14c)])throw Error(_0x1e460b(0x149));super[_0x1e460b(0x159)](_0xaab9b1);}[_0x24d1d0(0x15a)](){var _0x35f87d=_0x24d1d0;super[_0x35f87d(0x15a)]();}}
100
101
 
101
- var _0x16f1ba=_0x549e;(function(_0x3e8c5d,_0x59a960){var _0x4338a5=_0x549e,_0x19aae6=_0x3e8c5d();while(!![]){try{var _0x5132fe=-parseInt(_0x4338a5(0x1ce))/0x1+-parseInt(_0x4338a5(0x1d8))/0x2*(-parseInt(_0x4338a5(0x1d4))/0x3)+parseInt(_0x4338a5(0x1d5))/0x4*(-parseInt(_0x4338a5(0x1d9))/0x5)+parseInt(_0x4338a5(0x1df))/0x6+-parseInt(_0x4338a5(0x1dd))/0x7*(parseInt(_0x4338a5(0x1d1))/0x8)+parseInt(_0x4338a5(0x1cf))/0x9*(-parseInt(_0x4338a5(0x1db))/0xa)+-parseInt(_0x4338a5(0x1de))/0xb*(-parseInt(_0x4338a5(0x1d0))/0xc);if(_0x5132fe===_0x59a960)break;else _0x19aae6['push'](_0x19aae6['shift']());}catch(_0x3be1b7){_0x19aae6['push'](_0x19aae6['shift']());}}}(_0x4334,0xc8787));function _0x4334(){var _0x29f6f9=['11rjcxOb','3093480gnzbWB','color','536240QgQuEY','9EhOMbW','40695276Spsmlh','1192GkRTXn','constructRootComponent','castShadow','1374798OTXtIB','1688056RpmWkm','rootComponent','intensity','2hInElj','10qDxOxY','lightComponent','9227030heabLN','app','58303VMtypj'];_0x4334=function(){return _0x29f6f9;};return _0x4334();}function _0x549e(_0x3f9beb,_0x119fa0){_0x3f9beb=_0x3f9beb-0x1cd;var _0x43342b=_0x4334();var _0x549e55=_0x43342b[_0x3f9beb];return _0x549e55;}class AmbientLightActor extends Actor{constructor(_0x337a5b,_0xd2054=0xffffff,_0x52811a=0x1,_0x1f60c7){var _0x5eb0f8=_0x549e;super(_0x337a5b,_0x1f60c7),this[_0x5eb0f8(0x1da)]=null,this[_0x5eb0f8(0x1da)]=this[_0x5eb0f8(0x1d6)],this[_0x5eb0f8(0x1da)]&&(this[_0x5eb0f8(0x1da)][_0x5eb0f8(0x1cd)]=_0xd2054,this['lightComponent'][_0x5eb0f8(0x1d7)]=_0x52811a,this[_0x5eb0f8(0x1da)][_0x5eb0f8(0x1d3)]=!![]),this[_0x5eb0f8(0x1da)][_0x5eb0f8(0x1d3)]=!![];}[_0x16f1ba(0x1d2)](){var _0x470ecc=_0x16f1ba;return new AmbientLightComponent(this[_0x470ecc(0x1dc)]);}}
102
+ (function(_0x327ec8,_0x1ab78e){var _0x5cf57f=_0x12bb,_0x98ddca=_0x327ec8();while(!![]){try{var _0x2127b3=parseInt(_0x5cf57f(0x83))/0x1+parseInt(_0x5cf57f(0x86))/0x2+parseInt(_0x5cf57f(0x8e))/0x3*(-parseInt(_0x5cf57f(0x87))/0x4)+parseInt(_0x5cf57f(0x8c))/0x5+-parseInt(_0x5cf57f(0x8f))/0x6+-parseInt(_0x5cf57f(0x82))/0x7*(parseInt(_0x5cf57f(0x88))/0x8)+parseInt(_0x5cf57f(0x8d))/0x9;if(_0x2127b3===_0x1ab78e)break;else _0x98ddca['push'](_0x98ddca['shift']());}catch(_0x1a50c7){_0x98ddca['push'](_0x98ddca['shift']());}}}(_0x2130,0x88f1e));function _0x12bb(_0x3ec6e8,_0x21e62f){_0x3ec6e8=_0x3ec6e8-0x82;var _0x213025=_0x2130();var _0x12bbfe=_0x213025[_0x3ec6e8];return _0x12bbfe;}function _0x2130(){var _0x12f885=['14uPYJul','615050rODpiA','rootComponent','castShadow','1504710QpAWmM','124092Yuqffr','4324952oLoZgm','lightComponent','color','app','868695XZecFv','8747442zqHdYr','30GvQcig','3364128MczcWx'];_0x2130=function(){return _0x12f885;};return _0x2130();}class AmbientLightActor extends Actor{constructor(_0xc438d0,_0x4876c8=0xffffff,_0x1dd5c7=0x1,_0x33bd2f){var _0x5484bd=_0x12bb;super(_0xc438d0,_0x33bd2f),this['lightComponent']=null,this[_0x5484bd(0x89)]=this[_0x5484bd(0x84)],this[_0x5484bd(0x89)]&&(this['lightComponent'][_0x5484bd(0x8a)]=_0x4876c8,this['lightComponent']['intensity']=_0x1dd5c7,this[_0x5484bd(0x89)]['castShadow']=!![]),this['lightComponent'][_0x5484bd(0x85)]=!![];}['constructRootComponent'](){var _0x299771=_0x12bb;return new AmbientLightComponent(this[_0x299771(0x8b)]);}}
102
103
 
103
- (function(_0x20d940,_0x3c85a6){var _0x3309b8=_0x1eb0,_0x1db128=_0x20d940();while(!![]){try{var _0x4bca83=parseInt(_0x3309b8(0x1ae))/0x1+parseInt(_0x3309b8(0x1b1))/0x2*(-parseInt(_0x3309b8(0x1b2))/0x3)+-parseInt(_0x3309b8(0x1b7))/0x4*(-parseInt(_0x3309b8(0x1b4))/0x5)+-parseInt(_0x3309b8(0x1ac))/0x6+-parseInt(_0x3309b8(0x1af))/0x7*(-parseInt(_0x3309b8(0x1ad))/0x8)+parseInt(_0x3309b8(0x1b6))/0x9*(-parseInt(_0x3309b8(0x1b0))/0xa)+-parseInt(_0x3309b8(0x1b5))/0xb*(-parseInt(_0x3309b8(0x1b3))/0xc);if(_0x4bca83===_0x3c85a6)break;else _0x1db128['push'](_0x1db128['shift']());}catch(_0x21ee5e){_0x1db128['push'](_0x1db128['shift']());}}}(_0x5506,0xc44a3));function _0x1eb0(_0x19c0ee,_0x340e14){_0x19c0ee=_0x19c0ee-0x1ac;var _0x5506ef=_0x5506();var _0x1eb046=_0x5506ef[_0x19c0ee];return _0x1eb046;}function _0x5506(){var _0x3c5bd2=['6483528occVSc','27016ETQKQo','221629dNBXVQ','3227vqCKQM','8935350InRxbb','2oRiXgX','3348264IzMJmb','72960spkxLM','51580wofSdL','3212HyQOgg','9JhACBU','132QrgbOC'];_0x5506=function(){return _0x3c5bd2;};return _0x5506();}class BoxComponent extends MeshComponent{constructor(_0x452dd4,_0x134a9e=0x1,_0x2905d9=0x1,_0xe9030e=0x1,_0xe0da89=0x1,_0x13bf01=0x1,_0x21a6ae=0x1,_0x3bba87=new webgpu.MeshStandardMaterial(),_0x15d151){super(_0x452dd4,new webgpu.BoxGeometry(_0x134a9e,_0x2905d9,_0xe9030e,_0xe0da89,_0x13bf01,_0x21a6ae),_0x3bba87,_0x15d151);}}
104
+ function _0x2754(_0x38d32b,_0x24f8f2){_0x38d32b=_0x38d32b-0x8f;var _0x478f04=_0x478f();var _0x2754b4=_0x478f04[_0x38d32b];return _0x2754b4;}(function(_0x38ff78,_0x205919){var _0x594b69=_0x2754,_0x38c352=_0x38ff78();while(!![]){try{var _0x1fbfdc=-parseInt(_0x594b69(0x94))/0x1*(-parseInt(_0x594b69(0x8f))/0x2)+-parseInt(_0x594b69(0x91))/0x3+parseInt(_0x594b69(0x93))/0x4+parseInt(_0x594b69(0x92))/0x5*(-parseInt(_0x594b69(0x90))/0x6)+-parseInt(_0x594b69(0x96))/0x7+parseInt(_0x594b69(0x97))/0x8+parseInt(_0x594b69(0x95))/0x9;if(_0x1fbfdc===_0x205919)break;else _0x38c352['push'](_0x38c352['shift']());}catch(_0x2c4332){_0x38c352['push'](_0x38c352['shift']());}}}(_0x478f,0x43082));class BoxComponent extends MeshComponent{constructor(_0x1a9b12,_0x2d2b34=0x1,_0x2664d6=0x1,_0x123280=0x1,_0x338a8f=0x1,_0x1aa847=0x1,_0x5d29db=0x1,_0x17bc68=new webgpu.MeshStandardMaterial(),_0x4769ac){super(_0x1a9b12,new webgpu.BoxGeometry(_0x2d2b34,_0x2664d6,_0x123280,_0x338a8f,_0x1aa847,_0x5d29db),_0x17bc68,_0x4769ac);}}function _0x478f(){var _0x2de601=['9635TRnsyI','1752948CpUWIF','1EXyzNA','6863760cyzCiw','2078412ENneFD','462736rBvFel','216686mskKEp','1458eeFmQO','981969nQJakP'];_0x478f=function(){return _0x2de601;};return _0x478f();}
104
105
 
105
- function _0x4881(){var _0x2c9c5b=['837440YySBqI','294740QhhbZN','app','7770FZBiok','1002554lZxuFZ','413431oZFFpN','40FalxWJ','2hnHuvf','2463801DQVzSG','constructRootComponent','13480155ROBCdv','uuid'];_0x4881=function(){return _0x2c9c5b;};return _0x4881();}var _0x471d9b=_0x2029;(function(_0x42e7e1,_0xc85ecd){var _0x24078a=_0x2029,_0x1b884f=_0x42e7e1();while(!![]){try{var _0x993698=-parseInt(_0x24078a(0x144))/0x1*(-parseInt(_0x24078a(0x13a))/0x2)+-parseInt(_0x24078a(0x13b))/0x3+-parseInt(_0x24078a(0x145))/0x4*(parseInt(_0x24078a(0x140))/0x5)+parseInt(_0x24078a(0x142))/0x6+-parseInt(_0x24078a(0x143))/0x7+parseInt(_0x24078a(0x13f))/0x8+parseInt(_0x24078a(0x13d))/0x9;if(_0x993698===_0xc85ecd)break;else _0x1b884f['push'](_0x1b884f['shift']());}catch(_0x20c9c1){_0x1b884f['push'](_0x1b884f['shift']());}}}(_0x4881,0x71180));function _0x2029(_0x6ee6e8,_0xb28fb9){_0x6ee6e8=_0x6ee6e8-0x13a;var _0x488131=_0x4881();var _0x202921=_0x488131[_0x6ee6e8];return _0x202921;}class BoxActor extends Actor{constructor(_0x445544,_0x153366){super(_0x445544,_0x153366);}[_0x471d9b(0x13c)](){var _0x3d8941=_0x471d9b;return new BoxComponent(this[_0x3d8941(0x141)],0x1,0x1,0x1,0x1,0x1,0x1,new webgpu.MeshBasicMaterial(),this[_0x3d8941(0x13e)]);}}
106
+ function _0xe275(_0x1c1427,_0x15ec43){_0x1c1427=_0x1c1427-0x177;var _0x33a9ad=_0x33a9();var _0xe275a8=_0x33a9ad[_0x1c1427];return _0xe275a8;}var _0x2a50cd=_0xe275;(function(_0x196d28,_0x2d4fee){var _0x549c1d=_0xe275,_0x1684c0=_0x196d28();while(!![]){try{var _0x17a1be=-parseInt(_0x549c1d(0x17a))/0x1+parseInt(_0x549c1d(0x177))/0x2*(parseInt(_0x549c1d(0x178))/0x3)+parseInt(_0x549c1d(0x179))/0x4*(-parseInt(_0x549c1d(0x17b))/0x5)+parseInt(_0x549c1d(0x181))/0x6+-parseInt(_0x549c1d(0x17d))/0x7*(-parseInt(_0x549c1d(0x17c))/0x8)+-parseInt(_0x549c1d(0x17f))/0x9+parseInt(_0x549c1d(0x182))/0xa;if(_0x17a1be===_0x2d4fee)break;else _0x1684c0['push'](_0x1684c0['shift']());}catch(_0x3f353c){_0x1684c0['push'](_0x1684c0['shift']());}}}(_0x33a9,0xe93e2));function _0x33a9(){var _0x674aea=['13636cOmcIY','315gtuHzT','100BurIlq','413384dKasQN','252790eWCRTG','64HLsrkA','551852lcchkk','app','16353855ZGOakE','constructRootComponent','6803016vpLmOo','19693770GkgcKB','uuid'];_0x33a9=function(){return _0x674aea;};return _0x33a9();}class BoxActor extends Actor{constructor(_0x1c422f,_0x4d1dd7){super(_0x1c422f,_0x4d1dd7);}[_0x2a50cd(0x180)](){var _0x355a5f=_0x2a50cd;return new BoxComponent(this[_0x355a5f(0x17e)],0x1,0x1,0x1,0x1,0x1,0x1,new webgpu.MeshBasicMaterial(),this[_0x355a5f(0x183)]);}}
106
107
 
107
- function _0xab55(_0x3ecfde,_0x30e705){_0x3ecfde=_0x3ecfde-0x105;const _0x3533c8=_0x3533();let _0xab55f5=_0x3533c8[_0x3ecfde];return _0xab55f5;}const _0x1242f9=_0xab55;(function(_0x4f3cbf,_0x341d82){const _0x1ae8a1=_0xab55,_0x46baff=_0x4f3cbf();while(!![]){try{const _0x370fe9=-parseInt(_0x1ae8a1(0x117))/0x1+parseInt(_0x1ae8a1(0x113))/0x2*(-parseInt(_0x1ae8a1(0x108))/0x3)+-parseInt(_0x1ae8a1(0x118))/0x4*(-parseInt(_0x1ae8a1(0x10b))/0x5)+parseInt(_0x1ae8a1(0x11b))/0x6+parseInt(_0x1ae8a1(0x107))/0x7+parseInt(_0x1ae8a1(0x10d))/0x8*(parseInt(_0x1ae8a1(0x11a))/0x9)+-parseInt(_0x1ae8a1(0x106))/0xa;if(_0x370fe9===_0x341d82)break;else _0x46baff['push'](_0x46baff['shift']());}catch(_0x24ed5e){_0x46baff['push'](_0x46baff['shift']());}}}(_0x3533,0x45f9a));function _0x3533(){const _0x40a6f6=['degToRad','value','viewport','obj','5217680oiuWzJ','1054970GzvazL','2043CTBjPx','destroyObject','mieCoefficient','1581880wdRHIl','createDefaultObject','19256eiYcDy','disposeMeshResource','turbidity','skyParam','sunPosition','markRenderStateDirty','112QtlYrr','LYObject','userData','mieDirectionalG','532621LkMtqu','4TPMJHZ','threeObject','1332sarLvS','3334926xqnfqN','rayleigh','setFromSphericalCoords'];_0x3533=function(){return _0x40a6f6;};return _0x3533();}const DefaultSkyParam={'turbidity':0xa,'rayleigh':0x3,'mieCoefficient':0.005,'mieDirectionalG':0.7,'elevation':0x2,'azimuth':0x87};class SkyComponent extends SceneComponent{get[_0x1242f9(0x119)](){const _0x15633a=_0x1242f9;if(!this[_0x15633a(0x105)])throw Error('three\x20object\x20is\x20invalid');return this[_0x15633a(0x105)];}set['threeObject'](_0x4c717f){const _0x21cf23=_0x1242f9;this['obj']=_0x4c717f,this[_0x21cf23(0x105)]&&(this['obj'][_0x21cf23(0x115)][_0x21cf23(0x114)]=this);}constructor(_0x184ccc,_0x5183ae,_0x4defdd){const _0x213ee8=_0x1242f9;super(_0x184ccc,_0x4defdd),this['skyParam']=DefaultSkyParam,this[_0x213ee8(0x111)]=new webgpu.Vector3(),_0x5183ae&&(this[_0x213ee8(0x110)]=_0x5183ae),this['updateSky']();}[_0x1242f9(0x10c)](){return new SkyMesh_js.SkyMesh();}['updateSky'](){const _0x263ee=_0x1242f9;var _0x364050,_0xbfad69;this[_0x263ee(0x119)]['turbidity'][_0x263ee(0x11f)]=this[_0x263ee(0x110)][_0x263ee(0x10f)],this[_0x263ee(0x119)][_0x263ee(0x11c)][_0x263ee(0x11f)]=this[_0x263ee(0x110)][_0x263ee(0x11c)],this['threeObject'][_0x263ee(0x10a)][_0x263ee(0x11f)]=this[_0x263ee(0x110)][_0x263ee(0x10a)],this['threeObject'][_0x263ee(0x116)][_0x263ee(0x11f)]=this[_0x263ee(0x110)]['mieDirectionalG'];const _0x367e7e=webgpu.MathUtils['degToRad'](0x5a-this['skyParam']['elevation']),_0x1f4d32=webgpu.MathUtils[_0x263ee(0x11e)](this[_0x263ee(0x110)]['azimuth']);this[_0x263ee(0x111)][_0x263ee(0x11d)](0x1,_0x367e7e,_0x1f4d32),this[_0x263ee(0x119)]['sunPosition'][_0x263ee(0x11f)]['copy'](this[_0x263ee(0x111)]),(_0xbfad69=(_0x364050=this['world'])===null||_0x364050===void 0?void 0:_0x364050[_0x263ee(0x120)])===null||_0xbfad69===void 0?void 0:_0xbfad69[_0x263ee(0x112)]();}[_0x1242f9(0x109)](){const _0x51dec1=_0x1242f9;this['obj']&&ThreeObjectLibrary[_0x51dec1(0x10e)](this['threeObject']);}}
108
+ const _0x287d25=_0x13ec;(function(_0x127bf8,_0x38d44e){const _0x3a9b93=_0x13ec,_0x14686e=_0x127bf8();while(!![]){try{const _0x8650ec=-parseInt(_0x3a9b93(0x16b))/0x1+parseInt(_0x3a9b93(0x170))/0x2*(-parseInt(_0x3a9b93(0x152))/0x3)+-parseInt(_0x3a9b93(0x168))/0x4+-parseInt(_0x3a9b93(0x160))/0x5+parseInt(_0x3a9b93(0x16e))/0x6+parseInt(_0x3a9b93(0x16f))/0x7+parseInt(_0x3a9b93(0x15a))/0x8;if(_0x8650ec===_0x38d44e)break;else _0x14686e['push'](_0x14686e['shift']());}catch(_0x261972){_0x14686e['push'](_0x14686e['shift']());}}}(_0x1e7f,0x1f258));function _0x1e7f(){const _0x36ec48=['170076UsWroQ','userData','azimuth','849732VIAvnO','1139152XaAfSr','4nVYmHm','copy','91551wtJTQx','elevation','degToRad','disposeMeshResource','markRenderStateDirty','destroyObject','world','skyParam','733008aYSzyJ','turbidity','threeObject','mieCoefficient','value','LYObject','158855dQwjFx','three\x20object\x20is\x20invalid','createDefaultObject','updateSky','obj','setFromSphericalCoords','mieDirectionalG','viewport','22108XybAPo','rayleigh','sunPosition'];_0x1e7f=function(){return _0x36ec48;};return _0x1e7f();}function _0x13ec(_0x37c76c,_0xb3e0e3){_0x37c76c=_0x37c76c-0x151;const _0x1e7f2e=_0x1e7f();let _0x13ec06=_0x1e7f2e[_0x37c76c];return _0x13ec06;}const DefaultSkyParam={'turbidity':0xa,'rayleigh':0x3,'mieCoefficient':0.005,'mieDirectionalG':0.7,'elevation':0x2,'azimuth':0x87};class SkyComponent extends SceneComponent{get[_0x287d25(0x15c)](){const _0x4f31d6=_0x287d25;if(!this[_0x4f31d6(0x164)])throw Error(_0x4f31d6(0x161));return this[_0x4f31d6(0x164)];}set['threeObject'](_0x598503){const _0x4c6507=_0x287d25;this[_0x4c6507(0x164)]=_0x598503,this[_0x4c6507(0x164)]&&(this[_0x4c6507(0x164)][_0x4c6507(0x16c)][_0x4c6507(0x15f)]=this);}constructor(_0x5601f6,_0x4b4f9e,_0x324e7c){const _0x3a4b01=_0x287d25;super(_0x5601f6,_0x324e7c),this[_0x3a4b01(0x159)]=DefaultSkyParam,this['sunPosition']=new webgpu.Vector3(),_0x4b4f9e&&(this['skyParam']=_0x4b4f9e),this[_0x3a4b01(0x163)]();}[_0x287d25(0x162)](){return new SkyMesh_js.SkyMesh();}['updateSky'](){const _0x297d0e=_0x287d25;var _0x439d5b,_0x4cc789;this[_0x297d0e(0x15c)][_0x297d0e(0x15b)][_0x297d0e(0x15e)]=this[_0x297d0e(0x159)][_0x297d0e(0x15b)],this[_0x297d0e(0x15c)][_0x297d0e(0x169)][_0x297d0e(0x15e)]=this[_0x297d0e(0x159)]['rayleigh'],this[_0x297d0e(0x15c)][_0x297d0e(0x15d)][_0x297d0e(0x15e)]=this['skyParam'][_0x297d0e(0x15d)],this[_0x297d0e(0x15c)][_0x297d0e(0x166)]['value']=this[_0x297d0e(0x159)]['mieDirectionalG'];const _0x5dea6a=webgpu.MathUtils[_0x297d0e(0x154)](0x5a-this['skyParam'][_0x297d0e(0x153)]),_0x593cfc=webgpu.MathUtils[_0x297d0e(0x154)](this[_0x297d0e(0x159)][_0x297d0e(0x16d)]);this['sunPosition'][_0x297d0e(0x165)](0x1,_0x5dea6a,_0x593cfc),this[_0x297d0e(0x15c)][_0x297d0e(0x16a)][_0x297d0e(0x15e)][_0x297d0e(0x151)](this[_0x297d0e(0x16a)]),(_0x4cc789=(_0x439d5b=this[_0x297d0e(0x158)])===null||_0x439d5b===void 0?void 0:_0x439d5b[_0x297d0e(0x167)])===null||_0x4cc789===void 0?void 0:_0x4cc789[_0x297d0e(0x156)]();}[_0x287d25(0x157)](){const _0xbf59c1=_0x287d25;this[_0xbf59c1(0x164)]&&ThreeObjectLibrary[_0xbf59c1(0x155)](this[_0xbf59c1(0x15c)]);}}
108
109
 
109
- function _0xafe1(_0x40d61a,_0x2d8c13){_0x40d61a=_0x40d61a-0x7d;var _0x156431=_0x1564();var _0xafe18=_0x156431[_0x40d61a];return _0xafe18;}var _0x1c1129=_0xafe1;(function(_0x111d94,_0x5d1d9b){var _0x303e1c=_0xafe1,_0x591f8c=_0x111d94();while(!![]){try{var _0x53bae6=-parseInt(_0x303e1c(0x7d))/0x1*(parseInt(_0x303e1c(0x89))/0x2)+parseInt(_0x303e1c(0x86))/0x3+parseInt(_0x303e1c(0x87))/0x4*(-parseInt(_0x303e1c(0x8a))/0x5)+parseInt(_0x303e1c(0x82))/0x6+-parseInt(_0x303e1c(0x7e))/0x7*(parseInt(_0x303e1c(0x7f))/0x8)+parseInt(_0x303e1c(0x88))/0x9+parseInt(_0x303e1c(0x84))/0xa*(-parseInt(_0x303e1c(0x8d))/0xb);if(_0x53bae6===_0x5d1d9b)break;else _0x591f8c['push'](_0x591f8c['shift']());}catch(_0x2d96be){_0x591f8c['push'](_0x591f8c['shift']());}}}(_0x1564,0x2196d));function _0x1564(){var _0xcd0e5f=['463470USGEpw','rootComponent','constructRootComponent','227293fVechS','(Root)','name','1pEsrJo','14unTnNT','211912KfPQzH','app','SkyActor','661692YJWMKD','_name','50YQxrGv','skyComponent','437931bLNcZU','4yxEsov','1616409tRtITo','98584IxHohi'];_0x1564=function(){return _0xcd0e5f;};return _0x1564();}class SkyActor extends Actor{constructor(_0x510e99,_0x25ea55){var _0x202f90=_0xafe1;super(_0x510e99,_0x25ea55),this[_0x202f90(0x83)]=_0x202f90(0x81),this['skyComponent']=null,this[_0x202f90(0x8f)]=_0x202f90(0x81),this[_0x202f90(0x85)]=this[_0x202f90(0x8b)],this[_0x202f90(0x8b)][_0x202f90(0x8f)]=this[_0x202f90(0x8b)][_0x202f90(0x8f)]+_0x202f90(0x8e),this['setScale'](0xafc8,0xafc8,0xafc8);}[_0x1c1129(0x8c)](){var _0x854f95=_0x1c1129;return new SkyComponent(this[_0x854f95(0x80)]);}}
110
+ var _0x3c931b=_0x1c14;(function(_0x483589,_0x3ca9db){var _0x516485=_0x1c14,_0x297cef=_0x483589();while(!![]){try{var _0x316f38=-parseInt(_0x516485(0x170))/0x1+-parseInt(_0x516485(0x177))/0x2+parseInt(_0x516485(0x16c))/0x3*(parseInt(_0x516485(0x175))/0x4)+parseInt(_0x516485(0x169))/0x5+-parseInt(_0x516485(0x16f))/0x6*(-parseInt(_0x516485(0x172))/0x7)+parseInt(_0x516485(0x168))/0x8*(parseInt(_0x516485(0x16e))/0x9)+parseInt(_0x516485(0x16d))/0xa*(parseInt(_0x516485(0x173))/0xb);if(_0x316f38===_0x3ca9db)break;else _0x297cef['push'](_0x297cef['shift']());}catch(_0x58dc13){_0x297cef['push'](_0x297cef['shift']());}}}(_0x31fe,0x19aa7));function _0x1c14(_0x572512,_0x4ee4e9){_0x572512=_0x572512-0x166;var _0x31fe11=_0x31fe();var _0x1c14e4=_0x31fe11[_0x572512];return _0x1c14e4;}function _0x31fe(){var _0x4202d1=['55bzMUyK','constructRootComponent','28Kutdep','name','337958CXDSrD','(Root)','SkyActor','3152gvXPWw','204450HgpqJJ','app','rootComponent','64386BXwIKP','73610XNYXGa','2421rWYQLr','6TsQRqA','142041AVGauu','skyComponent','575624eKnAQg'];_0x31fe=function(){return _0x4202d1;};return _0x31fe();}class SkyActor extends Actor{constructor(_0x4eb80d,_0x24a273){var _0xb71ab=_0x1c14;super(_0x4eb80d,_0x24a273),this['_name']=_0xb71ab(0x167),this[_0xb71ab(0x171)]=null,this[_0xb71ab(0x176)]='SkyActor',this[_0xb71ab(0x171)]=this[_0xb71ab(0x16b)],this[_0xb71ab(0x16b)]['name']=this[_0xb71ab(0x16b)]['name']+_0xb71ab(0x166),this['setScale'](0xafc8,0xafc8,0xafc8);}[_0x3c931b(0x174)](){var _0x3d02db=_0x3c931b;return new SkyComponent(this[_0x3d02db(0x16a)]);}}
110
111
 
111
- (function(_0x24829a,_0x227e1e){var _0x53e8a4=_0x535c,_0x37bd3c=_0x24829a();while(!![]){try{var _0x4b4a9a=-parseInt(_0x53e8a4(0x123))/0x1*(-parseInt(_0x53e8a4(0x128))/0x2)+parseInt(_0x53e8a4(0x126))/0x3*(-parseInt(_0x53e8a4(0x125))/0x4)+parseInt(_0x53e8a4(0x121))/0x5+parseInt(_0x53e8a4(0x120))/0x6*(-parseInt(_0x53e8a4(0x122))/0x7)+parseInt(_0x53e8a4(0x11f))/0x8+-parseInt(_0x53e8a4(0x124))/0x9+parseInt(_0x53e8a4(0x127))/0xa;if(_0x4b4a9a===_0x227e1e)break;else _0x37bd3c['push'](_0x37bd3c['shift']());}catch(_0x1cda42){_0x37bd3c['push'](_0x37bd3c['shift']());}}}(_0x41f2,0xdd1fd));function _0x535c(_0x170625,_0x214d52){_0x170625=_0x170625-0x11f;var _0x41f293=_0x41f2();var _0x535ca7=_0x41f293[_0x170625];return _0x535ca7;}function _0x41f2(){var _0xc23e23=['6228vWNWod','1864030siBTkf','14Bwvpfl','9892jsCPiW','12686877bmdhfw','1533148UueGLk','3tdARiT','5273830lbFfAL','12HSisWi','13929600zJnmHN'];_0x41f2=function(){return _0xc23e23;};return _0x41f2();}class PlaneComponent extends MeshComponent{constructor(_0x5b980c,_0x14dd2a,_0x2f95e6,_0x2966b2,_0x3cc206=0x1,_0x5e7fe9=0x1,_0x138653){super(_0x5b980c,new webgpu.PlaneGeometry(_0x14dd2a,_0x2f95e6,_0x3cc206,_0x5e7fe9),_0x2966b2,_0x138653);}}
112
+ (function(_0x19d4db,_0x448de8){var _0x12b463=_0x433c,_0x156be5=_0x19d4db();while(!![]){try{var _0x5b4b95=parseInt(_0x12b463(0x163))/0x1*(-parseInt(_0x12b463(0x16a))/0x2)+-parseInt(_0x12b463(0x166))/0x3+-parseInt(_0x12b463(0x161))/0x4+parseInt(_0x12b463(0x164))/0x5+-parseInt(_0x12b463(0x167))/0x6+-parseInt(_0x12b463(0x168))/0x7*(-parseInt(_0x12b463(0x162))/0x8)+parseInt(_0x12b463(0x169))/0x9*(parseInt(_0x12b463(0x165))/0xa);if(_0x5b4b95===_0x448de8)break;else _0x156be5['push'](_0x156be5['shift']());}catch(_0x1083d6){_0x156be5['push'](_0x156be5['shift']());}}}(_0xb26c,0xdf204));function _0xb26c(){var _0x2aec53=['6038032uSXkXP','707388GzTtMv','2228410qBbeMc','12570290WUAydQ','1186755gKYWPL','9562086ppsqjO','14CPzudv','18lNIEZl','4XwBdIA','605128mDacZK'];_0xb26c=function(){return _0x2aec53;};return _0xb26c();}function _0x433c(_0x13d00c,_0x4f5f70){_0x13d00c=_0x13d00c-0x161;var _0xb26c54=_0xb26c();var _0x433c01=_0xb26c54[_0x13d00c];return _0x433c01;}class PlaneComponent extends MeshComponent{constructor(_0x115a45,_0x15064b,_0x21c052,_0x2ab710,_0x501de4=0x1,_0x4dbfcf=0x1,_0x5c5fa9){super(_0x115a45,new webgpu.PlaneGeometry(_0x15064b,_0x21c052,_0x501de4,_0x4dbfcf),_0x2ab710,_0x5c5fa9);}}
112
113
 
113
- var _0x5cc3d8=_0x2fab;(function(_0x2d3a84,_0x31f77e){var _0x24370d=_0x2fab,_0x2b3d2b=_0x2d3a84();while(!![]){try{var _0x1334fd=parseInt(_0x24370d(0x10c))/0x1*(parseInt(_0x24370d(0x10e))/0x2)+-parseInt(_0x24370d(0x113))/0x3+parseInt(_0x24370d(0x10d))/0x4*(parseInt(_0x24370d(0x115))/0x5)+-parseInt(_0x24370d(0x111))/0x6*(-parseInt(_0x24370d(0x110))/0x7)+-parseInt(_0x24370d(0x112))/0x8+parseInt(_0x24370d(0x114))/0x9+parseInt(_0x24370d(0x10f))/0xa;if(_0x1334fd===_0x31f77e)break;else _0x2b3d2b['push'](_0x2b3d2b['shift']());}catch(_0x3a7164){_0x2b3d2b['push'](_0x2b3d2b['shift']());}}}(_0x446c,0xdf6d8));function _0x446c(){var _0x14bf1a=['2448738mJYrMA','1899252MKfDSh','10gbfTtR','uuid','constructRootComponent','destroy','10901TngGOL','2015464ZDYxLz','10dswVos','7234810lWKAPm','1154321IZGrJa','42rJeNRk','11357288TUokiI'];_0x446c=function(){return _0x14bf1a;};return _0x446c();}function _0x2fab(_0x3a0cee,_0x3f027e){_0x3a0cee=_0x3a0cee-0x10a;var _0x446c0e=_0x446c();var _0x2fabb2=_0x446c0e[_0x3a0cee];return _0x2fabb2;}class PlaneActor extends Actor{constructor(_0x550f39,_0x3c5070){super(_0x550f39,_0x3c5070);}[_0x5cc3d8(0x10a)](){var _0x3976c3=_0x5cc3d8;return new PlaneComponent(this['app'],0x1,0x1,new webgpu.MeshBasicMaterial(),0x1,0x1,this[_0x3976c3(0x116)]);}[_0x5cc3d8(0x10b)](){var _0x8fd7ff=_0x5cc3d8;super[_0x8fd7ff(0x10b)]();}}
114
+ function _0x7bda(){var _0x29647e=['app','27990Inmgth','289008wtFhfr','10762380vtVPZo','4049843MvXrAO','destroy','uuid','11TKOfOT','14718EILnCD','57TQKpFi','1075zkokAP','constructRootComponent','71884JHMcMX','29NhRLWp','5251656SffHIO'];_0x7bda=function(){return _0x29647e;};return _0x7bda();}var _0x1d20bf=_0x40a2;(function(_0x19473d,_0xa61936){var _0x20b1c7=_0x40a2,_0xbcd1ec=_0x19473d();while(!![]){try{var _0x25c939=-parseInt(_0x20b1c7(0x12c))/0x1*(parseInt(_0x20b1c7(0x12f))/0x2)+-parseInt(_0x20b1c7(0x128))/0x3*(-parseInt(_0x20b1c7(0x12b))/0x4)+parseInt(_0x20b1c7(0x129))/0x5*(parseInt(_0x20b1c7(0x136))/0x6)+-parseInt(_0x20b1c7(0x132))/0x7+-parseInt(_0x20b1c7(0x12d))/0x8+parseInt(_0x20b1c7(0x130))/0x9+-parseInt(_0x20b1c7(0x131))/0xa*(-parseInt(_0x20b1c7(0x135))/0xb);if(_0x25c939===_0xa61936)break;else _0xbcd1ec['push'](_0xbcd1ec['shift']());}catch(_0x5875a3){_0xbcd1ec['push'](_0xbcd1ec['shift']());}}}(_0x7bda,0x521cd));function _0x40a2(_0x39f9ad,_0xf58c8b){_0x39f9ad=_0x39f9ad-0x128;var _0x7bda53=_0x7bda();var _0x40a29a=_0x7bda53[_0x39f9ad];return _0x40a29a;}class PlaneActor extends Actor{constructor(_0x56d530,_0x57e96f){super(_0x56d530,_0x57e96f);}[_0x1d20bf(0x12a)](){var _0x14f554=_0x1d20bf;return new PlaneComponent(this[_0x14f554(0x12e)],0x1,0x1,new webgpu.MeshBasicMaterial(),0x1,0x1,this[_0x14f554(0x134)]);}[_0x1d20bf(0x133)](){var _0x423e5e=_0x1d20bf;super[_0x423e5e(0x133)]();}}
114
115
 
115
- (function(_0x54bc53,_0x188545){var _0x403319=_0x1fd9,_0x5c47bd=_0x54bc53();while(!![]){try{var _0x4aedc8=parseInt(_0x403319(0x101))/0x1*(parseInt(_0x403319(0x100))/0x2)+-parseInt(_0x403319(0x107))/0x3*(-parseInt(_0x403319(0x104))/0x4)+parseInt(_0x403319(0x102))/0x5*(parseInt(_0x403319(0x108))/0x6)+parseInt(_0x403319(0xff))/0x7+-parseInt(_0x403319(0x105))/0x8+-parseInt(_0x403319(0x103))/0x9+parseInt(_0x403319(0x106))/0xa;if(_0x4aedc8===_0x188545)break;else _0x5c47bd['push'](_0x5c47bd['shift']());}catch(_0x49e405){_0x5c47bd['push'](_0x5c47bd['shift']());}}}(_0x1b7f,0xa2dbd));function _0x1b7f(){var _0x534737=['6kDhPCJ','8305qAQmLg','11186271APipIU','88QKVHHY','2953528gUSsaz','1542860WixruX','33177sgDgzv','4398dtDzpD','245336QZFglW','209678bKpvxV'];_0x1b7f=function(){return _0x534737;};return _0x1b7f();}function _0x1fd9(_0x66e7de,_0x452f31){_0x66e7de=_0x66e7de-0xff;var _0x1b7f49=_0x1b7f();var _0x1fd959=_0x1b7f49[_0x66e7de];return _0x1fd959;}class SphereComponent extends MeshComponent{constructor(_0x348b0c,_0x4ce404,_0x541429=new webgpu.MeshBasicMaterial(),_0xf9b9ba=0x20,_0x4b533f=0x10,_0xf8fb33){super(_0x348b0c,new webgpu.SphereGeometry(_0x4ce404,_0xf9b9ba,_0x4b533f),_0x541429,_0xf8fb33);}}
116
+ function _0x8f15(){const _0x24fd3d=['clone','geometryPtr','materialPtr\x20is\x20null','CustomMeshComponent:\x20Vertices\x20are\x20in\x20clockwise\x20order,\x20reversing...','217KHcjKp','36554375KtnVvo','material','obj','_meshData','meshData','setIndex','release','geometry','push','error','2390605PpFGCz','max','position','normal','121432urqAUN','CustomMeshComponent:\x20threeObject\x20is\x20null','app','min','4RdkjhB','7002840KwXBni','warn','654484kuQhXS','addRef','threeObject','userData','name','colors','setAttribute','map','geometryPtr\x20is\x20null','_materialPtr','length','getCenter','assetManager','_geometryPtr','CustomMeshComponent:\x20Invalid\x20vertices\x20data','216rMwowY','removeFromParent','from','addGeometryAsset','6aHctCR','addMaterialAsset','createDefaultObject','normals','getBoundsBottomCenterPosition','markRenderStateDirty','world','computeVertexNormals','reverse','getValue','castShadow','getBoundsTopCenterPosition','CustomMeshComponent:\x20Earcut\x20triangulation\x20failed:','destroyObject','vertices','calculatePolygonArea','getBounds','materialPtr','constructGeometry','abs','714768eyeREb','uvs','196930hVMRWn','receiveShadow','log','[CustomMeshComponent]\x20Earcut\x20triangulation\x20success:','viewport','LYObject','CustomMeshComponent','indices'];_0x8f15=function(){return _0x24fd3d;};return _0x8f15();}const _0x2b554b=_0x5a8f;(function(_0x5cc680,_0x30d35c){const _0x45ecee=_0x5a8f,_0x479487=_0x5cc680();while(!![]){try{const _0x45076d=parseInt(_0x45ecee(0x144))/0x1+-parseInt(_0x45ecee(0x157))/0x2*(-parseInt(_0x45ecee(0x16b))/0x3)+-parseInt(_0x45ecee(0x141))/0x4*(-parseInt(_0x45ecee(0x139))/0x5)+parseInt(_0x45ecee(0x142))/0x6+-parseInt(_0x45ecee(0x12e))/0x7*(-parseInt(_0x45ecee(0x13d))/0x8)+-parseInt(_0x45ecee(0x153))/0x9*(-parseInt(_0x45ecee(0x16d))/0xa)+-parseInt(_0x45ecee(0x12f))/0xb;if(_0x45076d===_0x30d35c)break;else _0x479487['push'](_0x479487['shift']());}catch(_0x555b28){_0x479487['push'](_0x479487['shift']());}}}(_0x8f15,0x9aec9));function _0x5a8f(_0x33070c,_0x40ed94){_0x33070c=_0x33070c-0x12c;const _0x8f1519=_0x8f15();let _0x5a8fc7=_0x8f1519[_0x33070c];return _0x5a8fc7;}class CustomMeshComponent extends SceneComponent{get['threeObject'](){const _0x34738e=_0x5a8f;if(!this[_0x34738e(0x131)])throw new Error(_0x34738e(0x13e));return this[_0x34738e(0x131)];}set['threeObject'](_0x142ef3){const _0x3c2140=_0x5a8f;this[_0x3c2140(0x131)]=_0x142ef3,this[_0x3c2140(0x131)]&&(this[_0x3c2140(0x131)][_0x3c2140(0x147)][_0x3c2140(0x172)]=this);}get['geometry'](){const _0x1ec06a=_0x5a8f;if(!this['_geometryPtr'])throw new Error('geometryPtr\x20is\x20null');return this[_0x1ec06a(0x151)][_0x1ec06a(0x160)]();}set[_0x2b554b(0x136)](_0x491a66){const _0x4da2c8=_0x2b554b;let _0x168f30=this[_0x4da2c8(0x13f)][_0x4da2c8(0x150)][_0x4da2c8(0x156)](_0x491a66);this['geometryPtr']=_0x168f30;}get[_0x2b554b(0x176)](){const _0xa0d865=_0x2b554b;if(!this[_0xa0d865(0x151)])throw new Error(_0xa0d865(0x14c));return this[_0xa0d865(0x151)];}set[_0x2b554b(0x176)](_0x25de58){const _0x58b5e2=_0x2b554b;this[_0x58b5e2(0x151)]&&(this['_geometryPtr'][_0x58b5e2(0x135)](),this[_0x58b5e2(0x151)]=null);this[_0x58b5e2(0x151)]=_0x25de58;let _0x5a9bf5=_0x25de58[_0x58b5e2(0x160)]();this[_0x58b5e2(0x146)]&&_0x5a9bf5&&(this['threeObject'][_0x58b5e2(0x136)]=_0x5a9bf5);}get['material'](){const _0x2b8403=_0x2b554b;if(!this[_0x2b8403(0x14d)])throw new Error(_0x2b8403(0x12c));let _0x547c21=this[_0x2b8403(0x14d)][_0x2b8403(0x160)]();if(!_0x547c21)throw new Error('material\x20is\x20null');return _0x547c21;}get['materialPtr'](){const _0x5020ac=_0x2b554b;if(!this[_0x5020ac(0x14d)])throw new Error('materialPtr\x20is\x20null');return this[_0x5020ac(0x14d)];}set[_0x2b554b(0x130)](_0x3ac6ed){const _0x582d28=_0x2b554b;let _0x503c1c=this['app'][_0x582d28(0x150)][_0x582d28(0x158)](_0x3ac6ed);this['materialPtr']=_0x503c1c;}set[_0x2b554b(0x168)](_0x111524){const _0x3dac01=_0x2b554b;this[_0x3dac01(0x14d)]&&(this[_0x3dac01(0x14d)][_0x3dac01(0x135)](),this['_materialPtr']=null);this['_materialPtr']=_0x111524;let _0x4c5a62=_0x111524['getValue']();_0x111524[_0x3dac01(0x145)](),this['threeObject']&&_0x4c5a62&&(this[_0x3dac01(0x146)][_0x3dac01(0x130)]=_0x4c5a62);}constructor(_0x530424,_0x37d92e,_0x566a71,_0x3d546a){const _0x22c1fb=_0x2b554b;super(_0x530424,_0x3d546a),this[_0x22c1fb(0x132)]=_0x37d92e;let _0x31bb76=_0x530424[_0x22c1fb(0x150)][_0x22c1fb(0x158)](_0x566a71);this['_materialPtr']=_0x31bb76,_0x31bb76[_0x22c1fb(0x145)]();const _0x1df483=this[_0x22c1fb(0x169)](_0x37d92e);this['_geometryPtr']=_0x530424[_0x22c1fb(0x150)][_0x22c1fb(0x156)](_0x1df483),this[_0x22c1fb(0x146)][_0x22c1fb(0x130)]=_0x566a71,this[_0x22c1fb(0x146)][_0x22c1fb(0x136)]=_0x1df483,this[_0x22c1fb(0x148)]=_0x22c1fb(0x173);}[_0x2b554b(0x166)](_0x275eb3){const _0x1be012=_0x2b554b;let _0x415beb=0x0;const _0x5befed=_0x275eb3[_0x1be012(0x14e)]/0x2;for(let _0x295bac=0x0;_0x295bac<_0x5befed;_0x295bac++){const _0x1d045e=(_0x295bac+0x1)%_0x5befed,_0x51d8d3=_0x275eb3[_0x295bac*0x2],_0x1d56cd=_0x275eb3[_0x295bac*0x2+0x1],_0x105d8b=_0x275eb3[_0x1d045e*0x2],_0x349f38=_0x275eb3[_0x1d045e*0x2+0x1];_0x415beb+=_0x51d8d3*_0x349f38-_0x105d8b*_0x1d56cd;}return _0x415beb/0x2;}['constructGeometry'](_0x281577){const _0x3015a2=_0x2b554b,_0x34df18=new webgpu.BufferGeometry();if(!_0x281577[_0x3015a2(0x165)]||_0x281577[_0x3015a2(0x165)][_0x3015a2(0x14e)]===0x0)return console[_0x3015a2(0x138)](_0x3015a2(0x152)),_0x34df18;const _0x547c41=new Float32Array(_0x281577[_0x3015a2(0x165)][_0x3015a2(0x14e)]*0x3);for(let _0x4a0f08=0x0;_0x4a0f08<_0x281577[_0x3015a2(0x165)][_0x3015a2(0x14e)];_0x4a0f08++){_0x547c41[_0x4a0f08*0x3]=_0x281577[_0x3015a2(0x165)][_0x4a0f08]['x'],_0x547c41[_0x4a0f08*0x3+0x1]=_0x281577['vertices'][_0x4a0f08]['y'],_0x547c41[_0x4a0f08*0x3+0x2]=_0x281577[_0x3015a2(0x165)][_0x4a0f08]['z'];}_0x34df18[_0x3015a2(0x14a)](_0x3015a2(0x13b),new webgpu.Float32BufferAttribute(_0x547c41,0x3));if(_0x281577[_0x3015a2(0x174)]&&_0x281577['indices'][_0x3015a2(0x14e)]>0x0)_0x34df18['setIndex'](_0x281577[_0x3015a2(0x174)]);else {const _0x2904fc=[];let _0x448532=Infinity,_0x4168fc=-Infinity,_0x2fce6a=Infinity,_0xc1aabb=-Infinity,_0x2075e4=Infinity,_0x432f8b=-Infinity;for(let _0x321acb=0x0;_0x321acb<_0x281577[_0x3015a2(0x165)][_0x3015a2(0x14e)];_0x321acb++){const _0x54dde8=_0x281577[_0x3015a2(0x165)][_0x321acb];_0x2fce6a=Math['min'](_0x2fce6a,_0x54dde8['x']),_0xc1aabb=Math['max'](_0xc1aabb,_0x54dde8['x']),_0x448532=Math[_0x3015a2(0x140)](_0x448532,_0x54dde8['y']),_0x4168fc=Math[_0x3015a2(0x13a)](_0x4168fc,_0x54dde8['y']),_0x2075e4=Math[_0x3015a2(0x140)](_0x2075e4,_0x54dde8['z']),_0x432f8b=Math[_0x3015a2(0x13a)](_0x432f8b,_0x54dde8['z']);}const _0x268255=_0xc1aabb-_0x2fce6a,_0x46c602=_0x4168fc-_0x448532,_0x235b5d=_0x432f8b-_0x2075e4;let _0x5c961b='XY';if(_0x46c602<=_0x268255&&_0x46c602<=_0x235b5d){_0x5c961b='XZ';for(let _0x414da6=0x0;_0x414da6<_0x281577['vertices']['length'];_0x414da6++){_0x2904fc[_0x3015a2(0x137)](_0x281577[_0x3015a2(0x165)][_0x414da6]['x']),_0x2904fc[_0x3015a2(0x137)](_0x281577[_0x3015a2(0x165)][_0x414da6]['z']);}}else {if(_0x268255<=_0x46c602&&_0x268255<=_0x235b5d){_0x5c961b='YZ';for(let _0x128cf8=0x0;_0x128cf8<_0x281577[_0x3015a2(0x165)][_0x3015a2(0x14e)];_0x128cf8++){_0x2904fc[_0x3015a2(0x137)](_0x281577[_0x3015a2(0x165)][_0x128cf8]['y']),_0x2904fc[_0x3015a2(0x137)](_0x281577[_0x3015a2(0x165)][_0x128cf8]['z']);}}else {_0x5c961b='XY';for(let _0x2da89b=0x0;_0x2da89b<_0x281577['vertices']['length'];_0x2da89b++){_0x2904fc[_0x3015a2(0x137)](_0x281577[_0x3015a2(0x165)][_0x2da89b]['x']),_0x2904fc[_0x3015a2(0x137)](_0x281577[_0x3015a2(0x165)][_0x2da89b]['y']);}}}const _0xa6af56=this['calculatePolygonArea'](_0x2904fc),_0x546e64=_0xa6af56<0x0;if(_0x546e64){console[_0x3015a2(0x143)](_0x3015a2(0x12d)),_0x2904fc[_0x3015a2(0x15f)]();const _0x19be7a=[];for(let _0x168deb=_0x2904fc[_0x3015a2(0x14e)]-0x2;_0x168deb>=0x0;_0x168deb-=0x2){_0x19be7a[_0x3015a2(0x137)](_0x2904fc[_0x168deb],_0x2904fc[_0x168deb+0x1]);}_0x2904fc['length']=0x0,_0x2904fc['push'](..._0x19be7a);}try{const _0x24bdd3=_0x2d3ee0(_0x2904fc,undefined,0x2);if(_0x24bdd3&&_0x24bdd3['length']>0x0){if(_0x546e64)for(let _0x3964dc=0x0;_0x3964dc<_0x24bdd3[_0x3015a2(0x14e)];_0x3964dc+=0x3){const _0x5bab11=_0x24bdd3[_0x3964dc];_0x24bdd3[_0x3964dc]=_0x24bdd3[_0x3964dc+0x2],_0x24bdd3[_0x3964dc+0x2]=_0x5bab11;}_0x34df18[_0x3015a2(0x134)](_0x24bdd3),console[_0x3015a2(0x16f)](_0x3015a2(0x170),{'planeType':_0x5c961b,'vertexCount':_0x281577[_0x3015a2(0x165)][_0x3015a2(0x14e)],'triangleCount':_0x24bdd3[_0x3015a2(0x14e)]/0x3,'area':Math[_0x3015a2(0x16a)](_0xa6af56),'wasClockwise':_0x546e64,'indices':Array[_0x3015a2(0x155)](_0x24bdd3)});}else console[_0x3015a2(0x143)]('CustomMeshComponent:\x20Earcut\x20triangulation\x20returned\x20empty\x20result');}catch(_0x2f0ab0){console[_0x3015a2(0x138)](_0x3015a2(0x163),_0x2f0ab0);}}if(_0x281577['normals']&&_0x281577[_0x3015a2(0x15a)][_0x3015a2(0x14e)]===_0x281577[_0x3015a2(0x165)]['length']){const _0x22ec55=new Float32Array(_0x281577['normals'][_0x3015a2(0x14e)]*0x3);for(let _0x273ad0=0x0;_0x273ad0<_0x281577['normals']['length'];_0x273ad0++){_0x22ec55[_0x273ad0*0x3]=_0x281577['normals'][_0x273ad0]['x'],_0x22ec55[_0x273ad0*0x3+0x1]=_0x281577[_0x3015a2(0x15a)][_0x273ad0]['y'],_0x22ec55[_0x273ad0*0x3+0x2]=_0x281577[_0x3015a2(0x15a)][_0x273ad0]['z'];}_0x34df18[_0x3015a2(0x14a)](_0x3015a2(0x13c),new webgpu.Float32BufferAttribute(_0x22ec55,0x3));}else _0x34df18[_0x3015a2(0x15e)]();if(_0x281577[_0x3015a2(0x16c)]&&_0x281577[_0x3015a2(0x16c)][_0x3015a2(0x14e)]>0x0){const _0x29eb76=new Float32Array(_0x281577['uvs'][_0x3015a2(0x14e)]*0x2);for(let _0x512c9e=0x0;_0x512c9e<_0x281577[_0x3015a2(0x16c)][_0x3015a2(0x14e)];_0x512c9e++){_0x29eb76[_0x512c9e*0x2]=_0x281577[_0x3015a2(0x16c)][_0x512c9e]['x'],_0x29eb76[_0x512c9e*0x2+0x1]=_0x281577[_0x3015a2(0x16c)][_0x512c9e]['y'];}_0x34df18['setAttribute']('uv',new webgpu.Float32BufferAttribute(_0x29eb76,0x2));}if(_0x281577['colors']&&_0x281577[_0x3015a2(0x149)]['length']===_0x281577[_0x3015a2(0x165)]['length']){const _0x2aad13=new Float32Array(_0x281577[_0x3015a2(0x149)]['length']*0x3);for(let _0x219a1c=0x0;_0x219a1c<_0x281577['colors']['length'];_0x219a1c++){_0x2aad13[_0x219a1c*0x3]=_0x281577[_0x3015a2(0x149)][_0x219a1c]['r'],_0x2aad13[_0x219a1c*0x3+0x1]=_0x281577[_0x3015a2(0x149)][_0x219a1c]['g'],_0x2aad13[_0x219a1c*0x3+0x2]=_0x281577[_0x3015a2(0x149)][_0x219a1c]['b'];}_0x34df18[_0x3015a2(0x14a)]('color',new webgpu.Float32BufferAttribute(_0x2aad13,0x3));}return _0x34df18;}set[_0x2b554b(0x133)](_0x58ab8a){const _0x2b620b=_0x2b554b;var _0xf096e6,_0x48ce69,_0x30b4d2;this['_geometryPtr']&&this[_0x2b620b(0x151)][_0x2b620b(0x135)]();const _0x1b73d8=this['constructGeometry'](_0x58ab8a);this[_0x2b620b(0x151)]=this[_0x2b620b(0x13f)]['assetManager'][_0x2b620b(0x156)](_0x1b73d8),this[_0x2b620b(0x146)]['geometry']=_0x1b73d8,this['_meshData']={'vertices':_0x58ab8a['vertices'][_0x2b620b(0x14b)](_0x45cd0b=>_0x45cd0b[_0x2b620b(0x175)]()),'indices':_0x58ab8a['indices']?[..._0x58ab8a['indices']]:undefined,'normals':(_0xf096e6=_0x58ab8a[_0x2b620b(0x15a)])===null||_0xf096e6===void 0?void 0:_0xf096e6[_0x2b620b(0x14b)](_0x6d3fab=>_0x6d3fab[_0x2b620b(0x175)]()),'uvs':(_0x48ce69=_0x58ab8a[_0x2b620b(0x16c)])===null||_0x48ce69===void 0?void 0:_0x48ce69[_0x2b620b(0x14b)](_0x4f8808=>_0x4f8808['clone']()),'colors':(_0x30b4d2=_0x58ab8a['colors'])===null||_0x30b4d2===void 0?void 0:_0x30b4d2['map'](_0x251f65=>_0x251f65[_0x2b620b(0x175)]())},this['world']&&this[_0x2b620b(0x15d)][_0x2b620b(0x171)][_0x2b620b(0x15c)]();}get[_0x2b554b(0x133)](){const _0x1dfa21=_0x2b554b;return this[_0x1dfa21(0x132)];}[_0x2b554b(0x159)](){return new webgpu.Mesh();}set[_0x2b554b(0x161)](_0x41435f){const _0x3dafc7=_0x2b554b;if(this[_0x3dafc7(0x146)])this[_0x3dafc7(0x146)][_0x3dafc7(0x161)]=_0x41435f;}get[_0x2b554b(0x161)](){const _0x1c154a=_0x2b554b;return this[_0x1c154a(0x146)]?this[_0x1c154a(0x146)][_0x1c154a(0x161)]:![];}set[_0x2b554b(0x16e)](_0x14aa00){const _0x5b4edf=_0x2b554b;if(!this[_0x5b4edf(0x146)])return;this[_0x5b4edf(0x146)][_0x5b4edf(0x16e)]=_0x14aa00;}get['receiveShadow'](){const _0x57a156=_0x2b554b;return this[_0x57a156(0x146)]?this[_0x57a156(0x146)][_0x57a156(0x16e)]:![];}['getBoundsCenterPosition'](){const _0x270504=_0x2b554b;let _0x254480=new webgpu.Vector3();return this[_0x270504(0x167)]()[_0x270504(0x14f)](_0x254480),_0x254480;}[_0x2b554b(0x162)](){const _0xb959a7=_0x2b554b;let _0xc72a61=new webgpu.Vector3(),_0x3bed7f=this[_0xb959a7(0x167)]();return _0x3bed7f[_0xb959a7(0x14f)](_0xc72a61),_0xc72a61['y']=_0x3bed7f[_0xb959a7(0x13a)]['y'],_0xc72a61;}[_0x2b554b(0x15b)](){const _0x27689d=_0x2b554b;let _0x44deb6=new webgpu.Vector3(),_0x1ff7d1=this[_0x27689d(0x167)]();return _0x1ff7d1[_0x27689d(0x14f)](_0x44deb6),_0x44deb6['y']=_0x1ff7d1[_0x27689d(0x140)]['y'],_0x44deb6;}[_0x2b554b(0x164)](){const _0x5b4ffa=_0x2b554b;var _0x124fa7,_0x52d40a;this['threeObject']&&this[_0x5b4ffa(0x146)][_0x5b4ffa(0x154)](),(_0x124fa7=this[_0x5b4ffa(0x151)])===null||_0x124fa7===void 0?void 0:_0x124fa7[_0x5b4ffa(0x135)](),(_0x52d40a=this[_0x5b4ffa(0x14d)])===null||_0x52d40a===void 0?void 0:_0x52d40a[_0x5b4ffa(0x135)](),super['destroyObject']();}}
116
117
 
117
- var _0x342726=_0x42d3;function _0x2948(){var _0x1fcf28=['destroy','obj','copy','LYObject','1412908XcWxIZ','setVisible','isHoverEnabled','5808MODgYW','remove','innerHTML','isClickEnabled','2hsFXct','454263pyorvd','element','2682648WtFmLk','center','768ZJHnFa','2442210UTzrPM','threeObject','204366PqLsyZ','70sEbkTU','109472cKFrlJ','userData'];_0x2948=function(){return _0x1fcf28;};return _0x2948();}(function(_0x1ca969,_0x58708d){var _0x23e34f=_0x42d3,_0x4d822f=_0x1ca969();while(!![]){try{var _0x2ad716=parseInt(_0x23e34f(0x1bf))/0x1*(-parseInt(_0x23e34f(0x1be))/0x2)+-parseInt(_0x23e34f(0x1ba))/0x3*(-parseInt(_0x23e34f(0x1c3))/0x4)+parseInt(_0x23e34f(0x1b0))/0x5*(parseInt(_0x23e34f(0x1af))/0x6)+-parseInt(_0x23e34f(0x1b7))/0x7+parseInt(_0x23e34f(0x1b1))/0x8+parseInt(_0x23e34f(0x1c1))/0x9+-parseInt(_0x23e34f(0x1ad))/0xa;if(_0x2ad716===_0x58708d)break;else _0x4d822f['push'](_0x4d822f['shift']());}catch(_0x31a8c0){_0x4d822f['push'](_0x4d822f['shift']());}}}(_0x2948,0x3f79a));function _0x42d3(_0xbd9694,_0x21d85b){_0xbd9694=_0xbd9694-0x1ad;var _0x2948f1=_0x2948();var _0x42d345=_0x2948f1[_0xbd9694];return _0x42d345;}class LabelComponent extends SceneComponent{get[_0x342726(0x1ae)](){var _0x32c792=_0x342726;return this[_0x32c792(0x1b4)];}set[_0x342726(0x1ae)](_0x2b34e2){var _0x28f3c9=_0x342726;this[_0x28f3c9(0x1b4)]=_0x2b34e2,this[_0x28f3c9(0x1b4)]&&(this['obj'][_0x28f3c9(0x1b2)][_0x28f3c9(0x1b6)]=this);}constructor(_0x54d103,_0x4d4d5f,_0x488b82=new webgpu.Vector2(0.5,0x1),_0x20ffdc){var _0x7f9e5f=_0x342726;super(_0x54d103,_0x20ffdc),this[_0x7f9e5f(0x1b4)]=new CSS2DRenderer_js.CSS2DObject(_0x4d4d5f),this[_0x7f9e5f(0x1b4)][_0x7f9e5f(0x1c2)][_0x7f9e5f(0x1b5)](_0x488b82);}set[_0x342726(0x1b9)](_0x1927bc){return;}set[_0x342726(0x1bd)](_0x2617d3){return;}[_0x342726(0x1b8)](_0x3d719b){var _0x24b5b8=_0x342726;super[_0x24b5b8(0x1b8)](_0x3d719b);}['destroy'](){var _0x3d5d50=_0x342726;this[_0x3d5d50(0x1ae)]['element']&&this[_0x3d5d50(0x1ae)]['element']['parentNode']&&(this[_0x3d5d50(0x1ae)]['element'][_0x3d5d50(0x1bc)]='',this[_0x3d5d50(0x1ae)][_0x3d5d50(0x1c0)][_0x3d5d50(0x1bb)]()),super[_0x3d5d50(0x1b3)]();}}
118
+ function _0x1f2e(_0x5bfa44,_0x2058b5){_0x5bfa44=_0x5bfa44-0x11a;var _0x91679f=_0x9167();var _0x1f2e81=_0x91679f[_0x5bfa44];return _0x1f2e81;}(function(_0x19d82e,_0x161dd2){var _0x43637c=_0x1f2e,_0x3e6b85=_0x19d82e();while(!![]){try{var _0x3bcb1c=parseInt(_0x43637c(0x11b))/0x1*(-parseInt(_0x43637c(0x122))/0x2)+-parseInt(_0x43637c(0x120))/0x3*(-parseInt(_0x43637c(0x121))/0x4)+-parseInt(_0x43637c(0x124))/0x5*(-parseInt(_0x43637c(0x11e))/0x6)+-parseInt(_0x43637c(0x11d))/0x7+parseInt(_0x43637c(0x123))/0x8+-parseInt(_0x43637c(0x11f))/0x9+-parseInt(_0x43637c(0x11c))/0xa*(-parseInt(_0x43637c(0x11a))/0xb);if(_0x3bcb1c===_0x161dd2)break;else _0x3e6b85['push'](_0x3e6b85['shift']());}catch(_0x225d84){_0x3e6b85['push'](_0x3e6b85['shift']());}}}(_0x9167,0xf1e82));class SphereComponent extends MeshComponent{constructor(_0x1f8d06,_0x55a624,_0x882356=new webgpu.MeshBasicMaterial(),_0x4395b0=0x20,_0x1e3b75=0x10,_0x52b1ee){super(_0x1f8d06,new webgpu.SphereGeometry(_0x55a624,_0x4395b0,_0x1e3b75),_0x882356,_0x52b1ee);}}function _0x9167(){var _0x31a391=['5280904DodnSn','2533965ztBBEC','358963tfTyje','249542fiTYvR','530ytgJqn','10314591FpthOb','6nqxFmN','7096473iqZDaS','9WUaBWR','1140652bIrWti','4ttdaNI'];_0x9167=function(){return _0x31a391;};return _0x9167();}
118
119
 
119
- function _0x5f5d(){const _0x2013f2=['135rthbhO','543060MYZXIP','19161760gHOIRw','3836796MhVJMI','592504jxOjJK','3176674XpdvUn','1bRRPjI','ScreenSpaceReflection','27NPMBqV','3370335zShBoh','4394733XTbWGr'];_0x5f5d=function(){return _0x2013f2;};return _0x5f5d();}function _0xa093(_0x55cea5,_0x51d08b){_0x55cea5=_0x55cea5-0x80;const _0x5f5d54=_0x5f5d();let _0xa09365=_0x5f5d54[_0x55cea5];return _0xa09365;}const _0x2f7d92=_0xa093;(function(_0x3b1d25,_0xd9e3e1){const _0x477c4c=_0xa093,_0x5cac28=_0x3b1d25();while(!![]){try{const _0x49f178=parseInt(_0x477c4c(0x86))/0x1*(-parseInt(_0x477c4c(0x85))/0x2)+parseInt(_0x477c4c(0x88))/0x3*(-parseInt(_0x477c4c(0x81))/0x4)+parseInt(_0x477c4c(0x89))/0x5+-parseInt(_0x477c4c(0x83))/0x6+parseInt(_0x477c4c(0x8a))/0x7+parseInt(_0x477c4c(0x84))/0x8*(parseInt(_0x477c4c(0x80))/0x9)+parseInt(_0x477c4c(0x82))/0xa;if(_0x49f178===_0xd9e3e1)break;else _0x5cac28['push'](_0x5cac28['shift']());}catch(_0x38b81c){_0x5cac28['push'](_0x5cac28['shift']());}}}(_0x5f5d,0xd6ad7));const DefaultSSRParam={'type':exports.PostProcessStepType[_0x2f7d92(0x87)],'maxDistance':0.5,'opacity':0x1,'thickness':0.015};
120
+ var _0x5b07d6=_0x1cee;(function(_0x508184,_0x32c064){var _0x2ce62d=_0x1cee,_0x300c1f=_0x508184();while(!![]){try{var _0x5b116c=-parseInt(_0x2ce62d(0x98))/0x1+parseInt(_0x2ce62d(0xa1))/0x2+-parseInt(_0x2ce62d(0xa6))/0x3+-parseInt(_0x2ce62d(0xa0))/0x4*(parseInt(_0x2ce62d(0x9a))/0x5)+-parseInt(_0x2ce62d(0x9d))/0x6*(parseInt(_0x2ce62d(0xa2))/0x7)+-parseInt(_0x2ce62d(0x95))/0x8+parseInt(_0x2ce62d(0x94))/0x9;if(_0x5b116c===_0x32c064)break;else _0x300c1f['push'](_0x300c1f['shift']());}catch(_0x3e586d){_0x300c1f['push'](_0x300c1f['shift']());}}}(_0x5370,0x91c9c));function _0x1cee(_0x641633,_0x37515c){_0x641633=_0x641633-0x94;var _0x5370cf=_0x5370();var _0x1cee2d=_0x5370cf[_0x641633];return _0x1cee2d;}function _0x5370(){var _0x3d8820=['194177jSndjZ','parentNode','9060hKJXxZ','threeObject','innerHTML','3484686csBQlP','element','setVisible','2224VfDFDw','2352248tGNKhR','14ZVfdvc','isClickEnabled','copy','center','899730Udvbbw','obj','20964735nGCYRh','1962160lpMCZf','LYObject','destroy'];_0x5370=function(){return _0x3d8820;};return _0x5370();}class LabelComponent extends SceneComponent{get['threeObject'](){var _0xdb44f4=_0x1cee;return this[_0xdb44f4(0xa7)];}set['threeObject'](_0x105d45){var _0x173335=_0x1cee;this[_0x173335(0xa7)]=_0x105d45,this[_0x173335(0xa7)]&&(this['obj']['userData'][_0x173335(0x96)]=this);}constructor(_0x368119,_0x527e82,_0x2cfa16=new webgpu.Vector2(0.5,0x1),_0xdf27d4){var _0x5cc6ce=_0x1cee;super(_0x368119,_0xdf27d4),this[_0x5cc6ce(0xa7)]=new CSS2DRenderer_js.CSS2DObject(_0x527e82),this[_0x5cc6ce(0xa7)][_0x5cc6ce(0xa5)][_0x5cc6ce(0xa4)](_0x2cfa16);}set['isHoverEnabled'](_0x204c11){return;}set[_0x5b07d6(0xa3)](_0x4434bc){return;}[_0x5b07d6(0x9f)](_0x50a288){super['setVisible'](_0x50a288);}[_0x5b07d6(0x97)](){var _0x1227e1=_0x5b07d6;this[_0x1227e1(0x9b)]['element']&&this[_0x1227e1(0x9b)][_0x1227e1(0x9e)][_0x1227e1(0x99)]&&(this[_0x1227e1(0x9b)][_0x1227e1(0x9e)][_0x1227e1(0x9c)]='',this[_0x1227e1(0x9b)]['element']['remove']()),super['destroy']();}}
120
121
 
121
- function _0x483d(_0x24cce3,_0x4dd948){_0x24cce3=_0x24cce3-0x1b7;const _0x106854=_0x1068();let _0x483d4e=_0x106854[_0x24cce3];return _0x483d4e;}const _0x4957fc=_0x483d;function _0x1068(){const _0xd05f49=['2189187CbVXJX','Antialiasing','1292975GebOQp','44104QiumoO','3468632CXSzJs','545124iKXDKj','15sCmlVU','13358ExlVpl','fxaa','2202468YIgUjq'];_0x1068=function(){return _0xd05f49;};return _0x1068();}(function(_0x35e71c,_0x4423ca){const _0x429f25=_0x483d,_0x4bb732=_0x35e71c();while(!![]){try{const _0x290105=parseInt(_0x429f25(0x1bf))/0x1+parseInt(_0x429f25(0x1b9))/0x2*(-parseInt(_0x429f25(0x1b8))/0x3)+parseInt(_0x429f25(0x1b7))/0x4+-parseInt(_0x429f25(0x1be))/0x5+-parseInt(_0x429f25(0x1bb))/0x6+parseInt(_0x429f25(0x1bc))/0x7+parseInt(_0x429f25(0x1c0))/0x8;if(_0x290105===_0x4423ca)break;else _0x4bb732['push'](_0x4bb732['shift']());}catch(_0x5a5134){_0x4bb732['push'](_0x4bb732['shift']());}}}(_0x1068,0x41575));const DefaultAAParams={'type':exports.PostProcessStepType[_0x4957fc(0x1bd)],'method':_0x4957fc(0x1ba)};
122
+ const _0x5747f1=_0x3ab7;(function(_0xf012b6,_0x2ca6cd){const _0x15b0d9=_0x3ab7,_0xa4f777=_0xf012b6();while(!![]){try{const _0x18f3f5=-parseInt(_0x15b0d9(0xf1))/0x1*(parseInt(_0x15b0d9(0xf7))/0x2)+parseInt(_0x15b0d9(0xf6))/0x3+parseInt(_0x15b0d9(0xee))/0x4+parseInt(_0x15b0d9(0xef))/0x5*(-parseInt(_0x15b0d9(0xf4))/0x6)+parseInt(_0x15b0d9(0xf8))/0x7*(parseInt(_0x15b0d9(0xed))/0x8)+parseInt(_0x15b0d9(0xf2))/0x9*(parseInt(_0x15b0d9(0xec))/0xa)+-parseInt(_0x15b0d9(0xf5))/0xb*(-parseInt(_0x15b0d9(0xf0))/0xc);if(_0x18f3f5===_0x2ca6cd)break;else _0xa4f777['push'](_0xa4f777['shift']());}catch(_0x26c49f){_0xa4f777['push'](_0xa4f777['shift']());}}}(_0xe771,0x97da5));function _0x3ab7(_0x22b884,_0x3544bb){_0x22b884=_0x22b884-0xec;const _0xe77111=_0xe771();let _0x3ab74a=_0xe77111[_0x22b884];return _0x3ab74a;}function _0xe771(){const _0xb66a8e=['25jiwNDI','120YwDMeG','61834BmIInJ','9XqcvVY','ScreenSpaceReflection','1379874xbycaN','1458380zYQPhb','501252dSKYZa','40DQnnlj','2163931vpLiqw','7438450DDyvHn','8GLopuT','1850808jBsjFl'];_0xe771=function(){return _0xb66a8e;};return _0xe771();}const DefaultSSRParam={'type':exports.PostProcessStepType[_0x5747f1(0xf3)],'maxDistance':0.5,'opacity':0x1,'thickness':0.015};
122
123
 
123
- (function(_0x15ef26,_0x3e671a){const _0x4827c6=_0x3a15,_0x1e806d=_0x15ef26();while(!![]){try{const _0x409193=-parseInt(_0x4827c6(0xb0))/0x1*(parseInt(_0x4827c6(0xaf))/0x2)+parseInt(_0x4827c6(0xaa))/0x3+-parseInt(_0x4827c6(0xa5))/0x4+parseInt(_0x4827c6(0xac))/0x5+-parseInt(_0x4827c6(0xa9))/0x6*(-parseInt(_0x4827c6(0xa8))/0x7)+parseInt(_0x4827c6(0xab))/0x8*(parseInt(_0x4827c6(0xa4))/0x9)+-parseInt(_0x4827c6(0xa1))/0xa*(parseInt(_0x4827c6(0xa3))/0xb);if(_0x409193===_0x3e671a)break;else _0x1e806d['push'](_0x1e806d['shift']());}catch(_0x1c6cbf){_0x1e806d['push'](_0x1e806d['shift']());}}}(_0x5187,0x5e636));function _0x5187(){const _0x48367b=['20FyIztv','clone','1573583CTGNdN','31869stBZWt','2651844fmuOkP','quaternion','_control','7vqfUAp','4413306gaOgzO','1322928IeWjcN','376XIigEy','390415JmlCdW','controller','camera','18968uUbtdE','9DwWrEs'];_0x5187=function(){return _0x48367b;};return _0x5187();}function _0x3a15(_0x4d93cd,_0x1d0dba){_0x4d93cd=_0x4d93cd-0xa1;const _0x5187a9=_0x5187();let _0x3a156d=_0x5187a9[_0x4d93cd];return _0x3a156d;}class FirstPerson extends Pawn{constructor(_0x1b3508){const _0x3d35a2=_0x3a15;super(_0x1b3508),this[_0x3d35a2(0xa7)]=new PointerLockControls_js.PointerLockControls(_0x1b3508[_0x3d35a2(0xae)],_0x1b3508['viewPort']['canvas']);}['getFocuingData'](){const _0x4a98d3=_0x3a15;var _0x475f18;if(!this[_0x4a98d3(0xa7)]||!((_0x475f18=this[_0x4a98d3(0xad)])===null||_0x475f18===void 0?void 0:_0x475f18['camera']))return null;const _0x42e054=this[_0x4a98d3(0xad)][_0x4a98d3(0xae)]['position'][_0x4a98d3(0xa2)](),_0x45804e=this[_0x4a98d3(0xad)][_0x4a98d3(0xae)][_0x4a98d3(0xa6)][_0x4a98d3(0xa2)](),_0x47347b=0x0;return {'position':_0x42e054,'quaternion':_0x45804e,'distance':_0x47347b};}}
124
+ const _0x32eca2=_0x43d7;(function(_0x210baa,_0x448482){const _0x42f98b=_0x43d7,_0x31a529=_0x210baa();while(!![]){try{const _0x20a7a1=parseInt(_0x42f98b(0x1f8))/0x1+-parseInt(_0x42f98b(0x1f7))/0x2+parseInt(_0x42f98b(0x1f1))/0x3*(parseInt(_0x42f98b(0x1fa))/0x4)+-parseInt(_0x42f98b(0x1f2))/0x5+parseInt(_0x42f98b(0x1f9))/0x6+parseInt(_0x42f98b(0x1f5))/0x7*(parseInt(_0x42f98b(0x1f6))/0x8)+-parseInt(_0x42f98b(0x1f4))/0x9*(parseInt(_0x42f98b(0x1f0))/0xa);if(_0x20a7a1===_0x448482)break;else _0x31a529['push'](_0x31a529['shift']());}catch(_0x5b3eba){_0x31a529['push'](_0x31a529['shift']());}}}(_0x42b1,0x7ebcc));function _0x43d7(_0xadcbcb,_0x2374cc){_0xadcbcb=_0xadcbcb-0x1f0;const _0x42b1bc=_0x42b1();let _0x43d79a=_0x42b1bc[_0xadcbcb];return _0x43d79a;}function _0x42b1(){const _0x2a4a51=['2059385WIIhgL','fxaa','9OAyjqg','37618BvbHPl','608BDuKzW','583404GrZyxu','1010372atdSQn','3213834zSrtZH','2956qQtSFF','Antialiasing','12386940EMgnAI','2058gHBFQx'];_0x42b1=function(){return _0x2a4a51;};return _0x42b1();}const DefaultAAParams={'type':exports.PostProcessStepType[_0x32eca2(0x1fb)],'method':_0x32eca2(0x1f3)};
124
125
 
125
- const _0x2839df=_0x100c;function _0x1618(){const _0x134a6b=['getScaleSnap','removeEventListener','getTargetScene','name','getRotationnSnap','onObjectChangeEvent','onDraggingChangedEvent','onDraggingFunction','traverse','onChange','multiply','onDraggingChanged','TransformHelperObject','setScaleSnap','control','change','invert','TransformGizmo:Canvas\x20not\x20found','matrixWorld','controller','setMode','gizmoScene','setTranslationSnap','633473CQRnUJ','camera','includes','9lYoDvs','213470vGucFr','enabled','scene','attach','unpossess','1533544gbfAEG','forEach','targetMatrixMap','setSize','52tQQqeS','showZ','onObjectChanged','primaryTarget','rotationSnap','showX','2047887ETLqzX','setTarget','getMode','1474qSnBTr','add','quaternion','showY','49agOIlv','remove','Control\x20not\x20initialized','canvas','clone','position','onUpdateFunction','world','markRenderStateDirty','65090AxhYbm','getMatrixInWorld','get','helperObject','enable','rayIgnored','clear','getHelper','scale','setAxis','possess','377338ZKyPlJ','targets','updateMatrixWorld','dispose','_control','decompose','addEventListener','viewPort','objectChange','72306pgmwyV','isTickEnabled','translationSnap','onChangeEvent','scaleSnap','setRotationSnap','detach'];_0x1618=function(){return _0x134a6b;};return _0x1618();}(function(_0x3ce1f1,_0x170f4c){const _0x3b0ab=_0x100c,_0x49e241=_0x3ce1f1();while(!![]){try{const _0x3a1131=-parseInt(_0x3b0ab(0xa7))/0x1+parseInt(_0x3b0ab(0xd5))/0x2+-parseInt(_0x3b0ab(0xba))/0x3+-parseInt(_0x3b0ab(0xb4))/0x4*(-parseInt(_0x3b0ab(0xab))/0x5)+parseInt(_0x3b0ab(0xde))/0x6*(-parseInt(_0x3b0ab(0xc1))/0x7)+parseInt(_0x3b0ab(0xb0))/0x8*(parseInt(_0x3b0ab(0xaa))/0x9)+-parseInt(_0x3b0ab(0xca))/0xa*(-parseInt(_0x3b0ab(0xbd))/0xb);if(_0x3a1131===_0x170f4c)break;else _0x49e241['push'](_0x49e241['shift']());}catch(_0x2b46b2){_0x49e241['push'](_0x49e241['shift']());}}}(_0x1618,0x6365b));function _0x100c(_0x19dd6a,_0x139af6){_0x19dd6a=_0x19dd6a-0x9c;const _0x161806=_0x1618();let _0x100c7c=_0x161806[_0x19dd6a];return _0x100c7c;}class TransformGizmo extends Pawn{get[_0x2839df(0x9e)](){const _0x25e387=_0x2839df;if(!this['_control'])throw new Error(_0x25e387(0xc3));return this[_0x25e387(0xd9)];}constructor(_0x58f612,_0x48f0ce){const _0x493d19=_0x2839df;var _0x81ad87;super(_0x58f612),this['_control']=null,this[_0x493d19(0xcd)]=new webgpu.Object3D(),this[_0x493d19(0xd6)]=[],this[_0x493d19(0xb7)]=null,this[_0x493d19(0xb2)]=new Map(),this[_0x493d19(0xa5)]=null,this[_0x493d19(0xeb)]=_0x3d21ee=>{const _0x499466=_0x493d19;this[_0x499466(0xf0)](_0x3d21ee);},this[_0x493d19(0xea)]=()=>{const _0x14b59a=_0x493d19;this[_0x14b59a(0xb6)]();},this[_0x493d19(0xe1)]=()=>{const _0x364d96=_0x493d19;this[_0x364d96(0xee)]();},this['onUpdateFunction']=null,this[_0x493d19(0xec)]=null;let _0x5a6143=_0x58f612[_0x493d19(0xdc)][_0x493d19(0xc4)];if(!_0x5a6143)throw new Error(_0x493d19(0xa1));this[_0x493d19(0xd9)]=new TransformControls_js.TransformControls(_0x58f612[_0x493d19(0xa8)],_0x5a6143),this[_0x493d19(0x9e)][_0x493d19(0xd1)]()[_0x493d19(0xed)](_0xa5a583=>{const _0x1e72e7=_0x493d19;_0xa5a583['userData'][_0x1e72e7(0xcf)]=!![];}),this[_0x493d19(0xcd)][_0x493d19(0xe8)]=_0x493d19(0x9c),this[_0x493d19(0xa5)]=(_0x81ad87=_0x48f0ce===null||_0x48f0ce===void 0?void 0:_0x48f0ce['helperScene'])!==null&&_0x81ad87!==void 0?_0x81ad87:null;}['getTargetScene'](){const _0x8b41fb=_0x2839df;var _0x3ad274;return (_0x3ad274=this['gizmoScene'])!==null&&_0x3ad274!==void 0?_0x3ad274:this[_0x8b41fb(0xa3)][_0x8b41fb(0xc8)][_0x8b41fb(0xad)];}[_0x2839df(0xd4)](){const _0x37662c=_0x2839df,_0x1aa3c5=this[_0x37662c(0xe7)]();_0x1aa3c5['add'](this[_0x37662c(0xcd)]),_0x1aa3c5[_0x37662c(0xbe)](this[_0x37662c(0x9e)][_0x37662c(0xd1)]()),this[_0x37662c(0x9e)][_0x37662c(0xae)](this[_0x37662c(0xcd)]),this[_0x37662c(0x9e)][_0x37662c(0xdb)](_0x37662c(0x9f),this[_0x37662c(0xe1)]),this[_0x37662c(0x9e)][_0x37662c(0xdb)]('dragging-changed',this['onDraggingChangedEvent']),this[_0x37662c(0x9e)][_0x37662c(0xdb)](_0x37662c(0xdd),this['onObjectChangeEvent']);}[_0x2839df(0xaf)](){const _0x4af3d7=_0x2839df;this['control'][_0x4af3d7(0xe6)](_0x4af3d7(0x9f),this['onChangeEvent']),this[_0x4af3d7(0x9e)][_0x4af3d7(0xe6)]('dragging-changed',this['onDraggingChangedEvent']),this[_0x4af3d7(0x9e)]['removeEventListener']('objectChange',this['onObjectChangeEvent']),this['control'][_0x4af3d7(0xe4)]();const _0x4cc49a=this[_0x4af3d7(0xe7)]();_0x4cc49a['remove'](this[_0x4af3d7(0xcd)]),_0x4cc49a[_0x4af3d7(0xc2)](this[_0x4af3d7(0x9e)][_0x4af3d7(0xd1)]());}['refresh'](){const _0x2e55d6=_0x2839df;if(!this[_0x2e55d6(0xb7)])return;this['control'][_0x2e55d6(0xe4)]();const _0x52ead1=this[_0x2e55d6(0xe7)]();_0x52ead1['remove'](this[_0x2e55d6(0xcd)]),this['targetMatrixMap'][_0x2e55d6(0xd0)]();let _0x2df7fe=this[_0x2e55d6(0xb7)]['getMatrixInWorld']();_0x2df7fe[_0x2e55d6(0xda)](this[_0x2e55d6(0xcd)][_0x2e55d6(0xc6)],this[_0x2e55d6(0xcd)][_0x2e55d6(0xbf)],this[_0x2e55d6(0xcd)]['scale']),_0x52ead1[_0x2e55d6(0xbe)](this[_0x2e55d6(0x9e)]['getHelper']()),_0x52ead1['add'](this['helperObject']),this[_0x2e55d6(0x9e)]['attach'](this[_0x2e55d6(0xcd)]),this[_0x2e55d6(0xd6)][_0x2e55d6(0xb1)](_0x53964a=>{const _0x41bdd1=_0x2e55d6,_0x414e50=_0x53964a['getMatrixInWorld'](),_0x2b4f92=_0x2df7fe[_0x41bdd1(0xc5)]()['invert']()[_0x41bdd1(0xef)](_0x414e50);this[_0x41bdd1(0xb2)]['set'](_0x53964a,_0x2b4f92);});}[_0x2839df(0xee)](){const _0x3812ad=_0x2839df;this[_0x3812ad(0xa3)][_0x3812ad(0xdc)][_0x3812ad(0xc9)]();}[_0x2839df(0xf0)](_0x2c3d8c){const _0x184622=_0x2839df;if(this[_0x184622(0xb7)]){let _0x514a1a=this[_0x184622(0xb7)][_0x184622(0xcb)]();_0x514a1a[_0x184622(0xda)](this[_0x184622(0xcd)]['position'],this['helperObject'][_0x184622(0xbf)],this[_0x184622(0xcd)][_0x184622(0xd2)]);}this[_0x184622(0xec)]&&this[_0x184622(0xec)](_0x2c3d8c['value']);}[_0x2839df(0xb6)](){const _0x14cccb=_0x2839df;if(this[_0x14cccb(0xb7)]){this['helperObject'][_0x14cccb(0xd7)](!![]);const _0x17dc6e=this[_0x14cccb(0xcd)][_0x14cccb(0xa2)][_0x14cccb(0xc5)]();this[_0x14cccb(0xb7)]['onTransforming'](_0x17dc6e),this[_0x14cccb(0xd6)][_0x14cccb(0xb1)](_0xed28f2=>{const _0x301a2f=_0x14cccb,_0x5a8d60=this[_0x301a2f(0xb2)][_0x301a2f(0xcc)](_0xed28f2);if(_0x5a8d60){const _0x8a4d7a=new webgpu.Matrix4()['multiplyMatrices'](_0x17dc6e,_0x5a8d60);_0xed28f2['onTransforming'](_0x8a4d7a);}});}this[_0x14cccb(0xc7)]&&this['onUpdateFunction']();}set[_0x2839df(0xce)](_0x3a5979){const _0x123274=_0x2839df;this[_0x123274(0x9e)][_0x123274(0xac)]=_0x3a5979;}[_0x2839df(0xbb)](_0x417670,_0x132b21,_0x19834d=null,_0xa51973=null){const _0x20ad5e=_0x2839df;this['targetMatrixMap'][_0x20ad5e(0xd0)]();let _0x7934a9=_0x417670['getMatrixInWorld']();_0x7934a9[_0x20ad5e(0xda)](this[_0x20ad5e(0xcd)]['position'],this[_0x20ad5e(0xcd)]['quaternion'],this[_0x20ad5e(0xcd)][_0x20ad5e(0xd2)]);const _0x367310=this['getTargetScene']();_0x367310[_0x20ad5e(0xbe)](this[_0x20ad5e(0x9e)][_0x20ad5e(0xd1)]()),this['primaryTarget']=_0x417670,this['targets']=_0x132b21,this[_0x20ad5e(0xd6)][_0x20ad5e(0xb1)](_0x3a6ace=>{const _0x31d9b9=_0x20ad5e,_0x17744d=_0x3a6ace['getMatrixInWorld'](),_0x34b7e6=_0x7934a9[_0x31d9b9(0xc5)]()[_0x31d9b9(0xa0)]()[_0x31d9b9(0xef)](_0x17744d);this[_0x31d9b9(0xb2)]['set'](_0x3a6ace,_0x34b7e6);}),_0x19834d&&(this[_0x20ad5e(0xc7)]=_0x19834d),_0xa51973&&(this[_0x20ad5e(0xec)]=_0xa51973),this['isTickEnabled']=!![];}['getMode'](){const _0x4f1bfc=_0x2839df;return this['control'][_0x4f1bfc(0xbc)]();}[_0x2839df(0xa4)](_0x5cb336){const _0x5c0a3b=_0x2839df;this[_0x5c0a3b(0x9e)][_0x5c0a3b(0xa4)](_0x5cb336);}['setSpace'](_0x5c42b1){const _0xac75bd=_0x2839df;this[_0xac75bd(0x9e)]['setSpace'](_0x5c42b1);}[_0x2839df(0xd3)](_0x24bc5c){const _0x59891c=_0x2839df;this['control'][_0x59891c(0xb9)]=_0x24bc5c?_0x24bc5c===null||_0x24bc5c===void 0?void 0:_0x24bc5c[_0x59891c(0xa9)]('X'):![],this[_0x59891c(0x9e)][_0x59891c(0xc0)]=_0x24bc5c?_0x24bc5c===null||_0x24bc5c===void 0?void 0:_0x24bc5c['includes']('Y'):![],this['control'][_0x59891c(0xb5)]=_0x24bc5c?_0x24bc5c===null||_0x24bc5c===void 0?void 0:_0x24bc5c['includes']('Z'):![];}[_0x2839df(0xb3)](_0x168f94){const _0x2205f3=_0x2839df;this['control'][_0x2205f3(0xb3)](_0x168f94);}['getTranslationSnap'](){const _0x3aa831=_0x2839df;return this[_0x3aa831(0x9e)][_0x3aa831(0xe0)];}['setTranslationSnap'](_0x783ad3){const _0x1ae6d7=_0x2839df;this['control'][_0x1ae6d7(0xa6)](_0x783ad3);}[_0x2839df(0xe9)](){const _0x461046=_0x2839df;return this[_0x461046(0x9e)][_0x461046(0xb8)];}[_0x2839df(0xe3)](_0x3b56be){const _0x48c50a=_0x2839df;this[_0x48c50a(0x9e)][_0x48c50a(0xe3)](_0x3b56be);}[_0x2839df(0xe5)](){const _0xd8fe02=_0x2839df;return this[_0xd8fe02(0x9e)][_0xd8fe02(0xe2)];}[_0x2839df(0x9d)](_0x45046d){const _0x556551=_0x2839df;this[_0x556551(0x9e)][_0x556551(0x9d)](_0x45046d);}['destroy'](){const _0x2f44fb=_0x2839df;var _0x1abe85;this[_0x2f44fb(0xdf)]=![],this[_0x2f44fb(0xaf)](),this[_0x2f44fb(0xb2)]['clear'](),this[_0x2f44fb(0xd6)]=[],this[_0x2f44fb(0xb7)]=null,this[_0x2f44fb(0xc7)]=null,this[_0x2f44fb(0xec)]=null,(_0x1abe85=this[_0x2f44fb(0xd9)])===null||_0x1abe85===void 0?void 0:_0x1abe85[_0x2f44fb(0xd8)](),this['_control']=null,super['destroy']();}}
126
+ function _0x32b0(_0x5d6b3a,_0x5cb45a){_0x5d6b3a=_0x5d6b3a-0x135;const _0x518bc8=_0x518b();let _0x32b039=_0x518bc8[_0x5d6b3a];return _0x32b039;}const _0x408002=_0x32b0;(function(_0x26c322,_0x27c030){const _0x2b6ae8=_0x32b0,_0x4771f4=_0x26c322();while(!![]){try{const _0x43f715=parseInt(_0x2b6ae8(0x139))/0x1+-parseInt(_0x2b6ae8(0x13e))/0x2*(parseInt(_0x2b6ae8(0x142))/0x3)+parseInt(_0x2b6ae8(0x138))/0x4*(parseInt(_0x2b6ae8(0x13a))/0x5)+parseInt(_0x2b6ae8(0x13f))/0x6+parseInt(_0x2b6ae8(0x145))/0x7*(parseInt(_0x2b6ae8(0x13b))/0x8)+parseInt(_0x2b6ae8(0x141))/0x9*(-parseInt(_0x2b6ae8(0x137))/0xa)+parseInt(_0x2b6ae8(0x147))/0xb;if(_0x43f715===_0x27c030)break;else _0x4771f4['push'](_0x4771f4['shift']());}catch(_0x5b08f4){_0x4771f4['push'](_0x4771f4['shift']());}}}(_0x518b,0xbbb05));function _0x518b(){const _0x33d038=['3349140RBvRWb','1373536Kruvjq','5rdTTsw','351280nRIHMd','_control','getFocuingData','8omAnWG','1826280fgdDEz','viewPort','576StfyuV','1115955QgCbml','clone','position','28serQmp','quaternion','2256144EulpkK','canvas','camera','99880ZVMfWn'];_0x518b=function(){return _0x33d038;};return _0x518b();}class FirstPerson extends Pawn{constructor(_0x21415d){const _0x5bd054=_0x32b0;super(_0x21415d),this[_0x5bd054(0x13c)]=new PointerLockControls_js.PointerLockControls(_0x21415d[_0x5bd054(0x136)],_0x21415d[_0x5bd054(0x140)][_0x5bd054(0x135)]);}[_0x408002(0x13d)](){const _0x47e192=_0x408002;var _0x220a04;if(!this[_0x47e192(0x13c)]||!((_0x220a04=this['controller'])===null||_0x220a04===void 0?void 0:_0x220a04[_0x47e192(0x136)]))return null;const _0x21aeef=this['controller'][_0x47e192(0x136)][_0x47e192(0x144)][_0x47e192(0x143)](),_0x423c2e=this['controller'][_0x47e192(0x136)][_0x47e192(0x146)][_0x47e192(0x143)](),_0x313515=0x0;return {'position':_0x21aeef,'quaternion':_0x423c2e,'distance':_0x313515};}}
126
127
 
127
- (function(_0x382bdc,_0x50550c){var _0x3174e9=_0xe73e,_0x2849c0=_0x382bdc();while(!![]){try{var _0x4b9681=parseInt(_0x3174e9(0x92))/0x1*(-parseInt(_0x3174e9(0x98))/0x2)+-parseInt(_0x3174e9(0x91))/0x3+parseInt(_0x3174e9(0x93))/0x4+-parseInt(_0x3174e9(0x97))/0x5+parseInt(_0x3174e9(0x96))/0x6+parseInt(_0x3174e9(0x94))/0x7+parseInt(_0x3174e9(0x95))/0x8;if(_0x4b9681===_0x50550c)break;else _0x2849c0['push'](_0x2849c0['shift']());}catch(_0x21cb64){_0x2849c0['push'](_0x2849c0['shift']());}}}(_0x46e8,0xa1067));function _0x46e8(){var _0x1b371f=['4RHVLEK','1027362yzjqbx','642697rSLfti','2665080LCeJMS','5560345HATrMf','9406080SpwSmD','776328JRqeoU','2391730PHHlsn'];_0x46e8=function(){return _0x1b371f;};return _0x46e8();}function _0xe73e(_0x4ceab9,_0x12bdd9){_0x4ceab9=_0x4ceab9-0x91;var _0x46e82e=_0x46e8();var _0xe73e4f=_0x46e82e[_0x4ceab9];return _0xe73e4f;}
128
+ function _0x46a5(_0x381390,_0x165d55){_0x381390=_0x381390-0x154;const _0x5d7d23=_0x5d7d();let _0x46a56e=_0x5d7d23[_0x381390];return _0x46a56e;}function _0x5d7d(){const _0x4f18c3=['onTransforming','9647197JhaIDw','3390995jdgkET','getTargetScene','enabled','includes','value','rotationSnap','invert','destroy','getRotationnSnap','control','onObjectChanged','updateMatrixWorld','37265706WLPGvf','unpossess','TransformGizmo:Canvas\x20not\x20found','getTranslationSnap','camera','clone','markRenderStateDirty','onObjectChangeEvent','refresh','850888XhaWzt','multiply','helperObject','setScaleSnap','setTranslationSnap','onDraggingChanged','onDraggingChangedEvent','Control\x20not\x20initialized','userData','controller','_control','1579832jnaBmk','possess','position','clear','viewPort','removeEventListener','onChange','showY','remove','quaternion','forEach','onUpdateFunction','setRotationSnap','enable','set','onDraggingFunction','scale','8sYxiBt','addEventListener','traverse','scene','setSpace','getMatrixInWorld','dragging-changed','name','getHelper','attach','isTickEnabled','1zNVaIc','matrixWorld','primaryTarget','add','targetMatrixMap','world','dispose','decompose','scaleSnap','3586434Brdyoz','getScaleSnap','detach','3204090yONRTy','onChangeEvent','showX','change','gizmoScene','setSize','objectChange','targets','helperScene'];_0x5d7d=function(){return _0x4f18c3;};return _0x5d7d();}const _0x5dcfea=_0x46a5;(function(_0x28f32d,_0x4842f2){const _0x20da8d=_0x46a5,_0x1e015e=_0x28f32d();while(!![]){try{const _0x350353=parseInt(_0x20da8d(0x16c))/0x1*(-parseInt(_0x20da8d(0x198))/0x2)+-parseInt(_0x20da8d(0x178))/0x3+parseInt(_0x20da8d(0x161))/0x4*(-parseInt(_0x20da8d(0x183))/0x5)+parseInt(_0x20da8d(0x175))/0x6+-parseInt(_0x20da8d(0x182))/0x7+parseInt(_0x20da8d(0x1a3))/0x8+parseInt(_0x20da8d(0x18f))/0x9;if(_0x350353===_0x4842f2)break;else _0x1e015e['push'](_0x1e015e['shift']());}catch(_0x335116){_0x1e015e['push'](_0x1e015e['shift']());}}}(_0x5d7d,0xacce1));class TransformGizmo extends Pawn{get[_0x5dcfea(0x18c)](){const _0x304e4b=_0x5dcfea;if(!this[_0x304e4b(0x1a2)])throw new Error(_0x304e4b(0x19f));return this[_0x304e4b(0x1a2)];}constructor(_0xaa61eb,_0x1a2881){const _0x179d36=_0x5dcfea;var _0x41f3fc;super(_0xaa61eb),this[_0x179d36(0x1a2)]=null,this['helperObject']=new webgpu.Object3D(),this[_0x179d36(0x17f)]=[],this[_0x179d36(0x16e)]=null,this[_0x179d36(0x170)]=new Map(),this[_0x179d36(0x17c)]=null,this[_0x179d36(0x19e)]=_0x1bf2ba=>{this['onDraggingChanged'](_0x1bf2ba);},this[_0x179d36(0x196)]=()=>{const _0x265287=_0x179d36;this[_0x265287(0x18d)]();},this[_0x179d36(0x179)]=()=>{const _0x332074=_0x179d36;this[_0x332074(0x156)]();},this['onUpdateFunction']=null,this[_0x179d36(0x15f)]=null;let _0x51727a=_0xaa61eb[_0x179d36(0x154)]['canvas'];if(!_0x51727a)throw new Error(_0x179d36(0x191));this['_control']=new TransformControls_js.TransformControls(_0xaa61eb[_0x179d36(0x193)],_0x51727a),this['control'][_0x179d36(0x169)]()[_0x179d36(0x163)](_0x30a73a=>{const _0x564f22=_0x179d36;_0x30a73a[_0x564f22(0x1a0)]['rayIgnored']=!![];}),this['helperObject'][_0x179d36(0x168)]='TransformHelperObject',this[_0x179d36(0x17c)]=(_0x41f3fc=_0x1a2881===null||_0x1a2881===void 0?void 0:_0x1a2881[_0x179d36(0x180)])!==null&&_0x41f3fc!==void 0?_0x41f3fc:null;}['getTargetScene'](){const _0x573f12=_0x5dcfea;var _0x100ae8;return (_0x100ae8=this['gizmoScene'])!==null&&_0x100ae8!==void 0?_0x100ae8:this[_0x573f12(0x1a1)][_0x573f12(0x171)][_0x573f12(0x164)];}[_0x5dcfea(0x1a4)](){const _0x69f351=_0x5dcfea,_0x2100ad=this[_0x69f351(0x184)]();_0x2100ad[_0x69f351(0x16f)](this[_0x69f351(0x19a)]),_0x2100ad['add'](this[_0x69f351(0x18c)]['getHelper']()),this[_0x69f351(0x18c)][_0x69f351(0x16a)](this['helperObject']),this['control'][_0x69f351(0x162)](_0x69f351(0x17b),this[_0x69f351(0x179)]),this[_0x69f351(0x18c)][_0x69f351(0x162)](_0x69f351(0x167),this[_0x69f351(0x19e)]),this[_0x69f351(0x18c)]['addEventListener'](_0x69f351(0x17e),this[_0x69f351(0x196)]);}[_0x5dcfea(0x190)](){const _0x4a0231=_0x5dcfea;this[_0x4a0231(0x18c)][_0x4a0231(0x155)](_0x4a0231(0x17b),this[_0x4a0231(0x179)]),this[_0x4a0231(0x18c)][_0x4a0231(0x155)](_0x4a0231(0x167),this[_0x4a0231(0x19e)]),this[_0x4a0231(0x18c)][_0x4a0231(0x155)]('objectChange',this[_0x4a0231(0x196)]),this[_0x4a0231(0x18c)][_0x4a0231(0x177)]();const _0x3b09be=this[_0x4a0231(0x184)]();_0x3b09be['remove'](this[_0x4a0231(0x19a)]),_0x3b09be[_0x4a0231(0x158)](this[_0x4a0231(0x18c)][_0x4a0231(0x169)]());}[_0x5dcfea(0x197)](){const _0x41bbb4=_0x5dcfea;if(!this[_0x41bbb4(0x16e)])return;this[_0x41bbb4(0x18c)]['detach']();const _0x3f4ccf=this['getTargetScene']();_0x3f4ccf['remove'](this['helperObject']),this[_0x41bbb4(0x170)][_0x41bbb4(0x1a6)]();let _0x9448d9=this['primaryTarget'][_0x41bbb4(0x166)]();_0x9448d9[_0x41bbb4(0x173)](this['helperObject'][_0x41bbb4(0x1a5)],this[_0x41bbb4(0x19a)][_0x41bbb4(0x159)],this[_0x41bbb4(0x19a)][_0x41bbb4(0x160)]),_0x3f4ccf[_0x41bbb4(0x16f)](this[_0x41bbb4(0x18c)][_0x41bbb4(0x169)]()),_0x3f4ccf[_0x41bbb4(0x16f)](this['helperObject']),this['control'][_0x41bbb4(0x16a)](this['helperObject']),this[_0x41bbb4(0x17f)][_0x41bbb4(0x15a)](_0x48157f=>{const _0x28fcc9=_0x41bbb4,_0x5110fa=_0x48157f[_0x28fcc9(0x166)](),_0x5718ab=_0x9448d9['clone']()['invert']()[_0x28fcc9(0x199)](_0x5110fa);this['targetMatrixMap'][_0x28fcc9(0x15e)](_0x48157f,_0x5718ab);});}[_0x5dcfea(0x156)](){const _0x2c04a0=_0x5dcfea;this[_0x2c04a0(0x1a1)][_0x2c04a0(0x154)][_0x2c04a0(0x195)]();}[_0x5dcfea(0x19d)](_0x36a4d1){const _0x529265=_0x5dcfea;if(this[_0x529265(0x16e)]){let _0x178c21=this[_0x529265(0x16e)][_0x529265(0x166)]();_0x178c21[_0x529265(0x173)](this[_0x529265(0x19a)][_0x529265(0x1a5)],this[_0x529265(0x19a)]['quaternion'],this[_0x529265(0x19a)]['scale']);}this[_0x529265(0x15f)]&&this['onDraggingFunction'](_0x36a4d1[_0x529265(0x187)]);}[_0x5dcfea(0x18d)](){const _0x128e3c=_0x5dcfea;if(this[_0x128e3c(0x16e)]){this[_0x128e3c(0x19a)][_0x128e3c(0x18e)](!![]);const _0x176be3=this[_0x128e3c(0x19a)][_0x128e3c(0x16d)]['clone']();this[_0x128e3c(0x16e)]['onTransforming'](_0x176be3),this['targets'][_0x128e3c(0x15a)](_0x3b698d=>{const _0x19a8a9=_0x128e3c,_0x4ad4d8=this[_0x19a8a9(0x170)]['get'](_0x3b698d);if(_0x4ad4d8){const _0x2d30b7=new webgpu.Matrix4()['multiplyMatrices'](_0x176be3,_0x4ad4d8);_0x3b698d[_0x19a8a9(0x181)](_0x2d30b7);}});}this['onUpdateFunction']&&this[_0x128e3c(0x15b)]();}set[_0x5dcfea(0x15d)](_0x2371fc){const _0x443bec=_0x5dcfea;this['control'][_0x443bec(0x185)]=_0x2371fc;}['setTarget'](_0x23e425,_0x57bb43,_0x325136=null,_0x2617d3=null){const _0x4ca81b=_0x5dcfea;this['targetMatrixMap']['clear']();let _0x1b3750=_0x23e425[_0x4ca81b(0x166)]();_0x1b3750[_0x4ca81b(0x173)](this[_0x4ca81b(0x19a)][_0x4ca81b(0x1a5)],this[_0x4ca81b(0x19a)][_0x4ca81b(0x159)],this[_0x4ca81b(0x19a)][_0x4ca81b(0x160)]);const _0x3a151b=this[_0x4ca81b(0x184)]();_0x3a151b[_0x4ca81b(0x16f)](this[_0x4ca81b(0x18c)][_0x4ca81b(0x169)]()),this[_0x4ca81b(0x16e)]=_0x23e425,this[_0x4ca81b(0x17f)]=_0x57bb43,this[_0x4ca81b(0x17f)][_0x4ca81b(0x15a)](_0x1f9189=>{const _0x46917e=_0x4ca81b,_0xa7eb02=_0x1f9189[_0x46917e(0x166)](),_0x374c69=_0x1b3750[_0x46917e(0x194)]()[_0x46917e(0x189)]()[_0x46917e(0x199)](_0xa7eb02);this[_0x46917e(0x170)]['set'](_0x1f9189,_0x374c69);}),_0x325136&&(this[_0x4ca81b(0x15b)]=_0x325136),_0x2617d3&&(this[_0x4ca81b(0x15f)]=_0x2617d3),this[_0x4ca81b(0x16b)]=!![];}['getMode'](){const _0x514ce1=_0x5dcfea;return this[_0x514ce1(0x18c)]['getMode']();}['setMode'](_0x5a0bb6){const _0x363869=_0x5dcfea;this[_0x363869(0x18c)]['setMode'](_0x5a0bb6);}[_0x5dcfea(0x165)](_0x29e361){const _0x95dcde=_0x5dcfea;this[_0x95dcde(0x18c)][_0x95dcde(0x165)](_0x29e361);}['setAxis'](_0xb9328b){const _0xfefbcc=_0x5dcfea;this[_0xfefbcc(0x18c)][_0xfefbcc(0x17a)]=_0xb9328b?_0xb9328b===null||_0xb9328b===void 0?void 0:_0xb9328b[_0xfefbcc(0x186)]('X'):![],this[_0xfefbcc(0x18c)][_0xfefbcc(0x157)]=_0xb9328b?_0xb9328b===null||_0xb9328b===void 0?void 0:_0xb9328b[_0xfefbcc(0x186)]('Y'):![],this['control']['showZ']=_0xb9328b?_0xb9328b===null||_0xb9328b===void 0?void 0:_0xb9328b[_0xfefbcc(0x186)]('Z'):![];}[_0x5dcfea(0x17d)](_0x112bc8){const _0x3cca56=_0x5dcfea;this[_0x3cca56(0x18c)][_0x3cca56(0x17d)](_0x112bc8);}[_0x5dcfea(0x192)](){const _0x3493b0=_0x5dcfea;return this[_0x3493b0(0x18c)]['translationSnap'];}['setTranslationSnap'](_0x589d82){const _0x174e41=_0x5dcfea;this[_0x174e41(0x18c)][_0x174e41(0x19c)](_0x589d82);}[_0x5dcfea(0x18b)](){const _0x385ea1=_0x5dcfea;return this[_0x385ea1(0x18c)][_0x385ea1(0x188)];}[_0x5dcfea(0x15c)](_0x20578e){this['control']['setRotationSnap'](_0x20578e);}[_0x5dcfea(0x176)](){const _0x36b63f=_0x5dcfea;return this['control'][_0x36b63f(0x174)];}[_0x5dcfea(0x19b)](_0x29fae4){const _0xd08a39=_0x5dcfea;this['control'][_0xd08a39(0x19b)](_0x29fae4);}[_0x5dcfea(0x18a)](){const _0x3883fa=_0x5dcfea;var _0x7af84b;this[_0x3883fa(0x16b)]=![],this[_0x3883fa(0x190)](),this[_0x3883fa(0x170)][_0x3883fa(0x1a6)](),this[_0x3883fa(0x17f)]=[],this['primaryTarget']=null,this[_0x3883fa(0x15b)]=null,this['onDraggingFunction']=null,(_0x7af84b=this[_0x3883fa(0x1a2)])===null||_0x7af84b===void 0?void 0:_0x7af84b[_0x3883fa(0x172)](),this[_0x3883fa(0x1a2)]=null,super[_0x3883fa(0x18a)]();}}
129
+
130
+ (function(_0x294a74,_0x4b47fb){var _0x2a8bbe=_0x5bda,_0x36d87b=_0x294a74();while(!![]){try{var _0x582fc3=-parseInt(_0x2a8bbe(0x169))/0x1+parseInt(_0x2a8bbe(0x168))/0x2*(parseInt(_0x2a8bbe(0x16b))/0x3)+parseInt(_0x2a8bbe(0x16f))/0x4+parseInt(_0x2a8bbe(0x170))/0x5*(-parseInt(_0x2a8bbe(0x16d))/0x6)+parseInt(_0x2a8bbe(0x16c))/0x7+parseInt(_0x2a8bbe(0x16e))/0x8+-parseInt(_0x2a8bbe(0x16a))/0x9;if(_0x582fc3===_0x4b47fb)break;else _0x36d87b['push'](_0x36d87b['shift']());}catch(_0x1d9b80){_0x36d87b['push'](_0x36d87b['shift']());}}}(_0x249b,0x7b95e));function _0x5bda(_0x35ee72,_0x4bee4c){_0x35ee72=_0x35ee72-0x168;var _0x249bc0=_0x249b();var _0x5bda4e=_0x249bc0[_0x35ee72];return _0x5bda4e;}function _0x249b(){var _0x2eafe2=['3zvotxH','3452645UhqyBI','30eDfYBf','1222944unCrEq','2673552jEWzRz','466340ltBlQL','883304PZdtfK','436169JZOgGI','3126852ONgJLT'];_0x249b=function(){return _0x2eafe2;};return _0x249b();}
128
131
 
129
132
  exports.ASSET_POINTER_KEY = ASSET_POINTER_KEY;
130
133
  exports.Actor = Actor;
@@ -134,6 +137,7 @@ exports.AssetManager = AssetManager;
134
137
  exports.BoxActor = BoxActor;
135
138
  exports.BoxComponent = BoxComponent;
136
139
  exports.Controller = Controller;
140
+ exports.CustomMeshComponent = CustomMeshComponent;
137
141
  exports.DefaultAAParams = DefaultAAParams;
138
142
  exports.DefaultAppParam = DefaultAppParam;
139
143
  exports.DefaultBloomParam = DefaultBloomParam;