lythreeframe 1.3.3 → 1.3.4

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 _0x430ee4 = 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
+ function _0xf619(_0x11051f,_0x3361b0){_0x11051f=_0x11051f-0xf5;const _0x4fc475=_0x4fc4();let _0xf6196b=_0x4fc475[_0x11051f];return _0xf6196b;}function _0x4fc4(){const _0x104dd9=['indexOf','addTickEvent','894429mRRaax','211822sOPjNh','clearTickEvents','1973855ogTHzG','_uuid','6835250uBCOpm','2615604xbSDni','uuid','isTickEnabled','removeTickEvent','bCanTick','3GyOloy','forEach','tickEvents','173708OUoXem','destroy','push','3uEvPXg','7WRHjRk','generateUUID','6744awTJcc'];_0x4fc4=function(){return _0x104dd9;};return _0x4fc4();}const _0x25aa7d=_0xf619;(function(_0x38465a,_0x1c7865){const _0x1d85e1=_0xf619,_0x2a7dbd=_0x38465a();while(!![]){try{const _0x3d55ac=parseInt(_0x1d85e1(0x104))/0x1*(-parseInt(_0x1d85e1(0x10b))/0x2)+-parseInt(_0x1d85e1(0xfe))/0x3*(parseInt(_0x1d85e1(0x101))/0x4)+parseInt(_0x1d85e1(0xf6))/0x5+-parseInt(_0x1d85e1(0xf9))/0x6+parseInt(_0x1d85e1(0x105))/0x7*(-parseInt(_0x1d85e1(0x107))/0x8)+parseInt(_0x1d85e1(0x10a))/0x9+parseInt(_0x1d85e1(0xf8))/0xa;if(_0x3d55ac===_0x1c7865)break;else _0x2a7dbd['push'](_0x2a7dbd['shift']());}catch(_0x5baac7){_0x2a7dbd['push'](_0x2a7dbd['shift']());}}}(_0x4fc4,0x5cb5c));class BaseObject{get['isTickEnabled'](){const _0x140693=_0xf619;return this[_0x140693(0xfd)];}set[_0x25aa7d(0xfb)](_0x26f1b6){const _0x15c0ff=_0x25aa7d;this[_0x15c0ff(0xfd)]=_0x26f1b6;}get[_0x25aa7d(0xfa)](){const _0x538f36=_0x25aa7d;return this[_0x538f36(0xf7)];}constructor(_0x113d7b=webgpu.MathUtils[_0x25aa7d(0x106)]()){const _0x54d0fb=_0x25aa7d;this['bCanTick']=![],this[_0x54d0fb(0x100)]=[],this['bCanTick']=![],this['_uuid']=_0x113d7b;}['tick'](_0x5be300){const _0x18482c=_0x25aa7d;if(!this[_0x18482c(0xfd)])return;this[_0x18482c(0x100)][_0x18482c(0xff)](_0xba4b4d=>{_0xba4b4d(_0x5be300);});}[_0x25aa7d(0x109)](_0x4685f1){const _0x19d634=_0x25aa7d;this[_0x19d634(0x100)][_0x19d634(0x103)](_0x4685f1);}[_0x25aa7d(0xfc)](_0x43cb01){const _0x4009d4=_0x25aa7d;let _0x2ea0e0=this[_0x4009d4(0x100)][_0x4009d4(0x108)](_0x43cb01);_0x2ea0e0!=-1&&this[_0x4009d4(0x100)]['splice'](_0x2ea0e0,0x1);}[_0x25aa7d(0xf5)](){const _0x3a8845=_0x25aa7d;this[_0x3a8845(0x100)]=[];}[_0x25aa7d(0x102)](){}}
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 _0x45f472=_0x5d33;function _0x351c(){const _0x266c1f=['obj','parentActor','type','generateUUID','15199290pDmQYj','10550939gBDPnR','warn','threeObject','LYObject','destroy','224ENGuLh','2830947qZkZpX','422046dsUpUo','1168836bRrLTa','destroyObject','Component\x20createDefaultObject\x20return\x20null','createDefaultObject','_name','5278572coyEAx','2miWuTz','5IrNYoO','_parentActor','name','6006486VKrTSz'];_0x351c=function(){return _0x266c1f;};return _0x351c();}function _0x5d33(_0x38ecee,_0x27d8d4){_0x38ecee=_0x38ecee-0x1e4;const _0x351c43=_0x351c();let _0x5d33a5=_0x351c43[_0x38ecee];return _0x5d33a5;}(function(_0x5310c3,_0xca7289){const _0x2891ef=_0x5d33,_0x4f5be9=_0x5310c3();while(!![]){try{const _0x52716b=-parseInt(_0x2891ef(0x1ec))/0x1+-parseInt(_0x2891ef(0x1f2))/0x2*(-parseInt(_0x2891ef(0x1ea))/0x3)+-parseInt(_0x2891ef(0x1f1))/0x4+parseInt(_0x2891ef(0x1f3))/0x5*(parseInt(_0x2891ef(0x1f6))/0x6)+parseInt(_0x2891ef(0x1e4))/0x7+parseInt(_0x2891ef(0x1e9))/0x8*(parseInt(_0x2891ef(0x1eb))/0x9)+-parseInt(_0x2891ef(0x1fb))/0xa;if(_0x52716b===_0xca7289)break;else _0x4f5be9['push'](_0x4f5be9['shift']());}catch(_0x3ed268){_0x4f5be9['push'](_0x4f5be9['shift']());}}}(_0x351c,0xb8b97));class Component extends BaseObject{set[_0x45f472(0x1f8)](_0x200993){const _0x1cbf37=_0x45f472;this[_0x1cbf37(0x1f4)]=_0x200993;}get[_0x45f472(0x1f8)](){const _0x1a0c85=_0x45f472;return this[_0x1a0c85(0x1f4)];}get[_0x45f472(0x1e6)](){return this['obj'];}set[_0x45f472(0x1e6)](_0x19274a){const _0xda800b=_0x45f472;this['obj']=_0x19274a,this[_0xda800b(0x1f7)]&&(this['obj']['userData'][_0xda800b(0x1e7)]=this);}get['name'](){return this['_name'];}set[_0x45f472(0x1f5)](_0x19205c){const _0x113cef=_0x45f472;this[_0x113cef(0x1f0)]=_0x19205c,this['obj']&&(this[_0x113cef(0x1f7)][_0x113cef(0x1f5)]=_0x19205c);}constructor(_0x16dcf2){const _0x2cd78f=_0x45f472;super(_0x16dcf2?_0x16dcf2:webgpu.MathUtils[_0x2cd78f(0x1fa)]()),this['obj']=null,this[_0x2cd78f(0x1f4)]=null,this['_name']='Component',this[_0x2cd78f(0x1f4)]=null;let _0x55f75f=this[_0x2cd78f(0x1ef)]();_0x55f75f?(this[_0x2cd78f(0x1e6)]=_0x55f75f,this[_0x2cd78f(0x1f0)]=this[_0x2cd78f(0x1e6)][_0x2cd78f(0x1f9)]+'Component'):console[_0x2cd78f(0x1e5)](_0x2cd78f(0x1ee));}[_0x45f472(0x1ef)](_0x177549){return null;}['destroyObject'](){if(!this['obj'])return;}[_0x45f472(0x1e8)](){const _0x55ea31=_0x45f472;this[_0x55ea31(0x1ed)]();}}
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(_0x5cdbfd,_0x123d1c){var _0x50322f=_0x39f8,_0x2fc481=_0x5cdbfd();while(!![]){try{var _0x300b45=-parseInt(_0x50322f(0x196))/0x1*(-parseInt(_0x50322f(0x191))/0x2)+-parseInt(_0x50322f(0x18f))/0x3*(parseInt(_0x50322f(0x194))/0x4)+-parseInt(_0x50322f(0x197))/0x5+-parseInt(_0x50322f(0x18c))/0x6*(parseInt(_0x50322f(0x18e))/0x7)+-parseInt(_0x50322f(0x193))/0x8+parseInt(_0x50322f(0x18a))/0x9*(-parseInt(_0x50322f(0x18d))/0xa)+-parseInt(_0x50322f(0x192))/0xb*(-parseInt(_0x50322f(0x190))/0xc);if(_0x300b45===_0x123d1c)break;else _0x2fc481['push'](_0x2fc481['shift']());}catch(_0xbe8766){_0x2fc481['push'](_0x2fc481['shift']());}}}(_0x217f,0x67059));exports.AttachmentRules = void 0;function _0x39f8(_0xd38539,_0x49eba6){_0xd38539=_0xd38539-0x18a;var _0x217f77=_0x217f();var _0x39f8e5=_0x217f77[_0xd38539];return _0x39f8e5;}function _0x217f(){var _0x124830=['3VdEhxa','12MOhWRa','2066ZTEeLk','15990447wWCMkj','619352pTqdfh','2973884kvhjjp','KeepRelative','465XVfNxm','1433645XUPrJm','1101393xbRSmP','KeepWorld','44754PFfNFP','30nxtkBn','35gVDwLE'];_0x217f=function(){return _0x124830;};return _0x217f();}(function(_0x466b1e){var _0x1d4eef=_0x39f8;_0x466b1e[_0x466b1e[_0x1d4eef(0x18b)]=0x1]=_0x1d4eef(0x18b),_0x466b1e[_0x466b1e[_0x1d4eef(0x195)]=0x2]=_0x1d4eef(0x195);}(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
+ function _0x2855(_0x281aa8,_0x276d91){_0x281aa8=_0x281aa8-0xa4;const _0x1f97e4=_0x1f97();let _0x2855e1=_0x1f97e4[_0x281aa8];return _0x2855e1;}const _0x5f97e4=_0x2855;(function(_0x10ceb9,_0x7d5ce6){const _0x11aa51=_0x2855,_0x56efd0=_0x10ceb9();while(!![]){try{const _0xce983c=parseInt(_0x11aa51(0xab))/0x1*(parseInt(_0x11aa51(0xac))/0x2)+-parseInt(_0x11aa51(0xb7))/0x3*(-parseInt(_0x11aa51(0xb2))/0x4)+parseInt(_0x11aa51(0xa6))/0x5*(-parseInt(_0x11aa51(0xa8))/0x6)+parseInt(_0x11aa51(0xb5))/0x7+-parseInt(_0x11aa51(0xb1))/0x8+-parseInt(_0x11aa51(0xa5))/0x9+parseInt(_0x11aa51(0xa4))/0xa;if(_0xce983c===_0x7d5ce6)break;else _0x56efd0['push'](_0x56efd0['shift']());}catch(_0x48b637){_0x56efd0['push'](_0x56efd0['shift']());}}}(_0x1f97,0xad257));function _0x1f97(){const _0x3cbafe=['18858rloEQS','remove','function\x20not\x20found','819244KWQSbS','2AvYKYU','clear','indexOf','broadcast','splice','11285920VxuOgo','1388FpABtl','functions','add','8467480bLnFOm','forEach','3525wbpEMY','7296380THbHWb','7917489SDBlWd','265QfnYZY','warn'];_0x1f97=function(){return _0x3cbafe;};return _0x1f97();}class Delegate{constructor(){const _0x4da042=_0x2855;this[_0x4da042(0xb3)]=[];}[_0x5f97e4(0xaf)](..._0x301494){const _0x2d7e21=_0x5f97e4;this[_0x2d7e21(0xb3)][_0x2d7e21(0xb6)](_0x1e9913=>_0x1e9913(..._0x301494));}[_0x5f97e4(0xb4)](_0x566b3b){const _0x3f63e5=_0x5f97e4;this[_0x3f63e5(0xb3)]['push'](_0x566b3b);}[_0x5f97e4(0xa9)](_0x24601f){const _0x33eb59=_0x5f97e4,_0x14f94f=this[_0x33eb59(0xb3)][_0x33eb59(0xae)](_0x24601f);_0x14f94f>=0x0?this['functions'][_0x33eb59(0xb0)](_0x14f94f,0x1):console[_0x33eb59(0xa7)](_0x33eb59(0xaa));}[_0x5f97e4(0xad)](){const _0x6718b2=_0x5f97e4;this[_0x6718b2(0xb3)]=[];}}
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
+ function _0x3773(){const _0x19916d=['setFromObject','max','target\x20threeObject\x20is\x20invalid','bCanClick','setPosition','_onHoverEndDelegate','parent','getWorldMatrix','setRotation','getWorldScale','obj','getMatrix','localToWorld','children','threeObject\x20is\x20invalid','tick','getRotation','onClicked','onDoubleClickDelegate','position','detachFromParentActor','48HOWLVz','copy','remove','setMatrix','11AAbdvL','applyQuaternion','markRenderStateDirty','decompose','viewport','onHoverBeginDelegate','bCanHover','updateMatrix','layers','createDefaultObject','uuid','length','735iSUbNc','parentActor','_onHoverBeginDelegate','getPosition','isVector3','isVisible','multiplyMatrices','compose','min','push','getComponentById','rotation','9985810nJaVLr','820939NhndHH','getScale','userData','getCenter','addChildComponent','clone','SceneComponent','childrenComponents','946283tzMhly','invert','onAddedToWorld','getWorldRotation','add','matrixAutoUpdate','removeChildComponent','1083NyaROR','_onClickDelegate','scale','threeObject','getBoundsBottomCenterPositionWS','setFromQuaternion','onClickDelegate','702ACFSZI','onDoubleClicked','quaternion','getBounds','39966pHVkTr','error','worldToLocal','1177479ibfIZe','newComponent\x20threeObject\x20is\x20invalid','targetComponent\x20threeObject\x20is\x20invalid','getBoundsTopCenterPositionWS','isQuaternion','visible','app','forEach','KeepWorld','onHoverEndDelegate','destroy','isHoverEnabled','world','isClickEnabled','_onDoubleClickDelegate','getWorldDirection','setVisible','LYObject','updateMatrixWorld','getWorldForwardDirection','number','matrix','onHorveringEnd','getWorldPosition','destroyObject','2503948IoqUxh','getWorldQuaternion','onHorveringBegin','matrixWorld','_parentActor','parentComponent','getBoundsCenterPositionWS','setQuaternion\x20failed,param\x20is\x20invalid','setWorldMatrix','set','broadcast','detachFromParentComponent'];_0x3773=function(){return _0x19916d;};return _0x3773();}const _0x1cddba=_0x16fa;(function(_0x236fab,_0x17de1c){const _0x12921a=_0x16fa,_0x351bfb=_0x236fab();while(!![]){try{const _0x3855e9=parseInt(_0x12921a(0x130))/0x1+parseInt(_0x12921a(0x13e))/0x2*(parseInt(_0x12921a(0x137))/0x3)+parseInt(_0x12921a(0x15e))/0x4+parseInt(_0x12921a(0x11b))/0x5*(-parseInt(_0x12921a(0x142))/0x6)+parseInt(_0x12921a(0x128))/0x7*(parseInt(_0x12921a(0x17f))/0x8)+parseInt(_0x12921a(0x145))/0x9+parseInt(_0x12921a(0x127))/0xa*(-parseInt(_0x12921a(0x183))/0xb);if(_0x3855e9===_0x17de1c)break;else _0x351bfb['push'](_0x351bfb['shift']());}catch(_0x56feec){_0x351bfb['push'](_0x351bfb['shift']());}}}(_0x3773,0x87ace));function _0x16fa(_0x9ba0a2,_0x305e8f){_0x9ba0a2=_0x9ba0a2-0x116;const _0x3773d4=_0x3773();let _0x16fa87=_0x3773d4[_0x9ba0a2];return _0x16fa87;}class SceneComponent extends Component{set[_0x1cddba(0x11c)](_0x1982f1){const _0x7ae172=_0x1cddba;this[_0x7ae172(0x12f)]['forEach'](_0x5024b9=>{const _0x135e05=_0x7ae172;_0x5024b9[_0x135e05(0x11c)]=_0x1982f1;}),this[_0x7ae172(0x162)]=_0x1982f1;}get[_0x1cddba(0x11c)](){const _0x2922ca=_0x1cddba;return this[_0x2922ca(0x162)];}get[_0x1cddba(0x188)](){const _0x3c2ec3=_0x1cddba;return this[_0x3c2ec3(0x11d)];}get[_0x1cddba(0x14e)](){const _0x5e01de=_0x1cddba;return this[_0x5e01de(0x16f)];}get[_0x1cddba(0x13d)](){return this['_onClickDelegate'];}get[_0x1cddba(0x17c)](){return this['_onDoubleClickDelegate'];}get[_0x1cddba(0x151)](){const _0x4d1c32=_0x1cddba;return this['app'][_0x4d1c32(0x151)];}constructor(_0x452632,_0xad038c){const _0x51b698=_0x1cddba;super(_0xad038c),this['bCanHover']=![],this[_0x51b698(0x16d)]=![],this['_onHoverBeginDelegate']=new Delegate(),this['_onHoverEndDelegate']=new Delegate(),this[_0x51b698(0x138)]=new Delegate(),this[_0x51b698(0x153)]=new Delegate(),this[_0x51b698(0x14b)]=_0x452632,this['name']=_0x51b698(0x12e);}[_0x1cddba(0x118)](){return new webgpu.Object3D();}[_0x1cddba(0x179)](_0x27c316){const _0x41c8f1=_0x1cddba;super['tick'](_0x27c316),this[_0x41c8f1(0x12f)][_0x41c8f1(0x14c)](_0x5171ea=>{const _0x4d4dfd=_0x41c8f1;_0x5171ea[_0x4d4dfd(0x179)](_0x27c316);});}get[_0x1cddba(0x120)](){const _0xeeca93=_0x1cddba;if(!this[_0xeeca93(0x174)])return ![];return this[_0xeeca93(0x174)][_0xeeca93(0x14a)];}[_0x1cddba(0x155)](_0x4f1251){const _0x3067b1=_0x1cddba;if(!this['obj'])throw Error(_0x3067b1(0x178));this[_0x3067b1(0x174)][_0x3067b1(0x14a)]=_0x4f1251,this[_0x3067b1(0x151)]&&this[_0x3067b1(0x151)][_0x3067b1(0x187)][_0x3067b1(0x185)]();}['setLayers'](_0x217f42){const _0x4747e3=_0x1cddba;if(!this[_0x4747e3(0x174)])throw Error(_0x4747e3(0x178));this[_0x4747e3(0x174)][_0x4747e3(0x117)][_0x4747e3(0x167)](_0x217f42);let _0x9585aa=this[_0x4747e3(0x12f)];_0x9585aa[_0x4747e3(0x14c)](_0x57abd9=>{_0x57abd9['setLayers'](_0x217f42);});}[_0x1cddba(0x125)](_0x112c99,_0xfd2f76=!![]){const _0x23e74c=_0x1cddba;if(this[_0x23e74c(0x119)]===_0x112c99)return this;if(_0xfd2f76){let _0x3a4949=this['childrenComponents'];for(let _0x4aca91=0x0;_0x4aca91<_0x3a4949[_0x23e74c(0x11a)];++_0x4aca91){let _0x357d8b=_0x3a4949[_0x4aca91][_0x23e74c(0x125)](_0x112c99,_0xfd2f76);if(_0x357d8b)return _0x357d8b;}}else {let _0x132f64=this[_0x23e74c(0x12f)];for(let _0x45fdcb=0x0;_0x45fdcb<_0x132f64[_0x23e74c(0x11a)];++_0x45fdcb){let _0x5983ac=_0x132f64[_0x45fdcb];if(_0x5983ac[_0x23e74c(0x119)]===_0x112c99)return _0x5983ac;}}return null;}[_0x1cddba(0x164)](){const _0x5d7a88=_0x1cddba;let _0x1f9632=new webgpu.Vector3();return this[_0x5d7a88(0x141)]()['getCenter'](_0x1f9632),this[_0x5d7a88(0x15c)]();}[_0x1cddba(0x148)](){const _0x34e079=_0x1cddba;let _0x4cfb26=new webgpu.Vector3(),_0x1effb7=this[_0x34e079(0x141)]();return _0x1effb7[_0x34e079(0x12b)](_0x4cfb26),_0x4cfb26['y']=_0x1effb7[_0x34e079(0x16b)]['y'],_0x4cfb26;}[_0x1cddba(0x13b)](){const _0x361aed=_0x1cddba;let _0x409363=new webgpu.Vector3(),_0x3c2d04=this[_0x361aed(0x141)]();return _0x3c2d04[_0x361aed(0x12b)](_0x409363),_0x409363['y']=_0x3c2d04[_0x361aed(0x123)]['y'],_0x409363;}['getBounds'](){const _0x47f791=_0x1cddba;if(!this[_0x47f791(0x174)])throw Error(_0x47f791(0x178));let _0x5ddb73=new webgpu.Box3();return _0x5ddb73[_0x47f791(0x16a)](this[_0x47f791(0x174)],![]),_0x5ddb73['isEmpty']()&&(_0x5ddb73[_0x47f791(0x123)]=_0x5ddb73[_0x47f791(0x16b)]=this[_0x47f791(0x15c)]()),_0x5ddb73;}get[_0x1cddba(0x163)](){const _0x8a9e92=_0x1cddba;var _0x8c7684,_0x39699b;if(!this['obj'])throw Error(_0x8a9e92(0x178));let _0x1595bc=(_0x39699b=(_0x8c7684=this[_0x8a9e92(0x174)])===null||_0x8c7684===void 0?void 0:_0x8c7684[_0x8a9e92(0x170)])===null||_0x39699b===void 0?void 0:_0x39699b['userData'][_0x8a9e92(0x156)];if(!_0x1595bc)return null;if(!(_0x1595bc instanceof SceneComponent))return null;if(_0x1595bc[_0x8a9e92(0x11c)]!==this[_0x8a9e92(0x11c)])return null;return _0x1595bc;}get[_0x1cddba(0x12f)](){const _0x403209=_0x1cddba;if(!this[_0x403209(0x174)])throw Error(_0x403209(0x178));let _0x291d93=[];for(let _0x302db4=0x0;_0x302db4<this[_0x403209(0x174)]['children'][_0x403209(0x11a)];++_0x302db4){if(!this[_0x403209(0x174)]['children'][_0x302db4][_0x403209(0x12a)]['LYObject'])continue;this['obj'][_0x403209(0x177)][_0x302db4][_0x403209(0x12a)][_0x403209(0x156)][_0x403209(0x11c)]===this[_0x403209(0x11c)]&&_0x291d93['push'](this['obj'][_0x403209(0x177)][_0x302db4]['userData'][_0x403209(0x156)]);}return _0x291d93;}[_0x1cddba(0x132)](_0x492ffa){const _0x290ec8=_0x1cddba;let _0x5503d1=this[_0x290ec8(0x12f)];for(let _0x576f52=0x0;_0x576f52<_0x5503d1[_0x290ec8(0x11a)];++_0x576f52){_0x5503d1[_0x576f52]['onAddedToWorld'](_0x492ffa);}}[_0x1cddba(0x14f)](){const _0x20ad15=_0x1cddba;this['isHoverEnabled']=![],this[_0x20ad15(0x152)]=![],this['detachFromParentActor'](),this[_0x20ad15(0x169)](),this['destroyChildren'](),this[_0x20ad15(0x15d)](),this[_0x20ad15(0x151)]&&this['world'][_0x20ad15(0x187)][_0x20ad15(0x185)]();}[_0x1cddba(0x15d)](){const _0x450196=_0x1cddba;if(!this[_0x450196(0x174)])return;this[_0x450196(0x174)][_0x450196(0x170)]&&this[_0x450196(0x174)]['parent'][_0x450196(0x181)](this[_0x450196(0x174)]),super['destroyObject']();}[_0x1cddba(0x11e)](){const _0x3fea45=_0x1cddba;if(!this['obj'])throw Error(_0x3fea45(0x178));if(this['obj']['matrixAutoUpdate'])return this[_0x3fea45(0x174)][_0x3fea45(0x17d)][_0x3fea45(0x12d)]();else {const _0x207aa3=new webgpu.Vector3(),_0x1791d1=new webgpu.Quaternion(),_0x2f60a3=new webgpu.Vector3();return this[_0x3fea45(0x174)][_0x3fea45(0x15a)]['decompose'](_0x207aa3,_0x1791d1,_0x2f60a3),_0x207aa3;}}[_0x1cddba(0x16e)](..._0x5a85da){const _0x23d7b7=_0x1cddba;var _0x2015d0;if(!this[_0x23d7b7(0x174)])throw Error(_0x23d7b7(0x178));let _0x4a4986=null;if(_0x5a85da[_0x23d7b7(0x11a)]===0x1&&((_0x2015d0=_0x5a85da[0x0])===null||_0x2015d0===void 0?void 0:_0x2015d0[_0x23d7b7(0x11f)])){const _0x48b7d5=_0x5a85da[0x0];_0x4a4986=new webgpu.Vector3(_0x48b7d5['x'],_0x48b7d5['y'],_0x48b7d5['z']);}else _0x5a85da[_0x23d7b7(0x11a)]===0x3&&typeof _0x5a85da[0x0]===_0x23d7b7(0x159)&&typeof _0x5a85da[0x1]===_0x23d7b7(0x159)&&typeof _0x5a85da[0x2]===_0x23d7b7(0x159)&&(_0x4a4986=new webgpu.Vector3(_0x5a85da[0x0],_0x5a85da[0x1],_0x5a85da[0x2]));if(!_0x4a4986)return;this[_0x23d7b7(0x174)][_0x23d7b7(0x17d)]['copy'](_0x4a4986),!this[_0x23d7b7(0x174)][_0x23d7b7(0x135)]&&this[_0x23d7b7(0x174)][_0x23d7b7(0x15a)][_0x23d7b7(0x16e)](_0x4a4986['x'],_0x4a4986['y'],_0x4a4986['z']),this['obj'][_0x23d7b7(0x116)](),this[_0x23d7b7(0x174)]['updateMatrixWorld'](!![]),this[_0x23d7b7(0x151)]&&this[_0x23d7b7(0x151)][_0x23d7b7(0x187)][_0x23d7b7(0x185)]();}[_0x1cddba(0x17a)](){const _0x5d86dd=_0x1cddba;if(!this['obj'])throw Error(_0x5d86dd(0x178));if(this[_0x5d86dd(0x174)]['matrixAutoUpdate'])return this[_0x5d86dd(0x174)]['rotation'][_0x5d86dd(0x12d)]();else {const _0x3d0d30=new webgpu.Vector3(),_0xa4c659=new webgpu.Quaternion(),_0x4101f8=new webgpu.Vector3();return this[_0x5d86dd(0x174)][_0x5d86dd(0x15a)][_0x5d86dd(0x186)](_0x3d0d30,_0xa4c659,_0x4101f8),new webgpu.Euler()[_0x5d86dd(0x13c)](_0xa4c659);}}[_0x1cddba(0x172)](..._0x25c8d3){const _0x2f3805=_0x1cddba;var _0x29c63f;if(!this['obj'])throw Error(_0x2f3805(0x178));let _0x16bae9=null;if((_0x29c63f=_0x25c8d3[0x0])===null||_0x29c63f===void 0?void 0:_0x29c63f['isEuler']){const _0x2bde12=_0x25c8d3[0x0];_0x16bae9=new webgpu.Euler(_0x2bde12['x'],_0x2bde12['y'],_0x2bde12['z'],_0x2bde12['order']);}else typeof _0x25c8d3[0x0]===_0x2f3805(0x159)&&typeof _0x25c8d3[0x1]===_0x2f3805(0x159)&&typeof _0x25c8d3[0x2]===_0x2f3805(0x159)&&(_0x16bae9=new webgpu.Euler(_0x25c8d3[0x0],_0x25c8d3[0x1],_0x25c8d3[0x2]));if(!_0x16bae9)return;this[_0x2f3805(0x174)][_0x2f3805(0x126)][_0x2f3805(0x180)](_0x16bae9),this[_0x2f3805(0x174)][_0x2f3805(0x116)](),this[_0x2f3805(0x174)][_0x2f3805(0x157)](!![]),this[_0x2f3805(0x151)]&&this[_0x2f3805(0x151)]['viewport']['markRenderStateDirty']();}['getQuaternion'](){const _0x37d840=_0x1cddba;if(!this[_0x37d840(0x174)])throw Error(_0x37d840(0x178));if(this['obj'][_0x37d840(0x135)])return this[_0x37d840(0x174)][_0x37d840(0x140)]['clone']();else {const _0x59378f=new webgpu.Vector3(),_0x14c11d=new webgpu.Quaternion(),_0x1f622b=new webgpu.Vector3();return this[_0x37d840(0x174)][_0x37d840(0x15a)][_0x37d840(0x186)](_0x59378f,_0x14c11d,_0x1f622b),_0x14c11d;}}['setQuaternion'](..._0x57cbdc){const _0x1dc98f=_0x1cddba;var _0x489c3f;if(!this['obj'])throw Error(_0x1dc98f(0x178));let _0x17af68=null;if((_0x489c3f=_0x57cbdc[0x0])===null||_0x489c3f===void 0?void 0:_0x489c3f[_0x1dc98f(0x149)]){const _0x4b3546=_0x57cbdc[0x0];_0x17af68=new webgpu.Quaternion(_0x4b3546['x'],_0x4b3546['y'],_0x4b3546['z'],_0x4b3546['w']);}else typeof _0x57cbdc[0x0]===_0x1dc98f(0x159)&&typeof _0x57cbdc[0x1]===_0x1dc98f(0x159)&&typeof _0x57cbdc[0x2]==='number'&&typeof _0x57cbdc[0x3]===_0x1dc98f(0x159)&&(_0x17af68=new webgpu.Quaternion(_0x57cbdc[0x0],_0x57cbdc[0x1],_0x57cbdc[0x2],_0x57cbdc[0x3]));if(!_0x17af68){console[_0x1dc98f(0x143)](_0x1dc98f(0x165),_0x57cbdc);return;}this[_0x1dc98f(0x174)]['quaternion'][_0x1dc98f(0x180)](_0x17af68);if(!this[_0x1dc98f(0x174)]['matrixAutoUpdate']){const _0xc049cc=new webgpu.Vector3(),_0x3d8254=new webgpu.Quaternion(),_0x454bbb=new webgpu.Vector3();this[_0x1dc98f(0x174)]['matrix'][_0x1dc98f(0x186)](_0xc049cc,_0x3d8254,_0x454bbb),this[_0x1dc98f(0x174)][_0x1dc98f(0x15a)][_0x1dc98f(0x122)](_0xc049cc,_0x17af68,_0x454bbb);}this[_0x1dc98f(0x151)]&&this['world'][_0x1dc98f(0x187)]['markRenderStateDirty'](),this['obj']['updateMatrix'](),this[_0x1dc98f(0x174)][_0x1dc98f(0x157)](!![]);}[_0x1cddba(0x129)](){const _0x5c2ee6=_0x1cddba;if(!this['obj'])throw Error(_0x5c2ee6(0x178));if(this[_0x5c2ee6(0x174)][_0x5c2ee6(0x135)])return this[_0x5c2ee6(0x174)][_0x5c2ee6(0x139)][_0x5c2ee6(0x12d)]();else {const _0xa07c47=new webgpu.Vector3(),_0x75b33a=new webgpu.Quaternion(),_0x583981=new webgpu.Vector3();return this[_0x5c2ee6(0x174)][_0x5c2ee6(0x15a)][_0x5c2ee6(0x186)](_0xa07c47,_0x75b33a,_0x583981),_0x583981;}}['setScale'](..._0x9c1808){const _0x4cdfd0=_0x1cddba;var _0x1ca530;if(!this['obj'])throw Error(_0x4cdfd0(0x178));let _0x9f8c6f=null;if((_0x1ca530=_0x9c1808[0x0])===null||_0x1ca530===void 0?void 0:_0x1ca530[_0x4cdfd0(0x11f)]){const _0x3973c0=_0x9c1808[0x0];_0x9f8c6f=new webgpu.Vector3(_0x3973c0['x'],_0x3973c0['y'],_0x3973c0['z']);}else typeof _0x9c1808[0x0]===_0x4cdfd0(0x159)&&typeof _0x9c1808[0x1]===_0x4cdfd0(0x159)&&typeof _0x9c1808[0x2]===_0x4cdfd0(0x159)&&(_0x9f8c6f=new webgpu.Vector3(_0x9c1808[0x0],_0x9c1808[0x1],_0x9c1808[0x2]));if(!_0x9f8c6f)return;this[_0x4cdfd0(0x174)][_0x4cdfd0(0x139)][_0x4cdfd0(0x180)](_0x9f8c6f),this[_0x4cdfd0(0x174)]['updateMatrix'](),this[_0x4cdfd0(0x174)][_0x4cdfd0(0x157)](!![]),this['world']&&this[_0x4cdfd0(0x151)][_0x4cdfd0(0x187)][_0x4cdfd0(0x185)]();}[_0x1cddba(0x175)](){const _0x5d7782=_0x1cddba;if(!this['obj'])throw Error(_0x5d7782(0x178));return this[_0x5d7782(0x174)][_0x5d7782(0x15a)];}[_0x1cddba(0x182)](_0x328963){const _0x41f272=_0x1cddba;var _0x1f9c85;if(!this[_0x41f272(0x174)])throw Error(_0x41f272(0x178));_0x328963[_0x41f272(0x186)](this[_0x41f272(0x174)][_0x41f272(0x17d)],this[_0x41f272(0x174)][_0x41f272(0x140)],this[_0x41f272(0x174)][_0x41f272(0x139)]),this[_0x41f272(0x174)]['updateMatrix'](),this['obj'][_0x41f272(0x157)](!![]),(_0x1f9c85=this['world'])===null||_0x1f9c85===void 0?void 0:_0x1f9c85[_0x41f272(0x187)]['markRenderStateDirty']();}[_0x1cddba(0x15c)](){const _0x104713=_0x1cddba;if(!this[_0x104713(0x174)])throw Error(_0x104713(0x178));let _0x286caa=new webgpu.Vector3();return this['obj']['getWorldPosition'](_0x286caa),_0x286caa;}[_0x1cddba(0x133)](){const _0x371f92=_0x1cddba;if(!this[_0x371f92(0x174)])throw Error(_0x371f92(0x178));let _0x480e12=new webgpu.Quaternion();return this[_0x371f92(0x174)][_0x371f92(0x15f)](_0x480e12),new webgpu.Euler()[_0x371f92(0x13c)](_0x480e12);}[_0x1cddba(0x15f)](){const _0x45bfcd=_0x1cddba;if(!this[_0x45bfcd(0x174)])throw Error(_0x45bfcd(0x178));let _0x213eb9=new webgpu.Quaternion();return this[_0x45bfcd(0x174)][_0x45bfcd(0x15f)](_0x213eb9),_0x213eb9;}[_0x1cddba(0x173)](){const _0x3449fe=_0x1cddba;if(!this[_0x3449fe(0x174)])throw Error(_0x3449fe(0x178));let _0x3cf529=new webgpu.Vector3();return this[_0x3449fe(0x174)][_0x3449fe(0x173)](_0x3cf529),_0x3cf529;}['getWorldMatrix'](){const _0x3ef6d8=_0x1cddba;if(!this[_0x3ef6d8(0x174)])throw Error('threeObject\x20is\x20invalid');return this[_0x3ef6d8(0x174)]['updateMatrixWorld'](!![]),this[_0x3ef6d8(0x174)][_0x3ef6d8(0x161)][_0x3ef6d8(0x12d)]();}[_0x1cddba(0x166)](_0x2ccd42){const _0x56dc4b=_0x1cddba;if(!this[_0x56dc4b(0x174)])throw Error(_0x56dc4b(0x178));if(this['obj'][_0x56dc4b(0x170)]){this[_0x56dc4b(0x174)][_0x56dc4b(0x170)][_0x56dc4b(0x157)](!![]);const _0x542d56=this[_0x56dc4b(0x174)][_0x56dc4b(0x170)][_0x56dc4b(0x161)]['clone']()[_0x56dc4b(0x131)](),_0x487038=new webgpu.Matrix4()[_0x56dc4b(0x121)](_0x542d56,_0x2ccd42);this[_0x56dc4b(0x182)](_0x487038);}else this['setMatrix'](_0x2ccd42);this[_0x56dc4b(0x174)][_0x56dc4b(0x157)](!![]),this[_0x56dc4b(0x151)]&&this[_0x56dc4b(0x151)][_0x56dc4b(0x187)][_0x56dc4b(0x185)]();}[_0x1cddba(0x158)](){const _0x4038a7=_0x1cddba;if(!this[_0x4038a7(0x174)])throw Error(_0x4038a7(0x178));let _0x3a810a=new webgpu.Vector3();return this[_0x4038a7(0x174)][_0x4038a7(0x154)](_0x3a810a),_0x3a810a;}['getWorldUpDirection'](){const _0x50358a=_0x1cddba;if(!this[_0x50358a(0x174)])throw Error('threeObject\x20is\x20invalid');let _0x57d7b0=new webgpu.Vector3(0x0,0x1,0x0);return _0x57d7b0[_0x50358a(0x184)](this['getWorldQuaternion']()),_0x57d7b0;}['getWorldRightDirection'](){const _0x7b6107=_0x1cddba;if(!this[_0x7b6107(0x174)])throw Error(_0x7b6107(0x178));let _0xec5acd=new webgpu.Vector3(0x1,0x0,0x0);return _0xec5acd[_0x7b6107(0x184)](this['getWorldQuaternion']()),_0xec5acd;}[_0x1cddba(0x144)](_0x50004e){const _0x1c141d=_0x1cddba;if(!this[_0x1c141d(0x174)])throw Error(_0x1c141d(0x178));return this[_0x1c141d(0x174)][_0x1c141d(0x144)](_0x50004e);}[_0x1cddba(0x176)](_0x5b5b74){const _0x40a588=_0x1cddba;if(!this[_0x40a588(0x174)])throw Error(_0x40a588(0x178));return this[_0x40a588(0x174)][_0x40a588(0x176)](_0x5b5b74);}['attachComponent'](_0x110f64){const _0x6f4609=_0x1cddba;if(!this['obj'])throw Error(_0x6f4609(0x178));if(!_0x110f64[_0x6f4609(0x13a)])throw Error(_0x6f4609(0x146));this['obj'][_0x6f4609(0x134)](_0x110f64[_0x6f4609(0x13a)]),this[_0x6f4609(0x151)]&&_0x110f64[_0x6f4609(0x132)](this['world']);}['detachComponent'](_0x296153){const _0x5bb72d=_0x1cddba;if(!this[_0x5bb72d(0x174)])throw Error(_0x5bb72d(0x178));if(!_0x296153[_0x5bb72d(0x13a)])throw Error(_0x5bb72d(0x16c));this['obj'][_0x5bb72d(0x181)](_0x296153[_0x5bb72d(0x13a)]);}[_0x1cddba(0x12c)](_0x58b634,_0x5a376f=exports.AttachmentRules['KeepRelative']){const _0x1327b7=_0x1cddba;if(!this[_0x1327b7(0x174)])throw Error(_0x1327b7(0x178));if(!_0x58b634[_0x1327b7(0x13a)])throw Error(_0x1327b7(0x146));_0x58b634['parentActor']=this[_0x1327b7(0x11c)];if(_0x5a376f===exports.AttachmentRules[_0x1327b7(0x14d)]){let _0x5d5c08=_0x58b634[_0x1327b7(0x171)]();this[_0x1327b7(0x174)][_0x1327b7(0x134)](_0x58b634[_0x1327b7(0x13a)]),_0x58b634[_0x1327b7(0x166)](_0x5d5c08);}else this[_0x1327b7(0x174)]['add'](_0x58b634['threeObject']);this[_0x1327b7(0x151)]&&_0x58b634[_0x1327b7(0x132)](this[_0x1327b7(0x151)]),this['obj'][_0x1327b7(0x116)](),this['obj'][_0x1327b7(0x157)](!![]);}[_0x1cddba(0x136)](_0x86f6c7){const _0x38fe23=_0x1cddba;if(!this[_0x38fe23(0x174)])throw Error(_0x38fe23(0x178));if(!_0x86f6c7[_0x38fe23(0x13a)])throw Error(_0x38fe23(0x147));this[_0x38fe23(0x174)][_0x38fe23(0x181)](_0x86f6c7[_0x38fe23(0x13a)]);}[_0x1cddba(0x169)](){const _0xcbe4af=_0x1cddba;this['parentComponent']&&this[_0xcbe4af(0x163)][_0xcbe4af(0x136)](this);}[_0x1cddba(0x17e)](){const _0xd5ab65=_0x1cddba;this[_0xd5ab65(0x11c)]&&(this['parentActor']=null);}['destroyChildren'](){const _0x579475=_0x1cddba;var _0x597d1c;if(!this[_0x579475(0x174)])return;let _0x7d2c3b=[];for(let _0x5ba1ee=0x0;_0x5ba1ee<this[_0x579475(0x174)][_0x579475(0x177)][_0x579475(0x11a)];++_0x5ba1ee){let _0x8162a7=(_0x597d1c=this[_0x579475(0x174)][_0x579475(0x177)][_0x5ba1ee][_0x579475(0x12a)])===null||_0x597d1c===void 0?void 0:_0x597d1c[_0x579475(0x156)];_0x8162a7&&_0x7d2c3b[_0x579475(0x124)](_0x8162a7);}_0x7d2c3b[_0x579475(0x14c)](_0x184a3e=>{const _0x37d3b8=_0x579475;_0x184a3e[_0x37d3b8(0x14f)]();}),_0x7d2c3b=[];}set[_0x1cddba(0x150)](_0x43191c){const _0x141576=_0x1cddba;this[_0x141576(0x189)]=_0x43191c;let _0x218eda=this[_0x141576(0x12f)];for(let _0x9f1a7d=0x0;_0x9f1a7d<_0x218eda['length'];++_0x9f1a7d){_0x218eda[_0x9f1a7d][_0x141576(0x150)]=this[_0x141576(0x189)];}}get[_0x1cddba(0x150)](){return this['bCanHover'];}set[_0x1cddba(0x152)](_0x1e1ddc){const _0x4a3eae=_0x1cddba;this['bCanClick']=_0x1e1ddc;let _0x2ef8ee=this['childrenComponents'];for(let _0x433dd3=0x0;_0x433dd3<_0x2ef8ee['length'];++_0x433dd3){_0x2ef8ee[_0x433dd3][_0x4a3eae(0x152)]=this[_0x4a3eae(0x16d)];}}get[_0x1cddba(0x152)](){return this['bCanClick'];}[_0x1cddba(0x160)](){const _0x523986=_0x1cddba;this['_onHoverBeginDelegate'][_0x523986(0x168)]();}[_0x1cddba(0x15b)](){const _0x5bb9d3=_0x1cddba;this[_0x5bb9d3(0x16f)][_0x5bb9d3(0x168)]();}[_0x1cddba(0x17b)](){const _0x444d03=_0x1cddba;this[_0x444d03(0x138)][_0x444d03(0x168)]();}[_0x1cddba(0x13f)](){const _0x24491d=_0x1cddba;this[_0x24491d(0x153)][_0x24491d(0x168)]();}}
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 _0x28d22b=_0x3266;(function(_0x3a600a,_0x2598b7){const _0x2fda07=_0x3266,_0x24ea0=_0x3a600a();while(!![]){try{const _0xc0c201=-parseInt(_0x2fda07(0x132))/0x1*(parseInt(_0x2fda07(0x14d))/0x2)+-parseInt(_0x2fda07(0x155))/0x3*(parseInt(_0x2fda07(0x130))/0x4)+parseInt(_0x2fda07(0x136))/0x5+-parseInt(_0x2fda07(0x152))/0x6*(parseInt(_0x2fda07(0x147))/0x7)+parseInt(_0x2fda07(0x138))/0x8*(parseInt(_0x2fda07(0x141))/0x9)+parseInt(_0x2fda07(0x131))/0xa+parseInt(_0x2fda07(0x14f))/0xb;if(_0xc0c201===_0x2598b7)break;else _0x24ea0['push'](_0x24ea0['shift']());}catch(_0xb853f3){_0x24ea0['push'](_0x24ea0['shift']());}}}(_0x2249,0x7c691));function _0x3266(_0x1ed344,_0x181ae4){_0x1ed344=_0x1ed344-0x12d;const _0x224988=_0x2249();let _0x326651=_0x224988[_0x1ed344];return _0x326651;}function _0x2249(){const _0x3308b2=['release','geometryPtr','15306aomKBB','max','threeObject\x20is\x20null','6bZYJiN','threeObject','materialPtr','castShadow','material','1091848siFkEf','9092420DIJtka','1909ZLDkZF','min','createDefaultObject','forEach','282995ekirVU','geometryPtr\x20is\x20null','2703392deuqfU','getValue','obj','userData','_materialPtr','isArray','geometry','app','getCenter','18lzdldn','LYObject','push','assetManager','receiveShadow','getBoundsBottomCenterPosition','1673oeiLio','addGeometryAsset','length','getBounds','_geometryPtr','getBoundsCenterPosition','50ILamaK','getBoundsTopCenterPosition','783574rPutil'];_0x2249=function(){return _0x3308b2;};return _0x2249();}class MeshComponent extends SceneComponent{get[_0x28d22b(0x156)](){const _0x5eb2b5=_0x28d22b;if(!this[_0x5eb2b5(0x13a)])throw new Error(_0x5eb2b5(0x154));return this['obj'];}set[_0x28d22b(0x156)](_0xd28413){const _0x4f1e33=_0x28d22b;this[_0x4f1e33(0x13a)]=_0xd28413,this['obj']&&(this['obj'][_0x4f1e33(0x13b)][_0x4f1e33(0x142)]=this);}get['geometry'](){const _0x3dfd8c=_0x28d22b;if(!this[_0x3dfd8c(0x14b)])throw new Error(_0x3dfd8c(0x137));return this[_0x3dfd8c(0x14b)][_0x3dfd8c(0x139)]();}set[_0x28d22b(0x13e)](_0x1f7b43){const _0x2f9fd7=_0x28d22b;let _0x568168=this['app'][_0x2f9fd7(0x144)][_0x2f9fd7(0x148)](_0x1f7b43);this['geometryPtr']=_0x568168;}get[_0x28d22b(0x151)](){const _0x39a448=_0x28d22b;if(!this[_0x39a448(0x14b)])throw new Error(_0x39a448(0x137));return this[_0x39a448(0x14b)];}set['geometryPtr'](_0x182bcf){const _0x2b94e1=_0x28d22b;this[_0x2b94e1(0x14b)]&&(this[_0x2b94e1(0x14b)][_0x2b94e1(0x150)](),this['_geometryPtr']=null);this['_geometryPtr']=_0x182bcf;let _0x57c126=_0x182bcf[_0x2b94e1(0x139)]();this[_0x2b94e1(0x156)]&&_0x57c126&&(this[_0x2b94e1(0x156)]['geometry']=_0x57c126);}get[_0x28d22b(0x12f)](){const _0x173b36=_0x28d22b;let _0x1b348a=[];return this[_0x173b36(0x13c)][_0x173b36(0x135)](_0x4a2065=>{const _0x1e83ef=_0x173b36;let _0x41ab3d=_0x4a2065['getValue']();if(_0x41ab3d)_0x1b348a[_0x1e83ef(0x143)](_0x41ab3d);}),_0x1b348a[_0x173b36(0x149)]>0x1?_0x1b348a:_0x1b348a[0x0];}get[_0x28d22b(0x12d)](){const _0x3a950b=_0x28d22b;return this[_0x3a950b(0x12d)];}set['material'](_0x1eae7e){const _0x410760=_0x28d22b;let _0x7dd799=Array['isArray'](_0x1eae7e)?_0x1eae7e:[_0x1eae7e],_0x504ea2=[];_0x7dd799['forEach'](_0x5c8f45=>{const _0x396018=_0x3266;let _0x21ca37=this[_0x396018(0x13f)]['assetManager']['addMaterialAsset'](_0x5c8f45);if(_0x21ca37)_0x504ea2['push'](_0x21ca37);}),this[_0x410760(0x12d)]=_0x504ea2;}set[_0x28d22b(0x12d)](_0x39d4ed){const _0x3344e7=_0x28d22b;this['_materialPtr']&&(this['_materialPtr'][_0x3344e7(0x135)](_0x2680b9=>{const _0x1d6303=_0x3344e7;_0x2680b9[_0x1d6303(0x150)]();}),this[_0x3344e7(0x13c)]=[]);let _0x2ef155=Array['isArray'](_0x39d4ed)?_0x39d4ed:[_0x39d4ed],_0x3cd397=[];_0x2ef155['forEach'](_0x5bf95d=>{const _0x138660=_0x3344e7;let _0x59ae12=_0x5bf95d['getValue']();if(_0x59ae12)_0x3cd397[_0x138660(0x143)](_0x59ae12);_0x5bf95d['addRef']();});if(this[_0x3344e7(0x156)]){if(_0x3cd397[_0x3344e7(0x149)]>0x0)this[_0x3344e7(0x156)][_0x3344e7(0x12f)]=Array['isArray'](_0x39d4ed)?_0x3cd397[0x0]:_0x3cd397;}this['_materialPtr']=_0x2ef155;}constructor(_0x228e44,_0x26e019,_0x3c405e,_0x2d3d62){const _0x386078=_0x28d22b;let _0x5f1829=[],_0x136b43=Array[_0x386078(0x13d)](_0x3c405e)?_0x3c405e:[_0x3c405e];_0x136b43[_0x386078(0x135)](_0x7167b4=>{const _0x51efab=_0x386078;let _0x5a40e0=_0x228e44[_0x51efab(0x144)]['addMaterialAsset'](_0x7167b4);if(_0x5a40e0)_0x5f1829['push'](_0x5a40e0);}),super(_0x228e44,_0x2d3d62),this['_geometryPtr']=_0x228e44[_0x386078(0x144)]['addGeometryAsset'](_0x26e019),this[_0x386078(0x13c)]=_0x5f1829,_0x5f1829[_0x386078(0x135)](_0xda96c0=>{_0xda96c0['addRef']();}),this[_0x386078(0x156)][_0x386078(0x12f)]=_0x3c405e,this['threeObject']['geometry']=_0x26e019;}[_0x28d22b(0x134)](){return new webgpu.Mesh();}set[_0x28d22b(0x12e)](_0x60f8d6){const _0x31dabd=_0x28d22b;if(this[_0x31dabd(0x156)])this[_0x31dabd(0x156)][_0x31dabd(0x12e)]=_0x60f8d6;}get[_0x28d22b(0x12e)](){const _0x578bf0=_0x28d22b;return this['threeObject']?this[_0x578bf0(0x156)][_0x578bf0(0x12e)]:![];}set[_0x28d22b(0x145)](_0x1f1074){const _0x7da347=_0x28d22b;if(!this[_0x7da347(0x156)])return;this['threeObject']['receiveShadow']=_0x1f1074;}get['receiveShadow'](){const _0x3e60d6=_0x28d22b;return this[_0x3e60d6(0x156)]?this['threeObject']['receiveShadow']:![];}[_0x28d22b(0x14c)](){const _0x59ae99=_0x28d22b;let _0x2f17de=new webgpu.Vector3();return this[_0x59ae99(0x14a)]()['getCenter'](_0x2f17de),_0x2f17de;}[_0x28d22b(0x14e)](){const _0x8011d9=_0x28d22b;let _0xbd8680=new webgpu.Vector3(),_0x4c88e1=this[_0x8011d9(0x14a)]();return _0x4c88e1['getCenter'](_0xbd8680),_0xbd8680['y']=_0x4c88e1[_0x8011d9(0x153)]['y'],_0xbd8680;}[_0x28d22b(0x146)](){const _0x5a225f=_0x28d22b;let _0x35fb91=new webgpu.Vector3(),_0x3268ec=this[_0x5a225f(0x14a)]();return _0x3268ec[_0x5a225f(0x140)](_0x35fb91),_0x35fb91['y']=_0x3268ec[_0x5a225f(0x133)]['y'],_0x35fb91;}['destroyObject'](){const _0x3e2de3=_0x28d22b;var _0x23acd7;this[_0x3e2de3(0x156)]&&this['threeObject']['removeFromParent']();(_0x23acd7=this[_0x3e2de3(0x14b)])===null||_0x23acd7===void 0?void 0:_0x23acd7[_0x3e2de3(0x150)]();let _0x271787=Array[_0x3e2de3(0x13d)](this['_materialPtr'])?this['_materialPtr']:[this[_0x3e2de3(0x13c)]];_0x271787[_0x3e2de3(0x135)](_0x5c5b1b=>{const _0x39c8f1=_0x3e2de3;_0x5c5b1b[_0x39c8f1(0x150)]();}),super['destroyObject']();}}
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 _0x32d69a=_0x1976;(function(_0x57c087,_0x2da4f1){var _0x1b459d=_0x1976,_0x595b18=_0x57c087();while(!![]){try{var _0x2069cb=-parseInt(_0x1b459d(0x18b))/0x1*(parseInt(_0x1b459d(0x18c))/0x2)+parseInt(_0x1b459d(0x18f))/0x3*(parseInt(_0x1b459d(0x190))/0x4)+-parseInt(_0x1b459d(0x191))/0x5+-parseInt(_0x1b459d(0x195))/0x6*(parseInt(_0x1b459d(0x196))/0x7)+parseInt(_0x1b459d(0x198))/0x8+parseInt(_0x1b459d(0x18e))/0x9+-parseInt(_0x1b459d(0x194))/0xa;if(_0x2069cb===_0x2da4f1)break;else _0x595b18['push'](_0x595b18['shift']());}catch(_0x3b3d38){_0x595b18['push'](_0x595b18['shift']());}}}(_0x44f9,0xbb137));function _0x1976(_0x41f6eb,_0x611ddf){_0x41f6eb=_0x41f6eb-0x189;var _0x44f96b=_0x44f9();var _0x19764b=_0x44f96b[_0x41f6eb];return _0x19764b;}function _0x44f9(){var _0x6fe771=['22555670vfPSmv','90Gdsige','117887nNwapv','referenceCount','12253232mqYzpZ','value','forceRelease','isValid','11GnSNWU','91492bhQHZN','addRef','9921303NLyfOr','3597546gJultT','4zTLCpZ','277760XKxRaE','dispose','getRefCount'];_0x44f9=function(){return _0x6fe771;};return _0x44f9();}class TSmartPointer{constructor(_0x2a7bcb,_0x262db2=0x1){var _0x1bb007=_0x1976;this['referenceCount']=0x1,this[_0x1bb007(0x199)]=null,this[_0x1bb007(0x199)]=_0x2a7bcb,this[_0x1bb007(0x197)]=_0x262db2;}[_0x32d69a(0x193)](){var _0x10b94f=_0x32d69a;return this[_0x10b94f(0x197)];}[_0x32d69a(0x18a)](){var _0x130dd7=_0x32d69a;return this[_0x130dd7(0x199)]!==null;}[_0x32d69a(0x18d)](_0x3c7c84=0x1){var _0x205b46=_0x32d69a;this[_0x205b46(0x199)]!==null&&(this[_0x205b46(0x197)]+=_0x3c7c84);}['release'](){var _0x1426f4=_0x32d69a;this['value']!==null&&this['referenceCount']>0x0&&(this[_0x1426f4(0x197)]--,this[_0x1426f4(0x197)]===0x0&&this[_0x1426f4(0x192)]());}[_0x32d69a(0x189)](){var _0x3c031c=_0x32d69a;this[_0x3c031c(0x199)]!==null&&(this[_0x3c031c(0x192)](),this[_0x3c031c(0x197)]=0x0);}[_0x32d69a(0x192)](){this['value']=null;}['getValue'](){var _0xc7d574=_0x32d69a;return this[_0xc7d574(0x199)];}}
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 _0xf6a0(_0x46e38a,_0x24d31e){_0x46e38a=_0x46e38a-0x117;const _0x4463da=_0x4463();let _0xf6a020=_0x4463da[_0x46e38a];return _0xf6a020;}const _0x26bd59=_0xf6a0;(function(_0x145cc6,_0x2fb79d){const _0x56b52c=_0xf6a0,_0x24857f=_0x145cc6();while(!![]){try{const _0x4d99dc=parseInt(_0x56b52c(0x119))/0x1*(-parseInt(_0x56b52c(0x11a))/0x2)+-parseInt(_0x56b52c(0x118))/0x3+parseInt(_0x56b52c(0x123))/0x4*(-parseInt(_0x56b52c(0x11e))/0x5)+-parseInt(_0x56b52c(0x127))/0x6+parseInt(_0x56b52c(0x117))/0x7*(parseInt(_0x56b52c(0x126))/0x8)+-parseInt(_0x56b52c(0x11f))/0x9+parseInt(_0x56b52c(0x124))/0xa;if(_0x4d99dc===_0x2fb79d)break;else _0x24857f['push'](_0x24857f['shift']());}catch(_0x3c2455){_0x24857f['push'](_0x24857f['shift']());}}}(_0x4463,0xdf29c));function _0x4463(){const _0x5118cc=['value','function','7095665Ehijko','13841388kzmwKc','_uuid','dispose','uuid','4SbvQrN','64571720ZdaHwT','userData','1480brGonW','10700478cIDzyX','11081FdnzXT','1496013NgyBfb','11702YVVpFX','102KSYqEn','editorAssetId'];_0x4463=function(){return _0x5118cc;};return _0x4463();}const ASSET_POINTER_KEY='assetPointer';const EDITOR_ASSET_ID_KEY=_0x26bd59(0x11b);class TAssetPointer extends TSmartPointer{get['uuid'](){const _0x60e57c=_0x26bd59;return this[_0x60e57c(0x120)];}constructor(_0x40f5ca,_0x3ed1f1=0x0){const _0x44d3aa=_0x26bd59;super(_0x40f5ca,_0x3ed1f1),this['_uuid']=_0x40f5ca[_0x44d3aa(0x122)],_0x40f5ca[_0x44d3aa(0x125)][ASSET_POINTER_KEY]=this;}[_0x26bd59(0x121)](){const _0x1d69d4=_0x26bd59;this[_0x1d69d4(0x11c)]&&(this[_0x1d69d4(0x11c)][_0x1d69d4(0x125)]&&(delete this[_0x1d69d4(0x11c)][_0x1d69d4(0x125)][ASSET_POINTER_KEY],delete this[_0x1d69d4(0x11c)][_0x1d69d4(0x125)][EDITOR_ASSET_ID_KEY]),typeof this['value'][_0x1d69d4(0x121)]===_0x1d69d4(0x11d)&&this[_0x1d69d4(0x11c)][_0x1d69d4(0x121)]()),super[_0x1d69d4(0x121)]();}}
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 _0xd5341a=_0x2a9b;(function(_0x32b90d,_0x4825e8){const _0x2bf577=_0x2a9b,_0x490e3a=_0x32b90d();while(!![]){try{const _0x487032=parseInt(_0x2bf577(0x143))/0x1*(parseInt(_0x2bf577(0x142))/0x2)+-parseInt(_0x2bf577(0x148))/0x3*(parseInt(_0x2bf577(0x149))/0x4)+-parseInt(_0x2bf577(0x146))/0x5+-parseInt(_0x2bf577(0x14d))/0x6+-parseInt(_0x2bf577(0x13f))/0x7+parseInt(_0x2bf577(0x153))/0x8+parseInt(_0x2bf577(0x14b))/0x9;if(_0x487032===_0x4825e8)break;else _0x490e3a['push'](_0x490e3a['shift']());}catch(_0x273e55){_0x490e3a['push'](_0x490e3a['shift']());}}}(_0x4975,0xdacc4));class MaterialAssetPointer extends TAssetPointer{constructor(_0x568de7,_0x10b953,_0x461158=0x0){const _0x350f9e=_0x2a9b;super(_0x568de7,_0x461158),this[_0x350f9e(0x141)]=_0x10b953;}get['texturePointers'](){const _0x1414d0=_0x2a9b;return this[_0x1414d0(0x141)];}[_0xd5341a(0x151)](_0xf51e2e,_0x3d0035){const _0x13c5ae=_0xd5341a,_0x565e45=this[_0x13c5ae(0x14f)](),_0x2f3582=_0x3d0035['getValue']();if(!_0x2f3582)throw new Error(_0x13c5ae(0x14e));if(!_0x565e45)throw new Error(_0x13c5ae(0x150));const _0x5daaff=this[_0x13c5ae(0x141)]['get'](_0xf51e2e);_0x5daaff!==_0x3d0035&&(_0x5daaff&&_0x5daaff['release'](),this[_0x13c5ae(0x141)]['set'](_0xf51e2e,_0x3d0035),_0x565e45[_0xf51e2e]=_0x2f3582,_0x3d0035['addRef'](),_0x565e45['needsUpdate']=!![]);}[_0xd5341a(0x14c)](_0x242a8b){const _0x42e36d=_0xd5341a,_0x5c3935=this[_0x42e36d(0x14f)](),_0x94e0ec=this['textures'][_0x42e36d(0x140)](_0x242a8b);_0x94e0ec&&(_0x94e0ec[_0x42e36d(0x152)](),this[_0x42e36d(0x141)][_0x42e36d(0x145)](_0x242a8b),_0x5c3935&&(_0x5c3935[_0x242a8b]=null,_0x5c3935[_0x42e36d(0x154)]=!![]));}['dispose'](){const _0xd72521=_0xd5341a;for(const _0x394412 of this['textures'][_0xd72521(0x14a)]()){_0x394412[_0xd72521(0x152)]();}this[_0xd72521(0x141)][_0xd72521(0x147)](),super[_0xd72521(0x144)]();}}function _0x2a9b(_0x3bf7da,_0x1f78d4){_0x3bf7da=_0x3bf7da-0x13f;const _0x49751b=_0x4975();let _0x2a9be2=_0x49751b[_0x3bf7da];return _0x2a9be2;}function _0x4975(){const _0x28aea6=['clear','3089187tVPAtb','4WEGJXB','values','27995760JBiVyx','removeTexture','9252096gVkJfz','Texture\x20is\x20null','getValue','Material\x20is\x20null','setTexture','release','2099168QWCtDH','needsUpdate','4137546mTzjpx','get','textures','2993422PSjmha','1YNASWq','dispose','delete','4053640Grszzr'];_0x4975=function(){return _0x28aea6;};return _0x4975();}
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(_0x43b84d,_0x21c79d){var _0x30b978=_0x580f,_0x2c485b=_0x43b84d();while(!![]){try{var _0x13b7f8=-parseInt(_0x30b978(0xe2))/0x1+-parseInt(_0x30b978(0xe3))/0x2*(parseInt(_0x30b978(0xe6))/0x3)+parseInt(_0x30b978(0xe9))/0x4*(parseInt(_0x30b978(0xe4))/0x5)+parseInt(_0x30b978(0xe7))/0x6*(-parseInt(_0x30b978(0xe5))/0x7)+parseInt(_0x30b978(0xec))/0x8+parseInt(_0x30b978(0xeb))/0x9*(parseInt(_0x30b978(0xea))/0xa)+parseInt(_0x30b978(0xe8))/0xb;if(_0x13b7f8===_0x21c79d)break;else _0x2c485b['push'](_0x2c485b['shift']());}catch(_0x343ea9){_0x2c485b['push'](_0x2c485b['shift']());}}}(_0x9ceb,0x20a56));function _0x580f(_0x12a0f7,_0xdb9cbf){_0x12a0f7=_0x12a0f7-0xe2;var _0x9ceb4b=_0x9ceb();var _0x580f0b=_0x9ceb4b[_0x12a0f7];return _0x580f0b;}class TextureAssetPointer extends TAssetPointer{constructor(_0x4dd648,_0x33feaa=0x1){super(_0x4dd648,_0x33feaa);}}function _0x9ceb(){var _0x52c101=['58884XViXgn','3258iFqGNA','180ErMqZn','492767NwnOuJ','1628UvwCdB','2120Lusszl','10917wnFyQf','1777760aMnTme','104990UqTLSo','414ELGmJj','2355rgqcTX'];_0x9ceb=function(){return _0x52c101;};return _0x9ceb();}
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 _0x298e(){var _0x5f37fa=['21881256psPWDp','1325628AVmIFy','40XYAFxw','54MGoQjD','2459891EnVYpp','13bAmaPd','546160NyDrtB','11ZYawOH','2518070ICjrVF','6nWUKNf','1749036hAUpnc','5XubsHN','9288jRjyTy'];_0x298e=function(){return _0x5f37fa;};return _0x298e();}function _0x2856(_0x61d904,_0x1818f4){_0x61d904=_0x61d904-0x130;var _0x298ecd=_0x298e();var _0x2856e7=_0x298ecd[_0x61d904];return _0x2856e7;}(function(_0x423b54,_0x248350){var _0x48e06f=_0x2856,_0x1c3c7e=_0x423b54();while(!![]){try{var _0x4e791c=parseInt(_0x48e06f(0x132))/0x1*(-parseInt(_0x48e06f(0x135))/0x2)+-parseInt(_0x48e06f(0x134))/0x3+-parseInt(_0x48e06f(0x130))/0x4*(parseInt(_0x48e06f(0x131))/0x5)+parseInt(_0x48e06f(0x13c))/0x6*(-parseInt(_0x48e06f(0x137))/0x7)+-parseInt(_0x48e06f(0x139))/0x8*(parseInt(_0x48e06f(0x136))/0x9)+-parseInt(_0x48e06f(0x13b))/0xa*(-parseInt(_0x48e06f(0x13a))/0xb)+-parseInt(_0x48e06f(0x133))/0xc*(-parseInt(_0x48e06f(0x138))/0xd);if(_0x4e791c===_0x248350)break;else _0x1c3c7e['push'](_0x1c3c7e['shift']());}catch(_0xe94630){_0x1c3c7e['push'](_0x1c3c7e['shift']());}}}(_0x298e,0x3cde5));class GeometryAssetPointer extends TAssetPointer{constructor(_0xfb07aa,_0x659341=0x1){super(_0xfb07aa,_0x659341);}}
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
+ const _0x3bb783=_0x5dc3;(function(_0x36ced,_0x9d0f41){const _0x43a9a1=_0x5dc3,_0x55f36d=_0x36ced();while(!![]){try{const _0x51aae8=parseInt(_0x43a9a1(0x8c))/0x1*(-parseInt(_0x43a9a1(0x8f))/0x2)+parseInt(_0x43a9a1(0x93))/0x3+parseInt(_0x43a9a1(0x8d))/0x4*(-parseInt(_0x43a9a1(0xaf))/0x5)+-parseInt(_0x43a9a1(0x9a))/0x6*(parseInt(_0x43a9a1(0xbd))/0x7)+parseInt(_0x43a9a1(0xbc))/0x8+parseInt(_0x43a9a1(0xa7))/0x9*(parseInt(_0x43a9a1(0xb7))/0xa)+-parseInt(_0x43a9a1(0xa4))/0xb*(-parseInt(_0x43a9a1(0xab))/0xc);if(_0x51aae8===_0x9d0f41)break;else _0x55f36d['push'](_0x55f36d['shift']());}catch(_0x384d7c){_0x55f36d['push'](_0x55f36d['shift']());}}}(_0x1e12,0xb5f1a));function _0x5dc3(_0x2bf0a4,_0x70300d){_0x2bf0a4=_0x2bf0a4-0x6e;const _0x1e12dc=_0x1e12();let _0x5dc337=_0x1e12dc[_0x2bf0a4];return _0x5dc337;}function _0x1e12(){const _0x12b0fd=['gltfLoader','traverse','/SceneResource/draco/','postMessage','load','clear','isArray','get','assetPointer','forceRelease','24sOwecV','656WVusSt','position','82462VAFqXf','addMaterialAsset','LoadingManager','release','843906DgPTpG','object','materials','dracoLoader','bind','_dracoPatched','onStart','345126EIaQYh','geometry','parse','scale','setDRACOLoader','setDecoderPath','setRotation','set','loadGltfFromPathAsync','addTextureAsset','77yZFlJU','Group','uuid','10912347LxQQFY','onLoad','userData','entries','2488152HCPurZ','materialAssets','geometries','isMesh','25055HwKqJt','forEach','checkMeshResource','addAsset','clone','manager','convertThreeObjectToLYObject','loadGltfFromBuffer','10FlFctV','setupDracoLoader','onError','app','textureAssets','1492744mgidAv','70gdckin','Object3D','clearAssets','children','loadGltfFromPath','values','prototype','geometryAssets','init','loadingManager','collectResourcesAndReferences','dispose','addRef','addChildComponent','type','addGeometryAsset','decoderConfig','call','Worker','setPosition','textures','releaseAsset','hasOwnProperty','material'];_0x1e12=function(){return _0x12b0fd;};return _0x1e12();}class AssetManager{constructor(_0x8edfc2){const _0x4b7b67=_0x5dc3;this[_0x4b7b67(0x71)]=new Map(),this[_0x4b7b67(0xbb)]=new Map(),this[_0x4b7b67(0xac)]=new Map(),this[_0x4b7b67(0x96)]=null,this[_0x4b7b67(0x73)]=new webgpu.LoadingManager(),this[_0x4b7b67(0x82)]=new Addons_js.GLTFLoader(this[_0x4b7b67(0x73)]),this[_0x4b7b67(0xba)]=_0x8edfc2;}get[_0x3bb783(0x91)](){const _0x2a7016=_0x3bb783;return this[_0x2a7016(0x73)];}async[_0x3bb783(0x72)](){return;}[_0x3bb783(0xb8)](_0x322ed3){const _0x5ec5b4=_0x3bb783;if(!this[_0x5ec5b4(0x96)]){this[_0x5ec5b4(0x96)]=new Addons_js.DRACOLoader();if(this[_0x5ec5b4(0x96)][_0x5ec5b4(0xb4)]){const _0x55446b=this[_0x5ec5b4(0x96)][_0x5ec5b4(0xb4)];_0x55446b[_0x5ec5b4(0x99)]=undefined,_0x55446b[_0x5ec5b4(0xa8)]=undefined,_0x55446b['onProgress']=undefined,_0x55446b[_0x5ec5b4(0xb9)]=undefined;}this[_0x5ec5b4(0x96)][_0x5ec5b4(0x9f)](_0x322ed3);const _0x1177c1=window[_0x5ec5b4(0x7c)];if(_0x1177c1&&!_0x1177c1[_0x5ec5b4(0x98)]){_0x1177c1[_0x5ec5b4(0x98)]=!![],window[_0x5ec5b4(0x7c)]=function(_0x30860b,_0x2a4fe6){const _0x234fd9=_0x5ec5b4,_0x3346ea=new _0x1177c1(_0x30860b,_0x2a4fe6),_0x417621=_0x3346ea[_0x234fd9(0x85)][_0x234fd9(0x97)](_0x3346ea);return _0x3346ea[_0x234fd9(0x85)]=function(_0x1751b0,_0x489fc3){const _0x206220=_0x234fd9;if(_0x1751b0&&_0x1751b0[_0x206220(0x7a)]&&typeof _0x1751b0['decoderConfig']===_0x206220(0x94)){const _0x48db8e=_0x1751b0['decoderConfig'],_0x79de0={};for(const _0x6af121 in _0x48db8e){Object[_0x206220(0x70)][_0x206220(0x80)][_0x206220(0x7b)](_0x48db8e,_0x6af121)&&(_0x79de0[_0x6af121]=_0x48db8e[_0x6af121]);}_0x1751b0=Object['assign'](Object['assign']({},_0x1751b0),{'decoderConfig':_0x79de0});}return _0x417621(_0x1751b0,_0x489fc3);},_0x3346ea;};for(const _0x2f7f48 in _0x1177c1){Object[_0x5ec5b4(0x70)][_0x5ec5b4(0x80)][_0x5ec5b4(0x7b)](_0x1177c1,_0x2f7f48)&&(window[_0x5ec5b4(0x7c)][_0x2f7f48]=_0x1177c1[_0x2f7f48]);}}this[_0x5ec5b4(0x96)]['preload'](),this[_0x5ec5b4(0x82)][_0x5ec5b4(0x9e)](this['dracoLoader']);}}[_0x3bb783(0xb5)](_0xd72a61,_0x78cd2b){const _0x1126f5=_0x3bb783,_0x1c9890=_0x78cd2b[_0x1126f5(0x8e)]['clone'](),_0x566900=_0x78cd2b['rotation'][_0x1126f5(0xb3)](),_0xd1ab69=_0x78cd2b[_0x1126f5(0x9d)][_0x1126f5(0xb3)]();let _0x552cf3=null;const _0x598d51=_0x78cd2b['children'];_0x78cd2b[_0x1126f5(0xc0)]=[];if(_0x78cd2b[_0x1126f5(0x78)]===_0x1126f5(0xa5)||_0x78cd2b[_0x1126f5(0x78)]===_0x1126f5(0xbe))_0x552cf3=new SceneComponent(this['app'],_0x78cd2b[_0x1126f5(0xa6)]);else {if(_0x78cd2b[_0x1126f5(0xae)]){const _0x1dc5fc=_0x78cd2b;_0x552cf3=new MeshComponent(this['app'],_0x1dc5fc[_0x1126f5(0x9b)],_0x1dc5fc['material']),_0x78cd2b['layers'][_0x1126f5(0xa1)](0x0);}else _0x552cf3=new SceneComponent(this[_0x1126f5(0xba)],_0x78cd2b[_0x1126f5(0xa6)]);}if(_0x552cf3===null)return _0x78cd2b[_0x1126f5(0xc0)]=_0x598d51,null;_0xd72a61[_0x1126f5(0x77)](_0x552cf3),_0x552cf3[_0x1126f5(0x7d)](_0x1c9890),_0x552cf3[_0x1126f5(0xa0)](_0x566900),_0x552cf3['setScale'](_0xd1ab69);for(const _0x42d7cc of _0x598d51){this[_0x1126f5(0xb5)](_0x552cf3,_0x42d7cc);}return _0x552cf3;}[_0x3bb783(0x74)](_0x444d28){const _0x567a84=_0x3bb783,_0x55d64b=(_0x348424,_0x4321d5)=>{const _0x4e533c=_0x5dc3;var _0x32a237;const _0x2dbec7=(_0x32a237=_0x348424[_0x4e533c(0x89)](_0x4321d5))!==null&&_0x32a237!==void 0?_0x32a237:0x0;_0x348424[_0x4e533c(0xa1)](_0x4321d5,_0x2dbec7+0x1);},_0x3a3af2={'geometries':new Map(),'materials':new Map(),'textures':new Map()};_0x444d28[_0x567a84(0x83)](_0x2363ad=>{const _0x495a18=_0x567a84,_0x5ec63f=_0x2363ad;_0x5ec63f[_0x495a18(0x9b)]instanceof webgpu.BufferGeometry&&_0x55d64b(_0x3a3af2[_0x495a18(0xad)],_0x5ec63f[_0x495a18(0x9b)]);if(_0x5ec63f[_0x495a18(0x81)]){const _0x41bfc4=Array['isArray'](_0x5ec63f[_0x495a18(0x81)])?_0x5ec63f[_0x495a18(0x81)]:[_0x5ec63f[_0x495a18(0x81)]];_0x41bfc4[_0x495a18(0xb0)](_0x45d691=>{const _0x320530=_0x495a18;_0x45d691&&(_0x55d64b(_0x3a3af2[_0x320530(0x95)],_0x45d691),Object[_0x320530(0x6f)](_0x45d691)[_0x320530(0xb0)](_0x42619a=>{const _0x4a2c7e=_0x320530;_0x42619a instanceof webgpu.Texture&&_0x55d64b(_0x3a3af2[_0x4a2c7e(0x7e)],_0x42619a);}));});}}),_0x3a3af2[_0x567a84(0xad)][_0x567a84(0xb0)]((_0xc8c5ca,_0x24e81d)=>this[_0x567a84(0xb2)](_0x24e81d,_0xc8c5ca)),_0x3a3af2[_0x567a84(0x95)][_0x567a84(0xb0)]((_0x7f359a,_0x6f03bd)=>this[_0x567a84(0xb2)](_0x6f03bd,_0x7f359a)),_0x3a3af2[_0x567a84(0x7e)][_0x567a84(0xb0)]((_0x5030c5,_0x566dfa)=>this[_0x567a84(0xb2)](_0x566dfa,_0x5030c5));}[_0x3bb783(0xb1)](_0x59d774){const _0x16d885=_0x3bb783;_0x59d774['geometry']&&!_0x59d774[_0x16d885(0x9b)]['userData']['assetPointer']&&this['addAsset'](_0x59d774['geometry']);if(_0x59d774['material']){const _0x2a87a2=Array[_0x16d885(0x88)](_0x59d774[_0x16d885(0x81)])?_0x59d774[_0x16d885(0x81)]:[_0x59d774['material']];_0x2a87a2['forEach'](_0x36e922=>{const _0x159ce1=_0x16d885;if(!_0x36e922)return;!_0x36e922[_0x159ce1(0xa9)][_0x159ce1(0x8a)]&&this[_0x159ce1(0xb2)](_0x36e922),Object[_0x159ce1(0x6f)](_0x36e922)['forEach'](_0x514ad1=>{const _0x36b0d3=_0x159ce1;_0x514ad1 instanceof webgpu.Texture&&!_0x514ad1[_0x36b0d3(0xa9)][_0x36b0d3(0x8a)]&&this[_0x36b0d3(0xb2)](_0x514ad1);});});}}async[_0x3bb783(0xa2)](_0x549ff2){const _0x5a2da1=_0x3bb783;return this[_0x5a2da1(0xb8)]('/SceneResource/draco/'),await this[_0x5a2da1(0x82)]['loadAsync'](_0x549ff2);}[_0x3bb783(0x6e)](_0x11694d,_0x50517d){const _0x3aac47=_0x3bb783;this['setupDracoLoader'](_0x3aac47(0x84)),this['gltfLoader'][_0x3aac47(0x86)](_0x11694d,_0x50517d);}[_0x3bb783(0xb6)](_0x1f4367,_0x5de15a,_0x4b3e9b){const _0x755918=_0x3bb783;this[_0x755918(0xb8)](_0x755918(0x84)),this[_0x755918(0x82)][_0x755918(0x9c)](_0x1f4367,_0x5de15a,_0x4b3e9b);}['loadFile'](_0x2e07bf='',_0x158f81){const _0x1efde2=new webgpu.FileLoader();_0x1efde2['load'](_0x2e07bf,_0x158f81);}[_0x3bb783(0xb2)](_0x1a7a24,_0x3e4859=0x0){const _0x1ad310=_0x3bb783;if(_0x1a7a24 instanceof webgpu.BufferGeometry)return this[_0x1ad310(0x79)](_0x1a7a24,_0x3e4859);if(_0x1a7a24 instanceof webgpu.Material)return this['addMaterialAsset'](_0x1a7a24,_0x3e4859);if(_0x1a7a24 instanceof webgpu.Texture)return this[_0x1ad310(0xa3)](_0x1a7a24,_0x3e4859);return undefined;}[_0x3bb783(0x90)](_0x5d8f5f,_0xf5b11d=0x0){const _0x4cb767=_0x3bb783;let _0x2ea06d=_0x5d8f5f[_0x4cb767(0xa9)]['assetPointer'];if(!_0x2ea06d){const _0x33ad51=new Map();Object[_0x4cb767(0xaa)](_0x5d8f5f)[_0x4cb767(0xb0)](([_0x1cfb28,_0x514797])=>{const _0x5a6b93=_0x4cb767;if(_0x514797 instanceof webgpu.Texture){const _0x2df6d6=this[_0x5a6b93(0xa3)](_0x514797,0x1);_0x33ad51['set'](_0x1cfb28,_0x2df6d6);}}),_0x2ea06d=new MaterialAssetPointer(_0x5d8f5f,_0x33ad51,_0xf5b11d),this[_0x4cb767(0xac)][_0x4cb767(0xa1)](_0x5d8f5f['uuid'],_0x2ea06d);}else _0x2ea06d[_0x4cb767(0x76)](_0xf5b11d);return _0x2ea06d;}[_0x3bb783(0xa3)](_0x1925e0,_0x4a9182=0x0){const _0x5694a0=_0x3bb783;let _0x52c5cb=_0x1925e0[_0x5694a0(0xa9)][_0x5694a0(0x8a)];return !_0x52c5cb?(_0x52c5cb=new TextureAssetPointer(_0x1925e0,_0x4a9182),this[_0x5694a0(0xbb)][_0x5694a0(0xa1)](_0x1925e0[_0x5694a0(0xa6)],_0x52c5cb)):_0x52c5cb[_0x5694a0(0x76)](_0x4a9182),_0x52c5cb;}[_0x3bb783(0x79)](_0x112aac,_0x1086ff=0x0){const _0x590820=_0x3bb783;let _0x2848a4=_0x112aac['userData'][_0x590820(0x8a)];return !_0x2848a4?(_0x2848a4=new GeometryAssetPointer(_0x112aac,_0x1086ff),this[_0x590820(0x71)]['set'](_0x112aac[_0x590820(0xa6)],_0x2848a4)):_0x2848a4[_0x590820(0x76)](_0x1086ff),_0x2848a4;}[_0x3bb783(0x7f)](_0x19eb71){const _0x45cf29=_0x3bb783,_0x2f849a=_0x19eb71[_0x45cf29(0xa9)]['assetPointer'];_0x2f849a?_0x2f849a[_0x45cf29(0x92)]():_0x19eb71[_0x45cf29(0x75)]();}[_0x3bb783(0xbf)](){const _0x2f41b3=_0x3bb783;this[_0x2f41b3(0x71)][_0x2f41b3(0xb0)](_0x53d242=>_0x53d242['forceRelease']()),this[_0x2f41b3(0x71)][_0x2f41b3(0x87)](),this[_0x2f41b3(0xac)][_0x2f41b3(0xb0)](_0x5862e3=>_0x5862e3['forceRelease']()),this[_0x2f41b3(0xac)][_0x2f41b3(0x87)](),this[_0x2f41b3(0xbb)][_0x2f41b3(0xb0)](_0x2b3401=>_0x2b3401[_0x2f41b3(0x8b)]()),this['textureAssets'][_0x2f41b3(0x87)]();}}
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(_0x19c114,_0x36b9db){var _0x4e7263=_0x243a,_0x1b282d=_0x19c114();while(!![]){try{var _0x3bba16=parseInt(_0x4e7263(0x1de))/0x1*(parseInt(_0x4e7263(0x1df))/0x2)+parseInt(_0x4e7263(0x1cc))/0x3*(parseInt(_0x4e7263(0x1da))/0x4)+-parseInt(_0x4e7263(0x1c0))/0x5*(parseInt(_0x4e7263(0x1c6))/0x6)+-parseInt(_0x4e7263(0x1d4))/0x7*(parseInt(_0x4e7263(0x1c2))/0x8)+parseInt(_0x4e7263(0x1bf))/0x9*(-parseInt(_0x4e7263(0x1c8))/0xa)+-parseInt(_0x4e7263(0x1dd))/0xb*(parseInt(_0x4e7263(0x1d3))/0xc)+parseInt(_0x4e7263(0x1c3))/0xd;if(_0x3bba16===_0x36b9db)break;else _0x1b282d['push'](_0x1b282d['shift']());}catch(_0x309608){_0x1b282d['push'](_0x1b282d['shift']());}}}(_0xb8df,0x2f933));exports.AssetCategory = void 0;(function(_0x6c3b64){var _0x2f0f18=_0x243a;_0x6c3b64[_0x2f0f18(0x1ca)]='geometry',_0x6c3b64[_0x2f0f18(0x1c1)]=_0x2f0f18(0x1e0),_0x6c3b64[_0x2f0f18(0x1be)]=_0x2f0f18(0x1d9),_0x6c3b64[_0x2f0f18(0x1c9)]='actor',_0x6c3b64[_0x2f0f18(0x1cd)]='actorManager',_0x6c3b64[_0x2f0f18(0x1c4)]=_0x2f0f18(0x1d1),_0x6c3b64[_0x2f0f18(0x1cf)]=_0x2f0f18(0x1d7),_0x6c3b64[_0x2f0f18(0x1db)]=_0x2f0f18(0x1d8),_0x6c3b64['Undefined']=_0x2f0f18(0x1c7);}(exports.AssetCategory||(exports.AssetCategory={})));function _0x243a(_0x1d0899,_0xdccdc0){_0x1d0899=_0x1d0899-0x1be;var _0xb8df19=_0xb8df();var _0x243a0d=_0xb8df19[_0x1d0899];return _0x243a0d;}exports.AssetLoadState = void 0;(function(_0x241395){var _0xed3aa6=_0x243a;_0x241395['Unloaded']='unloaded',_0x241395[_0xed3aa6(0x1d0)]='loading',_0x241395['Loaded']=_0xed3aa6(0x1cb),_0x241395[_0xed3aa6(0x1ce)]=_0xed3aa6(0x1d2);}(exports.AssetLoadState||(exports.AssetLoadState={})));exports.ReferenceType = void 0;function _0xb8df(){var _0x4fca3e=['undefined','690GTBjPT','Actor','Geometry','loaded','4461DugWWS','ActorManager','Error','HTML','Loading','level','error','7476eDaoJY','21MsvqUq','actor','external','html','code','texture','344hSzlxB','Code','geometry','3971QibKWy','298wkKjSu','2078YmOAdm','material','Texture','34272keKYqS','179735EhRbtp','Material','611304RiWQfV','6632652zTvais','Level','External','6jVUiwE'];_0xb8df=function(){return _0x4fca3e;};return _0xb8df();}(function(_0x2e6f75){var _0x20aa5d=_0x243a;_0x2e6f75['Actor']=_0x20aa5d(0x1d5),_0x2e6f75['Component']='component',_0x2e6f75[_0x20aa5d(0x1c1)]='material',_0x2e6f75[_0x20aa5d(0x1c4)]=_0x20aa5d(0x1d1),_0x2e6f75['AssetPointer']='assetPointer',_0x2e6f75[_0x20aa5d(0x1c5)]=_0x20aa5d(0x1d6);}(exports.ReferenceType||(exports.ReferenceType={})));exports.AssetType = void 0;(function(_0x58d1c0){var _0x466652=_0x243a;_0x58d1c0[_0x58d1c0[_0x466652(0x1dc)]=0x1]=_0x466652(0x1dc),_0x58d1c0[_0x58d1c0[_0x466652(0x1e0)]=0x2]='material',_0x58d1c0[_0x58d1c0[_0x466652(0x1d9)]=0x3]='texture',_0x58d1c0[_0x58d1c0[_0x466652(0x1c7)]=-1]=_0x466652(0x1c7);}(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(_0x553d0d,_0x5d9667){const _0xe0dadd=_0x4be3,_0x416fb7=_0x553d0d();while(!![]){try{const _0x2077b7=-parseInt(_0xe0dadd(0x116))/0x1*(parseInt(_0xe0dadd(0x113))/0x2)+parseInt(_0xe0dadd(0x11c))/0x3+parseInt(_0xe0dadd(0x11b))/0x4+-parseInt(_0xe0dadd(0x117))/0x5+-parseInt(_0xe0dadd(0x11f))/0x6+-parseInt(_0xe0dadd(0x11a))/0x7+parseInt(_0xe0dadd(0x111))/0x8;if(_0x2077b7===_0x5d9667)break;else _0x416fb7['push'](_0x416fb7['shift']());}catch(_0x46cdc0){_0x416fb7['push'](_0x416fb7['shift']());}}}(_0x343b,0x77c29));function _0x4be3(_0x4c1b43,_0x150604){_0x4c1b43=_0x4c1b43-0x111;const _0x343bf2=_0x343b();let _0x4be3bd=_0x343bf2[_0x4c1b43];return _0x4be3bd;}const DefaultPostProcessParam={'steps':[]};function _0x343b(){const _0x303202=['2330006cxlRZm','1390068LvOlRF','2751969sqLosd','Outline','ScreenSpaceReflection','3316812xHiYxn','13036392UlfUSX','Antialiasing','142aRqnHt','LensFlare','GroundTruthAmbientOcclusion','11579xfWryu','3480415qIfQUA','DepthOfField','Bloom'];_0x343b=function(){return _0x303202;};return _0x343b();}exports.PostProcessStepType = void 0;(function(_0x354942){const _0x5c8e10=_0x4be3;_0x354942[_0x354942[_0x5c8e10(0x119)]=0x0]=_0x5c8e10(0x119),_0x354942[_0x354942[_0x5c8e10(0x118)]=0x1]=_0x5c8e10(0x118),_0x354942[_0x354942[_0x5c8e10(0x11e)]=0x2]=_0x5c8e10(0x11e),_0x354942[_0x354942[_0x5c8e10(0x115)]=0x3]=_0x5c8e10(0x115),_0x354942[_0x354942[_0x5c8e10(0x11d)]=0x4]='Outline',_0x354942[_0x354942[_0x5c8e10(0x112)]=0x5]=_0x5c8e10(0x112),_0x354942[_0x354942[_0x5c8e10(0x114)]=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
+ var _0x4aa040=_0x3f3a;function _0x3f3a(_0x5bbae9,_0x10ef3d){_0x5bbae9=_0x5bbae9-0x185;var _0x5c9ea1=_0x5c9e();var _0x3f3af4=_0x5c9ea1[_0x5bbae9];return _0x3f3af4;}(function(_0x16e4cb,_0x424e19){var _0x2690e3=_0x3f3a,_0x8e3757=_0x16e4cb();while(!![]){try{var _0x37b1dd=parseInt(_0x2690e3(0x193))/0x1+-parseInt(_0x2690e3(0x187))/0x2+parseInt(_0x2690e3(0x192))/0x3+parseInt(_0x2690e3(0x18a))/0x4*(parseInt(_0x2690e3(0x18d))/0x5)+parseInt(_0x2690e3(0x1a9))/0x6*(-parseInt(_0x2690e3(0x191))/0x7)+-parseInt(_0x2690e3(0x190))/0x8*(-parseInt(_0x2690e3(0x1a3))/0x9)+parseInt(_0x2690e3(0x199))/0xa*(-parseInt(_0x2690e3(0x1a4))/0xb);if(_0x37b1dd===_0x424e19)break;else _0x8e3757['push'](_0x8e3757['shift']());}catch(_0x3c7a2c){_0x8e3757['push'](_0x8e3757['shift']());}}}(_0x5c9e,0x190c1));class World{get['scene'](){var _0x1a98e8=_0x3f3a,_0x3490ce;let _0x198fc1=(_0x3490ce=this[_0x1a98e8(0x1a8)])===null||_0x3490ce===void 0?void 0:_0x3490ce[_0x1a98e8(0x185)];if(!_0x198fc1)throw new Error(_0x1a98e8(0x19c));return _0x198fc1;}get['viewport'](){var _0x19442f=_0x3f3a;return this['app'][_0x19442f(0x19d)];}get['controller'](){var _0x225ae9=_0x3f3a;return this[_0x225ae9(0x188)]['controller'];}get['rootActor'](){var _0x343723=_0x3f3a;if(!this[_0x343723(0x1a8)])throw new Error(_0x343723(0x1ab));return this[_0x343723(0x1a8)];}constructor(_0x423e7e,_0x3c541c){var _0x5b2168=_0x3f3a;this['_rootActor']=null,this[_0x5b2168(0x1a2)]=new Set(),this['tickableActors']=new Set(),this[_0x5b2168(0x188)]=_0x423e7e,this[_0x5b2168(0x1aa)]=_0x3c541c;}[_0x4aa040(0x1a6)](){var _0x1a814a=_0x4aa040;this['_rootActor']=new this[(_0x1a814a(0x1aa))][(_0x1a814a(0x1a1))](this[_0x1a814a(0x188)]);}[_0x4aa040(0x18f)](_0x549015){var _0x3893a6=_0x4aa040;this[_0x3893a6(0x19e)][_0x3893a6(0x194)](_0x549015);}[_0x4aa040(0x196)](_0x5e1405){var _0x5702c0=_0x4aa040;this[_0x5702c0(0x19e)][_0x5702c0(0x195)](_0x5e1405);}['tick'](_0x22f691){var _0x59f4b1=_0x4aa040;this[_0x59f4b1(0x19e)][_0x59f4b1(0x19f)](_0x472a7e=>{var _0x21db69=_0x59f4b1;_0x472a7e[_0x21db69(0x19a)](_0x22f691);});}[_0x4aa040(0x197)](){var _0x3a6710=_0x4aa040,_0x1c4acb;this[_0x3a6710(0x19e)][_0x3a6710(0x1a5)](),this[_0x3a6710(0x1a2)][_0x3a6710(0x19f)](_0x4104a9=>{var _0x119f09=_0x3a6710;_0x4104a9[_0x119f09(0x197)]();}),this[_0x3a6710(0x1a2)][_0x3a6710(0x1a5)](),(_0x1c4acb=this[_0x3a6710(0x1a8)])===null||_0x1c4acb===void 0?void 0:_0x1c4acb[_0x3a6710(0x197)](),this[_0x3a6710(0x1a8)]=null;}['addActor'](_0x22dc0e){var _0x305ad0=_0x4aa040,_0x37356f;if(!_0x22dc0e['rootComponent']['threeObject'])throw new Error(_0x305ad0(0x19b));_0x22dc0e[_0x305ad0(0x18b)](),(_0x37356f=this[_0x305ad0(0x1a8)])===null||_0x37356f===void 0?void 0:_0x37356f[_0x305ad0(0x1a7)](_0x22dc0e,exports.AttachmentRules[_0x305ad0(0x18e)]),this['actors'][_0x305ad0(0x194)](_0x22dc0e),_0x22dc0e[_0x305ad0(0x18c)](this),this[_0x305ad0(0x19d)][_0x305ad0(0x186)]();}[_0x4aa040(0x198)](_0xf90ad9){var _0x5214fa=_0x4aa040;_0xf90ad9[_0x5214fa(0x197)](),this[_0x5214fa(0x1a2)][_0x5214fa(0x195)](_0xf90ad9),this[_0x5214fa(0x19d)][_0x5214fa(0x186)]();}['removeActors'](_0x15a30c){var _0x163a45=_0x4aa040;for(const _0x676594 of _0x15a30c){_0x676594[_0x163a45(0x197)](),this[_0x163a45(0x1a2)][_0x163a45(0x195)](_0x676594);}this[_0x163a45(0x19d)]['markRenderStateDirty']();}[_0x4aa040(0x1a0)](_0x2ac94c){var _0x28c74e=_0x4aa040;return this[_0x28c74e(0x189)]['getChildActorById'](_0x2ac94c,!![]);}['getActorsByIds'](_0x5b9451){var _0x5339ec=_0x4aa040;return this[_0x5339ec(0x189)]['getChildActorsByIds'](_0x5b9451,!![]);}}function _0x5c9e(){var _0x3ec7dd=['destroy','removeActor','1713930DdOJzh','tick','actor.threeObject\x20is\x20null','scene\x20is\x20null','viewport','tickableActors','forEach','getActorById','levelActorClass','actors','54pJiSdA','11pBtcyv','clear','init','addChildActor','_rootActor','12YwHLeY','worldParam','rootActor\x20is\x20null','scene','markRenderStateDirty','378686zsaMSO','app','rootActor','20924mUDGcr','removeFromParent','onAddedToWorld','80miJSaf','KeepRelative','addTickableActor','178768hQYuPw','163345fgeKrl','508665cGvfpT','122672zDpCUk','add','delete','removeTickableActor'];_0x5c9e=function(){return _0x3ec7dd;};return _0x5c9e();}
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 _0x376f65=_0x1f9a;(function(_0x3dceba,_0x4b6441){const _0xc96b29=_0x1f9a,_0x1567e4=_0x3dceba();while(!![]){try{const _0x152e9b=-parseInt(_0xc96b29(0x7c))/0x1+parseInt(_0xc96b29(0x79))/0x2+parseInt(_0xc96b29(0x7e))/0x3*(-parseInt(_0xc96b29(0x7b))/0x4)+parseInt(_0xc96b29(0x77))/0x5*(parseInt(_0xc96b29(0x78))/0x6)+-parseInt(_0xc96b29(0x7d))/0x7*(parseInt(_0xc96b29(0x76))/0x8)+-parseInt(_0xc96b29(0x75))/0x9+-parseInt(_0xc96b29(0x80))/0xa*(-parseInt(_0xc96b29(0x7f))/0xb);if(_0x152e9b===_0x4b6441)break;else _0x1567e4['push'](_0x1567e4['shift']());}catch(_0x235a35){_0x1567e4['push'](_0x1567e4['shift']());}}}(_0x1744,0x75854));function _0x1f9a(_0x3ad935,_0x24a395){_0x3ad935=_0x3ad935-0x75;const _0x1744ed=_0x1744();let _0x1f9a52=_0x1744ed[_0x3ad935];return _0x1f9a52;}const DefaultBloomParam={'type':exports.PostProcessStepType[_0x376f65(0x7a)],'threshold':0x0,'strength':0x1,'radius':0x0};function _0x1744(){const _0xf2a240=['441KbgVmG','11839355dZgbcJ','20sQOuiF','3929211veASuj','16uGZeTm','70GTDDLJ','46902NryDtv','427102llMFVG','Bloom','13996LtoSyP','248849GaoIvd','2780589PhJvYS'];_0x1744=function(){return _0xf2a240;};return _0x1744();}
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
+ function _0x7283(){const _0x399bae=['217XEsypi','136376eUSCYl','147048GuygoB','171JasZLB','18359WgbnAx','998500xdTagC','1669036gAXyqx','1571795SfOUSs','3JzbjZL','82TmdAAu','8963042Bkgzff'];_0x7283=function(){return _0x399bae;};return _0x7283();}function _0x4785(_0x598642,_0x35a3a8){_0x598642=_0x598642-0x184;const _0x728348=_0x7283();let _0x47857a=_0x728348[_0x598642];return _0x47857a;}(function(_0x3b5440,_0x4237da){const _0x455969=_0x4785,_0x41e913=_0x3b5440();while(!![]){try{const _0x331a53=parseInt(_0x455969(0x186))/0x1*(parseInt(_0x455969(0x18b))/0x2)+parseInt(_0x455969(0x18a))/0x3*(-parseInt(_0x455969(0x188))/0x4)+parseInt(_0x455969(0x189))/0x5+parseInt(_0x455969(0x184))/0x6*(-parseInt(_0x455969(0x18d))/0x7)+parseInt(_0x455969(0x18e))/0x8*(-parseInt(_0x455969(0x185))/0x9)+parseInt(_0x455969(0x187))/0xa+parseInt(_0x455969(0x18c))/0xb;if(_0x331a53===_0x4237da)break;else _0x41e913['push'](_0x41e913['shift']());}catch(_0x4ea8eb){_0x41e913['push'](_0x41e913['shift']());}}}(_0x7283,0x75652));const DefaultDOFParam={'type':exports.PostProcessStepType['DepthOfField'],'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
+ const _0x374694=_0x2e41;(function(_0xcf7d96,_0x3045f1){const _0x2d3e82=_0x2e41,_0x45691b=_0xcf7d96();while(!![]){try{const _0xdc98b1=-parseInt(_0x2d3e82(0x18a))/0x1*(parseInt(_0x2d3e82(0x188))/0x2)+-parseInt(_0x2d3e82(0x18c))/0x3+parseInt(_0x2d3e82(0x187))/0x4*(-parseInt(_0x2d3e82(0x185))/0x5)+-parseInt(_0x2d3e82(0x186))/0x6+-parseInt(_0x2d3e82(0x18d))/0x7+parseInt(_0x2d3e82(0x184))/0x8+parseInt(_0x2d3e82(0x18b))/0x9;if(_0xdc98b1===_0x3045f1)break;else _0x45691b['push'](_0x45691b['shift']());}catch(_0x102bfd){_0x45691b['push'](_0x45691b['shift']());}}}(_0x1735,0xc0a4e));const DefaultGTAOParam={'type':exports.PostProcessStepType[_0x374694(0x189)],'distanceExponent':0x1,'distanceFallOff':0x1,'radius':0.25,'scale':0x1,'thickness':0x1,'samples':0x10,'useTemporalFiltering':![]};function _0x2e41(_0x65f2f4,_0x52aefb){_0x65f2f4=_0x65f2f4-0x184;const _0x17352d=_0x1735();let _0x2e410f=_0x17352d[_0x65f2f4];return _0x2e410f;}function _0x1735(){const _0xc85d30=['5KNezmD','1574988MZHYvf','563236TeAzDV','159656dQwfKf','GroundTruthAmbientOcclusion','7jHIUOC','30808827VEfrAm','2689341ANwNZU','9348066mAdkOi','4478840MmGylM'];_0x1735=function(){return _0xc85d30;};return _0x1735();}
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 _0x1b7e7c=_0x5173;function _0xa32c(){const _0x37ad19=['1685YaYmsh','14158884dZWzLt','1836QrFRze','3pJvoTB','1970437zSuDOg','27296wInWNz','11RIubTz','1359220aLEkNq','Outline','3905190akISSy','2177772CJfXly','19854tEePrD','1XNhvOc'];_0xa32c=function(){return _0x37ad19;};return _0xa32c();}(function(_0x2e9bd0,_0x8aa759){const _0x386642=_0x5173,_0x2c5c87=_0x2e9bd0();while(!![]){try{const _0x1328d0=-parseInt(_0x386642(0x1a2))/0x1*(-parseInt(_0x386642(0x19d))/0x2)+-parseInt(_0x386642(0x199))/0x3*(-parseInt(_0x386642(0x1a0))/0x4)+-parseInt(_0x386642(0x1a3))/0x5*(parseInt(_0x386642(0x1a1))/0x6)+-parseInt(_0x386642(0x19a))/0x7+-parseInt(_0x386642(0x19b))/0x8*(parseInt(_0x386642(0x198))/0x9)+-parseInt(_0x386642(0x19f))/0xa*(-parseInt(_0x386642(0x19c))/0xb)+parseInt(_0x386642(0x1a4))/0xc;if(_0x1328d0===_0x8aa759)break;else _0x2c5c87['push'](_0x2c5c87['shift']());}catch(_0x241564){_0x2c5c87['push'](_0x2c5c87['shift']());}}}(_0xa32c,0xab56f));function _0x5173(_0x49b2a3,_0x329685){_0x49b2a3=_0x49b2a3-0x198;const _0xa32c54=_0xa32c();let _0x5173b4=_0xa32c54[_0x49b2a3];return _0x5173b4;}const DefaultOutlineParams={'type':exports.PostProcessStepType[_0x1b7e7c(0x19e)],'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 _0x164c70=_0x53d0;(function(_0xb80239,_0x590f0c){const _0x62239=_0x53d0,_0x1c97c5=_0xb80239();while(!![]){try{const _0x4c6578=parseInt(_0x62239(0xd4))/0x1+parseInt(_0x62239(0xd3))/0x2*(-parseInt(_0x62239(0xd7))/0x3)+parseInt(_0x62239(0xda))/0x4+parseInt(_0x62239(0xd5))/0x5*(parseInt(_0x62239(0xd2))/0x6)+-parseInt(_0x62239(0xdb))/0x7*(-parseInt(_0x62239(0xd1))/0x8)+parseInt(_0x62239(0xd6))/0x9*(-parseInt(_0x62239(0xd8))/0xa)+parseInt(_0x62239(0xdc))/0xb*(-parseInt(_0x62239(0xd9))/0xc);if(_0x4c6578===_0x590f0c)break;else _0x1c97c5['push'](_0x1c97c5['shift']());}catch(_0x5a2f41){_0x1c97c5['push'](_0x1c97c5['shift']());}}}(_0x44c0,0x6439f));function _0x44c0(){const _0x218d50=['10QIBOdi','91128hVScdJ','1121728kljGQY','675346tiKRcm','1221YkLdls','LensFlare','64XYOsyK','17022fpnQaD','8ocWWAH','643411ERyoOC','525nYsXww','3038859WyUCnG','301830AmFGpl'];_0x44c0=function(){return _0x218d50;};return _0x44c0();}function _0x53d0(_0x338db7,_0x3c16aa){_0x338db7=_0x338db7-0xd0;const _0x44c0c7=_0x44c0();let _0x53d0f2=_0x44c0c7[_0x338db7];return _0x53d0f2;}const DefaultLensFlareParam={'type':exports.PostProcessStepType[_0x164c70(0xd0)],'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 _0x546c1a=_0x3888;(function(_0x146d91,_0x5e40e7){const _0x2fbe09=_0x3888,_0x31507d=_0x146d91();while(!![]){try{const _0x153c19=parseInt(_0x2fbe09(0x11f))/0x1+-parseInt(_0x2fbe09(0x115))/0x2*(parseInt(_0x2fbe09(0x163))/0x3)+parseInt(_0x2fbe09(0x16f))/0x4+parseInt(_0x2fbe09(0x10e))/0x5*(parseInt(_0x2fbe09(0x17a))/0x6)+parseInt(_0x2fbe09(0x12b))/0x7*(-parseInt(_0x2fbe09(0x168))/0x8)+parseInt(_0x2fbe09(0x139))/0x9*(parseInt(_0x2fbe09(0x147))/0xa)+parseInt(_0x2fbe09(0x160))/0xb;if(_0x153c19===_0x5e40e7)break;else _0x31507d['push'](_0x31507d['shift']());}catch(_0xd92afe){_0x31507d['push'](_0x31507d['shift']());}}}(_0x1c3a,0xbc65d));function _0x3888(_0x4602cf,_0x1c61dc){_0x4602cf=_0x4602cf-0x104;const _0x1c3a67=_0x1c3a();let _0x38880c=_0x1c3a67[_0x4602cf];return _0x38880c;}function _0x1c3a(){const _0x5337b5=['ghostSamples','ghostSpacing','setOutlineObjects','6558079HfmGnL','Bloom','Antialiasing','3063jXYtTf','onDirtyCallback','outlineEdgeStrength','outlinePass','greaterThan','184ztVikg','bokehScaleNode','splice','getStepParam','edgeThicknessNode','updateAllUniforms','camera','156536FLomKD','getLUT3DTexture','maxblur','outlineEdgeThickness','effectUniforms','traaPass','outlineObjects','ghostTint','resolutionScale','velocity','strength','1863678ryCQjV','getViewZNode','markDirty','dofAperture','mul','edgeThickness','pulsePeriod','useTemporalFiltering','GroundTruthAmbientOcclusion','output','push','bloomRadius','assign','gtaoSamples','15KRpOjx','postProcessing','dispose','renderer','outlineVisibleEdgeColor','DepthOfField','outlineEnabled','1882pbMzZW','dofEnabled','LensFlare','gtaoEnabled','set','div','selectedObjects','edgeGlowNode','gtaoRadius','focusDistanceNode','884244ozumqv','bloomPass','type','distanceFallOff','setLUT3DTexture','add','lut3dTexture','buildPipeline','has','bloomStrength','distanceExponent','lensflarePass','239281XaCRIV','postProcessParam','gtaoScale','smaaEnabled','method','aperture','lensflareEnabled','edgeGlow','createEffectUniforms','steps','outlineEdgeGlow','select','scene','indexOf','31851lCDWfV','fxaa','value','hiddenEdgeColor','depth','render','thickness','samples','smaa','includes','bloomEnabled','getTextureNode','gtaoPass','updateCamera','190FsxctB','threshold','fxaaEnabled','onBuildFinalNode','focalLengthNode','outlinePulsePeriod','updateSteps','focus','visibleEdgeColor','Outline','traa','radius','needsUpdate','setMRT','ghostAttenuationFactor','edgeStrength','dofPass','bloomThreshold','outlineHiddenEdgeColor','scale','find','gtaoDistanceExponent'];_0x1c3a=function(){return _0x5337b5;};return _0x1c3a();}class PostProcessManager{constructor(_0x18e81e,_0x55f809,_0x5c9469,_0x497588,_0x27225b){const _0x1bf0dd=_0x3888;this[_0x1bf0dd(0x10f)]=null,this[_0x1bf0dd(0x175)]=[],this[_0x1bf0dd(0x173)]=null,this[_0x1bf0dd(0x166)]=null,this[_0x1bf0dd(0x120)]=null,this['dofPass']=null,this[_0x1bf0dd(0x145)]=null,this['traaPass']=null,this[_0x1bf0dd(0x12a)]=null,this[_0x1bf0dd(0x125)]=null,this[_0x1bf0dd(0x164)]=null,this[_0x1bf0dd(0x111)]=_0x18e81e,this['scene']=_0x55f809,this['camera']=_0x5c9469,this[_0x1bf0dd(0x12c)]=Object[_0x1bf0dd(0x10c)]({},_0x497588),this[_0x1bf0dd(0x164)]=_0x27225b!==null&&_0x27225b!==void 0?_0x27225b:null;}get['processing'](){const _0x3b5abb=_0x3888;return this[_0x3b5abb(0x10f)];}[_0x546c1a(0x146)](_0x1b1a88){const _0x3612a3=_0x546c1a;this[_0x3612a3(0x16e)]=_0x1b1a88,(!this['postProcessing']||!this[_0x3612a3(0x173)])&&(this[_0x3612a3(0x126)](),this[_0x3612a3(0x16d)](),this['markDirty']());}['setup'](){const _0x1254f4=_0x546c1a;(!this[_0x1254f4(0x10f)]||!this[_0x1254f4(0x173)])&&this[_0x1254f4(0x126)](),this['updateAllUniforms'](),this['markDirty']();}[_0x546c1a(0x126)](){const _0x4a2653=_0x546c1a;var _0x4b11f3,_0x1b7a59,_0xf991d5,_0x1183c2,_0x39c081;this['postProcessing']&&this['postProcessing'][_0x4a2653(0x110)]();this[_0x4a2653(0x10f)]=new webgpu.PostProcessing(this['renderer']),this[_0x4a2653(0x173)]=this[_0x4a2653(0x133)]();const _0x44a44e=tsl.pass(this['scene'],this[_0x4a2653(0x16e)]);_0x44a44e[_0x4a2653(0x154)](tsl.mrt({'output':tsl.output,'normal':tsl.normalView,'velocity':tsl.velocity}));const _0x53fe4b=_0x44a44e['getTextureNode'](_0x4a2653(0x109)),_0x40b390=_0x44a44e['getTextureNode']('normal'),_0x362e80=_0x44a44e['getTextureNode'](_0x4a2653(0x13d)),_0x4b36d8=_0x44a44e['getTextureNode'](_0x4a2653(0x178)),_0x739ad9=_0x44a44e[_0x4a2653(0x17b)](),_0x2204c4=this[_0x4a2653(0x173)],_0x2bb98b=(_0x4b11f3=this[_0x4a2653(0x16b)](exports.PostProcessStepType[_0x4a2653(0x161)]))!==null&&_0x4b11f3!==void 0?_0x4b11f3:DefaultBloomParam;this['bloomPass']=BloomNode_js.bloom(_0x53fe4b),this[_0x4a2653(0x120)][_0x4a2653(0x148)][_0x4a2653(0x13b)]=_0x2bb98b[_0x4a2653(0x148)],this[_0x4a2653(0x120)][_0x4a2653(0x179)][_0x4a2653(0x13b)]=_0x2bb98b[_0x4a2653(0x179)],this[_0x4a2653(0x120)]['radius'][_0x4a2653(0x13b)]=_0x2bb98b[_0x4a2653(0x152)];const _0x283204=_0x53fe4b[_0x4a2653(0x124)](this[_0x4a2653(0x120)][_0x4a2653(0x104)](_0x2204c4[_0x4a2653(0x128)])),_0x19cbd7=_0x2204c4[_0x4a2653(0x143)][_0x4a2653(0x167)](0.5)['select'](_0x283204,_0x53fe4b),_0x125535=(_0x1b7a59=this[_0x4a2653(0x16b)](exports.PostProcessStepType[_0x4a2653(0x117)]))!==null&&_0x1b7a59!==void 0?_0x1b7a59:DefaultLensFlareParam;this['lensflarePass']=LensflareNode_js.lensflare(this[_0x4a2653(0x120)][_0x4a2653(0x144)](),{'ghostTint':tsl.vec3(_0x125535[_0x4a2653(0x176)][0x0],_0x125535[_0x4a2653(0x176)][0x1],_0x125535['ghostTint'][0x2]),'threshold':tsl.float(_0x125535[_0x4a2653(0x148)]),'ghostSamples':tsl.float(_0x125535[_0x4a2653(0x15d)]),'ghostSpacing':tsl.float(_0x125535[_0x4a2653(0x15e)]),'ghostAttenuationFactor':tsl.float(_0x125535[_0x4a2653(0x155)]),'downSampleRatio':_0x125535['downSampleRatio']});const _0x2c386c=_0x19cbd7[_0x4a2653(0x124)](this['lensflarePass'][_0x4a2653(0x144)]()),_0x364f0f=_0x2204c4[_0x4a2653(0x131)][_0x4a2653(0x167)](0.5)['select'](_0x2c386c,_0x19cbd7),_0x53b120=(_0xf991d5=this[_0x4a2653(0x16b)](exports.PostProcessStepType[_0x4a2653(0x113)]))!==null&&_0xf991d5!==void 0?_0xf991d5:DefaultDOFParam;this['dofPass']=DepthOfFieldNode_js.dof(_0x364f0f,_0x739ad9,tsl.uniform(_0x53b120['focus']),tsl.uniform(_0x53b120[_0x4a2653(0x130)]),tsl.uniform(_0x53b120[_0x4a2653(0x171)]));const _0x4c9b61=_0x2204c4[_0x4a2653(0x116)]['greaterThan'](0.5)[_0x4a2653(0x136)](this[_0x4a2653(0x157)],_0x364f0f),_0x52b5d3=(_0x1183c2=this['getStepParam'](exports.PostProcessStepType[_0x4a2653(0x108)]))!==null&&_0x1183c2!==void 0?_0x1183c2:DefaultGTAOParam;this[_0x4a2653(0x145)]=GTAONode_js.ao(_0x362e80,_0x40b390,this[_0x4a2653(0x16e)]),this[_0x4a2653(0x145)][_0x4a2653(0x177)]=0.5,this[_0x4a2653(0x145)][_0x4a2653(0x129)][_0x4a2653(0x13b)]=_0x52b5d3[_0x4a2653(0x129)],this[_0x4a2653(0x145)][_0x4a2653(0x122)]['value']=_0x52b5d3[_0x4a2653(0x122)],this[_0x4a2653(0x145)]['radius'][_0x4a2653(0x13b)]=_0x52b5d3[_0x4a2653(0x152)],this[_0x4a2653(0x145)][_0x4a2653(0x15a)]['value']=_0x52b5d3['scale'],this[_0x4a2653(0x145)][_0x4a2653(0x13f)][_0x4a2653(0x13b)]=_0x52b5d3[_0x4a2653(0x13f)],this['gtaoPass'][_0x4a2653(0x140)][_0x4a2653(0x13b)]=_0x52b5d3[_0x4a2653(0x140)],this[_0x4a2653(0x145)][_0x4a2653(0x107)]=_0x52b5d3['useTemporalFiltering'];const _0x13fa95=this[_0x4a2653(0x145)][_0x4a2653(0x144)](),_0x3b96c1=_0x13fa95['r'],_0x186d1b=_0x4c9b61[_0x4a2653(0x104)](_0x3b96c1),_0x23463a=_0x2204c4[_0x4a2653(0x118)][_0x4a2653(0x167)](0.5)[_0x4a2653(0x136)](_0x186d1b,_0x4c9b61),_0x107561=(_0x39c081=this[_0x4a2653(0x16b)](exports.PostProcessStepType[_0x4a2653(0x150)]))!==null&&_0x39c081!==void 0?_0x39c081:DefaultOutlineParams;this[_0x4a2653(0x166)]=OutlineNode_js.outline(this[_0x4a2653(0x137)],this[_0x4a2653(0x16e)],{'selectedObjects':this['outlineObjects'],'edgeGlow':tsl.uniform(_0x107561['edgeGlow']),'edgeThickness':tsl.uniform(_0x107561[_0x4a2653(0x105)])});const {visibleEdge:_0x26217e,hiddenEdge:_0x452271}=this[_0x4a2653(0x166)],_0x1707fc=_0x2204c4[_0x4a2653(0x14c)][_0x4a2653(0x167)](0x0)[_0x4a2653(0x136)](_0x2204c4[_0x4a2653(0x14c)],tsl.uniform(0x1)),_0x2a7c9b=tsl.time[_0x4a2653(0x11a)](_0x1707fc)['mul'](0x2),_0x967f1=tsl.oscSine(_0x2a7c9b)[_0x4a2653(0x104)](0.5)[_0x4a2653(0x124)](0.5),_0x2a9522=_0x26217e['mul'](_0x2204c4[_0x4a2653(0x112)])[_0x4a2653(0x124)](_0x452271[_0x4a2653(0x104)](_0x2204c4['outlineHiddenEdgeColor']))['mul'](_0x2204c4['outlineEdgeStrength']),_0x4cf317=_0x2204c4['outlinePulsePeriod'][_0x4a2653(0x167)](0x0)[_0x4a2653(0x136)](_0x2a9522[_0x4a2653(0x104)](_0x967f1),_0x2a9522),_0x146363=_0x4cf317[_0x4a2653(0x124)](_0x23463a),_0xb941a4=_0x2204c4[_0x4a2653(0x114)][_0x4a2653(0x167)](0.5)[_0x4a2653(0x136)](_0x146363,_0x23463a),_0x299dd1=FXAANode_js.fxaa(_0xb941a4),_0x1b2b58=_0x2204c4[_0x4a2653(0x149)][_0x4a2653(0x167)](0.5)[_0x4a2653(0x136)](_0x299dd1,_0xb941a4),_0x3b89f9=SMAANode_js.smaa(_0x1b2b58),_0x286de9=_0x2204c4[_0x4a2653(0x12e)][_0x4a2653(0x167)](0.5)[_0x4a2653(0x136)](_0x3b89f9,_0x1b2b58),_0x37b398=this[_0x4a2653(0x16b)](exports.PostProcessStepType[_0x4a2653(0x162)]);let _0x31621f=_0x286de9;_0x37b398&&_0x37b398[_0x4a2653(0x12f)]===_0x4a2653(0x151)&&(this[_0x4a2653(0x174)]=TRAANode_js.traa(_0x286de9,_0x362e80,_0x4b36d8,this[_0x4a2653(0x16e)]),_0x31621f=this['traaPass']['getTextureNode']()),_0x31621f=this[_0x4a2653(0x14a)](_0x31621f),this[_0x4a2653(0x10f)]['outputNode']=_0x31621f,this['postProcessing'][_0x4a2653(0x153)]=!![];}['onBuildFinalNode'](_0x4a3904){return _0x4a3904;}['createEffectUniforms'](){const _0x5bf3ce=_0x546c1a;var _0x132dee,_0x590639,_0x21f3ed,_0x3e378e;const _0x4233bb=(_0x132dee=this[_0x5bf3ce(0x16b)](exports.PostProcessStepType['Bloom']))!==null&&_0x132dee!==void 0?_0x132dee:DefaultBloomParam,_0x8b914b=(_0x590639=this[_0x5bf3ce(0x16b)](exports.PostProcessStepType[_0x5bf3ce(0x113)]))!==null&&_0x590639!==void 0?_0x590639:DefaultDOFParam,_0x57462d=(_0x21f3ed=this[_0x5bf3ce(0x16b)](exports.PostProcessStepType['GroundTruthAmbientOcclusion']))!==null&&_0x21f3ed!==void 0?_0x21f3ed:DefaultGTAOParam,_0x14b6b0=(_0x3e378e=this[_0x5bf3ce(0x16b)](exports.PostProcessStepType['Outline']))!==null&&_0x3e378e!==void 0?_0x3e378e:DefaultOutlineParams;return {'bloomEnabled':tsl.uniform(0x0),'bloomStrength':tsl.uniform(_0x4233bb[_0x5bf3ce(0x179)]),'bloomThreshold':tsl.uniform(_0x4233bb[_0x5bf3ce(0x148)]),'bloomRadius':tsl.uniform(_0x4233bb[_0x5bf3ce(0x152)]),'dofEnabled':tsl.uniform(0x0),'dofFocus':tsl.uniform(_0x8b914b[_0x5bf3ce(0x14e)]),'dofAperture':tsl.uniform(_0x8b914b[_0x5bf3ce(0x130)]),'dofMaxBlur':tsl.uniform(_0x8b914b['maxblur']),'gtaoEnabled':tsl.uniform(0x0),'gtaoScale':tsl.uniform(_0x57462d[_0x5bf3ce(0x15a)]),'gtaoDistanceExponent':tsl.uniform(_0x57462d['distanceExponent']),'gtaoDistanceFallOff':tsl.uniform(_0x57462d['distanceFallOff']),'gtaoRadius':tsl.uniform(_0x57462d[_0x5bf3ce(0x152)]),'gtaoThickness':tsl.uniform(_0x57462d['thickness']),'gtaoSamples':tsl.uniform(_0x57462d[_0x5bf3ce(0x140)]),'outlineEnabled':tsl.uniform(0x0),'outlineEdgeStrength':tsl.uniform(_0x14b6b0[_0x5bf3ce(0x156)]),'outlineEdgeGlow':tsl.uniform(_0x14b6b0[_0x5bf3ce(0x132)]),'outlineEdgeThickness':tsl.uniform(_0x14b6b0[_0x5bf3ce(0x105)]),'outlinePulsePeriod':tsl.uniform(_0x14b6b0['pulsePeriod']),'outlineVisibleEdgeColor':tsl.uniform(new webgpu.Color(_0x14b6b0[_0x5bf3ce(0x14f)])),'outlineHiddenEdgeColor':tsl.uniform(new webgpu.Color(_0x14b6b0[_0x5bf3ce(0x13c)])),'fxaaEnabled':tsl.uniform(0x0),'smaaEnabled':tsl.uniform(0x0),'lensflareEnabled':tsl.uniform(0x0)};}[_0x546c1a(0x16b)](_0x5d44b9){const _0x385b9f=_0x546c1a;var _0x484f3c;return (_0x484f3c=this[_0x385b9f(0x12c)][_0x385b9f(0x134)][_0x385b9f(0x15b)](_0x1b76ec=>_0x1b76ec[_0x385b9f(0x121)]===_0x5d44b9))!==null&&_0x484f3c!==void 0?_0x484f3c:null;}['updateAllUniforms'](){const _0x2b3ac1=_0x546c1a;if(!this[_0x2b3ac1(0x173)])return;const _0x5cd45f=this[_0x2b3ac1(0x173)],_0x2b2d20=new Set(this['postProcessParam'][_0x2b3ac1(0x134)]['map'](_0x4a5627=>_0x4a5627['type']));_0x5cd45f[_0x2b3ac1(0x143)][_0x2b3ac1(0x13b)]=_0x2b2d20[_0x2b3ac1(0x127)](exports.PostProcessStepType[_0x2b3ac1(0x161)])?0x1:0x0,_0x5cd45f[_0x2b3ac1(0x116)][_0x2b3ac1(0x13b)]=_0x2b2d20['has'](exports.PostProcessStepType[_0x2b3ac1(0x113)])?0x1:0x0,_0x5cd45f['gtaoEnabled']['value']=_0x2b2d20[_0x2b3ac1(0x127)](exports.PostProcessStepType[_0x2b3ac1(0x108)])?0x1:0x0,_0x5cd45f[_0x2b3ac1(0x114)][_0x2b3ac1(0x13b)]=_0x2b2d20[_0x2b3ac1(0x127)](exports.PostProcessStepType[_0x2b3ac1(0x150)])?0x1:0x0,_0x5cd45f['lensflareEnabled'][_0x2b3ac1(0x13b)]=_0x2b2d20[_0x2b3ac1(0x127)](exports.PostProcessStepType[_0x2b3ac1(0x117)])?0x1:0x0;const _0x2d22fb=this[_0x2b3ac1(0x16b)](exports.PostProcessStepType[_0x2b3ac1(0x162)]);_0x2d22fb?(_0x5cd45f['fxaaEnabled'][_0x2b3ac1(0x13b)]=_0x2d22fb[_0x2b3ac1(0x12f)]===_0x2b3ac1(0x13a)?0x1:0x0,_0x5cd45f[_0x2b3ac1(0x12e)][_0x2b3ac1(0x13b)]=_0x2d22fb[_0x2b3ac1(0x12f)]===_0x2b3ac1(0x141)?0x1:0x0):(_0x5cd45f[_0x2b3ac1(0x149)][_0x2b3ac1(0x13b)]=0x0,_0x5cd45f[_0x2b3ac1(0x12e)]['value']=0x0);const _0x24cee7=this[_0x2b3ac1(0x16b)](exports.PostProcessStepType['Bloom']);_0x24cee7&&(_0x5cd45f[_0x2b3ac1(0x128)][_0x2b3ac1(0x13b)]=_0x24cee7['strength'],_0x5cd45f[_0x2b3ac1(0x158)][_0x2b3ac1(0x13b)]=_0x24cee7[_0x2b3ac1(0x148)],_0x5cd45f[_0x2b3ac1(0x10b)]['value']=_0x24cee7['radius'],this[_0x2b3ac1(0x120)]&&(this[_0x2b3ac1(0x120)][_0x2b3ac1(0x148)][_0x2b3ac1(0x13b)]=_0x24cee7[_0x2b3ac1(0x148)],this[_0x2b3ac1(0x120)]['strength'][_0x2b3ac1(0x13b)]=_0x24cee7['strength'],this['bloomPass'][_0x2b3ac1(0x152)]['value']=_0x24cee7[_0x2b3ac1(0x152)]));const _0x3a93b5=this[_0x2b3ac1(0x16b)](exports.PostProcessStepType[_0x2b3ac1(0x117)]);if(_0x3a93b5&&this[_0x2b3ac1(0x12a)]);const _0x5f518d=this[_0x2b3ac1(0x16b)](exports.PostProcessStepType[_0x2b3ac1(0x113)]);_0x5f518d&&(_0x5cd45f['dofFocus']['value']=_0x5f518d['focus'],_0x5cd45f[_0x2b3ac1(0x17d)][_0x2b3ac1(0x13b)]=_0x5f518d['aperture'],_0x5cd45f['dofMaxBlur'][_0x2b3ac1(0x13b)]=_0x5f518d[_0x2b3ac1(0x171)],this[_0x2b3ac1(0x157)]&&(this[_0x2b3ac1(0x157)][_0x2b3ac1(0x11e)][_0x2b3ac1(0x13b)]=_0x5f518d[_0x2b3ac1(0x14e)],this[_0x2b3ac1(0x157)][_0x2b3ac1(0x14b)][_0x2b3ac1(0x13b)]=_0x5f518d[_0x2b3ac1(0x130)],this[_0x2b3ac1(0x157)][_0x2b3ac1(0x169)]['value']=_0x5f518d['maxblur']));const _0x32f368=this['getStepParam'](exports.PostProcessStepType[_0x2b3ac1(0x108)]);_0x32f368&&(_0x5cd45f[_0x2b3ac1(0x12d)][_0x2b3ac1(0x13b)]=_0x32f368[_0x2b3ac1(0x15a)],_0x5cd45f[_0x2b3ac1(0x15c)]['value']=_0x32f368['distanceExponent'],_0x5cd45f['gtaoDistanceFallOff']['value']=_0x32f368[_0x2b3ac1(0x122)],_0x5cd45f[_0x2b3ac1(0x11d)][_0x2b3ac1(0x13b)]=_0x32f368[_0x2b3ac1(0x152)],_0x5cd45f['gtaoThickness'][_0x2b3ac1(0x13b)]=_0x32f368['thickness'],_0x5cd45f[_0x2b3ac1(0x10d)][_0x2b3ac1(0x13b)]=_0x32f368[_0x2b3ac1(0x140)],this[_0x2b3ac1(0x145)]&&(this['gtaoPass'][_0x2b3ac1(0x129)][_0x2b3ac1(0x13b)]=_0x32f368['distanceExponent'],this[_0x2b3ac1(0x145)][_0x2b3ac1(0x122)][_0x2b3ac1(0x13b)]=_0x32f368[_0x2b3ac1(0x122)],this[_0x2b3ac1(0x145)][_0x2b3ac1(0x152)]['value']=_0x32f368[_0x2b3ac1(0x152)],this[_0x2b3ac1(0x145)]['scale']['value']=_0x32f368['scale'],this['gtaoPass'][_0x2b3ac1(0x13f)][_0x2b3ac1(0x13b)]=_0x32f368[_0x2b3ac1(0x13f)],this[_0x2b3ac1(0x145)][_0x2b3ac1(0x140)][_0x2b3ac1(0x13b)]=_0x32f368[_0x2b3ac1(0x140)],this['gtaoPass']['useTemporalFiltering']=_0x32f368['useTemporalFiltering']));const _0x1adb17=this['getStepParam'](exports.PostProcessStepType[_0x2b3ac1(0x150)]);_0x1adb17&&(_0x5cd45f[_0x2b3ac1(0x165)][_0x2b3ac1(0x13b)]=_0x1adb17['edgeStrength'],_0x5cd45f[_0x2b3ac1(0x135)][_0x2b3ac1(0x13b)]=_0x1adb17[_0x2b3ac1(0x132)],_0x5cd45f[_0x2b3ac1(0x172)][_0x2b3ac1(0x13b)]=_0x1adb17[_0x2b3ac1(0x105)],_0x5cd45f['outlinePulsePeriod']['value']=_0x1adb17[_0x2b3ac1(0x106)],_0x5cd45f[_0x2b3ac1(0x112)][_0x2b3ac1(0x13b)][_0x2b3ac1(0x119)](_0x1adb17['visibleEdgeColor']),_0x5cd45f[_0x2b3ac1(0x159)]['value'][_0x2b3ac1(0x119)](_0x1adb17[_0x2b3ac1(0x13c)]),this[_0x2b3ac1(0x166)]&&(this[_0x2b3ac1(0x166)][_0x2b3ac1(0x11c)][_0x2b3ac1(0x13b)]=_0x1adb17[_0x2b3ac1(0x132)],this[_0x2b3ac1(0x166)][_0x2b3ac1(0x16c)][_0x2b3ac1(0x13b)]=_0x1adb17[_0x2b3ac1(0x105)],this['outlinePass'][_0x2b3ac1(0x11b)]=this['outlineObjects']));}[_0x546c1a(0x14d)](_0x40ff78){const _0x407b4f=_0x546c1a;this[_0x407b4f(0x12c)][_0x407b4f(0x134)]=_0x40ff78,(!this[_0x407b4f(0x173)]||!this[_0x407b4f(0x10f)])&&this[_0x407b4f(0x126)](),this[_0x407b4f(0x16d)](),this[_0x407b4f(0x17c)]();}['addOutlineObject'](_0x1b052f){const _0x45c38d=_0x546c1a;!this['outlineObjects'][_0x45c38d(0x142)](_0x1b052f)&&(this[_0x45c38d(0x175)][_0x45c38d(0x10a)](_0x1b052f),this[_0x45c38d(0x166)]&&(this[_0x45c38d(0x166)][_0x45c38d(0x11b)]=this[_0x45c38d(0x175)])),this['markDirty']();}[_0x546c1a(0x15f)](_0x4f7cc3){const _0x4574de=_0x546c1a;this[_0x4574de(0x175)]['length']=0x0,this[_0x4574de(0x175)][_0x4574de(0x10a)](..._0x4f7cc3),this['outlinePass']&&(this['outlinePass']['selectedObjects']=this[_0x4574de(0x175)]),this['markDirty']();}['removeOutlineObject'](_0x69ec20){const _0x1fef10=_0x546c1a,_0x562919=this[_0x1fef10(0x175)][_0x1fef10(0x138)](_0x69ec20);_0x562919>-1&&(this['outlineObjects'][_0x1fef10(0x16a)](_0x562919,0x1),this[_0x1fef10(0x166)]&&(this['outlinePass'][_0x1fef10(0x11b)]=this[_0x1fef10(0x175)])),this['markDirty']();}[_0x546c1a(0x123)](_0x10dbc7){const _0x58def0=_0x546c1a;this[_0x58def0(0x125)]=_0x10dbc7,this[_0x58def0(0x126)](),this[_0x58def0(0x16d)](),this[_0x58def0(0x17c)]();}[_0x546c1a(0x170)](){const _0x5b9846=_0x546c1a;return this[_0x5b9846(0x125)];}[_0x546c1a(0x13e)](){const _0x1ff7f1=_0x546c1a;if(this['postProcessing'])return this[_0x1ff7f1(0x10f)][_0x1ff7f1(0x13e)](),!![];return ![];}['destroy'](){const _0x1ee76a=_0x546c1a;this['outlineObjects']=[],this['effectUniforms']=null,this['outlinePass']=null,this[_0x1ee76a(0x120)]=null,this['dofPass']=null,this[_0x1ee76a(0x145)]=null,this['traaPass']=null,this[_0x1ee76a(0x12a)]=null,this[_0x1ee76a(0x125)]=null,this[_0x1ee76a(0x10f)]&&(this[_0x1ee76a(0x10f)][_0x1ee76a(0x110)](),this[_0x1ee76a(0x10f)]=null);}['markDirty'](){const _0x2a8068=_0x546c1a;this[_0x2a8068(0x164)]&&this[_0x2a8068(0x164)]();}}
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
+ function _0x25ef(_0x25dd92,_0x1f118e){_0x25dd92=_0x25dd92-0x78;const _0x24da44=_0x24da();let _0x25ef47=_0x24da44[_0x25dd92];return _0x25ef47;}const _0xa61c4a=_0x25ef;(function(_0x274d5b,_0x2f2de5){const _0x59c856=_0x25ef,_0x47f5b4=_0x274d5b();while(!![]){try{const _0x12db82=parseInt(_0x59c856(0xb7))/0x1+-parseInt(_0x59c856(0xba))/0x2*(-parseInt(_0x59c856(0x7b))/0x3)+-parseInt(_0x59c856(0xbe))/0x4*(parseInt(_0x59c856(0x9e))/0x5)+-parseInt(_0x59c856(0xb8))/0x6+-parseInt(_0x59c856(0x81))/0x7*(parseInt(_0x59c856(0x8a))/0x8)+parseInt(_0x59c856(0x78))/0x9*(parseInt(_0x59c856(0xe2))/0xa)+parseInt(_0x59c856(0x7f))/0xb;if(_0x12db82===_0x2f2de5)break;else _0x47f5b4['push'](_0x47f5b4['shift']());}catch(_0x3edfdb){_0x47f5b4['push'](_0x47f5b4['shift']());}}}(_0x24da,0xdd991));function _0x24da(){const _0x35436c=['destroyPostProcess','world','25093673dIblZi','position','3688601PaOtBi','resizeObserver','uiDom','setSize','alpha','clientWidth','domElement','observe','createUILayer','16gFGtns','100%','scene','App\x20is\x20not\x20initialized','render','setAlpha','setup','setStencil','markRenderStateDirty','outputBufferType','createRenderer','camera','setToneMappingExposure','renderAsImage','getContext','devicePixelRatio','none','div','scene-uiLayer','image/jpeg','5mNSWai','shadowMapType','_app','setPixelRatio','addOutlineObject','updateSteps','labelRenderer','shadowMapEnabled','createLabelRenderer','toneMapping','setToneMapping','_canvasContainer','logarithmicDepthBuffer','updateCamera','samples','contentBoxSize','querySelector','getElementById','toDataURL','.scene-uiLayer','top','stencil','renderer','remove','setShadowMapEnabled','1627440nVgidv','10072740MXvcnx','app','2euZyPW','clientHeight','removeOutlineObject','setOutlineObjects','5207104rtZbRZ','className','disconnect','Can\x20not\x20create\x20context','dispose','setAnimationLoop','onAfterPostProcessRender','zIndex','appendChild','removeChild','init','forceWebGL','setDepth','postProcessManager','height','style','absolute','onWindowResize','antialias','isLabelRendererNeeded','drawImage','type','setLogarithmicDepthBufferEnabled','updateRendererSettings','enabled','updatePostProcess','setupPostProcess','_uiDom','left','postProcessParam','width','pointerEvents','onCameraChangedDelegate','isRenderStateDirty','shadowMap','scene-labelRenderer','193460HEWBos','_renderer','0px','destroy','canvas','423FtFZWq','_outerContainer','toneMappingExposure','372516gqdddx','depth'];_0x24da=function(){return _0x35436c;};return _0x24da();}class Viewport{get[_0xa61c4a(0x83)](){const _0x2edc1a=_0xa61c4a;return this[_0x2edc1a(0xd9)];}get[_0xa61c4a(0xe6)](){const _0x4a9b49=_0xa61c4a;return this[_0x4a9b49(0xa9)];}get['outer'](){const _0x348eee=_0xa61c4a;return this[_0x348eee(0x79)];}get[_0xa61c4a(0xb4)](){if(!this['_renderer'])throw Error('Renderer\x20is\x20not\x20initialized');return this['_renderer'];}get[_0xa61c4a(0xb9)](){const _0x365938=_0xa61c4a;if(!this[_0x365938(0xa0)])throw Error(_0x365938(0x8d));return this[_0x365938(0xa0)];}constructor(_0x114a0f,_0x3bb55a,_0x1e76fd,_0x23603c){const _0x3d4aa3=_0xa61c4a;this[_0x3d4aa3(0xd9)]=null,this['_renderer']=null,this['labelRenderer']=null,this[_0x3d4aa3(0xa0)]=null,this['resizeObserver']=null,this[_0x3d4aa3(0x79)]=null,this[_0x3d4aa3(0xa9)]=null,this[_0x3d4aa3(0xdf)]=!![],this[_0x3d4aa3(0xcb)]=null,this['postProcessParam']=Object['assign']({},_0x23603c),this[_0x3d4aa3(0xa0)]=_0x114a0f,_0x3bb55a['elementId']&&(this[_0x3d4aa3(0x79)]=document[_0x3d4aa3(0xaf)](_0x3bb55a['elementId'])),this[_0x3d4aa3(0x94)](_0x1e76fd),_0x3bb55a[_0x3d4aa3(0xd1)]&&this[_0x3d4aa3(0xa6)](),_0x3bb55a['isUILayerNeeded']&&this[_0x3d4aa3(0x89)](),this[_0x3d4aa3(0x79)]&&(this[_0x3d4aa3(0x82)]=new ResizeObserver(_0x50c816=>{const _0x475838=_0x3d4aa3;for(let _0xfb3e56 of _0x50c816){_0xfb3e56[_0x475838(0xad)]&&this['onWindowResize']();}}),this[_0x3d4aa3(0x82)][_0x3d4aa3(0x88)](this['_outerContainer'])),this['app'][_0x3d4aa3(0xde)]['add'](()=>{const _0x516a50=_0x3d4aa3;this[_0x516a50(0xcb)]&&(this[_0x516a50(0xcb)][_0x516a50(0xab)](this[_0x516a50(0xb9)][_0x516a50(0x95)]),this[_0x516a50(0xcb)][_0x516a50(0x90)]());});}[_0xa61c4a(0x94)](_0x247fbb){const _0x244d54=_0xa61c4a;this['_outerContainer']&&!this[_0x244d54(0xa9)]&&(this[_0x244d54(0xa9)]=document['createElement'](_0x244d54(0x9b)),this['_canvasContainer'][_0x244d54(0xcd)]['left']=_0x244d54(0xe4),this[_0x244d54(0xa9)][_0x244d54(0xcd)]['top']='0px',this[_0x244d54(0xa9)][_0x244d54(0xcd)][_0x244d54(0xdc)]=_0x244d54(0x8b),this['_canvasContainer'][_0x244d54(0xcd)][_0x244d54(0xcc)]=_0x244d54(0x8b),this[_0x244d54(0x79)][_0x244d54(0xc6)](this[_0x244d54(0xa9)]));const _0x4a8f69=this[_0x244d54(0xa9)];this[_0x244d54(0xe3)]&&(_0x4a8f69&&_0x4a8f69[_0x244d54(0xc7)](this[_0x244d54(0xe3)][_0x244d54(0x87)]),this[_0x244d54(0xe3)][_0x244d54(0xc2)]());let _0x597bbb=_0x4a8f69?_0x4a8f69['clientWidth']:0x200,_0x1a00c7=_0x4a8f69?_0x4a8f69[_0x244d54(0xbb)]:0x200,_0x342ae7={};_0x342ae7[_0x244d54(0xc9)]=_0x247fbb[_0x244d54(0xc9)],_0x342ae7[_0x244d54(0xd0)]=_0x247fbb['antialias'],_0x342ae7[_0x244d54(0x7c)]=_0x247fbb[_0x244d54(0x7c)],_0x342ae7['stencil']=_0x247fbb[_0x244d54(0xb3)],_0x342ae7['alpha']=_0x247fbb[_0x244d54(0x85)],_0x342ae7['logarithmicDepthBuffer']=_0x247fbb['logarithmicDepthBuffer'],_0x342ae7[_0x244d54(0xac)]=_0x247fbb[_0x244d54(0xac)],_0x342ae7[_0x244d54(0x93)]=_0x247fbb[_0x244d54(0x93)],this['_renderer']=new webgpu.WebGPURenderer(_0x342ae7),this[_0x244d54(0xe3)][_0x244d54(0xa1)](window[_0x244d54(0x99)]),this[_0x244d54(0xe3)][_0x244d54(0x84)](_0x597bbb,_0x1a00c7),this[_0x244d54(0xe3)][_0x244d54(0xe0)][_0x244d54(0xd6)]=_0x247fbb[_0x244d54(0xa5)],this[_0x244d54(0xe3)][_0x244d54(0xe0)][_0x244d54(0xd3)]=_0x247fbb[_0x244d54(0x9f)],this[_0x244d54(0xe3)][_0x244d54(0xa7)]=_0x247fbb[_0x244d54(0xa7)],this['_renderer'][_0x244d54(0x7a)]=_0x247fbb[_0x244d54(0x7a)],this[_0x244d54(0xe3)]['setClearAlpha'](0x0),_0x4a8f69&&_0x4a8f69[_0x244d54(0xc6)](this[_0x244d54(0xe3)][_0x244d54(0x87)]);}['createLabelRenderer'](){const _0x3d9c85=_0xa61c4a,_0x228aaa=this[_0x3d9c85(0x79)];this[_0x3d9c85(0xa4)]&&(_0x228aaa&&_0x228aaa[_0x3d9c85(0xc7)](this['labelRenderer'][_0x3d9c85(0x87)]));let _0x46ad20=_0x228aaa?_0x228aaa[_0x3d9c85(0x86)]:0x200,_0x14f40a=_0x228aaa?_0x228aaa[_0x3d9c85(0xbb)]:0x200;this['labelRenderer']=new Addons_js.CSS2DRenderer(),this[_0x3d9c85(0xa4)][_0x3d9c85(0x84)](_0x46ad20,_0x14f40a),this[_0x3d9c85(0xa4)]['domElement']['style'][_0x3d9c85(0xdd)]=_0x3d9c85(0x9a),this[_0x3d9c85(0xa4)][_0x3d9c85(0x87)]['style'][_0x3d9c85(0x80)]=_0x3d9c85(0xce),this[_0x3d9c85(0xa4)][_0x3d9c85(0x87)][_0x3d9c85(0xcd)][_0x3d9c85(0xb2)]=_0x3d9c85(0xe4),this[_0x3d9c85(0xa4)]['domElement'][_0x3d9c85(0xbf)]=_0x3d9c85(0xe1),_0x228aaa&&_0x228aaa['appendChild'](this[_0x3d9c85(0xa4)][_0x3d9c85(0x87)]);}[_0xa61c4a(0x89)](){const _0x12092f=_0xa61c4a;if(!this[_0x12092f(0x79)])return;let _0x5230cc=this[_0x12092f(0x79)][_0x12092f(0xae)](_0x12092f(0xb1));!_0x5230cc&&(_0x5230cc=document['createElement'](_0x12092f(0x9b)),_0x5230cc[_0x12092f(0xbf)]=_0x12092f(0x9c),_0x5230cc['id']=_0x12092f(0x9c),_0x5230cc['style'][_0x12092f(0x80)]=_0x12092f(0xce),_0x5230cc[_0x12092f(0xcd)][_0x12092f(0xda)]='0',_0x5230cc[_0x12092f(0xcd)][_0x12092f(0xb2)]='0',_0x5230cc[_0x12092f(0xcd)]['width']='100%',_0x5230cc[_0x12092f(0xcd)][_0x12092f(0xcc)]='100%',_0x5230cc[_0x12092f(0xcd)][_0x12092f(0xdd)]=_0x12092f(0x9a),_0x5230cc['style'][_0x12092f(0xc5)]='10',this['_outerContainer'][_0x12092f(0xc6)](_0x5230cc),this[_0x12092f(0xd9)]=_0x5230cc);}[_0xa61c4a(0xc8)](){this['setupPostProcess']();}[_0xa61c4a(0xd8)](){const _0x2b34de=_0xa61c4a;!this['postProcessManager']&&(this[_0x2b34de(0xcb)]=this['createPostProcessManager']()),this[_0x2b34de(0xcb)]['setup']();}['createPostProcessManager'](){const _0x4c6f05=_0xa61c4a;return new PostProcessManager(this[_0x4c6f05(0xb4)],this['app'][_0x4c6f05(0x7e)][_0x4c6f05(0x8c)],this['app']['camera'],this[_0x4c6f05(0xdb)],()=>this[_0x4c6f05(0x92)]());}[_0xa61c4a(0xd7)](_0x1cfa58){const _0x23c463=_0xa61c4a;this[_0x23c463(0xcb)]&&this[_0x23c463(0xcb)][_0x23c463(0xa3)](_0x1cfa58);}[_0xa61c4a(0xd5)](_0x23b619){const _0x461bec=_0xa61c4a;this[_0x461bec(0x94)](_0x23b619),this[_0x461bec(0x92)]();}[_0xa61c4a(0xa2)](_0x2fccad){const _0x5f3dc5=_0xa61c4a;this['postProcessManager']&&this[_0x5f3dc5(0xcb)][_0x5f3dc5(0xa2)](_0x2fccad);}[_0xa61c4a(0xbd)](_0x583b09){const _0x434aed=_0xa61c4a;this[_0x434aed(0xcb)]&&this[_0x434aed(0xcb)][_0x434aed(0xbd)](_0x583b09);}['removeOutlineObject'](_0x320802){const _0x532d8c=_0xa61c4a;this[_0x532d8c(0xcb)]&&this[_0x532d8c(0xcb)][_0x532d8c(0xbc)](_0x320802);}[_0xa61c4a(0x7d)](){const _0x536463=_0xa61c4a;this[_0x536463(0xcb)]&&(this[_0x536463(0xcb)][_0x536463(0xe5)](),this['postProcessManager']=null);}[_0xa61c4a(0xcf)](){const _0x4d73cb=_0xa61c4a;let _0x3b58d2=this[_0x4d73cb(0x79)];if(!_0x3b58d2)return;this['app']['onWindowResize'](_0x3b58d2[_0x4d73cb(0x86)],_0x3b58d2[_0x4d73cb(0xbb)]),this[_0x4d73cb(0xb4)][_0x4d73cb(0x84)](_0x3b58d2['clientWidth'],_0x3b58d2[_0x4d73cb(0xbb)]);if(this[_0x4d73cb(0xa4)])this['labelRenderer'][_0x4d73cb(0x84)](_0x3b58d2[_0x4d73cb(0x86)],_0x3b58d2[_0x4d73cb(0xbb)]);this[_0x4d73cb(0x92)]();}[_0xa61c4a(0x92)](){this['isRenderStateDirty']=!![];}[_0xa61c4a(0x8e)](){const _0x39cb4c=_0xa61c4a;if(!this[_0x39cb4c(0xdf)])return;if(this[_0x39cb4c(0xcb)]&&this[_0x39cb4c(0xcb)]['render']());else this[_0x39cb4c(0xb4)]['render'](this[_0x39cb4c(0xb9)][_0x39cb4c(0x7e)]['scene'],this[_0x39cb4c(0xb9)]['camera']);this[_0x39cb4c(0xc4)](),this[_0x39cb4c(0xa4)]&&this[_0x39cb4c(0xa4)][_0x39cb4c(0x8e)](this[_0x39cb4c(0xb9)][_0x39cb4c(0x7e)][_0x39cb4c(0x8c)],this[_0x39cb4c(0xb9)][_0x39cb4c(0x95)]),this['isRenderStateDirty']=![];}[_0xa61c4a(0xc4)](){}async[_0xa61c4a(0x97)](_0x86edf=0x400,_0x2d6944=0x400){const _0x5a6fc3=_0xa61c4a;try{if(this[_0x5a6fc3(0xcb)]&&this[_0x5a6fc3(0xcb)]['render']()){}else await this[_0x5a6fc3(0xb4)][_0x5a6fc3(0x8e)](this['app'][_0x5a6fc3(0x7e)][_0x5a6fc3(0x8c)],this[_0x5a6fc3(0xb9)][_0x5a6fc3(0x95)]);const _0x5629a3=this[_0x5a6fc3(0xb4)]['domElement']['width'],_0x4d7a99=this[_0x5a6fc3(0xb4)][_0x5a6fc3(0x87)][_0x5a6fc3(0xcc)];let _0x8c30f5=_0x5629a3||_0x86edf,_0x583f42=_0x4d7a99||_0x2d6944;(_0x8c30f5<=0x0||_0x583f42<=0x0)&&(_0x8c30f5=_0x86edf,_0x583f42=_0x2d6944);const _0x2f9a13=document['createElement']('canvas');_0x2f9a13[_0x5a6fc3(0xdc)]=_0x86edf,_0x2f9a13[_0x5a6fc3(0xcc)]=_0x2d6944;const _0x595bd9=_0x2f9a13[_0x5a6fc3(0x98)]('2d');if(!_0x595bd9)throw Error(_0x5a6fc3(0xc1));_0x595bd9[_0x5a6fc3(0xd2)](this[_0x5a6fc3(0xb4)][_0x5a6fc3(0x87)],0x0,0x0,_0x8c30f5,_0x583f42,0x0,0x0,_0x86edf,_0x2d6944);const _0x59220e=_0x2f9a13[_0x5a6fc3(0xb0)](_0x5a6fc3(0x9d));return _0x2f9a13[_0x5a6fc3(0xb5)](),_0x59220e;}catch(_0x46c43c){return '';}}[_0xa61c4a(0x8f)](_0x35e6d3){const _0x39f3c8=_0xa61c4a;if(!this['_renderer'])return;this[_0x39f3c8(0xe3)][_0x39f3c8(0x85)]=_0x35e6d3;}[_0xa61c4a(0xb6)](_0x521da3){const _0x358898=_0xa61c4a;if(!this[_0x358898(0xe3)])return;this[_0x358898(0xe3)][_0x358898(0xe0)][_0x358898(0xd6)]=_0x521da3;}['setShadowMapType'](_0xbdbf32){const _0x9b4951=_0xa61c4a;if(!this['_renderer'])return;this[_0x9b4951(0xe3)][_0x9b4951(0xe0)][_0x9b4951(0xd3)]=_0xbdbf32;}[_0xa61c4a(0xa8)](_0x4230bf){const _0xf8a363=_0xa61c4a;if(!this['_renderer'])return;this['_renderer'][_0xf8a363(0xa7)]=_0x4230bf;}[_0xa61c4a(0x96)](_0x4902ac){const _0x52f0eb=_0xa61c4a;if(!this[_0x52f0eb(0xe3)])return;this[_0x52f0eb(0xe3)][_0x52f0eb(0x7a)]=_0x4902ac;}[_0xa61c4a(0xd4)](_0x4a56c2){const _0x25a0cd=_0xa61c4a;if(!this[_0x25a0cd(0xe3)])return;this['_renderer'][_0x25a0cd(0xaa)]=_0x4a56c2;}[_0xa61c4a(0xca)](_0x4cd1a1){const _0x380fce=_0xa61c4a;if(!this['_renderer'])return;this[_0x380fce(0xe3)]['depth']=_0x4cd1a1;}[_0xa61c4a(0x91)](_0x14ab77){const _0x1eb407=_0xa61c4a;if(!this[_0x1eb407(0xe3)])return;this[_0x1eb407(0xe3)]['stencil']=_0x14ab77;}['destroy'](){const _0x29f231=_0xa61c4a;this[_0x29f231(0x7d)](),this[_0x29f231(0xb4)][_0x29f231(0xc3)](null),this[_0x29f231(0x82)]&&(this[_0x29f231(0x82)][_0x29f231(0xc0)](),this[_0x29f231(0x82)]=null),this[_0x29f231(0xa4)]&&(this[_0x29f231(0xa4)]['domElement'][_0x29f231(0xb5)](),this[_0x29f231(0xa4)]=null),this[_0x29f231(0xe3)]&&(this[_0x29f231(0xb4)][_0x29f231(0x87)][_0x29f231(0xb5)](),this['_renderer'][_0x29f231(0xc2)](),this[_0x29f231(0xe3)]=null),this['_canvasContainer']&&(this[_0x29f231(0xa9)][_0x29f231(0xb5)](),this[_0x29f231(0xa9)]=null),this[_0x29f231(0x79)]=null,this[_0x29f231(0xa0)]=null;}}
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
+ function _0x4fa2(){var _0x309783=['getFocuingData','destroy','4706324RNEfhK','enabled','unpossess','465546fUVLnd','stopFocusing','203607FWRPWk','controller','12850pXsEmF','4744zDPiQA','4GrXJhY','5786JmPTrS','focusTo','65uOyoaV','882426zwwjVD','control','camera','tick','3897TvVUUj','40628844uFxgto','4SykiWk','_control'];_0x4fa2=function(){return _0x309783;};return _0x4fa2();}function _0x31ed(_0x18f936,_0x591ed1){_0x18f936=_0x18f936-0x17e;var _0x4fa260=_0x4fa2();var _0x31eda7=_0x4fa260[_0x18f936];return _0x31eda7;}var _0x102298=_0x31ed;(function(_0x3be97d,_0x39405d){var _0x170f28=_0x31ed,_0x54718e=_0x3be97d();while(!![]){try{var _0x58520f=-parseInt(_0x170f28(0x185))/0x1*(parseInt(_0x170f28(0x189))/0x2)+parseInt(_0x170f28(0x18d))/0x3*(-parseInt(_0x170f28(0x193))/0x4)+-parseInt(_0x170f28(0x18c))/0x5*(parseInt(_0x170f28(0x183))/0x6)+-parseInt(_0x170f28(0x180))/0x7+-parseInt(_0x170f28(0x188))/0x8*(-parseInt(_0x170f28(0x191))/0x9)+parseInt(_0x170f28(0x187))/0xa*(-parseInt(_0x170f28(0x18a))/0xb)+parseInt(_0x170f28(0x192))/0xc;if(_0x58520f===_0x39405d)break;else _0x54718e['push'](_0x54718e['shift']());}catch(_0x9fdce4){_0x54718e['push'](_0x54718e['shift']());}}}(_0x4fa2,0x8ea21));class Pawn{get[_0x102298(0x18f)](){var _0x3b1a57=_0x102298;return this[_0x3b1a57(0x186)][_0x3b1a57(0x18f)];}set[_0x102298(0x181)](_0x3d547c){var _0x252584=_0x102298;this[_0x252584(0x18e)]['enabled']=_0x3d547c;}get['control'](){var _0x13ff3b=_0x102298;if(!this[_0x13ff3b(0x194)])throw new Error('Control\x20not\x20initialized');return this[_0x13ff3b(0x194)];}constructor(_0x22c8df){var _0x41298b=_0x102298;this[_0x41298b(0x194)]=null,this['isTickEnabled']=![],this[_0x41298b(0x186)]=_0x22c8df;}[_0x102298(0x190)](_0x517145){return;}['possess'](){}[_0x102298(0x182)](){}[_0x102298(0x18b)](_0xf55cf1,_0x1529a1,_0x48e6e3,_0x2c7f4c,_0x244cad=null,_0x32ae25=null){}[_0x102298(0x184)](){}[_0x102298(0x17e)](){return null;}[_0x102298(0x17f)](){}}
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
+ function _0x56dc(_0x2e3cb8,_0x5ac4eb){_0x2e3cb8=_0x2e3cb8-0x98;const _0x1573ec=_0x1573();let _0x56dcc9=_0x1573ec[_0x2e3cb8];return _0x56dcc9;}const _0x5d0822=_0x56dc;(function(_0x1051a9,_0x1db096){const _0x355201=_0x56dc,_0x29d0fb=_0x1051a9();while(!![]){try{const _0x147f1e=parseInt(_0x355201(0xa9))/0x1+parseInt(_0x355201(0xac))/0x2+-parseInt(_0x355201(0xc0))/0x3*(parseInt(_0x355201(0xa4))/0x4)+parseInt(_0x355201(0x9c))/0x5*(-parseInt(_0x355201(0xa2))/0x6)+-parseInt(_0x355201(0xaf))/0x7*(parseInt(_0x355201(0xb5))/0x8)+parseInt(_0x355201(0x9d))/0x9*(parseInt(_0x355201(0xbe))/0xa)+-parseInt(_0x355201(0x9f))/0xb*(-parseInt(_0x355201(0xa5))/0xc);if(_0x147f1e===_0x1db096)break;else _0x29d0fb['push'](_0x29d0fb['shift']());}catch(_0x397bb8){_0x29d0fb['push'](_0x29d0fb['shift']());}}}(_0x1573,0xb4dc8));function _0x1573(){const _0x48ddb3=['694920AHEaWN','clone','501KdeufZ','removeEventListener','changeEvent','update','unpossess','addEventListener','control','controller','set','5sgIXmz','36BWHxng','getFocuingData','764280xoxsTG','object','length','7414206oCaMzJ','normalize','19900wZfIrE','204uWhvcL','focusTo','onChange','_control','1274010MDPNGu','distanceTo','viewPort','716444DzWWTB','markRenderStateDirty','position','826eDpqjZ','kill','multiplyScalar','subVectors','anim','target','19256GzYiFz','stopFocusing','isEuler','quaternion','possess','Control\x20not\x20initialized','camera','copy','alpha'];_0x1573=function(){return _0x48ddb3;};return _0x1573();}class Orbital extends Pawn{get[_0x5d0822(0x99)](){const _0xf0e572=_0x5d0822;if(!this[_0xf0e572(0xa8)])throw new Error(_0xf0e572(0xba));return this['_control'];}get[_0x5d0822(0xbb)](){const _0xa5365d=_0x5d0822;return this[_0xa5365d(0x9a)][_0xa5365d(0xbb)];}constructor(_0x35ada3){const _0x11e755=_0x5d0822;super(_0x35ada3),this[_0x11e755(0xb3)]=null,this[_0x11e755(0xc2)]=()=>{const _0x3a627c=_0x11e755;this[_0x3a627c(0xa7)]();},this[_0x11e755(0xa8)]=new Addons_js.OrbitControls(_0x35ada3['camera'],_0x35ada3['viewPort']['canvas']),this[_0x11e755(0x99)][_0x11e755(0xb4)][_0x11e755(0x9b)](0x0,0x0,0x0),_0x35ada3[_0x11e755(0xbb)]['position'][_0x11e755(0x9b)](0x0,0x4,0x4),this[_0x11e755(0x99)][_0x11e755(0xc3)]();}[_0x5d0822(0xb9)](){const _0xad44f=_0x5d0822;super['possess'](),this[_0xad44f(0x99)][_0xad44f(0x98)]('change',this[_0xad44f(0xc2)]);}[_0x5d0822(0xc4)](){const _0x2fcfe2=_0x5d0822;super[_0x2fcfe2(0xc4)](),this[_0x2fcfe2(0x99)][_0x2fcfe2(0xc1)]('change',this['changeEvent']);}['onChange'](){const _0x298ec1=_0x5d0822;this[_0x298ec1(0x9a)][_0x298ec1(0xab)][_0x298ec1(0xad)]();}[_0x5d0822(0xa6)](_0x9a1927,_0x4077ba,_0x3ebcfd,_0x4e71c0,_0x1452f7=null,_0x32e560=null){const _0x44fe02=_0x5d0822;this[_0x44fe02(0xb6)]();let _0x30882d=null;(_0x4077ba===null||_0x4077ba===void 0?void 0:_0x4077ba[_0x44fe02(0xb7)])?_0x30882d=new webgpu.Quaternion()['setFromEuler'](_0x4077ba):_0x30882d=_0x4077ba;!_0x4077ba&&(_0x30882d=this['controller'][_0x44fe02(0xbb)]['quaternion']);_0x30882d[_0x44fe02(0xa3)]();let _0x61e7ee=new webgpu.Vector3(0x0,0x0,0x1);_0x61e7ee['applyQuaternion'](_0x30882d)[_0x44fe02(0xb1)](-1),_0x61e7ee['normalize']();let _0x4a3f9a=this[_0x44fe02(0xbb)][_0x44fe02(0xae)][_0x44fe02(0xbf)](),_0x5aa847=new webgpu.Vector3(_0x9a1927['x']+_0x61e7ee['x']*_0x3ebcfd*-1,_0x9a1927['y']+_0x61e7ee['y']*_0x3ebcfd*-1,_0x9a1927['z']+_0x61e7ee['z']*_0x3ebcfd*-1),_0x121913=new webgpu.Vector3()[_0x44fe02(0xb2)](_0x5aa847,_0x4a3f9a),_0x3779de=_0x121913[_0x44fe02(0xa1)]();_0x121913[_0x44fe02(0xa3)]();let _0x2753a2=this[_0x44fe02(0x99)][_0x44fe02(0xb4)]['clone'](),_0x513ed5=new webgpu.Vector3()['subVectors'](_0x9a1927,_0x2753a2),_0x4ae799=_0x513ed5['length']();_0x513ed5['normalize']();if(_0x3779de+_0x4ae799<0.1)return;const _0x21087c=this;let _0x4913a9={'alpha':0x0};this[_0x44fe02(0xb3)]=gsap.gsap['to'](_0x4913a9,{'duration':_0x4e71c0,'alpha':0x1,'onUpdate':()=>{const _0x5aa4f1=_0x44fe02;let _0x55d67a=_0x4913a9[_0x5aa4f1(0xbd)],_0x2bd857=new webgpu.Vector3(_0x4a3f9a['x']+_0x121913['x']*_0x55d67a*_0x3779de,_0x4a3f9a['y']+_0x121913['y']*_0x55d67a*_0x3779de,_0x4a3f9a['z']+_0x121913['z']*_0x55d67a*_0x3779de),_0x465342=new webgpu.Vector3(_0x2753a2['x']+_0x513ed5['x']*_0x55d67a*_0x4ae799,_0x2753a2['y']+_0x513ed5['y']*_0x55d67a*_0x4ae799,_0x2753a2['z']+_0x513ed5['z']*_0x55d67a*_0x4ae799);_0x21087c[_0x5aa4f1(0x99)][_0x5aa4f1(0xa0)][_0x5aa4f1(0xae)]['copy'](_0x2bd857),_0x21087c['control'][_0x5aa4f1(0xb4)][_0x5aa4f1(0xbc)](_0x465342),_0x21087c['control'][_0x5aa4f1(0xc3)]();_0x1452f7&&_0x1452f7();if(_0x21087c['controller'][_0x5aa4f1(0xab)])_0x21087c['controller'][_0x5aa4f1(0xab)]['markRenderStateDirty']();},'onComplete':function(){const _0x5d6995=_0x44fe02;_0x32e560&&_0x32e560();if(_0x21087c[_0x5d6995(0x9a)][_0x5d6995(0xab)])_0x21087c[_0x5d6995(0x9a)]['viewPort'][_0x5d6995(0xad)]();}});}[_0x5d0822(0x9e)](){const _0x1055e7=_0x5d0822;if(!this[_0x1055e7(0x99)]||!this[_0x1055e7(0xbb)])return null;const _0x2978a7=this[_0x1055e7(0xbb)][_0x1055e7(0xae)][_0x1055e7(0xbf)](),_0x15367d=this[_0x1055e7(0xbb)][_0x1055e7(0xb8)][_0x1055e7(0xbf)](),_0xc4f9a9=this[_0x1055e7(0x99)][_0x1055e7(0xb4)][_0x1055e7(0xbf)](),_0x5925b0=_0x2978a7[_0x1055e7(0xaa)](_0xc4f9a9);return {'position':_0xc4f9a9,'quaternion':_0x15367d,'distance':_0x5925b0};}['stopFocusing'](){const _0x240ff9=_0x5d0822;this[_0x240ff9(0xb3)]&&this[_0x240ff9(0xb3)][_0x240ff9(0xb0)](),this[_0x240ff9(0xb3)]=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
+ function _0x4a0a(_0x1da67,_0x19a2f9){_0x1da67=_0x1da67-0x166;const _0x438002=_0x4380();let _0x4a0acc=_0x438002[_0x1da67];return _0x4a0acc;}const _0x34655d=_0x4a0a;(function(_0x139a92,_0x102c4b){const _0x5a6efa=_0x4a0a,_0x54de4c=_0x139a92();while(!![]){try{const _0x35607b=-parseInt(_0x5a6efa(0x193))/0x1*(parseInt(_0x5a6efa(0x168))/0x2)+parseInt(_0x5a6efa(0x18d))/0x3+-parseInt(_0x5a6efa(0x19a))/0x4*(parseInt(_0x5a6efa(0x19c))/0x5)+-parseInt(_0x5a6efa(0x17c))/0x6+parseInt(_0x5a6efa(0x1d6))/0x7*(parseInt(_0x5a6efa(0x1bf))/0x8)+parseInt(_0x5a6efa(0x1b5))/0x9*(parseInt(_0x5a6efa(0x180))/0xa)+parseInt(_0x5a6efa(0x1b2))/0xb;if(_0x35607b===_0x102c4b)break;else _0x54de4c['push'](_0x54de4c['shift']());}catch(_0x548c14){_0x54de4c['push'](_0x54de4c['shift']());}}}(_0x4380,0x7c4ed));function _0x4380(){const _0x275a56=['onActorHoverEnd','enabled','destroy','onPointerEnter','length','top','shiftKey','isHoverEnabled','intersectObjects','_onActorHoverEndDelegate','subVectors','pointerPosition','2353944ApDyde','fireComponentClick','pointerenter','fireComponentHoverBegin','onActorClickDelegate','_onComponentClickDelegate','122522MFhswK','prepareClickHit','_onActorDoubleClickDelegate','isClickEnabled','removeCorePointerListeners','onPointerMove','getHitResultFromScreenPoint','24052FWevop','component','335XNEGHc','assign','onActorHoverEndDelegate','_app','_onClickNothingDelegate','copy','set','pointerleave','onComponentHoverBeginDelegate','add','viewPort','onPointerUp','getAllHitResultFromScreenPoint','onPointerEnterEvent','clientWidth','onActorDoubleClick','hit','_raycastVec2','button','leftClickTimer','pointerup','fireComponentHoverEnd','12842434PyJvSo','size','getBoundingClientRect','9Uxzsuv','fireActorClick','_onComponentHoverEndDelegate','onActorHoverBeginDelegate','canvas','onActorHoverBegin','removeEventListener','tick','_onActorClickDelegate','prepareClickModifiers','16DaKrLU','addEventListener','doubleClickDelay','setFromCamera','scene','fireActorHoverEnd','raycaster','parentActor','onPointerMoveEvent','left','hoveringComponent','children','onPointerDownEvent','fireClickEvents','onClickNothingDelegate','fireActorHoverBegin','_pawn','unpossess','_onComponentHoverBeginDelegate','LYObject','viewport','canvas\x20is\x20null','onPointerLeave','1993803FYlkPH','_pointButtonIsDown','onComponentHoverEndDelegate','_onComponentPointerDownDelegate','object','firePointerDownEvent','addCorePointerListeners','onActorDoubleClickDelegate','hoveringActor','updateCamera','userData','pointerLeftDownPosition','onHorveringBegin','broadcast','onComponentDoubleClickDelegate','_tempVec2','14veMGyy','handleDoubleClick','clientHeight','onPointerDown','getHitResultUnderCursor','pointerdown','_onActorHoverBeginDelegate','_onComponentDoubleClickDelegate','focusTo','prepareClickComponent','handleFirstClick','handled','onClicked','app','pawn','pointermove','clientX','clearClickTimer','clearHovering','delete','5079858suDIUf','camera','onPointerUpEvent','world','945330NHSHrh'];_0x4380=function(){return _0x275a56;};return _0x4380();}class Controller{get[_0x34655d(0x17d)](){const _0x28077c=_0x34655d;return this[_0x28077c(0x19f)][_0x28077c(0x17d)];}get[_0x34655d(0x17f)](){const _0x538ee8=_0x34655d;return this[_0x538ee8(0x19f)][_0x538ee8(0x17f)];}get['viewPort'](){const _0x191eeb=_0x34655d;return this['_app'][_0x191eeb(0x1d3)];}get[_0x34655d(0x175)](){return this['_app'];}get[_0x34655d(0x176)](){const _0x114c41=_0x34655d;if(!this[_0x114c41(0x1cf)])throw Error('pawn\x20is\x20null');return this[_0x114c41(0x1cf)];}get['onComponentClickDelegate'](){const _0x24cc41=_0x34655d;return this[_0x24cc41(0x192)];}get[_0x34655d(0x166)](){const _0x288809=_0x34655d;return this[_0x288809(0x16f)];}get[_0x34655d(0x1a4)](){const _0x590ec6=_0x34655d;return this[_0x590ec6(0x1d1)];}get[_0x34655d(0x1d8)](){return this['_onComponentHoverEndDelegate'];}get['onComponentPointerDownDelegate'](){const _0x588c9b=_0x34655d;return this[_0x588c9b(0x1d9)];}get[_0x34655d(0x191)](){const _0x9f2a21=_0x34655d;return this[_0x9f2a21(0x1bd)];}get[_0x34655d(0x1dd)](){const _0x555de6=_0x34655d;return this[_0x555de6(0x195)];}get[_0x34655d(0x1b8)](){const _0x190553=_0x34655d;return this[_0x190553(0x16e)];}get[_0x34655d(0x19e)](){return this['_onActorHoverEndDelegate'];}get[_0x34655d(0x1cd)](){const _0x1b5b80=_0x34655d;return this[_0x1b5b80(0x1a0)];}constructor(_0x5b51ed){const _0x1a39d3=_0x34655d;this[_0x1a39d3(0x1cf)]=null,this[_0x1a39d3(0x1c9)]=null,this[_0x1a39d3(0x1de)]=null,this[_0x1a39d3(0x171)]=null,this[_0x1a39d3(0x194)]=null,this[_0x1a39d3(0x1be)]={'ctrlKey':![],'shiftKey':![],'altKey':![]},this[_0x1a39d3(0x1d7)]=new Set(),this[_0x1a39d3(0x192)]=new Delegate(),this[_0x1a39d3(0x16f)]=new Delegate(),this[_0x1a39d3(0x1d1)]=new Delegate(),this[_0x1a39d3(0x1b7)]=new Delegate(),this[_0x1a39d3(0x1d9)]=new Delegate(),this[_0x1a39d3(0x1bd)]=new Delegate(),this[_0x1a39d3(0x195)]=new Delegate(),this[_0x1a39d3(0x16e)]=new Delegate(),this[_0x1a39d3(0x18a)]=new Delegate(),this[_0x1a39d3(0x1a0)]=new Delegate(),this[_0x1a39d3(0x18c)]=new webgpu.Vector2(),this[_0x1a39d3(0x1e1)]=new webgpu.Vector2(),this[_0x1a39d3(0x167)]=new webgpu.Vector2(),this[_0x1a39d3(0x1ad)]=new webgpu.Vector2(),this[_0x1a39d3(0x1c1)]=0xfa,this['leftClickTimer']=null,this[_0x1a39d3(0x198)]=_0x2ca059=>this[_0x1a39d3(0x1c7)](_0x2ca059),this[_0x1a39d3(0x184)]=_0x3c4dd3=>this[_0x1a39d3(0x1a9)](_0x3c4dd3),this['onPointerLeave']=_0x59883c=>this['onPointerLeaveEvent'](_0x59883c),this[_0x1a39d3(0x1a7)]=_0x7edd7a=>this[_0x1a39d3(0x17e)](_0x7edd7a),this[_0x1a39d3(0x16b)]=_0x2dd68e=>this[_0x1a39d3(0x1cb)](_0x2dd68e),this[_0x1a39d3(0x19f)]=_0x5b51ed,this[_0x1a39d3(0x1cf)]=new Orbital(this),this[_0x1a39d3(0x176)]['possess'](),this['raycaster']=new webgpu.Raycaster();}['init'](){const _0x559885=_0x34655d,_0x106f9=this[_0x559885(0x1a6)][_0x559885(0x1b9)];_0x106f9&&(_0x106f9['addEventListener']('pointerenter',this[_0x559885(0x184)]),_0x106f9['addEventListener'](_0x559885(0x1a3),this[_0x559885(0x1d5)]),this[_0x559885(0x1dc)]());}[_0x34655d(0x1df)](){const _0x32e178=_0x34655d;var _0x83a384,_0x1ef458;const _0x36a677=this[_0x32e178(0x176)][_0x32e178(0x182)];(_0x83a384=this[_0x32e178(0x1cf)])===null||_0x83a384===void 0?void 0:_0x83a384[_0x32e178(0x1d0)](),(_0x1ef458=this[_0x32e178(0x1cf)])===null||_0x1ef458===void 0?void 0:_0x1ef458['destroy'](),this[_0x32e178(0x1cf)]=new Orbital(this),this[_0x32e178(0x176)]['possess'](),this[_0x32e178(0x176)][_0x32e178(0x182)]=_0x36a677;}[_0x34655d(0x1bc)](_0x40add5){const _0x29e83f=_0x34655d;this[_0x29e83f(0x176)][_0x29e83f(0x1bc)](_0x40add5);}[_0x34655d(0x183)](){const _0x5da745=_0x34655d;this[_0x5da745(0x179)](),this['clearHovering']();const _0x28f2cc=this['viewPort'][_0x5da745(0x1b9)];_0x28f2cc&&(_0x28f2cc[_0x5da745(0x1bb)](_0x5da745(0x18f),this[_0x5da745(0x184)]),_0x28f2cc[_0x5da745(0x1bb)]('pointerleave',this[_0x5da745(0x1d5)]),this['removeCorePointerListeners']()),this['pawn']['unpossess'](),this[_0x5da745(0x176)]['destroy'](),this[_0x5da745(0x1cf)]=null;}['onPointerMoveEvent'](_0x35fb46){const _0x46ac66=_0x34655d;var _0x50602d,_0x3503c3;const _0x25c184=this[_0x46ac66(0x1a6)][_0x46ac66(0x1b9)];if(!_0x25c184)throw Error(_0x46ac66(0x1d4));const _0x234e57=_0x25c184[_0x46ac66(0x1b4)]();this['pointerPosition'][_0x46ac66(0x1a2)]((_0x35fb46[_0x46ac66(0x178)]-_0x234e57[_0x46ac66(0x1c8)])/_0x25c184[_0x46ac66(0x1aa)]*0x2-0x1,0x1-(_0x35fb46['clientY']-_0x234e57[_0x46ac66(0x186)])/_0x25c184[_0x46ac66(0x16a)]*0x2);if(this[_0x46ac66(0x1d7)][_0x46ac66(0x1b3)]>0x0)return;const _0x472bb2=this['getHitResultUnderCursor'](),_0x46a870=(_0x50602d=_0x472bb2===null||_0x472bb2===void 0?void 0:_0x472bb2['component'])!==null&&_0x50602d!==void 0?_0x50602d:null,_0x59f085=(_0x3503c3=_0x46a870===null||_0x46a870===void 0?void 0:_0x46a870['parentActor'])!==null&&_0x3503c3!==void 0?_0x3503c3:null;_0x46a870!==this['hoveringComponent']&&(this[_0x46ac66(0x1c9)]&&this[_0x46ac66(0x1b1)](this[_0x46ac66(0x1c9)]),_0x46a870&&_0x46a870['isHoverEnabled']&&_0x472bb2&&this['fireComponentHoverBegin'](_0x46a870,_0x472bb2[_0x46ac66(0x1ac)])),_0x59f085!==this['hoveringActor']&&(this[_0x46ac66(0x1de)]&&this[_0x46ac66(0x1c9)]&&this[_0x46ac66(0x1c4)](this['hoveringActor'],this[_0x46ac66(0x1c9)]),_0x59f085&&_0x46a870&&_0x59f085[_0x46ac66(0x188)]&&_0x472bb2&&this[_0x46ac66(0x1ce)](_0x59f085,_0x46a870,_0x472bb2[_0x46ac66(0x1ac)])),this['hoveringComponent']=_0x46a870,this[_0x46ac66(0x1de)]=_0x59f085;}[_0x34655d(0x17a)](){const _0x58a7f8=_0x34655d;this[_0x58a7f8(0x1c9)]&&this['fireComponentHoverEnd'](this[_0x58a7f8(0x1c9)]),this[_0x58a7f8(0x1de)]&&this[_0x58a7f8(0x1c9)]&&this['fireActorHoverEnd'](this[_0x58a7f8(0x1de)],this['hoveringComponent']),this['hoveringComponent']=null,this['hoveringActor']=null;}[_0x34655d(0x17e)](_0x2cc98c){const _0x20201d=_0x34655d;this[_0x20201d(0x1d7)][_0x20201d(0x17b)](_0x2cc98c[_0x20201d(0x1ae)]);if(_0x2cc98c[_0x20201d(0x1ae)]!==0x0)return;const _0x845df5=this[_0x20201d(0x167)][_0x20201d(0x18b)](this[_0x20201d(0x1e1)],this[_0x20201d(0x18c)])[_0x20201d(0x185)]();if(_0x845df5>0.005){this[_0x20201d(0x179)]();return;}this['prepareClickModifiers']={'ctrlKey':_0x2cc98c['ctrlKey'],'shiftKey':_0x2cc98c[_0x20201d(0x187)],'altKey':_0x2cc98c['altKey']},!this[_0x20201d(0x1af)]?this['handleFirstClick']():this[_0x20201d(0x169)]();}[_0x34655d(0x172)](){const _0xc1a577=_0x34655d,_0xed0151=this[_0xc1a577(0x16c)](),_0x2c94de=_0xed0151===null||_0xed0151===void 0?void 0:_0xed0151[_0xc1a577(0x19b)];_0x2c94de instanceof SceneComponent&&_0x2c94de['isClickEnabled']&&_0xed0151?(this[_0xc1a577(0x171)]=_0x2c94de,this[_0xc1a577(0x194)]=_0xed0151[_0xc1a577(0x1ac)],this[_0xc1a577(0x1af)]=window['setTimeout'](()=>{const _0x543c33=_0xc1a577;this[_0x543c33(0x1af)]=null,this[_0x543c33(0x171)]&&this[_0x543c33(0x194)]&&(this[_0x543c33(0x1cc)](this[_0x543c33(0x171)],this[_0x543c33(0x194)],![]),this[_0x543c33(0x171)]=null,this[_0x543c33(0x194)]=null);},this[_0xc1a577(0x1c1)])):this['_onClickNothingDelegate'][_0xc1a577(0x1e3)]();}[_0x34655d(0x169)](){const _0x40cc3c=_0x34655d;this[_0x40cc3c(0x179)](),this[_0x40cc3c(0x171)]&&this[_0x40cc3c(0x194)]?this['fireClickEvents'](this[_0x40cc3c(0x171)],this[_0x40cc3c(0x194)],!![]):this[_0x40cc3c(0x1a0)][_0x40cc3c(0x1e3)](),this[_0x40cc3c(0x171)]=null,this[_0x40cc3c(0x194)]=null;}['onPointerDownEvent'](_0x56ce71){const _0x15ccbe=_0x34655d;this['_pointButtonIsDown'][_0x15ccbe(0x1a5)](_0x56ce71['button']);_0x56ce71[_0x15ccbe(0x1ae)]===0x0&&this[_0x15ccbe(0x1e1)][_0x15ccbe(0x1a1)](this[_0x15ccbe(0x18c)]);const _0x28153c=this[_0x15ccbe(0x16c)](),_0x50b7ce=_0x28153c===null||_0x28153c===void 0?void 0:_0x28153c[_0x15ccbe(0x19b)];_0x50b7ce instanceof SceneComponent&&_0x28153c&&this[_0x15ccbe(0x1db)](_0x50b7ce,_0x28153c['hit'],_0x56ce71[_0x15ccbe(0x1ae)]);}[_0x34655d(0x1a9)](_0x34d5c8){const _0x371ce6=_0x34655d;this[_0x371ce6(0x1dc)]();}['onPointerLeaveEvent'](_0x281367){this['removeCorePointerListeners']();}[_0x34655d(0x190)](_0x328480,_0x533848){const _0x5cd3bf=_0x34655d,_0x7fdc11={'component':_0x328480,'hit':_0x533848,'handled':![]};this[_0x5cd3bf(0x1d1)]['broadcast'](_0x7fdc11),!_0x7fdc11['handled']&&_0x328480[_0x5cd3bf(0x1e2)]();}['fireComponentHoverEnd'](_0x45c52b){const _0x253d65=_0x34655d,_0x97a05c={'component':_0x45c52b,'hit':null,'handled':![]};this[_0x253d65(0x1b7)][_0x253d65(0x1e3)](_0x97a05c),!_0x97a05c[_0x253d65(0x173)]&&_0x45c52b['onHorveringEnd']();}['fireComponentClick'](_0x25d864,_0x3688fc,_0x30a28a){const _0x2d1e27=_0x34655d,_0x4c28de=Object[_0x2d1e27(0x19d)]({'component':_0x25d864,'hit':_0x3688fc,'handled':![]},this[_0x2d1e27(0x1be)]);_0x30a28a?(this[_0x2d1e27(0x16f)]['broadcast'](_0x4c28de),!_0x4c28de[_0x2d1e27(0x173)]&&_0x25d864['onDoubleClicked']()):(this[_0x2d1e27(0x192)][_0x2d1e27(0x1e3)](_0x4c28de),!_0x4c28de['handled']&&_0x25d864[_0x2d1e27(0x174)]());}[_0x34655d(0x1db)](_0xe0f64b,_0x1472bf,_0x13da8f){const _0x4fb03d=_0x34655d,_0x5f50ab={'component':_0xe0f64b,'hit':_0x1472bf,'button':_0x13da8f,'handled':![]};this[_0x4fb03d(0x1d9)]['broadcast'](_0x5f50ab);}[_0x34655d(0x1ce)](_0x43ddc3,_0x2e85c9,_0x55f4ee){const _0x490561=_0x34655d,_0x36bb6f={'actor':_0x43ddc3,'component':_0x2e85c9,'hit':_0x55f4ee,'handled':![]};this[_0x490561(0x16e)][_0x490561(0x1e3)](_0x36bb6f),!_0x36bb6f[_0x490561(0x173)]&&_0x43ddc3[_0x490561(0x1ba)](_0x2e85c9);}['fireActorHoverEnd'](_0x17d636,_0x2b43e4){const _0x1f6a6d=_0x34655d,_0xbaab9d={'actor':_0x17d636,'component':_0x2b43e4,'hit':null,'handled':![]};this[_0x1f6a6d(0x18a)][_0x1f6a6d(0x1e3)](_0xbaab9d),!_0xbaab9d[_0x1f6a6d(0x173)]&&_0x17d636[_0x1f6a6d(0x181)](_0x2b43e4);}[_0x34655d(0x1b6)](_0x185eab,_0x10939a,_0x56994f,_0x2ece24){const _0x194032=_0x34655d,_0x59e508=Object[_0x194032(0x19d)]({'actor':_0x185eab,'component':_0x10939a,'hit':_0x56994f,'handled':![]},this[_0x194032(0x1be)]);_0x2ece24?(this[_0x194032(0x195)][_0x194032(0x1e3)](_0x59e508),!_0x59e508[_0x194032(0x173)]&&_0x185eab[_0x194032(0x1ab)](_0x10939a)):(this['_onActorClickDelegate']['broadcast'](_0x59e508),!_0x59e508[_0x194032(0x173)]&&_0x185eab['onActorClick'](_0x10939a));}[_0x34655d(0x1cc)](_0x31e7bf,_0x297f0c,_0x4cc08d){const _0x1ecf74=_0x34655d;this[_0x1ecf74(0x18e)](_0x31e7bf,_0x297f0c,_0x4cc08d);const _0x455016=_0x31e7bf[_0x1ecf74(0x1c6)];_0x455016&&_0x455016[_0x1ecf74(0x196)]&&this[_0x1ecf74(0x1b6)](_0x455016,_0x31e7bf,_0x297f0c,_0x4cc08d);}[_0x34655d(0x179)](){const _0x479dc8=_0x34655d;this[_0x479dc8(0x1af)]&&(window['clearTimeout'](this[_0x479dc8(0x1af)]),this[_0x479dc8(0x1af)]=null);}[_0x34655d(0x1dc)](){const _0x51e785=_0x34655d,_0x3a2155=this[_0x51e785(0x1a6)]['canvas'];if(!_0x3a2155)return;_0x3a2155[_0x51e785(0x1c0)](_0x51e785(0x177),this[_0x51e785(0x198)]),_0x3a2155[_0x51e785(0x1c0)](_0x51e785(0x1b0),this['onPointerUp']),_0x3a2155[_0x51e785(0x1c0)](_0x51e785(0x16d),this[_0x51e785(0x16b)]);}[_0x34655d(0x197)](){const _0x1dac75=_0x34655d,_0x1dc501=this[_0x1dac75(0x1a6)]['canvas'];if(!_0x1dc501)return;_0x1dc501[_0x1dac75(0x1bb)](_0x1dac75(0x177),this[_0x1dac75(0x198)]),_0x1dc501[_0x1dac75(0x1bb)](_0x1dac75(0x1b0),this[_0x1dac75(0x1a7)]),_0x1dc501[_0x1dac75(0x1bb)](_0x1dac75(0x16d),this['onPointerDown']);}[_0x34655d(0x16c)](){const _0x4cd787=_0x34655d;return this[_0x4cd787(0x199)](this[_0x4cd787(0x18c)]['x'],this[_0x4cd787(0x18c)]['y']);}[_0x34655d(0x199)](_0x33e370,_0x2ac110){const _0x3c0629=_0x34655d;this['_raycastVec2'][_0x3c0629(0x1a2)](_0x33e370,_0x2ac110),this[_0x3c0629(0x1c5)]['setFromCamera'](this['_raycastVec2'],this[_0x3c0629(0x17d)]);const _0x297ba8=this[_0x3c0629(0x1a8)](_0x33e370,_0x2ac110);for(const _0x203b71 of _0x297ba8){const _0x2413ac=_0x203b71[_0x3c0629(0x19b)][_0x3c0629(0x188)]||_0x203b71[_0x3c0629(0x19b)][_0x3c0629(0x196)],_0x164559=_0x203b71[_0x3c0629(0x19b)][_0x3c0629(0x1c6)],_0x1fde7a=_0x164559&&(_0x164559[_0x3c0629(0x188)]||_0x164559[_0x3c0629(0x196)]);if(!_0x2413ac&&!_0x1fde7a)continue;return _0x203b71;}return null;}[_0x34655d(0x1a8)](_0x2dc49e,_0x1b72a1){const _0x124ef7=_0x34655d;this[_0x124ef7(0x1ad)][_0x124ef7(0x1a2)](_0x2dc49e,_0x1b72a1),this[_0x124ef7(0x1c5)][_0x124ef7(0x1c2)](this['_raycastVec2'],this[_0x124ef7(0x17d)]);const _0x110928=this[_0x124ef7(0x1c5)][_0x124ef7(0x189)](this[_0x124ef7(0x17f)][_0x124ef7(0x1c3)][_0x124ef7(0x1ca)],!![]),_0x3f23b7=[];for(const _0x57be94 of _0x110928){if(_0x57be94[_0x124ef7(0x1da)][_0x124ef7(0x1e0)]['rayIgnored'])continue;const _0x503386=_0x57be94[_0x124ef7(0x1da)][_0x124ef7(0x1e0)][_0x124ef7(0x1d2)];if(!_0x503386)continue;_0x3f23b7['push']({'component':_0x503386,'hit':_0x57be94});}return _0x3f23b7;}[_0x34655d(0x170)](_0x1dd93a,_0x3fd797,_0x822773,_0xbcb561,_0x44e808=null,_0x335f2c=null){const _0x213b95=_0x34655d;this['pawn'][_0x213b95(0x170)](_0x1dd93a,_0x3fd797,_0x822773,_0xbcb561,_0x44e808,_0x335f2c);}}
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
+ function _0x3863(){const _0x145671=['6447600uRxyGt','warn','9wNoayM','Perspective','609355BIwSMU','3643108QOxNJI','[CameraFactory]Update\x20Failed.\x20Return\x20old\x20camera\x20instead','left','aspect','145ETardV','334413zKuOGE','near','far','[CameraFactory]Error\x20occurred\x20while\x20creating\x20camera:\x20','right','bottom','type','top','[CameraFactory]Error\x20occurred\x20while\x20updating\x20camera:\x20','fov','20464eSeiih','createCamera','151304ZXPYlV','[CameraFactory]Create\x20default\x20perspective\x20camera\x20instead','Invalid\x20camera\x20type','1532730qPELWq'];_0x3863=function(){return _0x145671;};return _0x3863();}const _0x268527=_0x3adb;function _0x3adb(_0x289569,_0x32a35f){_0x289569=_0x289569-0x191;const _0x38633e=_0x3863();let _0x3adb7e=_0x38633e[_0x289569];return _0x3adb7e;}(function(_0x40aee8,_0xd02d8b){const _0x4f8f15=_0x3adb,_0x5da6cc=_0x40aee8();while(!![]){try{const _0x2064af=-parseInt(_0x4f8f15(0x1a5))/0x1+parseInt(_0x4f8f15(0x19d))/0x2*(parseInt(_0x4f8f15(0x1a3))/0x3)+-parseInt(_0x4f8f15(0x19b))/0x4*(parseInt(_0x4f8f15(0x1aa))/0x5)+-parseInt(_0x4f8f15(0x1a0))/0x6+parseInt(_0x4f8f15(0x1a6))/0x7+parseInt(_0x4f8f15(0x1a1))/0x8+parseInt(_0x4f8f15(0x191))/0x9;if(_0x2064af===_0xd02d8b)break;else _0x5da6cc['push'](_0x5da6cc['shift']());}catch(_0x9c3ff){_0x5da6cc['push'](_0x5da6cc['shift']());}}}(_0x3863,0x8cf35));class CameraFactory{static[_0x268527(0x19c)](_0x5810a8){const _0x120276=_0x268527;try{switch(_0x5810a8[_0x120276(0x197)]){case _0x120276(0x1a4):{let _0x4fb201=_0x5810a8;return new webgpu.PerspectiveCamera(_0x4fb201[_0x120276(0x19a)],_0x4fb201[_0x120276(0x1a9)],_0x4fb201[_0x120276(0x192)],_0x4fb201[_0x120276(0x193)]);}case 'Orthographic':{let _0x59707c=_0x5810a8;return new webgpu.OrthographicCamera(_0x59707c[_0x120276(0x1a8)],_0x59707c[_0x120276(0x195)],_0x59707c[_0x120276(0x198)],_0x59707c[_0x120276(0x196)],_0x59707c[_0x120276(0x192)],_0x59707c['far']);}default:{throw new Error(_0x120276(0x19f));}}}catch(_0x12d29b){return console[_0x120276(0x1a2)](_0x120276(0x194),_0x12d29b),console[_0x120276(0x1a2)](_0x120276(0x19e)),new webgpu.PerspectiveCamera(0x32,0x1,0.1,0x3e8);}}static['updataCamera'](_0x37cf79,_0x567450){const _0x42800a=_0x268527;try{switch(_0x37cf79[_0x42800a(0x197)]){case _0x42800a(0x1a4):{let _0x3b0ca8=_0x37cf79;if(_0x567450 instanceof webgpu.PerspectiveCamera)return _0x567450[_0x42800a(0x192)]=_0x3b0ca8[_0x42800a(0x192)],_0x567450['far']=_0x3b0ca8['far'],_0x567450[_0x42800a(0x19a)]=_0x3b0ca8[_0x42800a(0x19a)],_0x567450['aspect']=_0x3b0ca8[_0x42800a(0x1a9)],_0x567450;return new webgpu.PerspectiveCamera(_0x3b0ca8[_0x42800a(0x19a)],_0x3b0ca8[_0x42800a(0x1a9)],_0x3b0ca8[_0x42800a(0x192)],_0x3b0ca8['far']);}case 'Orthographic':{let _0xcc7f5a=_0x37cf79;if(_0x567450 instanceof webgpu.OrthographicCamera)return _0x567450[_0x42800a(0x192)]=_0xcc7f5a[_0x42800a(0x192)],_0x567450[_0x42800a(0x193)]=_0xcc7f5a[_0x42800a(0x193)],_0x567450['left']=_0xcc7f5a[_0x42800a(0x1a8)],_0x567450['right']=_0xcc7f5a[_0x42800a(0x195)],_0x567450[_0x42800a(0x198)]=_0xcc7f5a['top'],_0x567450[_0x42800a(0x196)]=_0xcc7f5a[_0x42800a(0x196)],_0x567450;return new webgpu.OrthographicCamera(_0xcc7f5a[_0x42800a(0x1a8)],_0xcc7f5a['right'],_0xcc7f5a['top'],_0xcc7f5a[_0x42800a(0x196)],_0xcc7f5a['near'],_0xcc7f5a['far']);}default:{throw new Error(_0x42800a(0x19f));}}}catch(_0x15942f){return console[_0x42800a(0x1a2)](_0x42800a(0x199),_0x15942f),console[_0x42800a(0x1a2)](_0x42800a(0x1a7)),_0x567450;}}}
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
+ const _0x276de8=_0xad1b;(function(_0x588117,_0x396b7b){const _0x5e2bae=_0xad1b,_0x432150=_0x588117();while(!![]){try{const _0x329cb7=-parseInt(_0x5e2bae(0x8b))/0x1*(parseInt(_0x5e2bae(0x8d))/0x2)+-parseInt(_0x5e2bae(0x89))/0x3*(parseInt(_0x5e2bae(0x92))/0x4)+-parseInt(_0x5e2bae(0x88))/0x5+-parseInt(_0x5e2bae(0x91))/0x6+-parseInt(_0x5e2bae(0x8e))/0x7+-parseInt(_0x5e2bae(0x8f))/0x8+-parseInt(_0x5e2bae(0x93))/0x9*(-parseInt(_0x5e2bae(0x90))/0xa);if(_0x329cb7===_0x396b7b)break;else _0x432150['push'](_0x432150['shift']());}catch(_0x58cb8d){_0x432150['push'](_0x432150['shift']());}}}(_0x3c45,0x5765f));function _0xad1b(_0x48926c,_0x49cbc4){_0x48926c=_0x48926c-0x88;const _0x3c45fa=_0x3c45();let _0xad1b47=_0x3c45fa[_0x48926c];return _0xad1b47;}const DefaultPerspectiveCameraParam={'near':0.1,'far':0x3e8,'type':_0x276de8(0x8c),'fov':0x32,'aspect':0x1};const DefaultOrthographicCameraParam={'type':_0x276de8(0x8a),'near':0.1,'far':0x3e8,'left':-1,'right':0x1,'top':0x1,'bottom':-1};const DefaultCameraParam=JSON['parse'](JSON['stringify'](DefaultPerspectiveCameraParam));function _0x3c45(){const _0x10786b=['1757008GkKCur','40wstJez','653400phLCmz','4DmxxYy','5070429PZRlRl','757650TKINtR','1780593sYIYWC','Orthographic','273KhRnWx','Perspective','2846czgkSx','3034325QNaFEw'];_0x3c45=function(){return _0x10786b;};return _0x3c45();}
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(_0x135561,_0x4e51d1){const _0x5decfc=_0x1db3,_0x149092=_0x135561();while(!![]){try{const _0x479a2e=parseInt(_0x5decfc(0x159))/0x1+parseInt(_0x5decfc(0x156))/0x2+-parseInt(_0x5decfc(0x158))/0x3+parseInt(_0x5decfc(0x157))/0x4+-parseInt(_0x5decfc(0x155))/0x5*(parseInt(_0x5decfc(0x15b))/0x6)+parseInt(_0x5decfc(0x15a))/0x7*(parseInt(_0x5decfc(0x15c))/0x8)+parseInt(_0x5decfc(0x154))/0x9;if(_0x479a2e===_0x4e51d1)break;else _0x149092['push'](_0x149092['shift']());}catch(_0xabca1c){_0x149092['push'](_0x149092['shift']());}}}(_0x3fc2,0x48eb5));function _0x1db3(_0x36cc3d,_0x27ac3a){_0x36cc3d=_0x36cc3d-0x154;const _0x3fc210=_0x3fc2();let _0x1db32b=_0x3fc210[_0x36cc3d];return _0x1db32b;}const DefaultViewportParam={'elementId':null,'isLabelRendererNeeded':![],'isUILayerNeeded':![]};function _0x3fc2(){const _0x4858a2=['251202AWnWsV','1596WGlheP','2934918VwfRvd','1208SUoiFO','4262301QhHUJM','5nWwJAR','1022478soRQSm','375836xPvPqo','1729761YlHbIP'];_0x3fc2=function(){return _0x4858a2;};return _0x3fc2();}
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 _0x2205(_0x40ba86,_0x5867ab){_0x40ba86=_0x40ba86-0xb3;const _0xf6c02b=_0xf6c0();let _0x220525=_0xf6c02b[_0x40ba86];return _0x220525;}(function(_0x115816,_0x26ef9b){const _0x31a2b1=_0x2205,_0x1b4218=_0x115816();while(!![]){try{const _0x4c5b43=parseInt(_0x31a2b1(0xbe))/0x1*(-parseInt(_0x31a2b1(0xb7))/0x2)+-parseInt(_0x31a2b1(0xba))/0x3+-parseInt(_0x31a2b1(0xbb))/0x4*(-parseInt(_0x31a2b1(0xbd))/0x5)+parseInt(_0x31a2b1(0xb6))/0x6*(-parseInt(_0x31a2b1(0xb4))/0x7)+parseInt(_0x31a2b1(0xb5))/0x8*(-parseInt(_0x31a2b1(0xb3))/0x9)+-parseInt(_0x31a2b1(0xb8))/0xa+parseInt(_0x31a2b1(0xb9))/0xb*(parseInt(_0x31a2b1(0xbc))/0xc);if(_0x4c5b43===_0x26ef9b)break;else _0x1b4218['push'](_0x1b4218['shift']());}catch(_0x44ebfc){_0x1b4218['push'](_0x1b4218['shift']());}}}(_0xf6c0,0xc4e90));function _0xf6c0(){const _0xac3730=['14888KGnSBl','8329480TvQrof','42928193mdjkgr','562953vIYroB','2079020fprwja','12NQoPys','5bJYzGR','141qjKpbj','1304253lIgDCT','112RjCGRI','56xCnpbc','199182MEBhCd'];_0xf6c0=function(){return _0xac3730;};return _0xf6c0();}const DefaultRendererParameters={'logarithmicDepthBuffer':![],'alpha':![],'depth':!![],'stencil':![],'antialias':![],'samples':0x1,'forceWebGL':![],'outputBufferType':0x3f8,'toneMapping':0x0,'toneMappingExposure':0x1,'shadowMapEnabled':!![],'shadowMapType':0x1};
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(_0x35fe3f,_0x3179f1){const _0x3a514a=_0x2f1c,_0x360686=_0x35fe3f();while(!![]){try{const _0x31d950=parseInt(_0x3a514a(0x1da))/0x1*(parseInt(_0x3a514a(0x1df))/0x2)+-parseInt(_0x3a514a(0x1d8))/0x3+-parseInt(_0x3a514a(0x1dc))/0x4*(-parseInt(_0x3a514a(0x1dd))/0x5)+parseInt(_0x3a514a(0x1d9))/0x6+parseInt(_0x3a514a(0x1de))/0x7*(-parseInt(_0x3a514a(0x1d6))/0x8)+-parseInt(_0x3a514a(0x1d7))/0x9*(parseInt(_0x3a514a(0x1db))/0xa)+parseInt(_0x3a514a(0x1d5))/0xb;if(_0x31d950===_0x3179f1)break;else _0x360686['push'](_0x360686['shift']());}catch(_0x17427e){_0x360686['push'](_0x360686['shift']());}}}(_0x407a,0x5c947));function _0x407a(){const _0x36bb8e=['828mdqoVK','1544232tUwCXQ','538962JtZaHw','675827jdNSOd','44280sAZXil','116lqIlwi','97590CAsLLn','483IKgHjY','2NjDjcS','4225474vrLAjG','48056LjXkgZ'];_0x407a=function(){return _0x36bb8e;};return _0x407a();}function _0x2f1c(_0x7836c9,_0x23e7d5){_0x7836c9=_0x7836c9-0x1d5;const _0x407a92=_0x407a();let _0x2f1c77=_0x407a92[_0x7836c9];return _0x2f1c77;}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 _0x4135c2=_0x3a93;function _0x3a93(_0x16f8d4,_0x6a052a){_0x16f8d4=_0x16f8d4-0x1c4;const _0x4c95e7=_0x4c95();let _0x3a93c3=_0x4c95e7[_0x16f8d4];return _0x3a93c3;}(function(_0xf66784,_0x4988a6){const _0x1acbb4=_0x3a93,_0x4d28f4=_0xf66784();while(!![]){try{const _0x45b5c1=parseInt(_0x1acbb4(0x216))/0x1*(parseInt(_0x1acbb4(0x1c8))/0x2)+-parseInt(_0x1acbb4(0x1cc))/0x3*(parseInt(_0x1acbb4(0x1cb))/0x4)+-parseInt(_0x1acbb4(0x21f))/0x5+-parseInt(_0x1acbb4(0x220))/0x6*(parseInt(_0x1acbb4(0x1c6))/0x7)+parseInt(_0x1acbb4(0x1fa))/0x8+-parseInt(_0x1acbb4(0x215))/0x9+-parseInt(_0x1acbb4(0x210))/0xa*(-parseInt(_0x1acbb4(0x1d5))/0xb);if(_0x45b5c1===_0x4988a6)break;else _0x4d28f4['push'](_0x4d28f4['shift']());}catch(_0x307949){_0x4d28f4['push'](_0x4d28f4['shift']());}}}(_0x4c95,0x3211b));function _0x4c95(){const _0x389bcd=['markRenderStateDirty','getChildActorsByIds','getCenter','getBoundsCenterPosition','getWorldForwardDirection','forEach','children','onClickDelegate','worldToLocal','onRemovedFromWorld','app','broadcast','_onDoubleClickDelegate','addLocalOffset','_world','threeObject','destroy','onHoverEndDelegate','isVisible','getWorldRightDirection','userData','50mWlEdr','name','getBounds','onAddedToWorld','getWorldPosition','407601CRoLdN','13ZdnBjI','onActorDoubleClick','getWorldUpDirection','isTickEnabled','setVisible','setWorldMatrix','_onHoverBeginDelegate','onDoubleClickDelegate','getChildActorById','1801065SMGNnr','23484aQTOIE','getBoundsBottomCenterPosition','Actor','delete','constructRootComponent','addTickableActor','LYObject','max','KeepRelative','98WmFpmH','push','33740OkkUOn','addChildActor','childActors','794000hZgqwB','3xwvWeN','removeChildActor','has','uuid','tick','sub','size','_name','childrenComponents','1123331vQxROL','_rootComponent','setQuaternion','setRotation','addComponent','isClickEnabled','getWorldMatrix','getQuaternion','_onClickDelegate','setScale','getWorldQuaternion','KeepWorld','rootComponent','localToWorld','removeTickableActor','min','setLayers','rootComponent\x20is\x20invalid','_onHoverEndDelegate','length','getWorldScale','attachComponent','addChildComponent','getPosition','viewport','setPosition','clearComponent','getWorldRotation','onActorClick','error','getRotation','onActorHoverBegin','world','destroyChildren','parentActor','getComponents','isHoverEnabled','1071728JVrsgI'];_0x4c95=function(){return _0x389bcd;};return _0x4c95();}class Actor extends BaseObject{get['world'](){const _0x3e9e47=_0x3a93;return this[_0x3e9e47(0x209)];}get[_0x4135c2(0x211)](){const _0x47cd3f=_0x4135c2;return this[_0x47cd3f(0x1d3)];}set[_0x4135c2(0x211)](_0x59f35b){const _0x51e597=_0x4135c2;this[_0x51e597(0x1d3)]=_0x59f35b;}get['rootComponent'](){const _0x4f1d04=_0x4135c2;if(!this['_rootComponent'])throw Error(_0x4f1d04(0x1e6));return this[_0x4f1d04(0x1d6)];}set['rootComponent'](_0x1d74b3){const _0xdc3a06=_0x4135c2;_0x1d74b3['detachFromParentComponent'](),_0x1d74b3[_0xdc3a06(0x1f7)]=this;if(this[_0xdc3a06(0x1d6)]){let _0x32441f=this[_0xdc3a06(0x1e1)]['childrenComponents'];for(let _0x3225aa=0x0;_0x3225aa<_0x32441f[_0xdc3a06(0x1e8)];++_0x3225aa){_0x1d74b3[_0xdc3a06(0x1eb)](_0x32441f[_0x3225aa]);}this['rootComponent']['destroy']();}this['_rootComponent']=_0x1d74b3;}get[_0x4135c2(0x1d4)](){const _0x3cf914=_0x4135c2;return this[_0x3cf914(0x1e1)][_0x3cf914(0x1d4)];}get[_0x4135c2(0x1ca)](){const _0xb49fab=_0x4135c2;var _0x3eec77;let _0x4e2d93=[];return (_0x3eec77=this[_0xb49fab(0x1e1)][_0xb49fab(0x20a)])===null||_0x3eec77===void 0?void 0:_0x3eec77[_0xb49fab(0x201)][_0xb49fab(0x200)](_0xb9d7d1=>{const _0x54fff7=_0xb49fab;var _0x5aaa05;let _0x36ae3c=(_0x5aaa05=_0xb9d7d1[_0x54fff7(0x20f)]['LYObject'])===null||_0x5aaa05===void 0?void 0:_0x5aaa05['parentActor'];_0x36ae3c!==this&&_0x36ae3c instanceof Actor&&_0x4e2d93[_0x54fff7(0x1c7)](_0x36ae3c);}),_0x4e2d93;}get[_0x4135c2(0x1f7)](){const _0xcbaae8=_0x4135c2;var _0x349c8c,_0x572bd8;let _0x50f863=(_0x572bd8=(_0x349c8c=this[_0xcbaae8(0x1e1)][_0xcbaae8(0x20a)])===null||_0x349c8c===void 0?void 0:_0x349c8c['parent'])===null||_0x572bd8===void 0?void 0:_0x572bd8[_0xcbaae8(0x20f)][_0xcbaae8(0x226)][_0xcbaae8(0x1f7)];return _0x50f863===this?null:_0x50f863;}get[_0x4135c2(0x20d)](){const _0x274f00=_0x4135c2;return this[_0x274f00(0x1e1)]?this[_0x274f00(0x1e1)]['isVisible']:![];}get['isTickEnabled'](){const _0x76b3a1=_0x4135c2;return super[_0x76b3a1(0x219)];}set[_0x4135c2(0x219)](_0x51e6ab){const _0x4467f2=_0x4135c2;super['isTickEnabled']=_0x51e6ab,this[_0x4467f2(0x219)]?this['app'][_0x4467f2(0x1f5)][_0x4467f2(0x225)](this):this[_0x4467f2(0x205)][_0x4467f2(0x1f5)][_0x4467f2(0x1e3)](this);}get['onHoverBeginDelegate'](){return this['_onHoverBeginDelegate'];}get[_0x4135c2(0x20c)](){const _0x5ee257=_0x4135c2;return this[_0x5ee257(0x1e7)];}get[_0x4135c2(0x202)](){const _0x3d26fb=_0x4135c2;return this[_0x3d26fb(0x1dd)];}get[_0x4135c2(0x21d)](){return this['_onDoubleClickDelegate'];}constructor(_0x37f88d,_0x3f15ca){const _0x298d58=_0x4135c2;super(_0x3f15ca),this['_name']=_0x298d58(0x222),this[_0x298d58(0x1d6)]=null,this[_0x298d58(0x209)]=null,this[_0x298d58(0x21c)]=new Delegate(),this['_onHoverEndDelegate']=new Delegate(),this[_0x298d58(0x1dd)]=new Delegate(),this[_0x298d58(0x207)]=new Delegate(),this['app']=_0x37f88d,this['rootComponent']=this[_0x298d58(0x224)](),this[_0x298d58(0x1e1)]['parentActor']=this;}[_0x4135c2(0x224)](){const _0x552a6e=_0x4135c2;return new SceneComponent(this[_0x552a6e(0x205)]);}[_0x4135c2(0x1fe)](_0x5634c7=!![]){const _0x531d6b=_0x4135c2;let _0x56d263=new webgpu.Vector3();return this[_0x531d6b(0x212)]()['getCenter'](_0x56d263),!_0x5634c7?_0x56d263[_0x531d6b(0x1d1)](this[_0x531d6b(0x1ec)]()):_0x56d263;}[_0x4135c2(0x21e)](_0x377bfa,_0x2ef977=!![]){const _0x33cc48=_0x4135c2,_0x53888f=this[_0x33cc48(0x1ca)];for(const _0x435072 of _0x53888f){if(_0x435072[_0x33cc48(0x1cf)]===_0x377bfa)return _0x435072;}if(_0x2ef977)for(const _0x4c8a7b of _0x53888f){const _0x2d8900=_0x4c8a7b[_0x33cc48(0x21e)](_0x377bfa,!![]);if(_0x2d8900)return _0x2d8900;}return null;}[_0x4135c2(0x1fc)](_0x1951d2,_0x2cdde6=!![]){const _0x1087b0=_0x4135c2,_0x36f2bd=[],_0x5a90ae=new Set(_0x1951d2),_0xdc2439=this['childActors'];for(const _0x484024 of _0xdc2439){_0x5a90ae[_0x1087b0(0x1ce)](_0x484024[_0x1087b0(0x1cf)])&&(_0x36f2bd[_0x1087b0(0x1c7)](_0x484024),_0x5a90ae[_0x1087b0(0x223)](_0x484024['uuid']));}if(_0x2cdde6&&_0x5a90ae[_0x1087b0(0x1d2)]>0x0)for(const _0x16a993 of _0xdc2439){const _0x4ad981=_0x16a993['getChildActorsByIds']([..._0x5a90ae],!![]);for(const _0x2e3b64 of _0x4ad981){_0x36f2bd['push'](_0x2e3b64),_0x5a90ae[_0x1087b0(0x223)](_0x2e3b64[_0x1087b0(0x1cf)]);}if(_0x5a90ae[_0x1087b0(0x1d2)]===0x0)break;}return _0x36f2bd;}['getComponentById'](_0x5ea8ef){const _0x322f8b=_0x4135c2;return this[_0x322f8b(0x1e1)]['getComponentById'](_0x5ea8ef);}['getBoundsTopCenterPosition'](_0xf41770=!![]){const _0x1cba68=_0x4135c2;let _0x58f886=new webgpu.Vector3(),_0x1133cd=this['rootComponent'][_0x1cba68(0x212)]();return _0x1133cd[_0x1cba68(0x1fd)](_0x58f886),_0x58f886['y']=_0x1133cd[_0x1cba68(0x1c4)]['y'],!_0xf41770?_0x58f886[_0x1cba68(0x1d1)](this[_0x1cba68(0x1ec)]()):_0x58f886;}[_0x4135c2(0x221)](_0x4e2f2d=!![]){const _0x2d9eac=_0x4135c2;let _0x428d0b=new webgpu.Vector3(),_0x498ab0=this[_0x2d9eac(0x212)]();return _0x498ab0[_0x2d9eac(0x1fd)](_0x428d0b),_0x428d0b['y']=_0x498ab0[_0x2d9eac(0x1e4)]['y'],!_0x4e2f2d?_0x428d0b[_0x2d9eac(0x1d1)](this[_0x2d9eac(0x1ec)]()):_0x428d0b;}['getBounds'](){const _0x37c7c8=_0x4135c2;return this[_0x37c7c8(0x1e1)][_0x37c7c8(0x212)]();}[_0x4135c2(0x20b)](){const _0x439314=_0x4135c2;let _0x1f46f0=this[_0x439314(0x1ca)];_0x1f46f0[_0x439314(0x200)](_0x829f75=>{const _0x136bf5=_0x439314;_0x829f75[_0x136bf5(0x20b)]();}),this['rootComponent']['destroy']();}[_0x4135c2(0x21a)](_0x1c59a4){const _0x7db9fc=_0x4135c2;this[_0x7db9fc(0x1e1)]['setVisible'](_0x1c59a4);}[_0x4135c2(0x1e5)](_0x213932,_0xa2c9a7=!![]){const _0x447544=_0x4135c2;this[_0x447544(0x1e1)][_0x447544(0x1e5)](_0x213932),_0xa2c9a7&&this['childActors'][_0x447544(0x200)](_0x2d1b9f=>{_0x2d1b9f['setLayers'](_0x213932,_0xa2c9a7);});}[_0x4135c2(0x1d0)](_0x3773f8){const _0x25f05d=_0x4135c2;if(!this[_0x25f05d(0x219)])return;super[_0x25f05d(0x1d0)](_0x3773f8),this['rootComponent'][_0x25f05d(0x1d0)](_0x3773f8);}['getPosition'](){const _0x26d492=_0x4135c2;return this[_0x26d492(0x1e1)]['getPosition']();}[_0x4135c2(0x1ee)](..._0x32db6f){const _0x54c934=_0x4135c2;_0x32db6f['length']===0x1?this['rootComponent'][_0x54c934(0x1ee)](_0x32db6f[0x0]):this[_0x54c934(0x1e1)]['setPosition'](_0x32db6f[0x0],_0x32db6f[0x1],_0x32db6f[0x2]);}[_0x4135c2(0x1f3)](){const _0x2b9974=_0x4135c2;return this[_0x2b9974(0x1e1)][_0x2b9974(0x1f3)]();}['setRotation'](..._0x446346){const _0x523a3c=_0x4135c2;_0x446346[_0x523a3c(0x1e8)]===0x1?this['rootComponent'][_0x523a3c(0x1d8)](_0x446346[0x0]):this[_0x523a3c(0x1e1)][_0x523a3c(0x1d8)](_0x446346[0x0],_0x446346[0x1],_0x446346[0x2]);}[_0x4135c2(0x1dc)](){return this['rootComponent']['getQuaternion']();}[_0x4135c2(0x1d7)](..._0x42939b){const _0x2641cd=_0x4135c2;_0x42939b[_0x2641cd(0x1e8)]===0x1?this[_0x2641cd(0x1e1)][_0x2641cd(0x1d7)](_0x42939b[0x0]):this[_0x2641cd(0x1e1)][_0x2641cd(0x1d7)](_0x42939b[0x0],_0x42939b[0x1],_0x42939b[0x2],_0x42939b[0x3]);}['getScale'](){const _0x345afd=_0x4135c2;return this[_0x345afd(0x1e1)]['getScale']();}['setScale'](..._0x2b98bf){const _0x157e63=_0x4135c2;_0x2b98bf['length']===0x1?this[_0x157e63(0x1e1)][_0x157e63(0x1de)](_0x2b98bf[0x0]):this[_0x157e63(0x1e1)][_0x157e63(0x1de)](_0x2b98bf[0x0],_0x2b98bf[0x1],_0x2b98bf[0x2]);}[_0x4135c2(0x1db)](){const _0x8ef81=_0x4135c2;return this[_0x8ef81(0x1e1)][_0x8ef81(0x1db)]();}[_0x4135c2(0x21b)](_0x3e4c23){const _0x6669fe=_0x4135c2;this[_0x6669fe(0x1e1)]['setWorldMatrix'](_0x3e4c23);}[_0x4135c2(0x214)](){const _0x30d205=_0x4135c2;return this[_0x30d205(0x1e1)]['getWorldPosition']();}[_0x4135c2(0x1f0)](){const _0x2e811c=_0x4135c2;return this[_0x2e811c(0x1e1)]['getWorldRotation']();}[_0x4135c2(0x1df)](){const _0x2dca23=_0x4135c2;return this[_0x2dca23(0x1e1)][_0x2dca23(0x1df)]();}[_0x4135c2(0x1e9)](){const _0x43f2ef=_0x4135c2;return this[_0x43f2ef(0x1e1)][_0x43f2ef(0x1e9)]();}['getWorldForwardDirection'](){const _0x165a15=_0x4135c2;return this[_0x165a15(0x1e1)][_0x165a15(0x1ff)]();}[_0x4135c2(0x218)](){const _0x108cac=_0x4135c2;return this[_0x108cac(0x1e1)][_0x108cac(0x218)]();}[_0x4135c2(0x20e)](){const _0x29c599=_0x4135c2;return this[_0x29c599(0x1e1)]['getWorldRightDirection']();}[_0x4135c2(0x208)](_0x4d83b3,_0x37ade0){const _0xa6ed8f=_0x4135c2;let _0x1a9983=this[_0xa6ed8f(0x1ec)]();this[_0xa6ed8f(0x1ee)](_0x1a9983['x']+_0x4d83b3['x']*_0x37ade0,_0x1a9983['y']+_0x4d83b3['y']*_0x37ade0,_0x1a9983['z']+_0x4d83b3['z']*_0x37ade0);}[_0x4135c2(0x203)](_0x549c05){const _0x42ce6b=_0x4135c2;return this[_0x42ce6b(0x1e1)][_0x42ce6b(0x203)](_0x549c05);}[_0x4135c2(0x1e2)](_0x527f80){const _0x40f0d4=_0x4135c2;return this[_0x40f0d4(0x1e1)][_0x40f0d4(0x1e2)](_0x527f80);}[_0x4135c2(0x1f8)](){const _0x14e3f6=_0x4135c2;return this[_0x14e3f6(0x1e1)][_0x14e3f6(0x1d4)];}[_0x4135c2(0x1d9)](_0x33afa1,_0x25d4c9=exports.AttachmentRules[_0x4135c2(0x1c5)]){const _0x15e86d=_0x4135c2;this[_0x15e86d(0x1e1)][_0x15e86d(0x1eb)](_0x33afa1,_0x25d4c9),this['_world']&&_0x33afa1[_0x15e86d(0x213)](this[_0x15e86d(0x209)]);}['removeComponent'](_0x1c46a3){const _0xbe2fb0=_0x4135c2;if(_0x1c46a3===this['_rootComponent'])return;this[_0xbe2fb0(0x1e1)]['removeChildComponent'](_0x1c46a3);}[_0x4135c2(0x1ef)](){const _0x335be5=_0x4135c2;this[_0x335be5(0x1e1)][_0x335be5(0x1f6)]();}[_0x4135c2(0x1c9)](_0x102864,_0x203f77=exports.AttachmentRules[_0x4135c2(0x1e0)]){const _0x170be0=_0x4135c2;if(!_0x102864['rootComponent']){console[_0x170be0(0x1f2)]('Actor\x20::\x20addChildActor\x20:\x20the\x20\x27newActor\x27\x20you\x20want\x20to\x20add\x20has\x20no\x20rootcomponent');return;}if(_0x102864[_0x170be0(0x1f7)]===this)return;_0x203f77===exports.AttachmentRules[_0x170be0(0x1c5)]&&this['rootComponent'][_0x170be0(0x1ea)](_0x102864[_0x170be0(0x1e1)]);if(_0x203f77===exports.AttachmentRules['KeepWorld']){let _0x1a26d3=_0x102864[_0x170be0(0x1db)]();this[_0x170be0(0x1e1)][_0x170be0(0x1ea)](_0x102864[_0x170be0(0x1e1)]),_0x102864['setWorldMatrix'](_0x1a26d3);}this[_0x170be0(0x209)]&&this['_world'][_0x170be0(0x1ed)][_0x170be0(0x1fb)]();}['removeChildActor'](_0x4b64ee){const _0x3bed34=_0x4135c2;let _0x5714f6=_0x4b64ee[_0x3bed34(0x1db)]();this[_0x3bed34(0x1e1)]['detachComponent'](_0x4b64ee[_0x3bed34(0x1e1)]),_0x4b64ee[_0x3bed34(0x21b)](_0x5714f6);}['removeFromParent'](){const _0x4197b9=_0x4135c2;this[_0x4197b9(0x1f7)]&&this[_0x4197b9(0x1f7)][_0x4197b9(0x1cd)](this);}[_0x4135c2(0x213)](_0x41ccc6){const _0x57cd08=_0x4135c2;this[_0x57cd08(0x209)]=_0x41ccc6,this[_0x57cd08(0x1e1)][_0x57cd08(0x213)](this[_0x57cd08(0x209)]),this[_0x57cd08(0x1ca)]['forEach'](_0x3b248c=>{const _0x78ef56=_0x57cd08;_0x3b248c[_0x78ef56(0x213)](_0x41ccc6);});}[_0x4135c2(0x204)](){const _0xd9034=_0x4135c2;this[_0xd9034(0x209)]=null;}get[_0x4135c2(0x1f9)](){const _0x29cd92=_0x4135c2;return this['rootComponent'][_0x29cd92(0x1f9)];}set['isHoverEnabled'](_0x3849f1){const _0x4ef0e5=_0x4135c2;this[_0x4ef0e5(0x1e1)][_0x4ef0e5(0x1f9)]=_0x3849f1;}get[_0x4135c2(0x1da)](){const _0x525d6c=_0x4135c2;return this[_0x525d6c(0x1e1)][_0x525d6c(0x1da)];}set[_0x4135c2(0x1da)](_0x937525){const _0x5c66ba=_0x4135c2;this[_0x5c66ba(0x1e1)][_0x5c66ba(0x1da)]=_0x937525;}[_0x4135c2(0x1f4)](_0x3026d7){const _0x4fda59=_0x4135c2;this[_0x4fda59(0x21c)][_0x4fda59(0x206)](_0x3026d7);}['onActorHoverEnd'](_0x4fad82){const _0x4cc9e8=_0x4135c2;this[_0x4cc9e8(0x1e7)][_0x4cc9e8(0x206)](_0x4fad82);}[_0x4135c2(0x1f1)](_0x3d5317){const _0x51193b=_0x4135c2;this[_0x51193b(0x1dd)][_0x51193b(0x206)](_0x3d5317);}[_0x4135c2(0x217)](_0x3c25a1){const _0x300f7e=_0x4135c2;this[_0x300f7e(0x207)][_0x300f7e(0x206)](_0x3c25a1);}}
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 _0xcaaf35=_0x2363;function _0x594a(){const _0x279736=['4742208rjZjuF','forEach','dispose','keys','material','children','2723376ZixbIW','834552uGZsHX','3009408kvrSYZ','1213964JqZIDQ','isTexture','1744694kTFqQn','disposeMaterialTextures','893394cEeoeD','5UjgiNI','disposeMeshResource'];_0x594a=function(){return _0x279736;};return _0x594a();}(function(_0x19e702,_0x4de94e){const _0x4b5ebd=_0x2363,_0x515059=_0x19e702();while(!![]){try{const _0x2de151=-parseInt(_0x4b5ebd(0x195))/0x1+parseInt(_0x4b5ebd(0x19b))/0x2+parseInt(_0x4b5ebd(0x196))/0x3+-parseInt(_0x4b5ebd(0x197))/0x4*(-parseInt(_0x4b5ebd(0x18c))/0x5)+parseInt(_0x4b5ebd(0x194))/0x6+-parseInt(_0x4b5ebd(0x199))/0x7+-parseInt(_0x4b5ebd(0x18e))/0x8;if(_0x2de151===_0x4de94e)break;else _0x515059['push'](_0x515059['shift']());}catch(_0x363302){_0x515059['push'](_0x515059['shift']());}}}(_0x594a,0x818da));function _0x2363(_0x331fb0,_0x311f02){_0x331fb0=_0x331fb0-0x18c;const _0x594a7b=_0x594a();let _0x236362=_0x594a7b[_0x331fb0];return _0x236362;}class ThreeObjectLibrary{static[_0xcaaf35(0x19a)](_0x175a96){const _0x7e91a9=_0xcaaf35;Object[_0x7e91a9(0x191)](_0x175a96)[_0x7e91a9(0x18f)](_0x5ec062=>{const _0xc1a155=_0x7e91a9,_0x5d92f1=_0x175a96[_0x5ec062];_0x5d92f1&&typeof _0x5d92f1==='object'&&_0xc1a155(0x198)in _0x5d92f1&&_0x5d92f1[_0xc1a155(0x190)]();});}static['disposeMeshMaterial'](_0x56fbb4){const _0x7d90a7=_0xcaaf35;let _0x377d0b=Array['isArray'](_0x56fbb4[_0x7d90a7(0x192)])?_0x56fbb4['material']:[_0x56fbb4['material']];_0x377d0b[_0x7d90a7(0x18f)](_0x18c6da=>{const _0x2a44e5=_0x7d90a7;ThreeObjectLibrary[_0x2a44e5(0x19a)](_0x18c6da),_0x18c6da[_0x2a44e5(0x190)]();});}static['disposeMeshResource'](_0x25f6c8,_0x34dec0=![]){const _0x34b1ce=_0xcaaf35;ThreeObjectLibrary['disposeMeshMaterial'](_0x25f6c8),_0x25f6c8['geometry'][_0x34b1ce(0x190)](),_0x34dec0&&_0x25f6c8[_0x34b1ce(0x193)]['forEach'](_0x1022db=>{const _0x41570a=_0x34b1ce;_0x1022db instanceof webgpu.Mesh&&ThreeObjectLibrary[_0x41570a(0x18d)](_0x1022db,!![]);});}static['disposeObject3DResource'](_0x47fc5b){_0x47fc5b['traverse'](_0x46d59f=>{const _0x560339=_0x2363;_0x46d59f instanceof webgpu.Mesh&&ThreeObjectLibrary[_0x560339(0x18d)](_0x46d59f);});}}
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 _0x35510c=_0x158b;(function(_0x1d23c8,_0x43288a){var _0x17b789=_0x158b,_0x10bad4=_0x1d23c8();while(!![]){try{var _0x423885=parseInt(_0x17b789(0x1a4))/0x1*(-parseInt(_0x17b789(0x1ab))/0x2)+-parseInt(_0x17b789(0x1a7))/0x3+-parseInt(_0x17b789(0x1a6))/0x4+parseInt(_0x17b789(0x1a9))/0x5+-parseInt(_0x17b789(0x1a2))/0x6*(parseInt(_0x17b789(0x1a5))/0x7)+-parseInt(_0x17b789(0x1a0))/0x8+parseInt(_0x17b789(0x1a3))/0x9;if(_0x423885===_0x43288a)break;else _0x10bad4['push'](_0x10bad4['shift']());}catch(_0x5beddb){_0x10bad4['push'](_0x10bad4['shift']());}}}(_0x4004,0xf2690));function _0x158b(_0x57e80f,_0x337c50){_0x57e80f=_0x57e80f-0x1a0;var _0x4004cf=_0x4004();var _0x158b64=_0x4004cf[_0x57e80f];return _0x158b64;}class LevelComponent extends SceneComponent{get[_0x35510c(0x1ac)](){var _0x2b8f41=_0x35510c;if(!this[_0x2b8f41(0x1a8)])throw Error('three\x20object\x20is\x20invalid');return this[_0x2b8f41(0x1a8)];}set[_0x35510c(0x1ac)](_0x26184c){var _0x3d1015=_0x35510c;this[_0x3d1015(0x1a8)]=_0x26184c,this[_0x3d1015(0x1a8)]&&(this[_0x3d1015(0x1a8)][_0x3d1015(0x1aa)]['LYObject']=this);}constructor(_0x3d2f29,_0x2ce19b){super(_0x3d2f29,_0x2ce19b);}[_0x35510c(0x1a1)](){return new three.Scene();}}function _0x4004(){var _0x37b80b=['1263772HNgWPF','4496742QeHtCm','obj','8883735dmOUmo','userData','2SGNIhV','threeObject','11569952ysITVO','createDefaultObject','3289188XTERFL','40823667uxpMkX','414103pmhPOI','21ceRZgt'];_0x4004=function(){return _0x37b80b;};return _0x4004();}
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 _0x47f4b5=_0x3379;(function(_0x32861e,_0x4a275f){var _0x293246=_0x3379,_0x35abd5=_0x32861e();while(!![]){try{var _0x327eed=parseInt(_0x293246(0x16b))/0x1+parseInt(_0x293246(0x15f))/0x2*(parseInt(_0x293246(0x165))/0x3)+parseInt(_0x293246(0x16f))/0x4+-parseInt(_0x293246(0x16c))/0x5+parseInt(_0x293246(0x167))/0x6*(parseInt(_0x293246(0x163))/0x7)+parseInt(_0x293246(0x172))/0x8*(parseInt(_0x293246(0x15d))/0x9)+-parseInt(_0x293246(0x16d))/0xa;if(_0x327eed===_0x4a275f)break;else _0x35abd5['push'](_0x35abd5['shift']());}catch(_0x16369a){_0x35abd5['push'](_0x35abd5['shift']());}}}(_0xc8f0,0xc3a86));function _0x3379(_0x41bc06,_0x3ab392){_0x41bc06=_0x41bc06-0x15c;var _0xc8f05d=_0xc8f0();var _0x33794e=_0xc8f05d[_0x41bc06];return _0x33794e;}function _0xc8f0(){var _0x48efc7=['703293dmqHcw','forEach','18VYWDkL','scene','childActors','scene\x20is\x20null','574364HLMGkP','6384335MjElQd','27373580kcPhpW','app','6334068YbyJmt','uuid','tick','344Yuxdyt','rootComponent','294300yLttOr','destroy','10KjzuXc','threeObject','_scene','clearLevel','185507Phzqgt','isTickEnabled'];_0xc8f0=function(){return _0x48efc7;};return _0xc8f0();}class LevelActor extends Actor{get['scene'](){var _0x45f576=_0x3379;if(!this['_scene'])throw new Error(_0x45f576(0x16a));return this[_0x45f576(0x161)];}constructor(_0x57589d,_0xb1e3d3){var _0x3adc58=_0x3379;super(_0x57589d,_0xb1e3d3),this[_0x3adc58(0x161)]=null,this[_0x3adc58(0x161)]=this[_0x3adc58(0x15c)][_0x3adc58(0x160)],this[_0x3adc58(0x164)]=![];}['constructRootComponent'](){var _0x4732d3=_0x3379;return new LevelComponent(this[_0x4732d3(0x16e)],this[_0x4732d3(0x170)]);}['tick'](_0x4c3a0a){var _0x2daea1=_0x3379;if(!this[_0x2daea1(0x164)])return;super[_0x2daea1(0x171)](_0x4c3a0a);}[_0x47f4b5(0x15e)](){var _0xf4d75a=_0x47f4b5;this[_0xf4d75a(0x162)](),super[_0xf4d75a(0x15e)]();}[_0x47f4b5(0x162)](){var _0x49570d=_0x47f4b5;this[_0x49570d(0x169)][_0x49570d(0x166)](_0x143e69=>{var _0x2abbe2=_0x49570d;_0x143e69[_0x2abbe2(0x15e)]();}),this[_0x49570d(0x168)]['traverse'](_0x37a00d=>{_0x37a00d instanceof webgpu.Mesh&&ThreeObjectLibrary['disposeMeshResource'](_0x37a00d);});}}
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 _0x6687(_0x16ed63,_0x3f236c){_0x16ed63=_0x16ed63-0xae;const _0x2800d6=_0x2800();let _0x668745=_0x2800d6[_0x16ed63];return _0x668745;}(function(_0x5209f1,_0x217f62){const _0x2129eb=_0x6687,_0x1e21be=_0x5209f1();while(!![]){try{const _0x28974d=-parseInt(_0x2129eb(0xb1))/0x1*(parseInt(_0x2129eb(0xb7))/0x2)+parseInt(_0x2129eb(0xb2))/0x3*(parseInt(_0x2129eb(0xba))/0x4)+-parseInt(_0x2129eb(0xb0))/0x5*(parseInt(_0x2129eb(0xae))/0x6)+parseInt(_0x2129eb(0xb5))/0x7+-parseInt(_0x2129eb(0xb9))/0x8*(parseInt(_0x2129eb(0xb8))/0x9)+-parseInt(_0x2129eb(0xb4))/0xa*(parseInt(_0x2129eb(0xaf))/0xb)+parseInt(_0x2129eb(0xb6))/0xc*(parseInt(_0x2129eb(0xb3))/0xd);if(_0x28974d===_0x217f62)break;else _0x1e21be['push'](_0x1e21be['shift']());}catch(_0x42d739){_0x1e21be['push'](_0x1e21be['shift']());}}}(_0x2800,0xdc8a4));function _0x2800(){const _0x4c9612=['42246ukYpXS','11riufCp','1195gbUZuS','41935empfKa','3929199YSuLXg','159835cIlqdG','13343600BFPvNi','9233154QSCvMj','3000MmGNPI','12uCIkcd','3443409nafdZT','32jFYwNQ','4agchGl'];_0x2800=function(){return _0x4c9612;};return _0x2800();}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 _0x3e9062=_0x4554;(function(_0x515fa1,_0x5486d2){const _0x3864ff=_0x4554,_0x1daf40=_0x515fa1();while(!![]){try{const _0x474ead=parseInt(_0x3864ff(0x124))/0x1+-parseInt(_0x3864ff(0x155))/0x2+-parseInt(_0x3864ff(0x12b))/0x3+parseInt(_0x3864ff(0x152))/0x4*(-parseInt(_0x3864ff(0x143))/0x5)+parseInt(_0x3864ff(0x129))/0x6*(parseInt(_0x3864ff(0x144))/0x7)+parseInt(_0x3864ff(0x14a))/0x8+parseInt(_0x3864ff(0x14f))/0x9;if(_0x474ead===_0x5486d2)break;else _0x1daf40['push'](_0x1daf40['shift']());}catch(_0x317a67){_0x1daf40['push'](_0x1daf40['shift']());}}}(_0x3d35,0x6b45c));function _0x4554(_0x1c2761,_0x4e07ad){_0x1c2761=_0x1c2761-0x124;const _0x3d35ab=_0x3d35();let _0x455479=_0x3d35ab[_0x1c2761];return _0x455479;}function _0x3d35(){const _0x155fa6=['world','push','classes','destroy','renderer','clearAssets','init','renderParam','_assetManager','markRenderStateDirty','2270BNqCYC','7133qdCqiG','controllerClass','onWindowResize','cameraParam','_appParam','_camera','4397664JcZrDk','viewport','controller','viewportClass','viewportParam','5025456iKQGkW','addTickingFunction','createCamera','6616lXWMwa','_onCameraChangedDelegate','broadcast','1384660fWsRAE','_clock','aspect','528105XQUsln','postConstruct','isRenderEveryFrame','_viewport','_controller','4110hNJIDU','camera','1354734NZWxMK','postProcessParam','setAnimationLoop','worldClass','splice','appParam','updateProjectionMatrix','clear','tick','worldParam','renderAsImage','onCameraChangedDelegate','_world','_tickingFunctions'];_0x3d35=function(){return _0x155fa6;};return _0x3d35();}class ThreeJsApp{get[_0x3e9062(0x12a)](){const _0x9cf8c=_0x3e9062;return this[_0x9cf8c(0x149)];}get['clock'](){return this['_clock'];}get[_0x3e9062(0x139)](){const _0x374fe0=_0x3e9062;return this[_0x374fe0(0x137)];}get['viewport'](){const _0x29b1ec=_0x3e9062;return this[_0x29b1ec(0x127)];}get[_0x3e9062(0x14c)](){return this['_controller'];}get['assetManager'](){const _0x2d6e94=_0x3e9062;return this[_0x2d6e94(0x141)];}get[_0x3e9062(0x130)](){const _0x255b91=_0x3e9062;return this[_0x255b91(0x148)];}get[_0x3e9062(0x136)](){const _0x2266b2=_0x3e9062;return this[_0x2266b2(0x153)];}constructor(_0x47e389=DefaultAppParam){const _0x36036e=_0x3e9062;this[_0x36036e(0x138)]=[],this[_0x36036e(0x148)]={'viewportParam':DefaultViewportParam},this['_onCameraChangedDelegate']=new Delegate(),this[_0x36036e(0x148)][_0x36036e(0x147)]=_0x47e389[_0x36036e(0x147)]?_0x47e389[_0x36036e(0x147)]:DefaultCameraParam,this[_0x36036e(0x148)][_0x36036e(0x140)]=_0x47e389[_0x36036e(0x140)]?_0x47e389[_0x36036e(0x140)]:DefaultRendererParameters,this['_appParam'][_0x36036e(0x12c)]=_0x47e389[_0x36036e(0x12c)]?_0x47e389[_0x36036e(0x12c)]:DefaultPostProcessParam,this[_0x36036e(0x148)][_0x36036e(0x14e)]=_0x47e389['viewportParam']?_0x47e389['viewportParam']:DefaultViewportParam,this[_0x36036e(0x148)][_0x36036e(0x13b)]=_0x47e389[_0x36036e(0x13b)]?_0x47e389[_0x36036e(0x13b)]:{'assetManagerClass':AssetManager,'controllerClass':Controller,'worldClass':World,'viewportClass':Viewport},this[_0x36036e(0x148)][_0x36036e(0x126)]=_0x47e389[_0x36036e(0x126)],this[_0x36036e(0x156)]=new webgpu.Clock(),this[_0x36036e(0x149)]=CameraFactory[_0x36036e(0x151)](this[_0x36036e(0x148)][_0x36036e(0x147)]),this[_0x36036e(0x137)]=new this['_appParam'][(_0x36036e(0x13b))][(_0x36036e(0x12e))](this,this[_0x36036e(0x148)]['worldParam']?this['_appParam'][_0x36036e(0x134)]:DefaultWorldParam),this[_0x36036e(0x127)]=new this['_appParam']['classes'][(_0x36036e(0x14d))](this,this['_appParam'][_0x36036e(0x14e)],this[_0x36036e(0x148)]['renderParam'],this[_0x36036e(0x148)]['postProcessParam']),this[_0x36036e(0x128)]=new this[(_0x36036e(0x148))][(_0x36036e(0x13b))][(_0x36036e(0x145))](this),this[_0x36036e(0x141)]=new this[(_0x36036e(0x148))]['classes']['assetManagerClass'](this),this['viewport'][_0x36036e(0x13d)][_0x36036e(0x12d)](()=>{const _0x3849eb=_0x36036e,_0x5582af=this['_clock']['getDelta']();this[_0x3849eb(0x133)](_0x5582af);}),this[_0x36036e(0x125)]();}[_0x3e9062(0x125)](){const _0x55db43=_0x3e9062;this[_0x55db43(0x14c)][_0x55db43(0x13f)](),this['world']['init'](),this[_0x55db43(0x14b)]['init']();}[_0x3e9062(0x13f)](){}[_0x3e9062(0x133)](_0x1db7c1){const _0x2c5e4b=_0x3e9062;this[_0x2c5e4b(0x128)][_0x2c5e4b(0x133)](_0x1db7c1),this['world']['tick'](_0x1db7c1),this['_tickingFunctions']['forEach'](_0x33d521=>{_0x33d521(_0x1db7c1);}),this[_0x2c5e4b(0x148)][_0x2c5e4b(0x126)]&&this['viewport'][_0x2c5e4b(0x142)](),this[_0x2c5e4b(0x14b)]['render']();}[_0x3e9062(0x150)](_0x24825b){const _0x4a6391=_0x3e9062;this['_tickingFunctions'][_0x4a6391(0x13a)](_0x24825b);}['removeTickingFunction'](_0x52344f){const _0x416341=_0x3e9062,_0x4f5002=this[_0x416341(0x138)]['indexOf'](_0x52344f);_0x4f5002>=0x0&&this[_0x416341(0x138)][_0x416341(0x12f)](_0x4f5002,0x1);}['destroy'](){const _0x20b08b=_0x3e9062;this[_0x20b08b(0x136)][_0x20b08b(0x132)](),this['controller']['destroy'](),this[_0x20b08b(0x139)]['destroy'](),this[_0x20b08b(0x14b)][_0x20b08b(0x13c)](),this['_assetManager'][_0x20b08b(0x13e)]();}['updateCamera'](_0xe06536){const _0x4c713a=_0x3e9062,_0x49d062=this[_0x4c713a(0x12a)];this['_camera']=CameraFactory['updataCamera'](_0xe06536,this['camera']),_0x49d062!==this[_0x4c713a(0x12a)]&&(this['_onCameraChangedDelegate'][_0x4c713a(0x154)](),this[_0x4c713a(0x14c)]['updateCamera']()),this['_camera'][_0x4c713a(0x131)](),this['viewport'][_0x4c713a(0x142)]();}[_0x3e9062(0x146)](_0x49040e,_0x2df0f0){const _0x353cf8=_0x3e9062;this[_0x353cf8(0x12a)]instanceof webgpu.PerspectiveCamera&&(this[_0x353cf8(0x12a)][_0x353cf8(0x157)]=_0x49040e/_0x2df0f0),this[_0x353cf8(0x12a)][_0x353cf8(0x131)]();}async[_0x3e9062(0x135)](_0x27d064=0x400,_0x12ad18=0x400){return await this['viewport']['renderAsImage'](_0x27d064,_0x12ad18);}}
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 _0x190da2=_0x54a8;function _0x54a8(_0x552397,_0x1c7937){_0x552397=_0x552397-0x13c;var _0x540f38=_0x540f();var _0x54a8a8=_0x540f38[_0x552397];return _0x54a8a8;}function _0x540f(){var _0x46b005=['129208YAzMaN','LYObject','387lFKBFa','21wUWxyk','8389145wbYNle','getHex','2mtuBvp','intensity','8016722ioiHfn','6056148oriDij','threeObject','obj','three\x20object\x20is\x20invalid','color','407916xRnWhP','315336dbfQZL','set','10867010lkfGlG'];_0x540f=function(){return _0x46b005;};return _0x540f();}(function(_0x52b0af,_0x5c6544){var _0x113c82=_0x54a8,_0x4d8c70=_0x52b0af();while(!![]){try{var _0x71399b=parseInt(_0x113c82(0x148))/0x1*(parseInt(_0x113c82(0x13f))/0x2)+-parseInt(_0x113c82(0x145))/0x3*(parseInt(_0x113c82(0x13e))/0x4)+parseInt(_0x113c82(0x146))/0x5+-parseInt(_0x113c82(0x14b))/0x6+-parseInt(_0x113c82(0x14a))/0x7+-parseInt(_0x113c82(0x142))/0x8*(-parseInt(_0x113c82(0x144))/0x9)+parseInt(_0x113c82(0x141))/0xa;if(_0x71399b===_0x5c6544)break;else _0x4d8c70['push'](_0x4d8c70['shift']());}catch(_0x385933){_0x4d8c70['push'](_0x4d8c70['shift']());}}}(_0x540f,0xdd2ae));class LightComponent extends SceneComponent{get[_0x190da2(0x14c)](){var _0x4c077b=_0x190da2;if(!this[_0x4c077b(0x14d)])throw Error(_0x4c077b(0x13c));return this[_0x4c077b(0x14d)];}set[_0x190da2(0x14c)](_0x10afef){var _0x1292b6=_0x190da2;this[_0x1292b6(0x14d)]=_0x10afef,this[_0x1292b6(0x14d)]&&(this[_0x1292b6(0x14d)]['userData'][_0x1292b6(0x143)]=this);}get[_0x190da2(0x13d)](){var _0x2f5312=_0x190da2;return this[_0x2f5312(0x14c)][_0x2f5312(0x13d)][_0x2f5312(0x147)]();}set[_0x190da2(0x13d)](_0x237e55){var _0x3578fa=_0x190da2;this[_0x3578fa(0x14c)][_0x3578fa(0x13d)][_0x3578fa(0x140)](_0x237e55);}get['intensity'](){var _0x40327c=_0x190da2;return this[_0x40327c(0x14c)]['intensity'];}set[_0x190da2(0x149)](_0x1c38f9){var _0x39556e=_0x190da2;this[_0x39556e(0x14c)][_0x39556e(0x149)]=_0x1c38f9;}constructor(_0x81bc49,_0x46fb6f){super(_0x81bc49,_0x46fb6f);}}
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
+ var _0x3f353d=_0x34d8;function _0x34d8(_0x1cdca9,_0x3b0fa2){_0x1cdca9=_0x1cdca9-0x18a;var _0xa25f1=_0xa25f();var _0x34d802=_0xa25f1[_0x1cdca9];return _0x34d802;}(function(_0x1fcda2,_0x284b8b){var _0x4ed6d8=_0x34d8,_0x533a3b=_0x1fcda2();while(!![]){try{var _0x18317b=parseInt(_0x4ed6d8(0x1a0))/0x1*(-parseInt(_0x4ed6d8(0x1a1))/0x2)+-parseInt(_0x4ed6d8(0x195))/0x3*(parseInt(_0x4ed6d8(0x193))/0x4)+-parseInt(_0x4ed6d8(0x18a))/0x5*(parseInt(_0x4ed6d8(0x1a2))/0x6)+-parseInt(_0x4ed6d8(0x190))/0x7+parseInt(_0x4ed6d8(0x19e))/0x8*(-parseInt(_0x4ed6d8(0x191))/0x9)+parseInt(_0x4ed6d8(0x198))/0xa+parseInt(_0x4ed6d8(0x18c))/0xb;if(_0x18317b===_0x284b8b)break;else _0x533a3b['push'](_0x533a3b['shift']());}catch(_0x5ebbae){_0x533a3b['push'](_0x533a3b['shift']());}}}(_0xa25f,0x6073a));class DirectionalLightComponent extends LightComponent{get[_0x3f353d(0x19a)](){var _0x2b9670=_0x3f353d;if(!this[_0x2b9670(0x192)])throw Error(_0x2b9670(0x19c));return this[_0x2b9670(0x192)];}set[_0x3f353d(0x19a)](_0x212ce6){var _0x520b43=_0x3f353d;this[_0x520b43(0x192)]=_0x212ce6,this[_0x520b43(0x192)]&&(this['obj']['userData'][_0x520b43(0x194)]=this);}get[_0x3f353d(0x19b)](){var _0x11480f=_0x3f353d;return this[_0x11480f(0x19a)]['castShadow'];}set[_0x3f353d(0x19b)](_0x4d8a5e){var _0x1f28ca=_0x3f353d;this['threeObject'][_0x1f28ca(0x19b)]=_0x4d8a5e;}constructor(_0x460e36,_0x2f5a2a=0xffffff,_0x33fcc0=0xa,_0x2f65bd){var _0x10bd26=_0x3f353d;super(_0x460e36,_0x2f65bd),this[_0x10bd26(0x19a)][_0x10bd26(0x18b)]['set'](_0x2f5a2a),this[_0x10bd26(0x19a)][_0x10bd26(0x199)]=_0x33fcc0;}['createDefaultObject'](){return new webgpu.DirectionalLight(0xffffff,0xa);}[_0x3f353d(0x197)](..._0x2b7634){var _0x1c245e=_0x3f353d;_0x2b7634['length']===0x1?super[_0x1c245e(0x197)](_0x2b7634[0x0]):super[_0x1c245e(0x197)](_0x2b7634[0x0],_0x2b7634[0x1],_0x2b7634[0x2]),this[_0x1c245e(0x19d)]();}[_0x3f353d(0x19d)](){var _0x2564fe=_0x3f353d;if(this['world'])this[_0x2564fe(0x19f)][_0x2564fe(0x18f)][_0x2564fe(0x18e)]();}[_0x3f353d(0x196)](_0x3fe222){var _0x2f2fac=_0x3f353d;if(!this[_0x2f2fac(0x19a)])throw Error(_0x2f2fac(0x19c));super[_0x2f2fac(0x196)](_0x3fe222);}[_0x3f353d(0x18d)](){var _0x1d40b4=_0x3f353d;super[_0x1d40b4(0x18d)]();}}function _0xa25f(){var _0x358869=['1220ZpNfXb','color','20381603WOKjGj','destroy','markRenderStateDirty','viewport','1054844dDxdRA','4284PsoAsn','obj','254984bEftQN','LYObject','21SHrMyX','onAddedToWorld','setPosition','1238310zQnkkh','intensity','threeObject','castShadow','three\x20object\x20is\x20invalid','update','7088NTisAU','world','516YxOGlp','1644LYqsHJ','3414MbJbqO'];_0xa25f=function(){return _0x358869;};return _0xa25f();}
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 _0x229a44=_0x5d9c;function _0x5d9c(_0x55b7f4,_0x11ac97){_0x55b7f4=_0x55b7f4-0x68;var _0x46959b=_0x4695();var _0x5d9ce8=_0x46959b[_0x55b7f4];return _0x5d9ce8;}(function(_0x19452f,_0x5e4b72){var _0x1ee1bd=_0x5d9c,_0xd01f55=_0x19452f();while(!![]){try{var _0x5ce7f3=parseInt(_0x1ee1bd(0x76))/0x1*(-parseInt(_0x1ee1bd(0x73))/0x2)+-parseInt(_0x1ee1bd(0x6c))/0x3+parseInt(_0x1ee1bd(0x72))/0x4*(-parseInt(_0x1ee1bd(0x6f))/0x5)+-parseInt(_0x1ee1bd(0x69))/0x6*(parseInt(_0x1ee1bd(0x6b))/0x7)+parseInt(_0x1ee1bd(0x71))/0x8+parseInt(_0x1ee1bd(0x68))/0x9*(parseInt(_0x1ee1bd(0x6d))/0xa)+parseInt(_0x1ee1bd(0x75))/0xb;if(_0x5ce7f3===_0x5e4b72)break;else _0xd01f55['push'](_0xd01f55['shift']());}catch(_0x2a2a0e){_0xd01f55['push'](_0xd01f55['shift']());}}}(_0x4695,0x3f1de));function _0x4695(){var _0x38db40=['399203ZdSLMF','1103142hNcuHO','41770cFhhbS','intensity','5QnqPWx','lightComponent','462928eZjLlr','1187772wDOwVA','26ImLcHv','color','13322573REwIIp','21179YAlwQh','castShadow','constructRootComponent','954bewlLS','54MVicfW','rootComponent'];_0x4695=function(){return _0x38db40;};return _0x4695();}class DirectionalLightActor extends Actor{constructor(_0x13b390,_0x2cf4d1=0xffffff,_0x43663f=0x1,_0x547cd5){var _0x4e9f72=_0x5d9c;super(_0x13b390,_0x547cd5),this[_0x4e9f72(0x70)]=null,this['lightComponent']=this[_0x4e9f72(0x6a)],this['lightComponent']&&(this[_0x4e9f72(0x70)][_0x4e9f72(0x74)]=_0x2cf4d1,this[_0x4e9f72(0x70)][_0x4e9f72(0x6e)]=_0x43663f,this[_0x4e9f72(0x70)][_0x4e9f72(0x77)]=!![]),this[_0x4e9f72(0x70)][_0x4e9f72(0x77)]=!![];}[_0x229a44(0x78)](){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
+ function _0x2ab4(_0x5c9d38,_0x4acd09){_0x5c9d38=_0x5c9d38-0x10d;var _0x566538=_0x5665();var _0x2ab4ac=_0x566538[_0x5c9d38];return _0x2ab4ac;}var _0x4e6d56=_0x2ab4;function _0x5665(){var _0x74df45=['setPosition','length','2917308BUOpUY','38370fFOuUT','set','788756gVLvBZ','createDefaultObject','color','12909584GbDwOC','threeObject','intensity','three\x20object\x20is\x20invalid','3844650QTLZmH','1039197yxTXfg','obj','onAddedToWorld','destroy','castShadow','markRenderStateDirty','2QkzCrB','world','update','580020oPnKZk','userData'];_0x5665=function(){return _0x74df45;};return _0x5665();}(function(_0x5565c1,_0x3f9726){var _0x55423d=_0x2ab4,_0x66ebda=_0x5565c1();while(!![]){try{var _0x19a1ba=parseInt(_0x55423d(0x10e))/0x1*(-parseInt(_0x55423d(0x11c))/0x2)+-parseInt(_0x55423d(0x116))/0x3+-parseInt(_0x55423d(0x123))/0x4+-parseInt(_0x55423d(0x124))/0x5+parseInt(_0x55423d(0x115))/0x6+parseInt(_0x55423d(0x11f))/0x7+parseInt(_0x55423d(0x111))/0x8;if(_0x19a1ba===_0x3f9726)break;else _0x66ebda['push'](_0x66ebda['shift']());}catch(_0x5e370b){_0x66ebda['push'](_0x66ebda['shift']());}}}(_0x5665,0x71919));class AmbientLightComponent extends LightComponent{get['threeObject'](){var _0x201e32=_0x2ab4;if(!this[_0x201e32(0x117)])throw Error(_0x201e32(0x114));return this['obj'];}set['threeObject'](_0x20afb5){var _0x23b454=_0x2ab4;this[_0x23b454(0x117)]=_0x20afb5,this[_0x23b454(0x117)]&&(this[_0x23b454(0x117)][_0x23b454(0x120)]['LYObject']=this);}get['castShadow'](){var _0x538561=_0x2ab4;return this['threeObject'][_0x538561(0x11a)];}set['castShadow'](_0x10656f){var _0x2f82d4=_0x2ab4;this[_0x2f82d4(0x112)]['castShadow']=_0x10656f;}constructor(_0x50abb8,_0x69455b=0xffffff,_0x31ef33=0xa,_0x574a7b){var _0x2ed4a5=_0x2ab4;super(_0x50abb8,_0x574a7b),this[_0x2ed4a5(0x112)][_0x2ed4a5(0x110)][_0x2ed4a5(0x10d)](_0x69455b),this[_0x2ed4a5(0x112)][_0x2ed4a5(0x113)]=_0x31ef33;}[_0x4e6d56(0x10f)](){return new webgpu.AmbientLight(0xffffff,0xa);}[_0x4e6d56(0x121)](..._0x9cd4b7){var _0x2d7354=_0x4e6d56;_0x9cd4b7[_0x2d7354(0x122)]===0x1?super[_0x2d7354(0x121)](_0x9cd4b7[0x0]):super[_0x2d7354(0x121)](_0x9cd4b7[0x0],_0x9cd4b7[0x1],_0x9cd4b7[0x2]),this[_0x2d7354(0x11e)]();}[_0x4e6d56(0x11e)](){var _0xcfb910=_0x4e6d56;if(this[_0xcfb910(0x11d)])this[_0xcfb910(0x11d)]['viewport'][_0xcfb910(0x11b)]();}['onAddedToWorld'](_0x175fa8){var _0x3a81f8=_0x4e6d56;if(!this[_0x3a81f8(0x112)])throw Error(_0x3a81f8(0x114));super[_0x3a81f8(0x118)](_0x175fa8);}['destroy'](){var _0x1da11a=_0x4e6d56;super[_0x1da11a(0x119)]();}}
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
+ var _0x361ca7=_0x3901;(function(_0x264bf0,_0x49c797){var _0x218705=_0x3901,_0x10f3ec=_0x264bf0();while(!![]){try{var _0x89bf66=parseInt(_0x218705(0x10b))/0x1*(parseInt(_0x218705(0x109))/0x2)+parseInt(_0x218705(0x107))/0x3+-parseInt(_0x218705(0x10a))/0x4+parseInt(_0x218705(0x10d))/0x5+parseInt(_0x218705(0x110))/0x6*(-parseInt(_0x218705(0x10c))/0x7)+parseInt(_0x218705(0x10f))/0x8*(parseInt(_0x218705(0x106))/0x9)+-parseInt(_0x218705(0x103))/0xa;if(_0x89bf66===_0x49c797)break;else _0x10f3ec['push'](_0x10f3ec['shift']());}catch(_0x23a0e0){_0x10f3ec['push'](_0x10f3ec['shift']());}}}(_0x7672,0x56981));function _0x3901(_0x3e85c2,_0x2deaba){_0x3e85c2=_0x3e85c2-0x103;var _0x767267=_0x7672();var _0x390195=_0x767267[_0x3e85c2];return _0x390195;}function _0x7672(){var _0x2549b2=['app','432BTzVrL','6DGizDI','constructRootComponent','4880010rqNcCv','intensity','castShadow','25947EVEWqa','360813ofYOSk','lightComponent','6832gpJVPo','993228QzPPMf','109aqPnlH','520142YPpcSy','2585030BsVmZY'];_0x7672=function(){return _0x2549b2;};return _0x7672();}class AmbientLightActor extends Actor{constructor(_0x16515d,_0x31b13b=0xffffff,_0x4e0cad=0x1,_0x279fb7){var _0x19dfc0=_0x3901;super(_0x16515d,_0x279fb7),this[_0x19dfc0(0x108)]=null,this[_0x19dfc0(0x108)]=this['rootComponent'],this['lightComponent']&&(this[_0x19dfc0(0x108)]['color']=_0x31b13b,this[_0x19dfc0(0x108)][_0x19dfc0(0x104)]=_0x4e0cad,this[_0x19dfc0(0x108)][_0x19dfc0(0x105)]=!![]),this[_0x19dfc0(0x108)][_0x19dfc0(0x105)]=!![];}[_0x361ca7(0x111)](){var _0x58c660=_0x361ca7;return new AmbientLightComponent(this[_0x58c660(0x10e)]);}}
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 _0x41b6(_0x395a83,_0x49ac67){_0x395a83=_0x395a83-0x115;var _0x21a46e=_0x21a4();var _0x41b622=_0x21a46e[_0x395a83];return _0x41b622;}(function(_0x586984,_0x9ec565){var _0x1c369f=_0x41b6,_0x230c08=_0x586984();while(!![]){try{var _0x160fda=parseInt(_0x1c369f(0x11a))/0x1+parseInt(_0x1c369f(0x11b))/0x2*(parseInt(_0x1c369f(0x115))/0x3)+-parseInt(_0x1c369f(0x11c))/0x4*(-parseInt(_0x1c369f(0x118))/0x5)+parseInt(_0x1c369f(0x119))/0x6*(-parseInt(_0x1c369f(0x11e))/0x7)+-parseInt(_0x1c369f(0x117))/0x8+-parseInt(_0x1c369f(0x11d))/0x9+parseInt(_0x1c369f(0x116))/0xa;if(_0x160fda===_0x9ec565)break;else _0x230c08['push'](_0x230c08['shift']());}catch(_0x1aa9c9){_0x230c08['push'](_0x230c08['shift']());}}}(_0x21a4,0x271b9));function _0x21a4(){var _0x15619a=['4WcsrQp','1597437vatpdH','231LuDvSc','3lpQQzd','2409040poGVZH','177688RmWBxQ','94090gNURlJ','14046yLpxaL','78298msgWCN','198244bylibg'];_0x21a4=function(){return _0x15619a;};return _0x21a4();}class BoxComponent extends MeshComponent{constructor(_0x4e1dfc,_0x261a4d=0x1,_0xfb8ee7=0x1,_0x320259=0x1,_0x12fb47=0x1,_0x3d8e8b=0x1,_0x50bf3d=0x1,_0x36f853=new webgpu.MeshStandardMaterial(),_0x254fec){super(_0x4e1dfc,new webgpu.BoxGeometry(_0x261a4d,_0xfb8ee7,_0x320259,_0x12fb47,_0x3d8e8b,_0x50bf3d),_0x36f853,_0x254fec);}}
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 _0x3924(){var _0x341cb6=['13ixPilx','1844873fUYoVz','2fmyNKR','3357270upSEeM','4621379RmBarD','7260076LLgWHW','2538aSyGJW','3333517oDohOR','5DHYjmi','22824DThaeT','50sjvDRp','6117828KzkIla','6qTuizt'];_0x3924=function(){return _0x341cb6;};return _0x3924();}(function(_0x5888f1,_0x32b746){var _0x578870=_0x4662,_0x4fa780=_0x5888f1();while(!![]){try{var _0x4e3924=-parseInt(_0x578870(0x176))/0x1*(parseInt(_0x578870(0x177))/0x2)+parseInt(_0x578870(0x16b))/0x3+parseInt(_0x578870(0x16d))/0x4*(-parseInt(_0x578870(0x170))/0x5)+-parseInt(_0x578870(0x174))/0x6*(-parseInt(_0x578870(0x16c))/0x7)+parseInt(_0x578870(0x171))/0x8*(parseInt(_0x578870(0x16e))/0x9)+parseInt(_0x578870(0x172))/0xa*(parseInt(_0x578870(0x16f))/0xb)+parseInt(_0x578870(0x173))/0xc*(parseInt(_0x578870(0x175))/0xd);if(_0x4e3924===_0x32b746)break;else _0x4fa780['push'](_0x4fa780['shift']());}catch(_0x4ea935){_0x4fa780['push'](_0x4fa780['shift']());}}}(_0x3924,0xe7b03));function _0x4662(_0x57fda0,_0x1ac090){_0x57fda0=_0x57fda0-0x16b;var _0x3924b4=_0x3924();var _0x46626b=_0x3924b4[_0x57fda0];return _0x46626b;}class BoxActor extends Actor{constructor(_0x1e989c,_0x347d65){super(_0x1e989c,_0x347d65);}['constructRootComponent'](){return new BoxComponent(this['app'],0x1,0x1,0x1,0x1,0x1,0x1,new webgpu.MeshBasicMaterial(),this['uuid']);}}
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 _0x3e3d89=_0x1010;(function(_0x474d1e,_0x5b9097){const _0x5303a3=_0x1010,_0xd62003=_0x474d1e();while(!![]){try{const _0x4f0e14=-parseInt(_0x5303a3(0x1eb))/0x1+-parseInt(_0x5303a3(0x204))/0x2*(-parseInt(_0x5303a3(0x203))/0x3)+parseInt(_0x5303a3(0x1f8))/0x4*(parseInt(_0x5303a3(0x1ff))/0x5)+parseInt(_0x5303a3(0x1f0))/0x6*(-parseInt(_0x5303a3(0x1ed))/0x7)+parseInt(_0x5303a3(0x1ea))/0x8+parseInt(_0x5303a3(0x1fc))/0x9*(-parseInt(_0x5303a3(0x209))/0xa)+-parseInt(_0x5303a3(0x1f7))/0xb*(-parseInt(_0x5303a3(0x206))/0xc);if(_0x4f0e14===_0x5b9097)break;else _0xd62003['push'](_0xd62003['shift']());}catch(_0x219dcf){_0xd62003['push'](_0xd62003['shift']());}}}(_0x4080,0xbf8bc));const DefaultSkyParam={'turbidity':0xa,'rayleigh':0x3,'mieCoefficient':0.005,'mieDirectionalG':0.7,'elevation':0x2,'azimuth':0x87};function _0x1010(_0x14fbc7,_0x322d6c){_0x14fbc7=_0x14fbc7-0x1e9;const _0x408099=_0x4080();let _0x101017=_0x408099[_0x14fbc7];return _0x101017;}function _0x4080(){const _0x145bce=['azimuth','451XuqGeP','1627196VykKJH','disposeMeshResource','LYObject','sunPosition','981NZlYuS','world','obj','5YuMHcy','setFromSphericalCoords','copy','mieCoefficient','2805PalNuh','2936cDzQwQ','userData','295656JbfHcx','skyParam','viewport','112910dRroix','three\x20object\x20is\x20invalid','8496656bweHoa','338345fHSnpr','mieDirectionalG','10485881cjmBsp','turbidity','degToRad','6sUjUPb','threeObject','value','elevation','createDefaultObject','rayleigh'];_0x4080=function(){return _0x145bce;};return _0x4080();}class SkyComponent extends SceneComponent{get[_0x3e3d89(0x1f1)](){const _0x2c47c7=_0x3e3d89;if(!this[_0x2c47c7(0x1fe)])throw Error(_0x2c47c7(0x1e9));return this[_0x2c47c7(0x1fe)];}set[_0x3e3d89(0x1f1)](_0x7471cf){const _0x1ea333=_0x3e3d89;this[_0x1ea333(0x1fe)]=_0x7471cf,this[_0x1ea333(0x1fe)]&&(this[_0x1ea333(0x1fe)][_0x1ea333(0x205)][_0x1ea333(0x1fa)]=this);}constructor(_0x4d3e31,_0x1cd942,_0x187f87){const _0x5cd0cb=_0x3e3d89;super(_0x4d3e31,_0x187f87),this[_0x5cd0cb(0x207)]=DefaultSkyParam,this[_0x5cd0cb(0x1fb)]=new webgpu.Vector3(),_0x1cd942&&(this[_0x5cd0cb(0x207)]=_0x1cd942),this['updateSky']();}[_0x3e3d89(0x1f4)](){return new SkyMesh_js.SkyMesh();}['updateSky'](){const _0x57fedd=_0x3e3d89;var _0x54d202,_0xa9cffd;this[_0x57fedd(0x1f1)][_0x57fedd(0x1ee)]['value']=this['skyParam']['turbidity'],this[_0x57fedd(0x1f1)][_0x57fedd(0x1f5)][_0x57fedd(0x1f2)]=this['skyParam'][_0x57fedd(0x1f5)],this[_0x57fedd(0x1f1)][_0x57fedd(0x202)][_0x57fedd(0x1f2)]=this[_0x57fedd(0x207)][_0x57fedd(0x202)],this[_0x57fedd(0x1f1)][_0x57fedd(0x1ec)]['value']=this[_0x57fedd(0x207)][_0x57fedd(0x1ec)];const _0x57e62b=webgpu.MathUtils[_0x57fedd(0x1ef)](0x5a-this[_0x57fedd(0x207)][_0x57fedd(0x1f3)]),_0x3bd482=webgpu.MathUtils[_0x57fedd(0x1ef)](this[_0x57fedd(0x207)][_0x57fedd(0x1f6)]);this[_0x57fedd(0x1fb)][_0x57fedd(0x200)](0x1,_0x57e62b,_0x3bd482),this['threeObject'][_0x57fedd(0x1fb)][_0x57fedd(0x1f2)][_0x57fedd(0x201)](this['sunPosition']),(_0xa9cffd=(_0x54d202=this[_0x57fedd(0x1fd)])===null||_0x54d202===void 0?void 0:_0x54d202[_0x57fedd(0x208)])===null||_0xa9cffd===void 0?void 0:_0xa9cffd['markRenderStateDirty']();}['destroyObject'](){const _0x34c014=_0x3e3d89;this[_0x34c014(0x1fe)]&&ThreeObjectLibrary[_0x34c014(0x1f9)](this['threeObject']);}}
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 _0x12ca9a=_0x1b82;(function(_0x434e4e,_0x3b6564){var _0x5e471a=_0x1b82,_0x49c374=_0x434e4e();while(!![]){try{var _0x5c88f5=parseInt(_0x5e471a(0xec))/0x1+parseInt(_0x5e471a(0xf6))/0x2+-parseInt(_0x5e471a(0xf3))/0x3*(-parseInt(_0x5e471a(0xe9))/0x4)+-parseInt(_0x5e471a(0xef))/0x5*(-parseInt(_0x5e471a(0xf7))/0x6)+-parseInt(_0x5e471a(0xf1))/0x7*(-parseInt(_0x5e471a(0xe7))/0x8)+parseInt(_0x5e471a(0xeb))/0x9+-parseInt(_0x5e471a(0xe8))/0xa;if(_0x5c88f5===_0x3b6564)break;else _0x49c374['push'](_0x49c374['shift']());}catch(_0x4b9193){_0x49c374['push'](_0x49c374['shift']());}}}(_0x3d03,0xecd67));function _0x3d03(){var _0x179cbb=['SkyActor','2145792ebvbgy','3048462eNVdEM','8SVSMoy','59669900mizkSF','92uLvupE','_name','16518960xUgQXw','1041576OpgqXM','constructRootComponent','setScale','10OBxNNc','skyComponent','2753926jXRWhE','rootComponent','205773sPibvG','name'];_0x3d03=function(){return _0x179cbb;};return _0x3d03();}function _0x1b82(_0x44aa7e,_0x1650b0){_0x44aa7e=_0x44aa7e-0xe7;var _0x3d03da=_0x3d03();var _0x1b8242=_0x3d03da[_0x44aa7e];return _0x1b8242;}class SkyActor extends Actor{constructor(_0x3da074,_0x462478){var _0x111617=_0x1b82;super(_0x3da074,_0x462478),this[_0x111617(0xea)]=_0x111617(0xf5),this['skyComponent']=null,this[_0x111617(0xf4)]='SkyActor',this[_0x111617(0xf0)]=this[_0x111617(0xf2)],this[_0x111617(0xf2)][_0x111617(0xf4)]=this[_0x111617(0xf2)][_0x111617(0xf4)]+'(Root)',this[_0x111617(0xee)](0xafc8,0xafc8,0xafc8);}[_0x12ca9a(0xed)](){return new SkyComponent(this['app']);}}
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 _0x4a61(_0xe22ab3,_0x814d38){_0xe22ab3=_0xe22ab3-0x116;var _0x2f964f=_0x2f96();var _0x4a6124=_0x2f964f[_0xe22ab3];return _0x4a6124;}(function(_0x300cc2,_0x47717d){var _0x180b45=_0x4a61,_0x12ea8d=_0x300cc2();while(!![]){try{var _0x731e06=-parseInt(_0x180b45(0x118))/0x1+parseInt(_0x180b45(0x121))/0x2*(-parseInt(_0x180b45(0x120))/0x3)+parseInt(_0x180b45(0x11f))/0x4+parseInt(_0x180b45(0x11a))/0x5*(parseInt(_0x180b45(0x119))/0x6)+parseInt(_0x180b45(0x11d))/0x7*(-parseInt(_0x180b45(0x11c))/0x8)+-parseInt(_0x180b45(0x117))/0x9*(-parseInt(_0x180b45(0x116))/0xa)+-parseInt(_0x180b45(0x11e))/0xb*(-parseInt(_0x180b45(0x11b))/0xc);if(_0x731e06===_0x47717d)break;else _0x12ea8d['push'](_0x12ea8d['shift']());}catch(_0x388aae){_0x12ea8d['push'](_0x12ea8d['shift']());}}}(_0x2f96,0xa2409));function _0x2f96(){var _0x337631=['359363sozvhj','1065954gEiURR','5HnJZDT','41676lnbKQj','3350168wHlSwN','7vRaHJH','1265yApLOa','1780808aeNBpt','3rmuMRL','1571436sGPsQi','10OuVALW','10855629oRvqBz'];_0x2f96=function(){return _0x337631;};return _0x2f96();}class PlaneComponent extends MeshComponent{constructor(_0xe3dab1,_0x4ceb72,_0x46c218,_0x234ebd,_0xbe1395=0x1,_0x353a2c=0x1,_0x1000b8){super(_0xe3dab1,new webgpu.PlaneGeometry(_0x4ceb72,_0x46c218,_0xbe1395,_0x353a2c),_0x234ebd,_0x1000b8);}}
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 _0x139d(_0x42dab6,_0x3bbe7c){_0x42dab6=_0x42dab6-0x1ea;var _0x2519cf=_0x2519();var _0x139da5=_0x2519cf[_0x42dab6];return _0x139da5;}var _0x5f23c0=_0x139d;function _0x2519(){var _0x64d5f8=['177951ZZGAkm','4750385XSACsh','14UyHVyY','2860490PrsNRi','destroy','app','81JYWoHV','3597288wAnffB','constructRootComponent','43557jfarVo','208OWPFcA','2423094nCZliF','369092RigcId'];_0x2519=function(){return _0x64d5f8;};return _0x2519();}(function(_0x45f003,_0x34bf66){var _0x4e5495=_0x139d,_0x255321=_0x45f003();while(!![]){try{var _0x31a3c5=-parseInt(_0x4e5495(0x1eb))/0x1+parseInt(_0x4e5495(0x1ea))/0x2+-parseInt(_0x4e5495(0x1f4))/0x3*(parseInt(_0x4e5495(0x1f5))/0x4)+-parseInt(_0x4e5495(0x1ec))/0x5+parseInt(_0x4e5495(0x1f6))/0x6*(-parseInt(_0x4e5495(0x1ed))/0x7)+parseInt(_0x4e5495(0x1f2))/0x8+-parseInt(_0x4e5495(0x1f1))/0x9*(-parseInt(_0x4e5495(0x1ee))/0xa);if(_0x31a3c5===_0x34bf66)break;else _0x255321['push'](_0x255321['shift']());}catch(_0x38e2c2){_0x255321['push'](_0x255321['shift']());}}}(_0x2519,0x7e72e));class PlaneActor extends Actor{constructor(_0x92cbce,_0x181cf9){super(_0x92cbce,_0x181cf9);}[_0x5f23c0(0x1f3)](){var _0x4c2295=_0x5f23c0;return new PlaneComponent(this[_0x4c2295(0x1f0)],0x1,0x1,new webgpu.MeshBasicMaterial(),0x1,0x1,this['uuid']);}[_0x5f23c0(0x1ef)](){var _0x385040=_0x5f23c0;super[_0x385040(0x1ef)]();}}
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
+ const _0x310dbb=_0x8e60;(function(_0x45fc2d,_0x47239b){const _0x5cf168=_0x8e60,_0x355afd=_0x45fc2d();while(!![]){try{const _0x45be15=-parseInt(_0x5cf168(0x82))/0x1*(-parseInt(_0x5cf168(0xb5))/0x2)+-parseInt(_0x5cf168(0xa8))/0x3*(-parseInt(_0x5cf168(0x8e))/0x4)+-parseInt(_0x5cf168(0x9e))/0x5*(-parseInt(_0x5cf168(0xba))/0x6)+parseInt(_0x5cf168(0xa3))/0x7*(parseInt(_0x5cf168(0x9f))/0x8)+-parseInt(_0x5cf168(0x9b))/0x9+parseInt(_0x5cf168(0xb0))/0xa*(-parseInt(_0x5cf168(0xb1))/0xb)+-parseInt(_0x5cf168(0x91))/0xc;if(_0x45be15===_0x47239b)break;else _0x355afd['push'](_0x355afd['shift']());}catch(_0x375812){_0x355afd['push'](_0x355afd['shift']());}}}(_0xf110,0x54871));function _0x8e60(_0x5d1a48,_0x39ba3){_0x5d1a48=_0x5d1a48-0x78;const _0x8e60ea=_0xf110();let _0x25fed3=_0x8e60ea[_0x5d1a48];return _0x25fed3;}class CustomMeshComponent extends SceneComponent{get['threeObject'](){const _0x4f173e=_0x8e60;if(!this[_0x4f173e(0xa5)])throw new Error('CustomMeshComponent:\x20threeObject\x20is\x20null');return this[_0x4f173e(0xa5)];}set[_0x310dbb(0x9c)](_0x3818fa){const _0x1865b6=_0x310dbb;this['obj']=_0x3818fa,this['obj']&&(this[_0x1865b6(0xa5)][_0x1865b6(0x89)][_0x1865b6(0x92)]=this);}get[_0x310dbb(0x90)](){const _0xb292b8=_0x310dbb;if(!this[_0xb292b8(0xaa)])throw new Error('geometryPtr\x20is\x20null');return this[_0xb292b8(0xaa)][_0xb292b8(0x96)]();}set[_0x310dbb(0x90)](_0x1e45df){const _0x5ab538=_0x310dbb;let _0x380f99=this['app'][_0x5ab538(0x9a)]['addGeometryAsset'](_0x1e45df);this['geometryPtr']=_0x380f99;}get[_0x310dbb(0x79)](){const _0x560f6f=_0x310dbb;if(!this[_0x560f6f(0xaa)])throw new Error(_0x560f6f(0x98));return this[_0x560f6f(0xaa)];}set[_0x310dbb(0x79)](_0x2f47aa){const _0x3aa9e9=_0x310dbb;this['_geometryPtr']&&(this[_0x3aa9e9(0xaa)][_0x3aa9e9(0xc0)](),this['_geometryPtr']=null);this[_0x3aa9e9(0xaa)]=_0x2f47aa;let _0x2a0296=_0x2f47aa[_0x3aa9e9(0x96)]();this[_0x3aa9e9(0x9c)]&&_0x2a0296&&(this[_0x3aa9e9(0x9c)][_0x3aa9e9(0x90)]=_0x2a0296);}get[_0x310dbb(0xb2)](){const _0x9ea031=_0x310dbb;if(!this[_0x9ea031(0x7d)])throw new Error(_0x9ea031(0x83));let _0x56c779=this[_0x9ea031(0x7d)][_0x9ea031(0x96)]();if(!_0x56c779)throw new Error(_0x9ea031(0x78));return _0x56c779;}get['materialPtr'](){const _0x3bde87=_0x310dbb;if(!this['_materialPtr'])throw new Error(_0x3bde87(0x83));return this['_materialPtr'];}set[_0x310dbb(0xb2)](_0xc9a7c){const _0x1d959a=_0x310dbb;let _0x28b07b=this['app'][_0x1d959a(0x9a)][_0x1d959a(0xbc)](_0xc9a7c);this[_0x1d959a(0x85)]=_0x28b07b;}set[_0x310dbb(0x85)](_0x1ea398){const _0x1c33be=_0x310dbb;this[_0x1c33be(0x7d)]&&(this[_0x1c33be(0x7d)]['release'](),this['_materialPtr']=null);this['_materialPtr']=_0x1ea398;let _0xb5fab2=_0x1ea398[_0x1c33be(0x96)]();_0x1ea398['addRef'](),this[_0x1c33be(0x9c)]&&_0xb5fab2&&(this['threeObject'][_0x1c33be(0xb2)]=_0xb5fab2);}constructor(_0x3307b5,_0x404df1,_0x93c346,_0xbf6d5e){const _0xb22662=_0x310dbb;super(_0x3307b5,_0xbf6d5e),this['_meshData']=_0x404df1;let _0x4131e7=_0x3307b5['assetManager'][_0xb22662(0xbc)](_0x93c346);this[_0xb22662(0x7d)]=_0x4131e7,_0x4131e7[_0xb22662(0x86)]();const _0x3ba715=this[_0xb22662(0x9d)](_0x404df1);this[_0xb22662(0xaa)]=_0x3307b5[_0xb22662(0x9a)][_0xb22662(0x93)](_0x3ba715),this['threeObject'][_0xb22662(0xb2)]=_0x93c346,this[_0xb22662(0x9c)][_0xb22662(0x90)]=_0x3ba715,this[_0xb22662(0xb4)]=_0xb22662(0xa6);}['calculatePolygonArea'](_0x2d96e2){const _0x16c630=_0x310dbb;let _0x34a33a=0x0;const _0x2c4d80=_0x2d96e2[_0x16c630(0xb9)]/0x2;for(let _0x32a7e2=0x0;_0x32a7e2<_0x2c4d80;_0x32a7e2++){const _0x35090f=(_0x32a7e2+0x1)%_0x2c4d80,_0x918c78=_0x2d96e2[_0x32a7e2*0x2],_0x5a534c=_0x2d96e2[_0x32a7e2*0x2+0x1],_0x38769f=_0x2d96e2[_0x35090f*0x2],_0x14c96e=_0x2d96e2[_0x35090f*0x2+0x1];_0x34a33a+=_0x918c78*_0x14c96e-_0x38769f*_0x5a534c;}return _0x34a33a/0x2;}[_0x310dbb(0x9d)](_0x2ab202){const _0x1d9e53=_0x310dbb,_0x4eeae3=new webgpu.BufferGeometry();if(!_0x2ab202[_0x1d9e53(0x94)]||_0x2ab202[_0x1d9e53(0x94)][_0x1d9e53(0xb9)]===0x0)return console[_0x1d9e53(0xbe)](_0x1d9e53(0x7f)),_0x4eeae3;const _0x4ecc18=new Float32Array(_0x2ab202[_0x1d9e53(0x94)][_0x1d9e53(0xb9)]*0x3);for(let _0x63eea7=0x0;_0x63eea7<_0x2ab202[_0x1d9e53(0x94)][_0x1d9e53(0xb9)];_0x63eea7++){_0x4ecc18[_0x63eea7*0x3]=_0x2ab202['vertices'][_0x63eea7]['x'],_0x4ecc18[_0x63eea7*0x3+0x1]=_0x2ab202['vertices'][_0x63eea7]['y'],_0x4ecc18[_0x63eea7*0x3+0x2]=_0x2ab202['vertices'][_0x63eea7]['z'];}_0x4eeae3[_0x1d9e53(0x99)](_0x1d9e53(0x97),new webgpu.Float32BufferAttribute(_0x4ecc18,0x3));if(_0x2ab202[_0x1d9e53(0xbb)]&&_0x2ab202[_0x1d9e53(0xbb)][_0x1d9e53(0xb9)]>0x0)_0x4eeae3['setIndex'](_0x2ab202[_0x1d9e53(0xbb)]);else {const _0x190298=[];let _0x3c6773=Infinity,_0x2eacb5=-Infinity,_0x5c0f60=Infinity,_0xd091c3=-Infinity,_0x3d1eaa=Infinity,_0x3bfc9b=-Infinity;for(let _0x4923d6=0x0;_0x4923d6<_0x2ab202[_0x1d9e53(0x94)][_0x1d9e53(0xb9)];_0x4923d6++){const _0x2d37db=_0x2ab202['vertices'][_0x4923d6];_0x5c0f60=Math['min'](_0x5c0f60,_0x2d37db['x']),_0xd091c3=Math[_0x1d9e53(0x7e)](_0xd091c3,_0x2d37db['x']),_0x3c6773=Math[_0x1d9e53(0x8a)](_0x3c6773,_0x2d37db['y']),_0x2eacb5=Math[_0x1d9e53(0x7e)](_0x2eacb5,_0x2d37db['y']),_0x3d1eaa=Math[_0x1d9e53(0x8a)](_0x3d1eaa,_0x2d37db['z']),_0x3bfc9b=Math[_0x1d9e53(0x7e)](_0x3bfc9b,_0x2d37db['z']);}const _0x27581e=_0xd091c3-_0x5c0f60,_0x3657a8=_0x2eacb5-_0x3c6773,_0x2bad27=_0x3bfc9b-_0x3d1eaa;let _0x372c34='XY';if(_0x3657a8<=_0x27581e&&_0x3657a8<=_0x2bad27){_0x372c34='XZ';for(let _0x23ea94=0x0;_0x23ea94<_0x2ab202[_0x1d9e53(0x94)][_0x1d9e53(0xb9)];_0x23ea94++){_0x190298[_0x1d9e53(0xae)](_0x2ab202[_0x1d9e53(0x94)][_0x23ea94]['x']),_0x190298[_0x1d9e53(0xae)](_0x2ab202[_0x1d9e53(0x94)][_0x23ea94]['z']);}}else {if(_0x27581e<=_0x3657a8&&_0x27581e<=_0x2bad27){_0x372c34='YZ';for(let _0x31695f=0x0;_0x31695f<_0x2ab202['vertices']['length'];_0x31695f++){_0x190298[_0x1d9e53(0xae)](_0x2ab202['vertices'][_0x31695f]['y']),_0x190298[_0x1d9e53(0xae)](_0x2ab202[_0x1d9e53(0x94)][_0x31695f]['z']);}}else {_0x372c34='XY';for(let _0x3e1a28=0x0;_0x3e1a28<_0x2ab202[_0x1d9e53(0x94)][_0x1d9e53(0xb9)];_0x3e1a28++){_0x190298[_0x1d9e53(0xae)](_0x2ab202['vertices'][_0x3e1a28]['x']),_0x190298[_0x1d9e53(0xae)](_0x2ab202[_0x1d9e53(0x94)][_0x3e1a28]['y']);}}}const _0x421e3d=this['calculatePolygonArea'](_0x190298),_0x338942=_0x421e3d<0x0;if(_0x338942){console['warn'](_0x1d9e53(0xa4)),_0x190298['reverse']();const _0x2690eb=[];for(let _0x52b79e=_0x190298[_0x1d9e53(0xb9)]-0x2;_0x52b79e>=0x0;_0x52b79e-=0x2){_0x2690eb[_0x1d9e53(0xae)](_0x190298[_0x52b79e],_0x190298[_0x52b79e+0x1]);}_0x190298[_0x1d9e53(0xb9)]=0x0,_0x190298[_0x1d9e53(0xae)](..._0x2690eb);}try{const _0x43873c=_0x430ee4(_0x190298,undefined,0x2);if(_0x43873c&&_0x43873c[_0x1d9e53(0xb9)]>0x0){if(_0x338942)for(let _0x128e0f=0x0;_0x128e0f<_0x43873c['length'];_0x128e0f+=0x3){const _0x3a072d=_0x43873c[_0x128e0f];_0x43873c[_0x128e0f]=_0x43873c[_0x128e0f+0x2],_0x43873c[_0x128e0f+0x2]=_0x3a072d;}_0x4eeae3[_0x1d9e53(0x88)](_0x43873c),console['log'](_0x1d9e53(0xa1),{'planeType':_0x372c34,'vertexCount':_0x2ab202[_0x1d9e53(0x94)]['length'],'triangleCount':_0x43873c[_0x1d9e53(0xb9)]/0x3,'area':Math[_0x1d9e53(0x87)](_0x421e3d),'wasClockwise':_0x338942,'indices':Array[_0x1d9e53(0x7a)](_0x43873c)});}else console[_0x1d9e53(0xa7)](_0x1d9e53(0xb8));}catch(_0x220277){console[_0x1d9e53(0xbe)](_0x1d9e53(0xab),_0x220277);}}if(_0x2ab202[_0x1d9e53(0x7b)]&&_0x2ab202['normals'][_0x1d9e53(0xb9)]===_0x2ab202['vertices']['length']){const _0x26bee0=new Float32Array(_0x2ab202[_0x1d9e53(0x7b)]['length']*0x3);for(let _0x36317d=0x0;_0x36317d<_0x2ab202[_0x1d9e53(0x7b)][_0x1d9e53(0xb9)];_0x36317d++){_0x26bee0[_0x36317d*0x3]=_0x2ab202['normals'][_0x36317d]['x'],_0x26bee0[_0x36317d*0x3+0x1]=_0x2ab202[_0x1d9e53(0x7b)][_0x36317d]['y'],_0x26bee0[_0x36317d*0x3+0x2]=_0x2ab202[_0x1d9e53(0x7b)][_0x36317d]['z'];}_0x4eeae3[_0x1d9e53(0x99)]('normal',new webgpu.Float32BufferAttribute(_0x26bee0,0x3));}else _0x4eeae3[_0x1d9e53(0x95)]();if(_0x2ab202[_0x1d9e53(0x84)]&&_0x2ab202[_0x1d9e53(0x84)][_0x1d9e53(0xb9)]>0x0){const _0x49c4f0=new Float32Array(_0x2ab202[_0x1d9e53(0x84)][_0x1d9e53(0xb9)]*0x2);for(let _0x76eea5=0x0;_0x76eea5<_0x2ab202[_0x1d9e53(0x84)][_0x1d9e53(0xb9)];_0x76eea5++){_0x49c4f0[_0x76eea5*0x2]=_0x2ab202[_0x1d9e53(0x84)][_0x76eea5]['x'],_0x49c4f0[_0x76eea5*0x2+0x1]=_0x2ab202[_0x1d9e53(0x84)][_0x76eea5]['y'];}_0x4eeae3[_0x1d9e53(0x99)]('uv',new webgpu.Float32BufferAttribute(_0x49c4f0,0x2));}if(_0x2ab202[_0x1d9e53(0x81)]&&_0x2ab202[_0x1d9e53(0x81)][_0x1d9e53(0xb9)]===_0x2ab202[_0x1d9e53(0x94)]['length']){const _0x50897b=new Float32Array(_0x2ab202[_0x1d9e53(0x81)]['length']*0x3);for(let _0x2c9040=0x0;_0x2c9040<_0x2ab202[_0x1d9e53(0x81)]['length'];_0x2c9040++){_0x50897b[_0x2c9040*0x3]=_0x2ab202['colors'][_0x2c9040]['r'],_0x50897b[_0x2c9040*0x3+0x1]=_0x2ab202['colors'][_0x2c9040]['g'],_0x50897b[_0x2c9040*0x3+0x2]=_0x2ab202[_0x1d9e53(0x81)][_0x2c9040]['b'];}_0x4eeae3[_0x1d9e53(0x99)]('color',new webgpu.Float32BufferAttribute(_0x50897b,0x3));}return _0x4eeae3;}set[_0x310dbb(0xac)](_0x3edd02){const _0x52a1d1=_0x310dbb;var _0xd8de41,_0x362230,_0x1a082c;this[_0x52a1d1(0xaa)]&&this[_0x52a1d1(0xaa)][_0x52a1d1(0xc0)]();const _0x1868e5=this[_0x52a1d1(0x9d)](_0x3edd02);this[_0x52a1d1(0xaa)]=this[_0x52a1d1(0xa2)]['assetManager'][_0x52a1d1(0x93)](_0x1868e5),this['threeObject']['geometry']=_0x1868e5,this[_0x52a1d1(0xa0)]={'vertices':_0x3edd02[_0x52a1d1(0x94)][_0x52a1d1(0xad)](_0x1b5410=>_0x1b5410[_0x52a1d1(0xb7)]()),'indices':_0x3edd02[_0x52a1d1(0xbb)]?[..._0x3edd02[_0x52a1d1(0xbb)]]:undefined,'normals':(_0xd8de41=_0x3edd02[_0x52a1d1(0x7b)])===null||_0xd8de41===void 0?void 0:_0xd8de41[_0x52a1d1(0xad)](_0x466067=>_0x466067[_0x52a1d1(0xb7)]()),'uvs':(_0x362230=_0x3edd02[_0x52a1d1(0x84)])===null||_0x362230===void 0?void 0:_0x362230[_0x52a1d1(0xad)](_0x233cc7=>_0x233cc7[_0x52a1d1(0xb7)]()),'colors':(_0x1a082c=_0x3edd02[_0x52a1d1(0x81)])===null||_0x1a082c===void 0?void 0:_0x1a082c['map'](_0x2f9d31=>_0x2f9d31[_0x52a1d1(0xb7)]())},this[_0x52a1d1(0x7c)]&&this[_0x52a1d1(0x7c)][_0x52a1d1(0xbf)][_0x52a1d1(0x8c)]();}get[_0x310dbb(0xac)](){const _0x3742e1=_0x310dbb;return this[_0x3742e1(0xa0)];}[_0x310dbb(0x8f)](){return new webgpu.Mesh();}set['castShadow'](_0x3aeb79){const _0x5c6030=_0x310dbb;if(this[_0x5c6030(0x9c)])this[_0x5c6030(0x9c)][_0x5c6030(0xb3)]=_0x3aeb79;}get['castShadow'](){const _0x590ee7=_0x310dbb;return this[_0x590ee7(0x9c)]?this[_0x590ee7(0x9c)][_0x590ee7(0xb3)]:![];}set[_0x310dbb(0xb6)](_0x5e3ed7){const _0x100a02=_0x310dbb;if(!this[_0x100a02(0x9c)])return;this[_0x100a02(0x9c)][_0x100a02(0xb6)]=_0x5e3ed7;}get[_0x310dbb(0xb6)](){const _0x51af68=_0x310dbb;return this[_0x51af68(0x9c)]?this['threeObject']['receiveShadow']:![];}['getBoundsCenterPosition'](){const _0x1c4520=_0x310dbb;let _0xd9cd3=new webgpu.Vector3();return this[_0x1c4520(0xa9)]()[_0x1c4520(0xbd)](_0xd9cd3),_0xd9cd3;}[_0x310dbb(0x8b)](){const _0x5abd02=_0x310dbb;let _0x31c94f=new webgpu.Vector3(),_0x22666f=this[_0x5abd02(0xa9)]();return _0x22666f[_0x5abd02(0xbd)](_0x31c94f),_0x31c94f['y']=_0x22666f[_0x5abd02(0x7e)]['y'],_0x31c94f;}[_0x310dbb(0xaf)](){const _0x5185de=_0x310dbb;let _0x21395f=new webgpu.Vector3(),_0x584955=this[_0x5185de(0xa9)]();return _0x584955[_0x5185de(0xbd)](_0x21395f),_0x21395f['y']=_0x584955[_0x5185de(0x8a)]['y'],_0x21395f;}[_0x310dbb(0x80)](){const _0x3ca505=_0x310dbb;var _0xf50807,_0x1eb9a9;this[_0x3ca505(0x9c)]&&this[_0x3ca505(0x9c)][_0x3ca505(0x8d)](),(_0xf50807=this[_0x3ca505(0xaa)])===null||_0xf50807===void 0?void 0:_0xf50807[_0x3ca505(0xc0)](),(_0x1eb9a9=this[_0x3ca505(0x7d)])===null||_0x1eb9a9===void 0?void 0:_0x1eb9a9[_0x3ca505(0xc0)](),super[_0x3ca505(0x80)]();}}function _0xf110(){const _0x3d3345=['max','CustomMeshComponent:\x20Invalid\x20vertices\x20data','destroyObject','colors','460261CWJIYr','materialPtr\x20is\x20null','uvs','materialPtr','addRef','abs','setIndex','userData','min','getBoundsTopCenterPosition','markRenderStateDirty','removeFromParent','52aipLTY','createDefaultObject','geometry','5468988ZWkQEp','LYObject','addGeometryAsset','vertices','computeVertexNormals','getValue','position','geometryPtr\x20is\x20null','setAttribute','assetManager','516789hLMRCm','threeObject','constructGeometry','5NwLRwi','928216BqJHsk','_meshData','[CustomMeshComponent]\x20Earcut\x20triangulation\x20success:','app','14OoGXOs','CustomMeshComponent:\x20Vertices\x20are\x20in\x20clockwise\x20order,\x20reversing...','obj','CustomMeshComponent','warn','93969QSDmNj','getBounds','_geometryPtr','CustomMeshComponent:\x20Earcut\x20triangulation\x20failed:','meshData','map','push','getBoundsBottomCenterPosition','10SjIfqo','7066004lvxPqX','material','castShadow','name','2gYZyoe','receiveShadow','clone','CustomMeshComponent:\x20Earcut\x20triangulation\x20returned\x20empty\x20result','length','2413470NgswUZ','indices','addMaterialAsset','getCenter','error','viewport','release','material\x20is\x20null','geometryPtr','from','normals','world','_materialPtr'];_0xf110=function(){return _0x3d3345;};return _0xf110();}
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(_0x28a6ee,_0x42b0b3){var _0x5bed02=_0x83d0,_0x418dd7=_0x28a6ee();while(!![]){try{var _0x4f3c5c=-parseInt(_0x5bed02(0xd2))/0x1+-parseInt(_0x5bed02(0xd8))/0x2*(-parseInt(_0x5bed02(0xd4))/0x3)+parseInt(_0x5bed02(0xd9))/0x4*(-parseInt(_0x5bed02(0xd6))/0x5)+parseInt(_0x5bed02(0xdb))/0x6+parseInt(_0x5bed02(0xd3))/0x7*(-parseInt(_0x5bed02(0xd5))/0x8)+parseInt(_0x5bed02(0xda))/0x9+-parseInt(_0x5bed02(0xdc))/0xa*(parseInt(_0x5bed02(0xd7))/0xb);if(_0x4f3c5c===_0x42b0b3)break;else _0x418dd7['push'](_0x418dd7['shift']());}catch(_0x568fd0){_0x418dd7['push'](_0x418dd7['shift']());}}}(_0x4a5b,0xe914e));function _0x83d0(_0x120b70,_0x12162c){_0x120b70=_0x120b70-0xd2;var _0x4a5bbb=_0x4a5b();var _0x83d09c=_0x4a5bbb[_0x120b70];return _0x83d09c;}class SphereComponent extends MeshComponent{constructor(_0x40a1ec,_0xa2757a,_0x475f30=new webgpu.MeshBasicMaterial(),_0x1e553d=0x20,_0x5bf34f=0x10,_0x12eaee){super(_0x40a1ec,new webgpu.SphereGeometry(_0xa2757a,_0x1e553d,_0x5bf34f),_0x475f30,_0x12eaee);}}function _0x4a5b(){var _0x548e8c=['220881lTJGaU','26616OijIOj','20JjgeaN','467192atXWin','34cbimKB','58288dADnxy','16345305jPRTmA','8422956EKmxoz','670VMBwca','330221XPfHKx','595mqthnp'];_0x4a5b=function(){return _0x548e8c;};return _0x4a5b();}
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 _0x2dbc96=_0x40d1;function _0x40d1(_0x48eab4,_0x390576){_0x48eab4=_0x48eab4-0x11f;var _0x138af1=_0x138a();var _0x40d143=_0x138af1[_0x48eab4];return _0x40d143;}function _0x138a(){var _0x5440e7=['966ZDhEsS','isHoverEnabled','3156030ZOaLCk','4118082cxlVaN','copy','parentNode','obj','5781112COuROy','isClickEnabled','destroy','620RHyggT','userData','setVisible','element','innerHTML','threeObject','9gzFswU','remove','412640fEKTau','4920895CLsmkB','LYObject','491283vtuYrF','center'];_0x138a=function(){return _0x5440e7;};return _0x138a();}(function(_0x1b1a19,_0xf91561){var _0x2ff9f7=_0x40d1,_0x584f95=_0x1b1a19();while(!![]){try{var _0x12076d=parseInt(_0x2ff9f7(0x120))/0x1+-parseInt(_0x2ff9f7(0x134))/0x2+parseInt(_0x2ff9f7(0x122))/0x3*(parseInt(_0x2ff9f7(0x12c))/0x4)+-parseInt(_0x2ff9f7(0x124))/0x5+parseInt(_0x2ff9f7(0x125))/0x6+-parseInt(_0x2ff9f7(0x135))/0x7+-parseInt(_0x2ff9f7(0x129))/0x8*(-parseInt(_0x2ff9f7(0x132))/0x9);if(_0x12076d===_0xf91561)break;else _0x584f95['push'](_0x584f95['shift']());}catch(_0x37b58d){_0x584f95['push'](_0x584f95['shift']());}}}(_0x138a,0x64044));class LabelComponent extends SceneComponent{get[_0x2dbc96(0x131)](){return this['obj'];}set[_0x2dbc96(0x131)](_0x1fd669){var _0x3ee4a9=_0x2dbc96;this[_0x3ee4a9(0x128)]=_0x1fd669,this[_0x3ee4a9(0x128)]&&(this['obj'][_0x3ee4a9(0x12d)][_0x3ee4a9(0x11f)]=this);}constructor(_0x56b573,_0x485893,_0x529e96=new webgpu.Vector2(0.5,0x1),_0x2f712d){var _0x5f52d2=_0x2dbc96;super(_0x56b573,_0x2f712d),this[_0x5f52d2(0x128)]=new CSS2DRenderer_js.CSS2DObject(_0x485893),this[_0x5f52d2(0x128)][_0x5f52d2(0x121)][_0x5f52d2(0x126)](_0x529e96);}set[_0x2dbc96(0x123)](_0x5daf08){return;}set[_0x2dbc96(0x12a)](_0x4d9716){return;}['setVisible'](_0x50c800){var _0xad9ba7=_0x2dbc96;super[_0xad9ba7(0x12e)](_0x50c800);}[_0x2dbc96(0x12b)](){var _0x10003f=_0x2dbc96;this[_0x10003f(0x131)][_0x10003f(0x12f)]&&this[_0x10003f(0x131)][_0x10003f(0x12f)][_0x10003f(0x127)]&&(this[_0x10003f(0x131)][_0x10003f(0x12f)][_0x10003f(0x130)]='',this[_0x10003f(0x131)]['element'][_0x10003f(0x133)]()),super[_0x10003f(0x12b)]();}}
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
+ function _0x34f9(){const _0x17ac0a=['990CqSWHj','3EmxTIF','67119lGOdvq','1958716uyqdnx','145144SmWAGL','207vrupta','7BhdsHW','108202eDlZUL','5911301zXukXT','693935jvFTTa','ScreenSpaceReflection','3227DRSsUB','10spiYnK','1332lhdAGx'];_0x34f9=function(){return _0x17ac0a;};return _0x34f9();}const _0x269b0c=_0x2b89;function _0x2b89(_0x969b62,_0x1ff007){_0x969b62=_0x969b62-0x136;const _0x34f916=_0x34f9();let _0x2b896c=_0x34f916[_0x969b62];return _0x2b896c;}(function(_0x5a4f00,_0x115b83){const _0x9175fc=_0x2b89,_0x1aea70=_0x5a4f00();while(!![]){try{const _0x128374=-parseInt(_0x9175fc(0x137))/0x1*(-parseInt(_0x9175fc(0x138))/0x2)+parseInt(_0x9175fc(0x140))/0x3*(-parseInt(_0x9175fc(0x142))/0x4)+parseInt(_0x9175fc(0x13a))/0x5+-parseInt(_0x9175fc(0x13f))/0x6*(parseInt(_0x9175fc(0x13c))/0x7)+parseInt(_0x9175fc(0x143))/0x8*(parseInt(_0x9175fc(0x136))/0x9)+-parseInt(_0x9175fc(0x13d))/0xa*(-parseInt(_0x9175fc(0x139))/0xb)+parseInt(_0x9175fc(0x13e))/0xc*(-parseInt(_0x9175fc(0x141))/0xd);if(_0x128374===_0x115b83)break;else _0x1aea70['push'](_0x1aea70['shift']());}catch(_0xefcdac){_0x1aea70['push'](_0x1aea70['shift']());}}}(_0x34f9,0x51619));const DefaultSSRParam={'type':exports.PostProcessStepType[_0x269b0c(0x13b)],'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 _0x3beaab=_0xfcc8;(function(_0x4e8943,_0x5595dd){const _0x5152fd=_0xfcc8,_0x1aed2e=_0x4e8943();while(!![]){try{const _0x3799c2=parseInt(_0x5152fd(0x6e))/0x1+parseInt(_0x5152fd(0x75))/0x2*(parseInt(_0x5152fd(0x78))/0x3)+-parseInt(_0x5152fd(0x71))/0x4*(-parseInt(_0x5152fd(0x6f))/0x5)+parseInt(_0x5152fd(0x73))/0x6+-parseInt(_0x5152fd(0x70))/0x7+-parseInt(_0x5152fd(0x76))/0x8+-parseInt(_0x5152fd(0x74))/0x9*(parseInt(_0x5152fd(0x72))/0xa);if(_0x3799c2===_0x5595dd)break;else _0x1aed2e['push'](_0x1aed2e['shift']());}catch(_0x12268c){_0x1aed2e['push'](_0x1aed2e['shift']());}}}(_0x2793,0x3632d));function _0x2793(){const _0x4e3729=['840110HcUDZL','680736CKRKlH','36nwlkrm','270974XONEAj','3344848CZbgKa','Antialiasing','3GCKanM','372498wzozCo','2085735zyzTtV','437087sQXtui','4AkoigJ'];_0x2793=function(){return _0x4e3729;};return _0x2793();}function _0xfcc8(_0x11ff7f,_0x5940cd){_0x11ff7f=_0x11ff7f-0x6e;const _0x27932a=_0x2793();let _0xfcc81a=_0x27932a[_0x11ff7f];return _0xfcc81a;}const DefaultAAParams={'type':exports.PostProcessStepType[_0x3beaab(0x77)],'method':'fxaa'};
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
+ const _0x31c40c=_0x5bc1;(function(_0xd21611,_0x400d16){const _0x4211d5=_0x5bc1,_0x15b586=_0xd21611();while(!![]){try{const _0x432aca=-parseInt(_0x4211d5(0x100))/0x1+parseInt(_0x4211d5(0xfd))/0x2+parseInt(_0x4211d5(0xf1))/0x3*(-parseInt(_0x4211d5(0xf2))/0x4)+parseInt(_0x4211d5(0xf7))/0x5*(-parseInt(_0x4211d5(0xfe))/0x6)+-parseInt(_0x4211d5(0xf4))/0x7*(parseInt(_0x4211d5(0xf8))/0x8)+parseInt(_0x4211d5(0xf9))/0x9+parseInt(_0x4211d5(0xff))/0xa;if(_0x432aca===_0x400d16)break;else _0x15b586['push'](_0x15b586['shift']());}catch(_0x3a2167){_0x15b586['push'](_0x15b586['shift']());}}}(_0x2b4b,0xba81b));class FirstPerson extends Pawn{constructor(_0x43e562){const _0x2a6a78=_0x5bc1;super(_0x43e562),this[_0x2a6a78(0xfa)]=new PointerLockControls_js.PointerLockControls(_0x43e562[_0x2a6a78(0xf6)],_0x43e562[_0x2a6a78(0xfb)][_0x2a6a78(0xf3)]);}[_0x31c40c(0x102)](){const _0x3d29b9=_0x31c40c;var _0x11af18;if(!this[_0x3d29b9(0xfa)]||!((_0x11af18=this[_0x3d29b9(0x103)])===null||_0x11af18===void 0?void 0:_0x11af18[_0x3d29b9(0xf6)]))return null;const _0x5a881e=this[_0x3d29b9(0x103)][_0x3d29b9(0xf6)][_0x3d29b9(0x101)][_0x3d29b9(0xf5)](),_0x2510f5=this[_0x3d29b9(0x103)][_0x3d29b9(0xf6)][_0x3d29b9(0xfc)]['clone'](),_0x403874=0x0;return {'position':_0x5a881e,'quaternion':_0x2510f5,'distance':_0x403874};}}function _0x5bc1(_0x4eb097,_0x4cb884){_0x4eb097=_0x4eb097-0xf1;const _0x2b4b13=_0x2b4b();let _0x5bc173=_0x2b4b13[_0x4eb097];return _0x5bc173;}function _0x2b4b(){const _0x2ff050=['getFocuingData','controller','93bPAmRX','38804dulhLk','canvas','3420473YEjdan','clone','camera','5520495NlEXGe','16muCgFb','4324365KMRnan','_control','viewPort','quaternion','907344bwSZmV','6itHsWc','35838220YLALgn','1371940aBXRSv','position'];_0x2b4b=function(){return _0x2ff050;};return _0x2b4b();}
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
+ const _0x18f39c=_0x56a7;(function(_0x176ec0,_0x516956){const _0x3c3fb6=_0x56a7,_0xaff221=_0x176ec0();while(!![]){try{const _0x1f3407=parseInt(_0x3c3fb6(0x153))/0x1*(parseInt(_0x3c3fb6(0x180))/0x2)+parseInt(_0x3c3fb6(0x16c))/0x3*(parseInt(_0x3c3fb6(0x188))/0x4)+parseInt(_0x3c3fb6(0x16b))/0x5*(parseInt(_0x3c3fb6(0x178))/0x6)+parseInt(_0x3c3fb6(0x170))/0x7+parseInt(_0x3c3fb6(0x155))/0x8+parseInt(_0x3c3fb6(0x15a))/0x9*(-parseInt(_0x3c3fb6(0x18c))/0xa)+parseInt(_0x3c3fb6(0x1a4))/0xb*(-parseInt(_0x3c3fb6(0x193))/0xc);if(_0x1f3407===_0x516956)break;else _0xaff221['push'](_0xaff221['shift']());}catch(_0x51ee88){_0xaff221['push'](_0xaff221['shift']());}}}(_0x9bb4,0xb7a9b));function _0x9bb4(){const _0x585742=['targetMatrixMap','70281yBcZhX','removeEventListener','getMatrixInWorld','traverse','viewPort','dragging-changed','includes','primaryTarget','getRotationnSnap','Control\x20not\x20initialized','_control','dispose','getMode','setTarget','add','multiplyMatrices','onDraggingChangedEvent','3745GlcwYc','147zrblNb','showZ','multiply','showX','9487499ZOrQqh','forEach','onObjectChanged','onDraggingFunction','isTickEnabled','TransformHelperObject','setScaleSnap','onChangeEvent','11514dVOEyu','onUpdateFunction','quaternion','onDraggingChanged','enabled','setAxis','control','position','4626EZhnLM','targets','destroy','getTranslationSnap','userData','scale','setSpace','setMode','77048uOuRUm','enable','onChange','showY','1630XOnaZJ','helperObject','invert','scene','updateMatrixWorld','markRenderStateDirty','decompose','48233544MOpeJh','refresh','attach','objectChange','clear','rayIgnored','helperScene','get','setRotationSnap','gizmoScene','remove','translationSnap','unpossess','camera','setTranslationSnap','onTransforming','possess','11mmDsPP','name','addEventListener','getTargetScene','getHelper','511kFQqHP','setSize','9009144EXwLoN','onObjectChangeEvent','getScaleSnap','set'];_0x9bb4=function(){return _0x585742;};return _0x9bb4();}function _0x56a7(_0x4d6d74,_0x36083f){_0x4d6d74=_0x4d6d74-0x153;const _0x9bb4be=_0x9bb4();let _0x56a765=_0x9bb4be[_0x4d6d74];return _0x56a765;}class TransformGizmo extends Pawn{get[_0x18f39c(0x17e)](){const _0x4b8e13=_0x18f39c;if(!this[_0x4b8e13(0x164)])throw new Error(_0x4b8e13(0x163));return this['_control'];}constructor(_0x2d867b,_0x4cf4c5){const _0x331fe6=_0x18f39c;var _0x2628a3;super(_0x2d867b),this[_0x331fe6(0x164)]=null,this[_0x331fe6(0x18d)]=new webgpu.Object3D(),this['targets']=[],this[_0x331fe6(0x161)]=null,this[_0x331fe6(0x159)]=new Map(),this[_0x331fe6(0x19c)]=null,this['onDraggingChangedEvent']=_0x336e0b=>{const _0x3c5902=_0x331fe6;this[_0x3c5902(0x17b)](_0x336e0b);},this[_0x331fe6(0x156)]=()=>{const _0x2c8bcc=_0x331fe6;this[_0x2c8bcc(0x172)]();},this['onChangeEvent']=()=>{const _0x5ecbff=_0x331fe6;this[_0x5ecbff(0x18a)]();},this['onUpdateFunction']=null,this[_0x331fe6(0x173)]=null;let _0x1f9998=_0x2d867b[_0x331fe6(0x15e)]['canvas'];if(!_0x1f9998)throw new Error('TransformGizmo:Canvas\x20not\x20found');this[_0x331fe6(0x164)]=new TransformControls_js.TransformControls(_0x2d867b[_0x331fe6(0x1a0)],_0x1f9998),this['control'][_0x331fe6(0x1a8)]()[_0x331fe6(0x15d)](_0x4ba84c=>{const _0x424a9c=_0x331fe6;_0x4ba84c[_0x424a9c(0x184)][_0x424a9c(0x198)]=!![];}),this[_0x331fe6(0x18d)][_0x331fe6(0x1a5)]=_0x331fe6(0x175),this[_0x331fe6(0x19c)]=(_0x2628a3=_0x4cf4c5===null||_0x4cf4c5===void 0?void 0:_0x4cf4c5[_0x331fe6(0x199)])!==null&&_0x2628a3!==void 0?_0x2628a3:null;}[_0x18f39c(0x1a7)](){const _0x1ef84c=_0x18f39c;var _0x625e8e;return (_0x625e8e=this[_0x1ef84c(0x19c)])!==null&&_0x625e8e!==void 0?_0x625e8e:this['controller']['world'][_0x1ef84c(0x18f)];}[_0x18f39c(0x1a3)](){const _0x12b739=_0x18f39c,_0x127fe1=this[_0x12b739(0x1a7)]();_0x127fe1[_0x12b739(0x168)](this['helperObject']),_0x127fe1[_0x12b739(0x168)](this['control']['getHelper']()),this['control'][_0x12b739(0x195)](this[_0x12b739(0x18d)]),this[_0x12b739(0x17e)][_0x12b739(0x1a6)]('change',this[_0x12b739(0x177)]),this[_0x12b739(0x17e)][_0x12b739(0x1a6)](_0x12b739(0x15f),this[_0x12b739(0x16a)]),this[_0x12b739(0x17e)]['addEventListener'](_0x12b739(0x196),this[_0x12b739(0x156)]);}['unpossess'](){const _0x55975e=_0x18f39c;this['control'][_0x55975e(0x15b)]('change',this[_0x55975e(0x177)]),this[_0x55975e(0x17e)]['removeEventListener']('dragging-changed',this['onDraggingChangedEvent']),this[_0x55975e(0x17e)][_0x55975e(0x15b)](_0x55975e(0x196),this[_0x55975e(0x156)]),this[_0x55975e(0x17e)]['detach']();const _0x3a6561=this[_0x55975e(0x1a7)]();_0x3a6561[_0x55975e(0x19d)](this[_0x55975e(0x18d)]),_0x3a6561['remove'](this[_0x55975e(0x17e)][_0x55975e(0x1a8)]());}[_0x18f39c(0x194)](){const _0x1e18a1=_0x18f39c;if(!this[_0x1e18a1(0x161)])return;this['control']['detach']();const _0x4d9f90=this[_0x1e18a1(0x1a7)]();_0x4d9f90['remove'](this[_0x1e18a1(0x18d)]),this[_0x1e18a1(0x159)][_0x1e18a1(0x197)]();let _0x38d2fe=this[_0x1e18a1(0x161)][_0x1e18a1(0x15c)]();_0x38d2fe['decompose'](this[_0x1e18a1(0x18d)]['position'],this[_0x1e18a1(0x18d)][_0x1e18a1(0x17a)],this[_0x1e18a1(0x18d)][_0x1e18a1(0x185)]),_0x4d9f90[_0x1e18a1(0x168)](this[_0x1e18a1(0x17e)][_0x1e18a1(0x1a8)]()),_0x4d9f90[_0x1e18a1(0x168)](this['helperObject']),this['control'][_0x1e18a1(0x195)](this[_0x1e18a1(0x18d)]),this['targets'][_0x1e18a1(0x171)](_0x763f1e=>{const _0x467b79=_0x1e18a1,_0x2e2717=_0x763f1e[_0x467b79(0x15c)](),_0x5a46ac=_0x38d2fe['clone']()['invert']()['multiply'](_0x2e2717);this[_0x467b79(0x159)][_0x467b79(0x158)](_0x763f1e,_0x5a46ac);});}['onChange'](){const _0x3a4ecf=_0x18f39c;this['controller']['viewPort'][_0x3a4ecf(0x191)]();}['onDraggingChanged'](_0x47716a){const _0x374412=_0x18f39c;if(this[_0x374412(0x161)]){let _0x34ea54=this[_0x374412(0x161)]['getMatrixInWorld']();_0x34ea54['decompose'](this['helperObject'][_0x374412(0x17f)],this[_0x374412(0x18d)][_0x374412(0x17a)],this[_0x374412(0x18d)]['scale']);}this[_0x374412(0x173)]&&this['onDraggingFunction'](_0x47716a['value']);}[_0x18f39c(0x172)](){const _0x16fff1=_0x18f39c;if(this['primaryTarget']){this[_0x16fff1(0x18d)][_0x16fff1(0x190)](!![]);const _0x778619=this['helperObject']['matrixWorld']['clone']();this[_0x16fff1(0x161)][_0x16fff1(0x1a2)](_0x778619),this[_0x16fff1(0x181)][_0x16fff1(0x171)](_0x125104=>{const _0x44df4a=_0x16fff1,_0x136e34=this['targetMatrixMap'][_0x44df4a(0x19a)](_0x125104);if(_0x136e34){const _0x13fd88=new webgpu.Matrix4()[_0x44df4a(0x169)](_0x778619,_0x136e34);_0x125104[_0x44df4a(0x1a2)](_0x13fd88);}});}this[_0x16fff1(0x179)]&&this[_0x16fff1(0x179)]();}set[_0x18f39c(0x189)](_0x2b0010){const _0x1147da=_0x18f39c;this[_0x1147da(0x17e)][_0x1147da(0x17c)]=_0x2b0010;}[_0x18f39c(0x167)](_0x1ae7a5,_0x8d9cb9,_0xd38b87=null,_0x3ea8d1=null){const _0x56b70f=_0x18f39c;this[_0x56b70f(0x159)]['clear']();let _0x15fba1=_0x1ae7a5[_0x56b70f(0x15c)]();_0x15fba1[_0x56b70f(0x192)](this[_0x56b70f(0x18d)][_0x56b70f(0x17f)],this[_0x56b70f(0x18d)][_0x56b70f(0x17a)],this['helperObject']['scale']);const _0x47e5fb=this['getTargetScene']();_0x47e5fb[_0x56b70f(0x168)](this[_0x56b70f(0x17e)][_0x56b70f(0x1a8)]()),this[_0x56b70f(0x161)]=_0x1ae7a5,this['targets']=_0x8d9cb9,this[_0x56b70f(0x181)]['forEach'](_0x24ac4b=>{const _0x31e4f1=_0x56b70f,_0x128047=_0x24ac4b[_0x31e4f1(0x15c)](),_0x238e56=_0x15fba1['clone']()[_0x31e4f1(0x18e)]()[_0x31e4f1(0x16e)](_0x128047);this[_0x31e4f1(0x159)][_0x31e4f1(0x158)](_0x24ac4b,_0x238e56);}),_0xd38b87&&(this[_0x56b70f(0x179)]=_0xd38b87),_0x3ea8d1&&(this[_0x56b70f(0x173)]=_0x3ea8d1),this[_0x56b70f(0x174)]=!![];}[_0x18f39c(0x166)](){const _0x880881=_0x18f39c;return this[_0x880881(0x17e)]['getMode']();}[_0x18f39c(0x187)](_0x3fbddd){const _0x2d6d4d=_0x18f39c;this[_0x2d6d4d(0x17e)][_0x2d6d4d(0x187)](_0x3fbddd);}[_0x18f39c(0x186)](_0x57fdbb){const _0x1152b1=_0x18f39c;this['control'][_0x1152b1(0x186)](_0x57fdbb);}[_0x18f39c(0x17d)](_0x24a26d){const _0x1cdcf4=_0x18f39c;this[_0x1cdcf4(0x17e)][_0x1cdcf4(0x16f)]=_0x24a26d?_0x24a26d===null||_0x24a26d===void 0?void 0:_0x24a26d['includes']('X'):![],this[_0x1cdcf4(0x17e)][_0x1cdcf4(0x18b)]=_0x24a26d?_0x24a26d===null||_0x24a26d===void 0?void 0:_0x24a26d[_0x1cdcf4(0x160)]('Y'):![],this['control'][_0x1cdcf4(0x16d)]=_0x24a26d?_0x24a26d===null||_0x24a26d===void 0?void 0:_0x24a26d[_0x1cdcf4(0x160)]('Z'):![];}[_0x18f39c(0x154)](_0xe98821){const _0x3e1865=_0x18f39c;this['control'][_0x3e1865(0x154)](_0xe98821);}[_0x18f39c(0x183)](){const _0x11f8ca=_0x18f39c;return this[_0x11f8ca(0x17e)][_0x11f8ca(0x19e)];}[_0x18f39c(0x1a1)](_0x3e6ba1){const _0x1b75ce=_0x18f39c;this[_0x1b75ce(0x17e)]['setTranslationSnap'](_0x3e6ba1);}[_0x18f39c(0x162)](){const _0x5a9af0=_0x18f39c;return this[_0x5a9af0(0x17e)]['rotationSnap'];}[_0x18f39c(0x19b)](_0x1bb876){const _0x1007c2=_0x18f39c;this[_0x1007c2(0x17e)][_0x1007c2(0x19b)](_0x1bb876);}[_0x18f39c(0x157)](){const _0x14d90b=_0x18f39c;return this[_0x14d90b(0x17e)]['scaleSnap'];}[_0x18f39c(0x176)](_0x4d9c9e){const _0x125d79=_0x18f39c;this['control'][_0x125d79(0x176)](_0x4d9c9e);}[_0x18f39c(0x182)](){const _0x5e1039=_0x18f39c;var _0x141461;this[_0x5e1039(0x174)]=![],this[_0x5e1039(0x19f)](),this[_0x5e1039(0x159)]['clear'](),this[_0x5e1039(0x181)]=[],this[_0x5e1039(0x161)]=null,this[_0x5e1039(0x179)]=null,this['onDraggingFunction']=null,(_0x141461=this[_0x5e1039(0x164)])===null||_0x141461===void 0?void 0:_0x141461[_0x5e1039(0x165)](),this['_control']=null,super[_0x5e1039(0x182)]();}}
129
+
130
+ function _0x1232(){var _0x362ab3=['360345FmkwFi','5ijSLSB','8TyAXBX','1034824MYGIgx','2tbhjAf','4441662HdJbcL','6331910kqYNsx','8732395jGsAUd','696642xAgfcW','746730PzqrKq'];_0x1232=function(){return _0x362ab3;};return _0x1232();}(function(_0x5a5136,_0x55a7f6){var _0x2755a0=_0x477f,_0x5a6a88=_0x5a5136();while(!![]){try{var _0x47f780=-parseInt(_0x2755a0(0x7e))/0x1+-parseInt(_0x2755a0(0x83))/0x2*(-parseInt(_0x2755a0(0x7f))/0x3)+parseInt(_0x2755a0(0x82))/0x4+parseInt(_0x2755a0(0x80))/0x5*(-parseInt(_0x2755a0(0x7d))/0x6)+parseInt(_0x2755a0(0x7c))/0x7*(parseInt(_0x2755a0(0x81))/0x8)+parseInt(_0x2755a0(0x84))/0x9+-parseInt(_0x2755a0(0x7b))/0xa;if(_0x47f780===_0x55a7f6)break;else _0x5a6a88['push'](_0x5a6a88['shift']());}catch(_0x536144){_0x5a6a88['push'](_0x5a6a88['shift']());}}}(_0x1232,0x984b4));function _0x477f(_0x279b85,_0x2b1309){_0x279b85=_0x279b85-0x7b;var _0x12326c=_0x1232();var _0x477f7b=_0x12326c[_0x279b85];return _0x477f7b;}
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;