123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149 |
- 2025-1-22 19:22:16 - debug: =================================== build Task (web-mobile) Start ================================
- 2025-1-22 19:22:16 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"web-mobile","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"includeModules":{"gfx-webgl2":"on","physics":"inherit-project-setting","physics-2d":"inherit-project-setting"},"macroConfig":{"cleanupImageCache":"inherit-project-setting"}},"nativeCodeBundleMode":"both","polyfills":{"asyncFunctions":true},"experimentalEraseModules":false,"startSceneAssetBundle":false,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"merge_dep","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"web-mobile","taskName":"web-mobile","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":false,"packages":{"web-mobile":{"useWebGPU":false,"orientation":"auto","embedWebDebugger":false,"__version__":"1.0.1"},"adsense-h5g-plugin":{"enableAdsense":false,"enableTestAd":false,"__version__":"1.0.1","AFPHostPropertyCode":"ca-host-pub-5396158963872751","AFPHostDomain":"douyougame.com","otherAFPHostPropertyCode":"","otherAFPDomain":""},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/web-mobile2025-1-22 19-22.log"}
- 2025-1-22 19:22:16 - debug: Build with Cocos Creator 3.8.4
- 2025-1-22 19:22:16 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-22 19:22:16 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-22 19:22:17 - debug: // ---- build task cocos-service:onBeforeBuild ---- (216ms)
- 2025-1-22 19:22:17 - debug: cocos-service:(onBeforeBuild) in 216 ms ✓, progress: 2%
- 2025-1-22 19:22:17 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-22 19:22:17 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-22 19:22:17 - debug: // ---- build task scene:onBeforeBuild ---- (64ms)
- 2025-1-22 19:22:17 - debug: scene:(onBeforeBuild) in 64 ms ✓, progress: 4%
- 2025-1-22 19:22:17 - debug: Start lock asset db..., progress: 4%
- 2025-1-22 19:22:17 - log: Asset DB is paused with build!
- 2025-1-22 19:22:17 - debug: Query all assets info in project
- 2025-1-22 19:22:17 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-22 19:22:17 - debug: web-mobile:(onAfterInit) start..., progress: 4%
- 2025-1-22 19:22:17 - debug: // ---- build task web-mobile:onAfterInit ----
- 2025-1-22 19:22:17 - debug: // ---- build task web-mobile:onAfterInit ---- (31ms)
- 2025-1-22 19:22:17 - debug: web-mobile:(onAfterInit) in 31 ms ✓, progress: 5%
- 2025-1-22 19:22:17 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-22 19:22:17 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-22 19:22:17 - debug: // ---- build task cocos-service:onAfterInit ---- (123ms)
- 2025-1-22 19:22:17 - debug: cocos-service:(onAfterInit) in 123 ms ✓, progress: 7%
- 2025-1-22 19:22:17 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-22 19:22:17 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-22 19:22:17 - debug: // ---- build task engine:onAfterInit ---- (66ms)
- 2025-1-22 19:22:17 - debug: engine:(onAfterInit) in 66 ms ✓, progress: 9%
- 2025-1-22 19:22:17 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-22 19:22:17 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-22 19:22:17 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-22 19:22:17 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (72ms)
- 2025-1-22 19:22:17 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 72 ms ✓, progress: 9%
- 2025-1-22 19:22:17 - debug: Init all bundles start..., progress: 9%
- 2025-1-22 19:22:17 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-22 19:22:17 - debug: web-mobile:(onAfterBundleInit) start..., progress: 9%
- 2025-1-22 19:22:17 - debug: // ---- build task web-mobile:onAfterBundleInit ----
- 2025-1-22 19:22:17 - debug: // ---- build task web-mobile:onAfterBundleInit ---- (99ms)
- 2025-1-22 19:22:17 - debug: web-mobile:(onAfterBundleInit) in 99 ms ✓, progress: 9%
- 2025-1-22 19:22:17 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-22 19:22:17 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-22 19:22:17 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-22 19:22:17 - debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
- 2025-1-22 19:22:17 - debug: Number of all scenes: 3
- 2025-1-22 19:22:17 - debug: Number of all scripts: 128
- 2025-1-22 19:22:17 - debug: Number of other assets: 1195
- 2025-1-22 19:22:17 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-22 19:22:17 - debug: reload all scripts.
- 2025-1-22 19:22:17 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-22 19:22:17 - groupCollapsed: Invalidate all modules
- 2025-1-22 19:22:17 - debug: Unregister BuiltinPipelineSettings
- 2025-1-22 19:22:17 - debug: Unregister DebugViewRuntimeControl
- 2025-1-22 19:22:17 - debug: Unregister ch_sdk_comp
- 2025-1-22 19:22:17 - debug: Unregister ch_start_pack
- 2025-1-22 19:22:17 - debug: Unregister __NodeEventAgent__
- 2025-1-22 19:22:17 - debug: Unregister ResolutionAutoFit
- 2025-1-22 19:22:17 - debug: Unregister ui_updater
- 2025-1-22 19:22:17 - debug: Unregister ClickPenetrate
- 2025-1-22 19:22:17 - debug: Unregister ListItem
- 2025-1-22 19:22:17 - debug: Unregister List
- 2025-1-22 19:22:17 - debug: Unregister MotionTrail
- 2025-1-22 19:22:17 - debug: Unregister MovieClip
- 2025-1-22 19:22:17 - debug: Unregister RewardFly
- 2025-1-22 19:22:17 - debug: Unregister SpineView
- 2025-1-22 19:22:17 - debug: Unregister UISpineMovie
- 2025-1-22 19:22:17 - debug: Unregister Layout_UIAlert
- 2025-1-22 19:22:17 - debug: Unregister Layout_UI_Notify
- 2025-1-22 19:22:17 - debug: Unregister Layout_UIWaiting
- 2025-1-22 19:22:17 - debug: Unregister table_idiom
- 2025-1-22 19:22:17 - debug: Unregister table_idiom_order
- 2025-1-22 19:22:17 - debug: Unregister table_idiom_unorder_1_3
- 2025-1-22 19:22:17 - debug: Unregister table_idiom_unorder_2_2
- 2025-1-22 19:22:17 - debug: Unregister table_idiom_unorder_3_1
- 2025-1-22 19:22:17 - debug: Unregister table_level
- 2025-1-22 19:22:17 - debug: Unregister table_level_2
- 2025-1-22 19:22:17 - debug: Unregister table_store
- 2025-1-22 19:22:17 - debug: Unregister table_task
- 2025-1-22 19:22:17 - debug: Unregister Layout_GameRules
- 2025-1-22 19:22:17 - debug: Unregister UI_GameRules
- 2025-1-22 19:22:17 - debug: Unregister UI_Idiom
- 2025-1-22 19:22:17 - debug: Unregister Layout_Idioms
- 2025-1-22 19:22:17 - debug: Unregister UI_Idioms
- 2025-1-22 19:22:17 - debug: Unregister Layout_Settings
- 2025-1-22 19:22:17 - debug: Unregister Layout_Tips
- 2025-1-22 19:22:17 - debug: Unregister Layout_Hall
- 2025-1-22 19:22:17 - debug: Unregister UI_Head_Icon
- 2025-1-22 19:22:17 - debug: Unregister UI_Rank_Item
- 2025-1-22 19:22:17 - debug: Unregister Layout_Rank
- 2025-1-22 19:22:17 - debug: Unregister UI_Rank
- 2025-1-22 19:22:17 - debug: Unregister Sign_Reward
- 2025-1-22 19:22:17 - debug: Unregister Layout_Sign
- 2025-1-22 19:22:17 - debug: Unregister UI_Sign
- 2025-1-22 19:22:17 - debug: Unregister Layout_Invite
- 2025-1-22 19:22:17 - debug: Unregister UI_Invite
- 2025-1-22 19:22:17 - debug: Unregister Layout_Store
- 2025-1-22 19:22:17 - debug: Unregister UI_Store
- 2025-1-22 19:22:17 - debug: Unregister Layout_SideBar
- 2025-1-22 19:22:17 - debug: Unregister Start
- 2025-1-22 19:22:17 - debug: Unregister UI_SideBar
- 2025-1-22 19:22:17 - debug: Unregister UI_Task_Item
- 2025-1-22 19:22:17 - debug: Unregister Layout_Task
- 2025-1-22 19:22:17 - debug: Unregister UI_Task
- 2025-1-22 19:22:17 - debug: Unregister UI_Hall
- 2025-1-22 19:22:17 - debug: Unregister UI_Tips
- 2025-1-22 19:22:17 - debug: Unregister UI_Settings
- 2025-1-22 19:22:17 - debug: Unregister Layout_Win
- 2025-1-22 19:22:17 - debug: Unregister UI_Win
- 2025-1-22 19:22:17 - debug: Unregister Layout_Main
- 2025-1-22 19:22:17 - debug: Unregister Layout_TimesOver
- 2025-1-22 19:22:17 - debug: Unregister Layout_Fail
- 2025-1-22 19:22:17 - debug: Unregister UI_Fail
- 2025-1-22 19:22:17 - debug: Unregister UI_TimesOver
- 2025-1-22 19:22:17 - debug: Unregister UI_Main
- 2025-1-22 19:22:17 - debug: Unregister Hall
- 2025-1-22 19:22:17 - debug: Unregister Cube_Infor
- 2025-1-22 19:22:17 - debug: Unregister CreateIdiom
- 2025-1-22 19:22:17 - debug: Unregister Layout_LatticeFull
- 2025-1-22 19:22:17 - debug: Unregister UI_LatticeFull
- 2025-1-22 19:22:17 - debug: Unregister Layout_Lock
- 2025-1-22 19:22:17 - debug: Unregister UI_Lock
- 2025-1-22 19:22:17 - debug: Unregister GameCtl
- 2025-1-22 19:22:17 - debug: Unregister Container_Manager
- 2025-1-22 19:22:17 - debug: Unregister UI_Item
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
- 2025-1-22 19:22:17 - debug: Invalidating 'pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js'
- 2025-1-22 19:22:17 - groupEnd: Invalidate all modules
- 2025-1-22 19:22:17 - groupCollapsed: Imports all modules
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register ch_start_pack
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register ui_updater
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register ListItem
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register List
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register MotionTrail
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register MovieClip
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register RewardFly
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register SpineView
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UISpineMovie
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_idiom
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_idiom_order
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_idiom_unorder_1_3
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_idiom_unorder_2_2
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_idiom_unorder_3_1
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_level
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_level_2
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_store
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register table_task
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_GameRules
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Idiom
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Idioms
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Settings
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Tips
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Hall
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Rank
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Rank
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Sign_Reward
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Sign
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Sign
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Invite
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Invite
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Store
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Store
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Start
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_SideBar
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Task
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Task
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Hall
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Tips
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Settings
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Win
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Win
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Main
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Fail
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Fail
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Main
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Hall
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Cube_Infor
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register CreateIdiom
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Layout_Lock
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Lock
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register GameCtl
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register Container_Manager
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Register UI_Item
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js" loaded.
- 2025-1-22 19:22:17 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-22 19:22:17 - groupEnd: Imports all modules
- 2025-1-22 19:22:17 - debug: Incremental keys: chSdk,chsdk
- 2025-1-22 19:22:17 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-22 19:22:18 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-22 19:22:18 - debug: handle json group in bundle internal
- 2025-1-22 19:22:18 - debug: handle json group in bundle internal success
- 2025-1-22 19:22:18 - debug: handle json group in bundle resources
- 2025-1-22 19:22:18 - debug: handle json group in bundle main
- 2025-1-22 19:22:18 - debug: handle json group in bundle module_extra
- 2025-1-22 19:22:18 - debug: handle json group in bundle module_basic
- 2025-1-22 19:22:18 - debug: handle json group in bundle module_game
- 2025-1-22 19:22:18 - debug: init image compress task 0 in bundle internal
- 2025-1-22 19:22:18 - debug: handle json group in bundle resources success
- 2025-1-22 19:22:18 - debug: init image compress task 0 in bundle resources
- 2025-1-22 19:22:18 - debug: handle json group in bundle module_basic success
- 2025-1-22 19:22:18 - debug: init image compress task 0 in bundle module_basic
- 2025-1-22 19:22:18 - debug: handle json group in bundle module_extra success
- 2025-1-22 19:22:18 - debug: init image compress task 0 in bundle module_extra
- 2025-1-22 19:22:18 - debug: handle json group in bundle main success
- 2025-1-22 19:22:18 - debug: init image compress task 0 in bundle main
- 2025-1-22 19:22:18 - debug: handle json group in bundle module_game success
- 2025-1-22 19:22:18 - debug: init image compress task 0 in bundle module_game
- 2025-1-22 19:22:18 - debug: // ---- build task 查询 Asset Bundle ---- (395ms)
- 2025-1-22 19:22:18 - debug: run build task 查询 Asset Bundle success in 395 ms√, progress: 14%
- 2025-1-22 19:22:18 - debug: [Build Memory track]: 查询 Asset Bundle start:224.64MB, end 229.04MB, increase: 4.41MB
- 2025-1-22 19:22:18 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-22 19:22:18 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-22 19:22:18 - debug: // ---- build task 查询 Asset Bundle ---- (68ms)
- 2025-1-22 19:22:18 - debug: run build task 查询 Asset Bundle success in 68 ms√, progress: 19%
- 2025-1-22 19:22:18 - debug: [Build Memory track]: 查询 Asset Bundle start:229.08MB, end 229.43MB, increase: 359.08KB
- 2025-1-22 19:22:18 - debug: 打包脚本 start, progress: 19%
- 2025-1-22 19:22:18 - debug: // ---- build task 打包脚本 ----
- 2025-1-22 19:22:18 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-22 19:22:18 - log: [build-script]enter sub process 5460, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
- 2025-1-22 19:22:21 - debug: excute-script over with build-script 3202ms
- 2025-1-22 19:22:21 - debug: Generate systemJs..., progress: 19%
- 2025-1-22 19:22:21 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-22 19:22:23 - debug: excute-script over with build-script 2488ms
- 2025-1-22 19:22:23 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-22 19:22:23 - debug: Build script in bundle start, progress: 19%
- 2025-1-22 19:22:23 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-22 19:22:28 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
- 2025-1-22 19:22:28 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
- 2025-1-22 19:22:31 - debug: excute-script over with build-script 7768ms
- 2025-1-22 19:22:31 - debug: Copy externalScripts success!
- 2025-1-22 19:22:31 - debug: Build script in bundle success, progress: 19%
- 2025-1-22 19:22:31 - debug: 构建项目脚本 in (7900 ms) √, progress: 19%
- 2025-1-22 19:22:31 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-22 19:22:31 - debug: Engine cache ({link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\eb86d1cb887caa950b2345052eaff7db)}) does not exist.
- 2025-1-22 19:22:31 - debug: start build engine with options: {"incremental":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\eb86d1cb887caa950b2345052eaff7db.watch-files.json","engine":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine","out":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\eb86d1cb887caa950b2345052eaff7db","moduleFormat":"system","compress":true,"split":false,"nativeCodeBundleMode":"both","assetURLFormat":"runtime-resolved","sourceMap":false,"loose":true,"features":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","gfx-webgl2","custom-pipeline-builtin-scripts"],"platform":"HTML5","flags":{"DEBUG":false,"WEBGPU":false},"mode":"BUILD","metaFile":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\eb86d1cb887caa950b2345052eaff7db.meta\\meta.json","wasmCompressionMode":false}
- 2025-1-22 19:22:31 - log: Run build task(build-engine) in child, see: chrome://inspect/#devices
- 2025-1-22 19:22:32 - log: [build-engine]enter sub process 27048, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
- 2025-1-22 19:22:33 - log: [build-engine]start build engine with options: {"engine":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine","out":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\eb86d1cb887caa950b2345052eaff7db","platform":"HTML5","moduleFormat":"system","compress":true,"split":false,"nativeCodeBundleMode":"both","assetURLFormat":"runtime-resolved","noDeprecatedFeatures":false,"sourceMap":false,"features":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","gfx-webgl2","custom-pipeline-builtin-scripts"],"loose":true,"mode":"BUILD","flags":{"DEBUG":false,"WEBGPU":false},"metaFile":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\eb86d1cb887caa950b2345052eaff7db.meta\\meta.json","incremental":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\eb86d1cb887caa950b2345052eaff7db.watch-files.json","wasmCompressionMode":false}
- 2025-1-22 19:22:33 - log: [build-engine]Module source "internal-constants":
function tryDefineGlobal (name, value) {
const _global = typeof window === 'undefined' ? global : window;
if (typeof _global[name] === 'undefined') {
return (_global[name] = value);
} else {
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
return _global[name];
}
}
export const HTML5 = true;
export const NATIVE = false;
export const ANDROID = false;
export const IOS = false;
export const MAC = false;
export const WINDOWS = false;
export const LINUX = false;
export const OHOS = false;
export const OPEN_HARMONY = false;
export const WECHAT = false;
tryDefineGlobal('CC_WECHAT', false);
export const WECHAT_MINI_PROGRAM = false;
export const BAIDU = false;
tryDefineGlobal('CC_BAIDU', false);
export const XIAOMI = false;
tryDefineGlobal('CC_XIAOMI', false);
export const ALIPAY = false;
tryDefineGlobal('CC_ALIPAY', false);
export const TAOBAO = false;
export const TAOBAO_MINIGAME = false;
export const BYTEDANCE = false;
tryDefineGlobal('CC_BYTEDANCE', false);
export const OPPO = false;
tryDefineGlobal('CC_OPPO', false);
export const VIVO = false;
tryDefineGlobal('CC_VIVO', false);
export const HUAWEI = false;
tryDefineGlobal('CC_HUAWEI', false);
export const COCOSPLAY = false;
tryDefineGlobal('CC_COCOSPLAY', false);
export const QTT = false;
tryDefineGlobal('CC_QTT', false);
export const LINKSURE = false;
tryDefineGlobal('CC_LINKSURE', false);
export const EDITOR = false;
tryDefineGlobal('CC_EDITOR', false);
export const EDITOR_NOT_IN_PREVIEW = false;
export const PREVIEW = false;
tryDefineGlobal('CC_PREVIEW', false);
export const BUILD = true;
tryDefineGlobal('CC_BUILD', true);
export const TEST = false;
tryDefineGlobal('CC_TEST', false);
export const DEBUG = false;
tryDefineGlobal('CC_DEBUG', false);
export const SERVER_MODE = false;
export const DEV = false;
tryDefineGlobal('CC_DEV', false);
export const MINIGAME = false;
tryDefineGlobal('CC_MINIGAME', false);
export const RUNTIME_BASED = false;
tryDefineGlobal('CC_RUNTIME_BASED', false);
export const SUPPORT_JIT = true;
tryDefineGlobal('CC_SUPPORT_JIT', true);
export const JSB = false;
tryDefineGlobal('CC_JSB', false);
export const NOT_PACK_PHYSX_LIBS = false;
export const NET_MODE = 0;
export const WEBGPU = false;
export const NATIVE_CODE_BUNDLE_MODE = 2;
export const WASM_SUBPACKAGE = false;
export const CULL_MESHOPT = true;
- 2025-1-22 19:22:33 - log: [build-engine]Module source "cc":
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\2d.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\sorting.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\3d.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\animation.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\audio.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\base.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\custom-pipeline.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\gfx-webgl.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\physics-ammo.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\physics-framework.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\wait-for-ammo-instantiation.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\primitive.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\profiler.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\spine.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\tween.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\ui.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\webview.ts';
export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\gfx-webgl2.ts';
- 2025-1-22 19:22:34 - log: [build-engine]Redirect module internal:native to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\native-binding\impl.ts
- 2025-1-22 19:22:34 - log: [build-engine]Redirect module pal/wasm to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\wasm\wasm-web.ts
- 2025-1-22 19:22:34 - log: [build-engine]Redirect module pal/system-info to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\system-info\web\system-info.ts
- 2025-1-22 19:22:35 - log: [build-engine]Redirect module pal/screen-adapter to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\screen-adapter\web\screen-adapter.ts
- 2025-1-22 19:22:40 - log: [build-engine]Redirect module pal/input to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\input\web\index.ts
- 2025-1-22 19:22:41 - log: [build-engine]Redirect module pal/audio to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\audio\web\player.ts
- 2025-1-22 19:22:41 - log: [build-engine]Redirect module pal/env to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\env\web\env.ts
- 2025-1-22 19:22:41 - log: [build-engine]Redirect module pal/pacer to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\pacer\pacer-web.ts
- 2025-1-22 19:22:41 - log: [build-engine]Redirect module pal/minigame to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\minigame\non-minigame.ts
- 2025-1-22 19:22:46 - log: [build-engine]Redirect module C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\animation\marionette\runtime-exports.ts to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\animation\marionette\index-empty.ts
- 2025-1-22 19:22:47 - log: [build-engine]Redirect module C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\2d\renderer\native-2d.ts to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\2d\renderer\native-2d-empty.ts
- 2025-1-22 19:22:57 - log: [build-engine]==== Performance ====
{"# BUILD":[24100.745000123978,1051322652,1109327928],"## generate module graph":[20685.98640012741,967071056,1025084936],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId":[7.859403133392334,1240068,1025043432],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId (async)":[32.63231182098389,5410368,1025043972],"- plugin 1 (@cocos/ccbuild|module-overrides) - resolveId":[6.839995861053467,765552,1025044424],"- plugin 2 (virtual) - resolveId":[23.021593809127808,5293480,1025046300],"load modules":[93719.44969415665,5711118808,1020399968],"- plugin 0 (@cocos/ccbuild|external-loader) - load":[2.8019957542419434,350368,1020366176],"- plugin 0 (@cocos/ccbuild|external-loader) - load (async)":[540.5558044910431,15563564,1020366664],"- plugin 1 (@cocos/ccbuild|module-overrides) - load":[5.772201061248779,332808,1020367352],"- plugin 2 (virtual) - load":[1.475499153137207,90396,1020367748],"- plugin 6 (json) - transform":[3.5811023712158203,832972,1020403684],"- plugin 7 (commonjs) - transform":[843.8589973449707,60457184,1020406868],"- plugin 8 (babel) - transform":[166.73760318756104,19308132,1020434036],"generate ast":[764.2690999507904,80568028,1023913140],"analyse ast":[1651.4182977676392,98414296,1025038224],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId":[9.476107835769653,2886836,1025047756],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId (async)":[55.45540237426758,8518080,1025048328],"- plugin 4 (ts-paths) - resolveId":[4.623395919799805,495316,1025048716],"- plugin 5 (node-resolve) - resolveId":[39.71099901199341,-227872,1025049856],"- plugin 5 (node-resolve) - resolveId (async)":[79716.13013648987,1193262256,1025050296],"- plugin 5 (node-resolve) - load":[1.5081989765167236,94748,1020368152],"- plugin 7 (commonjs) - load":[4.876100301742554,741812,1020369612],"- plugin 8 (babel) - load":[241.27320265769958,10035376,1020370008],"- plugin 8 (babel) - transform (async)":[14877.833603858948,605849412,1023378208],"- plugin 7 (commonjs) - resolveId":[1.9277987480163574,76160,1025050736],"- plugin 8 (babel) - resolveId":[0.976001501083374,57336,1025051140],"## sort modules":[261.8225998878479,12336308,1037421548],"## mark included statements":[3152.7945001125336,71904500,1109326292],"treeshaking pass 1":[851.2404999732971,44604852,1082411664],"treeshaking pass 2":[266.7631001472473,11670156,1094082196],"treeshaking pass 3":[140.96939992904663,4125232,1098207716],"treeshaking pass 4":[125.03610014915466,-1908756,1096299228],"treeshaking pass 5":[112.89370012283325,2950896,1099250392],"treeshaking pass 6":[294.98250007629395,2215328,1101465988],"treeshaking pass 7":[468.57080006599426,8967848,1110434104],"treeshaking pass 8":[221.95500016212463,-2907940,1107526432],"treeshaking pass 9":[128.3543999195099,4564192,1112090892],"treeshaking pass 10":[110.52300000190735,1763820,1113854980],"treeshaking pass 11":[107.12779998779297,-595024,1113260224],"treeshaking pass 12":[109.83579993247986,-753024,1112507468],"treeshaking pass 13":[108.75889992713928,-1505008,1111002728],"treeshaking pass 14":[104.82789993286133,-1677100,1109325896]}
==== ====
- 2025-1-22 19:23:14 - debug: excute-script over with build-engine 43095ms
- 2025-1-22 19:23:14 - debug: 构建引擎脚本 in (43197 ms) √, progress: 19%
- 2025-1-22 19:23:14 - debug: Copy plugin script ..., progress: 19%
- 2025-1-22 19:23:14 - debug: Generate import-map..., progress: 19%
- 2025-1-22 19:23:15 - debug: // ---- build task 打包脚本 ---- (56915ms)
- 2025-1-22 19:23:15 - debug: run build task 打包脚本 success in 56 s√, progress: 24%
- 2025-1-22 19:23:15 - debug: [Build Memory track]: 打包脚本 start:229.61MB, end 229.37MB, increase: -245.12KB
- 2025-1-22 19:23:15 - debug: Build Assets start, progress: 24%
- 2025-1-22 19:23:15 - debug: // ---- build task Build Assets ----
- 2025-1-22 19:23:15 - debug: Build bundles..., progress: 24%
- 2025-1-22 19:23:15 - debug: Pack Images start, progress: 24%
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-22 19:23:15 - debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-22 19:23:15 - debug(2): remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-22 19:23:15 - debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-22 19:23:15 - debug(2): remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-22 19:23:15 - debug: builder:pack-auto-atlas-image (844ms)
- 2025-1-22 19:23:15 - debug: Pack Images success, progress: 24%
- 2025-1-22 19:23:15 - debug: Compress image start..., progress: 24%
- 2025-1-22 19:23:15 - group: Compress image...
- 2025-1-22 19:23:15 - debug: sort compress task {}
- 2025-1-22 19:23:15 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-22 19:23:15 - debug: No image need to compress
- 2025-1-22 19:23:15 - groupEnd: Compress image...
- 2025-1-22 19:23:15 - debug: Compress image success..., progress: 24%
- 2025-1-22 19:23:15 - debug: Output asset in bundles start, progress: 24%
- 2025-1-22 19:23:15 - debug: Handle all json groups in bundle internal
- 2025-1-22 19:23:15 - debug: handle json group
- 2025-1-22 19:23:15 - debug: Handle all json groups in bundle resources
- 2025-1-22 19:23:15 - debug: handle json group
- 2025-1-22 19:23:15 - debug: Handle all json groups in bundle main
- 2025-1-22 19:23:15 - debug: handle json group
- 2025-1-22 19:23:15 - debug: Handle all json groups in bundle module_extra
- 2025-1-22 19:23:15 - debug: handle json group
- 2025-1-22 19:23:15 - debug: handle single json
- 2025-1-22 19:23:15 - debug: Handle all json groups in bundle module_basic
- 2025-1-22 19:23:15 - debug: handle json group
- 2025-1-22 19:23:15 - debug: Handle all json groups in bundle module_game
- 2025-1-22 19:23:15 - debug: handle json group
- 2025-1-22 19:23:15 - debug: Json group(03ccd410a) compile success,json number: 6
- 2025-1-22 19:23:15 - debug: handle single json
- 2025-1-22 19:23:15 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-22 19:23:15 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: handle single json
- 2025-1-22 19:23:16 - debug: Json group(0119562e1) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0e251093b) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: handle single json
- 2025-1-22 19:23:16 - debug: Json group(01c3b6bd3) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: handle single json
- 2025-1-22 19:23:16 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(078a3a89c) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(041ac2e1c) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(04a6d010d) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(097e5daf7) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0816c2a7a) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0a46ee258) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(033a6699b) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-22 19:23:16 - debug: handle single json
- 2025-1-22 19:23:16 - debug: Output asset in bundles success, progress: 24%
- 2025-1-22 19:23:16 - debug: Output asset in bundles start, progress: 24%
- 2025-1-22 19:23:16 - debug: compress config of bundle internal...
- 2025-1-22 19:23:16 - debug: compress config of bundle internal success
- 2025-1-22 19:23:16 - debug: compress config of bundle resources...
- 2025-1-22 19:23:16 - debug: compress config of bundle resources success
- 2025-1-22 19:23:16 - debug: compress config of bundle main...
- 2025-1-22 19:23:16 - debug: compress config of bundle main success
- 2025-1-22 19:23:16 - debug: compress config of bundle module_extra...
- 2025-1-22 19:23:16 - debug: compress config of bundle module_extra success
- 2025-1-22 19:23:16 - debug: compress config of bundle module_basic...
- 2025-1-22 19:23:16 - debug: compress config of bundle module_basic success
- 2025-1-22 19:23:16 - debug: compress config of bundle module_game...
- 2025-1-22 19:23:16 - debug: compress config of bundle module_game success
- 2025-1-22 19:23:16 - debug: output config of bundle internal
- 2025-1-22 19:23:16 - debug: output config of bundle internal success
- 2025-1-22 19:23:16 - debug: output config of bundle resources
- 2025-1-22 19:23:16 - debug: output config of bundle resources success
- 2025-1-22 19:23:16 - debug: output config of bundle main
- 2025-1-22 19:23:16 - debug: output config of bundle main success
- 2025-1-22 19:23:16 - debug: output config of bundle module_extra
- 2025-1-22 19:23:16 - debug: output config of bundle module_extra success
- 2025-1-22 19:23:16 - debug: output config of bundle module_basic
- 2025-1-22 19:23:16 - debug: output config of bundle module_basic success
- 2025-1-22 19:23:16 - debug: output config of bundle module_game
- 2025-1-22 19:23:16 - debug: output config of bundle module_game success
- 2025-1-22 19:23:16 - debug: Output asset in bundles success, progress: 24%
- 2025-1-22 19:23:16 - debug: // ---- build task Build Assets ---- (1344ms)
- 2025-1-22 19:23:16 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-22 19:23:16 - debug: [Build Memory track]: Build Assets start:229.40MB, end 217.83MB, increase: -11849.88KB
- 2025-1-22 19:23:16 - debug: 整理部分构建选项内数据到 settings.json start, progress: 29%
- 2025-1-22 19:23:16 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-22 19:23:16 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (97ms)
- 2025-1-22 19:23:16 - debug: run build task 整理部分构建选项内数据到 settings.json success in 97 ms√, progress: 31%
- 2025-1-22 19:23:16 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:217.92MB, end 218.11MB, increase: 193.17KB
- 2025-1-22 19:23:16 - debug: 填充脚本数据到 settings.json start, progress: 31%
- 2025-1-22 19:23:16 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-22 19:23:16 - debug: // ---- build task 填充脚本数据到 settings.json ---- (71ms)
- 2025-1-22 19:23:16 - debug: run build task 填充脚本数据到 settings.json success in 71 ms√, progress: 32%
- 2025-1-22 19:23:16 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:218.15MB, end 218.28MB, increase: 141.20KB
- 2025-1-22 19:23:16 - debug: 整理部分构建选项内数据到 settings.json start, progress: 32%
- 2025-1-22 19:23:16 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-22 19:23:16 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (80ms)
- 2025-1-22 19:23:16 - debug: run build task 整理部分构建选项内数据到 settings.json success in 80 ms√, progress: 34%
- 2025-1-22 19:23:16 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.32MB, end 218.56MB, increase: 249.68KB
- 2025-1-22 19:23:16 - debug: web-mobile:(onBeforeCompressSettings) start..., progress: 34%
- 2025-1-22 19:23:16 - debug: // ---- build task web-mobile:onBeforeCompressSettings ----
- 2025-1-22 19:23:16 - debug: // ---- build task web-mobile:onBeforeCompressSettings ---- (69ms)
- 2025-1-22 19:23:16 - debug: web-mobile:(onBeforeCompressSettings) in 69 ms ✓, progress: 36%
- 2025-1-22 19:23:16 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-22 19:23:16 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-22 19:23:16 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (183ms)
- 2025-1-22 19:23:16 - debug: cocos-service:(onBeforeCompressSettings) in 183 ms ✓, progress: 38%
- 2025-1-22 19:23:16 - debug: 整理静态模板文件 start, progress: 38%
- 2025-1-22 19:23:16 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-22 19:23:17 - debug: // ---- build task 整理静态模板文件 ---- (99ms)
- 2025-1-22 19:23:17 - debug: run build task 整理静态模板文件 success in 99 ms√, progress: 43%
- 2025-1-22 19:23:17 - debug: [Build Memory track]: 整理静态模板文件 start:218.97MB, end 212.86MB, increase: -6256.07KB
- 2025-1-22 19:23:17 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 43%
- 2025-1-22 19:23:17 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-22 19:23:17 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (112ms)
- 2025-1-22 19:23:17 - debug: cocos-service:(onAfterCompressSettings) in 112 ms ✓, progress: 45%
- 2025-1-22 19:23:17 - debug: web-mobile:(onBeforeCopyBuildTemplate) start..., progress: 45%
- 2025-1-22 19:23:17 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ----
- 2025-1-22 19:23:17 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ---- (153ms)
- 2025-1-22 19:23:17 - debug: web-mobile:(onBeforeCopyBuildTemplate) in 153 ms ✓, progress: 46%
- 2025-1-22 19:23:17 - debug: 给所有的资源加上 MD5 后缀 start, progress: 46%
- 2025-1-22 19:23:17 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-22 19:23:17 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (63ms)
- 2025-1-22 19:23:17 - debug: run build task 给所有的资源加上 MD5 后缀 success in 63 ms√, progress: 56%
- 2025-1-22 19:23:17 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:215.78MB, end 215.91MB, increase: 138.21KB
- 2025-1-22 19:23:17 - debug: cocos-service:(onAfterBuild) start..., progress: 56%
- 2025-1-22 19:23:17 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-22 19:23:17 - debug: // ---- build task cocos-service:onAfterBuild ---- (147ms)
- 2025-1-22 19:23:17 - debug: cocos-service:(onAfterBuild) in 147 ms ✓, progress: 58%
- 2025-1-22 19:23:17 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 58%
- 2025-1-22 19:23:17 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-22 19:23:17 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (61ms)
- 2025-1-22 19:23:17 - debug: adsense-h5g-plugin:(onAfterBuild) in 61 ms ✓, progress: 60%
- 2025-1-22 19:23:17 - log: Asset DB is resume!
- 2025-1-22 19:23:17 - debug: builder:build-project-total (60713ms)
- 2025-1-22 19:23:17 - debug: build success in 60713!
- 2025-1-22 19:23:17 - debug: [Build Memory track]: builder:build-project-total start:224.49MB, end 213.68MB, increase: -11062.96KB
- 2025-1-22 19:23:17 - debug: ================================ build Task (web-mobile) Finished in (1 min)ms ================================
- 2025-1-23 18:28:28 - debug: =================================== build Task (web-mobile) Start ================================
- 2025-1-23 18:28:28 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"web-mobile","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"includeModules":{"gfx-webgl2":"on","physics":"inherit-project-setting","physics-2d":"inherit-project-setting"},"macroConfig":{"cleanupImageCache":"inherit-project-setting"}},"nativeCodeBundleMode":"both","polyfills":{"asyncFunctions":true},"experimentalEraseModules":false,"startSceneAssetBundle":false,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"merge_dep","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"web-mobile","taskName":"web-mobile","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":false,"packages":{"adsense-h5g-plugin":{"enableAdsense":false,"enableTestAd":false,"__version__":"1.0.1","AFPHostPropertyCode":"ca-host-pub-5396158963872751","AFPHostDomain":"douyougame.com","otherAFPHostPropertyCode":"","otherAFPDomain":""},"web-mobile":{"useWebGPU":false,"orientation":"auto","embedWebDebugger":false,"__version__":"1.0.1"},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/web-mobile2025-1-22 19-22.log"}
- 2025-1-23 18:28:28 - debug: Build with Cocos Creator 3.8.4
- 2025-1-23 18:28:28 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-23 18:28:28 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-23 18:28:28 - debug: // ---- build task cocos-service:onBeforeBuild ---- (210ms)
- 2025-1-23 18:28:28 - debug: cocos-service:(onBeforeBuild) in 210 ms ✓, progress: 2%
- 2025-1-23 18:28:28 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-23 18:28:28 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-23 18:28:28 - debug: // ---- build task scene:onBeforeBuild ---- (42ms)
- 2025-1-23 18:28:28 - debug: scene:(onBeforeBuild) in 42 ms ✓, progress: 4%
- 2025-1-23 18:28:28 - debug: Start lock asset db..., progress: 4%
- 2025-1-23 18:28:28 - log: Asset DB is paused with build!
- 2025-1-23 18:28:28 - debug: Query all assets info in project
- 2025-1-23 18:28:28 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-23 18:28:28 - debug: web-mobile:(onAfterInit) start..., progress: 4%
- 2025-1-23 18:28:28 - debug: // ---- build task web-mobile:onAfterInit ----
- 2025-1-23 18:28:28 - debug: // ---- build task web-mobile:onAfterInit ---- (22ms)
- 2025-1-23 18:28:28 - debug: web-mobile:(onAfterInit) in 22 ms ✓, progress: 5%
- 2025-1-23 18:28:28 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-23 18:28:28 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-23 18:28:29 - debug: // ---- build task cocos-service:onAfterInit ---- (610ms)
- 2025-1-23 18:28:29 - debug: cocos-service:(onAfterInit) in 610 ms ✓, progress: 7%
- 2025-1-23 18:28:29 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-23 18:28:29 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-23 18:28:29 - debug: // ---- build task engine:onAfterInit ---- (41ms)
- 2025-1-23 18:28:29 - debug: engine:(onAfterInit) in 41 ms ✓, progress: 9%
- 2025-1-23 18:28:29 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-23 18:28:29 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-23 18:28:29 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-23 18:28:29 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (53ms)
- 2025-1-23 18:28:29 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 53 ms ✓, progress: 9%
- 2025-1-23 18:28:29 - debug: Init all bundles start..., progress: 9%
- 2025-1-23 18:28:29 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-23 18:28:29 - debug: web-mobile:(onAfterBundleInit) start..., progress: 9%
- 2025-1-23 18:28:29 - debug: // ---- build task web-mobile:onAfterBundleInit ----
- 2025-1-23 18:28:29 - debug: // ---- build task web-mobile:onAfterBundleInit ---- (75ms)
- 2025-1-23 18:28:29 - debug: web-mobile:(onAfterBundleInit) in 75 ms ✓, progress: 9%
- 2025-1-23 18:28:29 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-23 18:28:29 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-23 18:28:29 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-23 18:28:29 - debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
- 2025-1-23 18:28:29 - debug: Number of all scenes: 3
- 2025-1-23 18:28:29 - debug: Number of all scripts: 128
- 2025-1-23 18:28:29 - debug: Number of other assets: 1199
- 2025-1-23 18:28:29 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-23 18:28:29 - debug: reload all scripts.
- 2025-1-23 18:28:29 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-23 18:28:29 - groupCollapsed: Invalidate all modules
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-23 18:28:29 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-23 18:28:29 - groupEnd: Invalidate all modules
- 2025-1-23 18:28:29 - groupCollapsed: Imports all modules
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3c\3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3c\3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e9\e908646c1435d653de6447e2ae846c959ac29b33.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e9\e908646c1435d653de6447e2ae846c959ac29b33.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e6\e671bb16456ad253c126408d753c04295ea07129.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e6\e671bb16456ad253c126408d753c04295ea07129.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41d16e1f8113566bf1c111c20aceca9e4a6626d6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41d16e1f8113566bf1c111c20aceca9e4a6626d6.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a62597dd07a24c3714ad095eedbfc8f76f2d165c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a62597dd07a24c3714ad095eedbfc8f76f2d165c.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f8dff31feda7b51e2d0428361dac48e18834ed8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f8dff31feda7b51e2d0428361dac48e18834ed8.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ad9214371678a1d97027b6cf28752dcbab25e0f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ad9214371678a1d97027b6cf28752dcbab25e0f.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\87\879eb4b2cb07a55807079158fde54421bac04056.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\87\879eb4b2cb07a55807079158fde54421bac04056.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3975fe5ce64c51324369e49e8afd9c685ef1036d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3975fe5ce64c51324369e49e8afd9c685ef1036d.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d72ce35042ce99e7f64ae289f73e61427ebc5661.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d72ce35042ce99e7f64ae289f73e61427ebc5661.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31f21e9610b2e754c9705fb8b4947b7629eba3ec.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31f21e9610b2e754c9705fb8b4947b7629eba3ec.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register ch_start_pack
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e2\e2c07fd606d93eb79afeed6ef4de521f2be03414.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e2\e2c07fd606d93eb79afeed6ef4de521f2be03414.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c6623815813aae756c57cca6f89a3182c222719.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c6623815813aae756c57cca6f89a3182c222719.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\33\33d6d868e05219070a908e953bde210e54f92e26.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\33\33d6d868e05219070a908e953bde210e54f92e26.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register ui_updater
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6b\6b45817391fda8032e9c3052f72099ae80b977e5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6b\6b45817391fda8032e9c3052f72099ae80b977e5.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9b4abce15a8c07b4b00096caaa35df726664c0eb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9b4abce15a8c07b4b00096caaa35df726664c0eb.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\51\518c777b9b184349470f0a8548bfc02a3ac13b12.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\51\518c777b9b184349470f0a8548bfc02a3ac13b12.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73c6533bf475cf801676942513edca165a6ed07f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73c6533bf475cf801676942513edca165a6ed07f.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\79\79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\79\79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\bd\bd8a015d9f05319ae091f7383c093a5f26a12133.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\bd\bd8a015d9f05319ae091f7383c093a5f26a12133.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c9\c969313d23703c6a3fcc53d5e71bae664ed7849e.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c9\c969313d23703c6a3fcc53d5e71bae664ed7849e.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\53\5355f477731c1aa517e29e27c45ac35bf99fe727.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\53\5355f477731c1aa517e29e27c45ac35bf99fe727.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8ea009be5644c7164c4b5ae51cd349e5525e465.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8ea009be5644c7164c4b5ae51cd349e5525e465.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4e\4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4e\4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\17\1787d8e2147a43214097b7b6fea81022fa7297b5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\17\1787d8e2147a43214097b7b6fea81022fa7297b5.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f780142056b451af1186d982a8e16130bfd276a2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f780142056b451af1186d982a8e16130bfd276a2.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b6\b601769373047d5119da5c4cb4b3a4bba6a651af.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b6\b601769373047d5119da5c4cb4b3a4bba6a651af.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69708f163aeb7f1d3d93c5d9454dca6576ef2581.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69708f163aeb7f1d3d93c5d9454dca6576ef2581.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\81\815a8e3b66559b0d1265c7b789166062c8861bd5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\81\815a8e3b66559b0d1265c7b789166062c8861bd5.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cf\cf9c45e29398b29856527964dd8d734c5d4fdec4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cf\cf9c45e29398b29856527964dd8d734c5d4fdec4.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e81d067c8870d70331d8b9656a976c1f558e5de.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e81d067c8870d70331d8b9656a976c1f558e5de.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\df\df48ec67964f126550b0d5d71bec2b4cfc027d50.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\df\df48ec67964f126550b0d5d71bec2b4cfc027d50.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e08485787ba9b2ad7c98e435102c966d3f5c64ae.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e08485787ba9b2ad7c98e435102c966d3f5c64ae.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\74\7404a8ee135932a387eac99bfb33951576fe8b67.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\74\7404a8ee135932a387eac99bfb33951576fe8b67.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f91b0c989c2a479c1da04fdb508bd586eba443c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f91b0c989c2a479c1da04fdb508bd586eba443c.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34df8999c17a8450e101699bd789ccbd57ce24ce.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34df8999c17a8450e101699bd789ccbd57ce24ce.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d5\d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d5\d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\3166d186d5cd2eca604e02fdebeb727752294da4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\3166d186d5cd2eca604e02fdebeb727752294da4.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a8\a89b293907eed8bf35922b74df584b59608173f2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a8\a89b293907eed8bf35922b74df584b59608173f2.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\5908d1524fdbf33b63c9c924078b09b63cc7fc89.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\5908d1524fdbf33b63c9c924078b09b63cc7fc89.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\12\122ae41024fa99aa4949a176919256851ded60b7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\12\122ae41024fa99aa4949a176919256851ded60b7.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register ListItem
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register List
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\71\71b930d6142312f684efd1718dfcd7bfd1e95eaa.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\71\71b930d6142312f684efd1718dfcd7bfd1e95eaa.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register MotionTrail
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register MovieClip
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb13e961bcd8d7069545036fc45d02908c0eee94.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb13e961bcd8d7069545036fc45d02908c0eee94.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register RewardFly
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\20\20712297188dd3bbe9fb3acc1799edea45dda86b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\20\20712297188dd3bbe9fb3acc1799edea45dda86b.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register SpineView
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UISpineMovie
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\974d5e18287f52413bf4aef79e6b1b43e2db1119.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\974d5e18287f52413bf4aef79e6b1b43e2db1119.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b7\b71ec6998eef381fede6b5fd1614855829fc2f22.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b7\b71ec6998eef381fede6b5fd1614855829fc2f22.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\13\137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\13\137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7a\7a060cba1d5a032475d6578a562fb8df8171eb0b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7a\7a060cba1d5a032475d6578a562fb8df8171eb0b.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c307a58b694cc824581802a8099e6d62860adb91.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c307a58b694cc824581802a8099e6d62860adb91.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d6b2307e211bf7d71fb96955f3a221662b8b975.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d6b2307e211bf7d71fb96955f3a221662b8b975.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09a6fd4930dfcb5968a1b01550a6275640cfa703.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09a6fd4930dfcb5968a1b01550a6275640cfa703.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\82\82914e241315735457587bc37563ed7db8183cd0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\82\82914e241315735457587bc37563ed7db8183cd0.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_idiom
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5c49ac26bc7b811c9d08fcff5242440f88d29d17.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5c49ac26bc7b811c9d08fcff5242440f88d29d17.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_idiom_order
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c4\c4f98bd93a546a52de77fc64f647d47575afdfde.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c4\c4f98bd93a546a52de77fc64f647d47575afdfde.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_idiom_unorder_1_3
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\084428b3dfc28ebcd60f1249169098df9f4287da.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\084428b3dfc28ebcd60f1249169098df9f4287da.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_idiom_unorder_2_2
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_idiom_unorder_3_1
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_level
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a30868ce54a6c8efe10f298b9b16214ac85c863.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a30868ce54a6c8efe10f298b9b16214ac85c863.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_level_2
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0e\0e87907262cdfe9bb04b67b17e1eca1e38126d79.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0e\0e87907262cdfe9bb04b67b17e1eca1e38126d79.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_store
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\505b34a78c0dbfe58195107ebd90b3bc5807bf10.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\505b34a78c0dbfe58195107ebd90b3bc5807bf10.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register table_task
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a4102a464059398e43bc26dd3fe1faf79989cb3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a4102a464059398e43bc26dd3fe1faf79989cb3.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c28f184f0d05e5d5976de9f0de294b88d5de4347.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c28f184f0d05e5d5976de9f0de294b88d5de4347.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\78\789715a9ff1e6669695bc6f37f849347673e7936.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\78\789715a9ff1e6669695bc6f37f849347673e7936.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d4\d4808bb291a6c1906241b46a992fa068602b87c7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d4\d4808bb291a6c1906241b46a992fa068602b87c7.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ef\ef2d221df54a2db9265b17ea24ca2a0b327d2619.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ef\ef2d221df54a2db9265b17ea24ca2a0b327d2619.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a163e5eb12e84fcff92e09679473d95caa7ce42.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a163e5eb12e84fcff92e09679473d95caa7ce42.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2c\2cb4568cc17fc880801c649b7e09213445038932.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2c\2cb4568cc17fc880801c649b7e09213445038932.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f0\f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f0\f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\46\4669e191907a2a708fa7ba923dc04da98435f165.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\46\4669e191907a2a708fa7ba923dc04da98435f165.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\92\9223b50b0b25e34c00abbd1136311e176203d399.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\92\9223b50b0b25e34c00abbd1136311e176203d399.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\76\76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\76\76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a0\a0c4f651e5297607ee62681e54a78e7903383828.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a0\a0c4f651e5297607ee62681e54a78e7903383828.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b9\b968f7f08649c00a45a730a74c55b98d374e1ea3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b9\b968f7f08649c00a45a730a74c55b98d374e1ea3.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\fd\fd567b6cff2bda101ea5067e96a8431f92b55a12.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\fd\fd567b6cff2bda101ea5067e96a8431f92b55a12.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4f\4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4f\4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c1\c10bd777343c22d44996eae3d1e908c1e444e54c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c1\c10bd777343c22d44996eae3d1e908c1e444e54c.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d7e3424c179d135dc59489a147ede15a8748562.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d7e3424c179d135dc59489a147ede15a8748562.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73e6dc2a8fc59081071dcebb82927640ef5a7f21.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73e6dc2a8fc59081071dcebb82927640ef5a7f21.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b62ba828bd2568fd07a8c27879bd9e102538148.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b62ba828bd2568fd07a8c27879bd9e102538148.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3a\3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3a\3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caf1f57c4e93834ff6792756f81ca4dda67117d5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caf1f57c4e93834ff6792756f81ca4dda67117d5.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e8565b65da4744bcef3d3da0a471e3f78c932ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e8565b65da4744bcef3d3da0a471e3f78c932ab.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4a\4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4a\4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\30\30148fb61fef14f86e2cda463a167887dbf8cde4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\30\30148fb61fef14f86e2cda463a167887dbf8cde4.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa522899127047b80d0893406f275d7a7aa74d2c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa522899127047b80d0893406f275d7a7aa74d2c.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\64\648fcac29cbf9485ceab7e7d1359724ae2b1b196.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\64\648fcac29cbf9485ceab7e7d1359724ae2b1b196.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7e\7e7ab0c417629d8b4decc7970b158f69484ca3a0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7e\7e7ab0c417629d8b4decc7970b158f69484ca3a0.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\96\96e2fcee174623dab28594a5fc60dc89148d32de.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\96\96e2fcee174623dab28594a5fc60dc89148d32de.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41297756668c0510f828032e1d12f96a4d1a9194.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41297756668c0510f828032e1d12f96a4d1a9194.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a5\a59d8099545685d191f1183a0f3bc7f3602b80cf.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a5\a59d8099545685d191f1183a0f3bc7f3602b80cf.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47c8e77781a159f10d589db5916314688580bc33.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47c8e77781a159f10d589db5916314688580bc33.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js is not in module cache!
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_GameRules
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Idiom
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Idioms
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Settings
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Tips
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Hall
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Rank
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Rank
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Sign_Reward
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Sign
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Sign
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Invite
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Invite
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Store
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Store
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Start
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_SideBar
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Task
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Task
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Hall
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Tips
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Settings
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Win
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Win
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Main
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Fail
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Fail
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Main
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Hall
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Cube_Infor
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register CreateIdiom
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Layout_Lock
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Lock
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register GameCtl
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Register Container_Manager
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Register UI_Item
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-23 18:28:29 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\83\8346f1745fc6cfca5a9df831ccc439dc13140cfb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\83\8346f1745fc6cfca5a9df831ccc439dc13140cfb.js is not in module cache!
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js" loaded.
- 2025-1-23 18:28:29 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-23 18:28:29 - groupEnd: Imports all modules
- 2025-1-23 18:28:29 - debug: Incremental keys: chSdk,chsdk
- 2025-1-23 18:28:29 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-23 18:28:29 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-23 18:28:29 - debug: handle json group in bundle internal
- 2025-1-23 18:28:29 - debug: handle json group in bundle internal success
- 2025-1-23 18:28:29 - debug: handle json group in bundle resources
- 2025-1-23 18:28:29 - debug: handle json group in bundle main
- 2025-1-23 18:28:29 - debug: handle json group in bundle module_extra
- 2025-1-23 18:28:29 - debug: handle json group in bundle module_basic
- 2025-1-23 18:28:29 - debug: handle json group in bundle module_game
- 2025-1-23 18:28:29 - debug: init image compress task 0 in bundle internal
- 2025-1-23 18:28:29 - debug: handle json group in bundle resources success
- 2025-1-23 18:28:29 - debug: init image compress task 0 in bundle resources
- 2025-1-23 18:28:29 - debug: handle json group in bundle module_basic success
- 2025-1-23 18:28:29 - debug: init image compress task 0 in bundle module_basic
- 2025-1-23 18:28:29 - debug: handle json group in bundle module_extra success
- 2025-1-23 18:28:29 - debug: init image compress task 0 in bundle module_extra
- 2025-1-23 18:28:29 - debug: handle json group in bundle main success
- 2025-1-23 18:28:29 - debug: init image compress task 0 in bundle main
- 2025-1-23 18:28:29 - debug: handle json group in bundle module_game success
- 2025-1-23 18:28:29 - debug: init image compress task 0 in bundle module_game
- 2025-1-23 18:28:29 - debug: // ---- build task 查询 Asset Bundle ---- (608ms)
- 2025-1-23 18:28:29 - debug: run build task 查询 Asset Bundle success in 608 ms√, progress: 14%
- 2025-1-23 18:28:29 - debug: [Build Memory track]: 查询 Asset Bundle start:171.58MB, end 198.07MB, increase: 26.49MB
- 2025-1-23 18:28:29 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-23 18:28:29 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-23 18:28:30 - debug: // ---- build task 查询 Asset Bundle ---- (112ms)
- 2025-1-23 18:28:30 - debug: run build task 查询 Asset Bundle success in 112 ms√, progress: 19%
- 2025-1-23 18:28:30 - debug: [Build Memory track]: 查询 Asset Bundle start:198.11MB, end 198.43MB, increase: 328.58KB
- 2025-1-23 18:28:30 - debug: 打包脚本 start, progress: 19%
- 2025-1-23 18:28:30 - debug: // ---- build task 打包脚本 ----
- 2025-1-23 18:28:30 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-23 18:28:30 - log: [build-script]enter sub process 25704, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
- 2025-1-23 18:28:33 - debug: excute-script over with build-script 3655ms
- 2025-1-23 18:28:33 - debug: Generate systemJs..., progress: 19%
- 2025-1-23 18:28:33 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-23 18:28:36 - debug: excute-script over with build-script 2586ms
- 2025-1-23 18:28:36 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-23 18:28:36 - debug: Build script in bundle start, progress: 19%
- 2025-1-23 18:28:36 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-23 18:28:40 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
- 2025-1-23 18:28:40 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
- 2025-1-23 18:28:44 - debug: excute-script over with build-script 8002ms
- 2025-1-23 18:28:44 - debug: Copy externalScripts success!
- 2025-1-23 18:28:44 - debug: Build script in bundle success, progress: 19%
- 2025-1-23 18:28:44 - debug: 构建项目脚本 in (8102 ms) √, progress: 19%
- 2025-1-23 18:28:44 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-23 18:28:44 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\eb86d1cb887caa950b2345052eaff7db)}
- 2025-1-23 18:28:44 - debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","gfx-webgl2","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"HTML5","useCache":true,"nativeCodeBundleMode":"both","wasmCompressionMode":false,"split":false,"assetURLFormat":"runtime-resolved","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\web-mobile\\cocos-js","flags":{"DEBUG":false,"WEBGPU":false},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-23 18:28:44 - debug: 构建引擎脚本 in (183 ms) √, progress: 19%
- 2025-1-23 18:28:44 - debug: Copy plugin script ..., progress: 19%
- 2025-1-23 18:28:44 - debug: Generate import-map..., progress: 19%
- 2025-1-23 18:28:44 - debug: // ---- build task 打包脚本 ---- (14624ms)
- 2025-1-23 18:28:44 - debug: run build task 打包脚本 success in 14 s√, progress: 24%
- 2025-1-23 18:28:44 - debug: [Build Memory track]: 打包脚本 start:198.63MB, end 195.94MB, increase: -2764.19KB
- 2025-1-23 18:28:44 - debug: Build Assets start, progress: 24%
- 2025-1-23 18:28:44 - debug: // ---- build task Build Assets ----
- 2025-1-23 18:28:44 - debug: Build bundles..., progress: 24%
- 2025-1-23 18:28:44 - debug: Pack Images start, progress: 24%
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-23 18:28:45 - debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-23 18:28:45 - debug(2): remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-23 18:28:45 - debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-23 18:28:45 - debug(2): remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-23 18:28:45 - debug: builder:pack-auto-atlas-image (1021ms)
- 2025-1-23 18:28:45 - debug: Pack Images success, progress: 24%
- 2025-1-23 18:28:45 - debug: Compress image start..., progress: 24%
- 2025-1-23 18:28:45 - group: Compress image...
- 2025-1-23 18:28:45 - debug: sort compress task {}
- 2025-1-23 18:28:45 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-23 18:28:45 - debug: No image need to compress
- 2025-1-23 18:28:45 - groupEnd: Compress image...
- 2025-1-23 18:28:45 - debug: Compress image success..., progress: 24%
- 2025-1-23 18:28:45 - debug: Output asset in bundles start, progress: 24%
- 2025-1-23 18:28:45 - debug: Handle all json groups in bundle internal
- 2025-1-23 18:28:45 - debug: handle json group
- 2025-1-23 18:28:45 - debug: Handle all json groups in bundle resources
- 2025-1-23 18:28:45 - debug: handle json group
- 2025-1-23 18:28:45 - debug: Handle all json groups in bundle main
- 2025-1-23 18:28:45 - debug: handle json group
- 2025-1-23 18:28:45 - debug: Handle all json groups in bundle module_extra
- 2025-1-23 18:28:45 - debug: handle json group
- 2025-1-23 18:28:45 - debug: handle single json
- 2025-1-23 18:28:45 - debug: Handle all json groups in bundle module_basic
- 2025-1-23 18:28:45 - debug: handle json group
- 2025-1-23 18:28:45 - debug: Handle all json groups in bundle module_game
- 2025-1-23 18:28:45 - debug: handle json group
- 2025-1-23 18:28:45 - debug: Json group(03ccd410a) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: handle single json
- 2025-1-23 18:28:45 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: handle single json
- 2025-1-23 18:28:45 - debug: Json group(0119562e1) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: Json group(0e251093b) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: handle single json
- 2025-1-23 18:28:45 - debug: Json group(0c9c3cc78) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: handle single json
- 2025-1-23 18:28:45 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-23 18:28:45 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(078a3a89c) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(041ac2e1c) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(04a6d010d) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(097e5daf7) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(0816c2a7a) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(0a46ee258) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(033a6699b) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-23 18:28:46 - debug: handle single json
- 2025-1-23 18:28:46 - debug: Output asset in bundles success, progress: 24%
- 2025-1-23 18:28:46 - debug: Output asset in bundles start, progress: 24%
- 2025-1-23 18:28:46 - debug: compress config of bundle internal...
- 2025-1-23 18:28:46 - debug: compress config of bundle internal success
- 2025-1-23 18:28:46 - debug: compress config of bundle resources...
- 2025-1-23 18:28:46 - debug: compress config of bundle resources success
- 2025-1-23 18:28:46 - debug: compress config of bundle main...
- 2025-1-23 18:28:46 - debug: compress config of bundle main success
- 2025-1-23 18:28:46 - debug: compress config of bundle module_extra...
- 2025-1-23 18:28:46 - debug: compress config of bundle module_extra success
- 2025-1-23 18:28:46 - debug: compress config of bundle module_basic...
- 2025-1-23 18:28:46 - debug: compress config of bundle module_basic success
- 2025-1-23 18:28:46 - debug: compress config of bundle module_game...
- 2025-1-23 18:28:46 - debug: compress config of bundle module_game success
- 2025-1-23 18:28:46 - debug: output config of bundle internal
- 2025-1-23 18:28:46 - debug: output config of bundle internal success
- 2025-1-23 18:28:46 - debug: output config of bundle resources
- 2025-1-23 18:28:46 - debug: output config of bundle resources success
- 2025-1-23 18:28:46 - debug: output config of bundle main
- 2025-1-23 18:28:46 - debug: output config of bundle main success
- 2025-1-23 18:28:46 - debug: output config of bundle module_extra
- 2025-1-23 18:28:46 - debug: output config of bundle module_extra success
- 2025-1-23 18:28:46 - debug: output config of bundle module_basic
- 2025-1-23 18:28:46 - debug: output config of bundle module_basic success
- 2025-1-23 18:28:46 - debug: output config of bundle module_game
- 2025-1-23 18:28:46 - debug: output config of bundle module_game success
- 2025-1-23 18:28:46 - debug: Output asset in bundles success, progress: 24%
- 2025-1-23 18:28:46 - debug: // ---- build task Build Assets ---- (1703ms)
- 2025-1-23 18:28:46 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-23 18:28:46 - debug: [Build Memory track]: Build Assets start:195.97MB, end 204.35MB, increase: 8.38MB
- 2025-1-23 18:28:46 - debug: 整理部分构建选项内数据到 settings.json start, progress: 29%
- 2025-1-23 18:28:46 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-23 18:28:46 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (43ms)
- 2025-1-23 18:28:46 - debug: run build task 整理部分构建选项内数据到 settings.json success in 43 ms√, progress: 31%
- 2025-1-23 18:28:46 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.45MB, end 204.57MB, increase: 128.22KB
- 2025-1-23 18:28:46 - debug: 填充脚本数据到 settings.json start, progress: 31%
- 2025-1-23 18:28:46 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-23 18:28:46 - debug: // ---- build task 填充脚本数据到 settings.json ---- (57ms)
- 2025-1-23 18:28:46 - debug: run build task 填充脚本数据到 settings.json success in 57 ms√, progress: 32%
- 2025-1-23 18:28:46 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:204.61MB, end 204.73MB, increase: 127.82KB
- 2025-1-23 18:28:46 - debug: 整理部分构建选项内数据到 settings.json start, progress: 32%
- 2025-1-23 18:28:46 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-23 18:28:46 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (49ms)
- 2025-1-23 18:28:46 - debug: run build task 整理部分构建选项内数据到 settings.json success in 49 ms√, progress: 34%
- 2025-1-23 18:28:46 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.77MB, end 205.03MB, increase: 271.51KB
- 2025-1-23 18:28:46 - debug: web-mobile:(onBeforeCompressSettings) start..., progress: 34%
- 2025-1-23 18:28:46 - debug: // ---- build task web-mobile:onBeforeCompressSettings ----
- 2025-1-23 18:28:46 - debug: // ---- build task web-mobile:onBeforeCompressSettings ---- (53ms)
- 2025-1-23 18:28:46 - debug: web-mobile:(onBeforeCompressSettings) in 53 ms ✓, progress: 36%
- 2025-1-23 18:28:46 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-23 18:28:46 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-23 18:28:46 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (210ms)
- 2025-1-23 18:28:46 - debug: cocos-service:(onBeforeCompressSettings) in 210 ms ✓, progress: 38%
- 2025-1-23 18:28:46 - debug: 整理静态模板文件 start, progress: 38%
- 2025-1-23 18:28:46 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-23 18:28:46 - debug: // ---- build task 整理静态模板文件 ---- (159ms)
- 2025-1-23 18:28:46 - debug: run build task 整理静态模板文件 success in 159 ms√, progress: 43%
- 2025-1-23 18:28:46 - debug: [Build Memory track]: 整理静态模板文件 start:205.45MB, end 208.04MB, increase: 2.59MB
- 2025-1-23 18:28:46 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 43%
- 2025-1-23 18:28:46 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-23 18:28:47 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (140ms)
- 2025-1-23 18:28:47 - debug: cocos-service:(onAfterCompressSettings) in 140 ms ✓, progress: 45%
- 2025-1-23 18:28:47 - debug: web-mobile:(onBeforeCopyBuildTemplate) start..., progress: 45%
- 2025-1-23 18:28:47 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ----
- 2025-1-23 18:28:47 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ---- (153ms)
- 2025-1-23 18:28:47 - debug: web-mobile:(onBeforeCopyBuildTemplate) in 153 ms ✓, progress: 46%
- 2025-1-23 18:28:47 - debug: 给所有的资源加上 MD5 后缀 start, progress: 46%
- 2025-1-23 18:28:47 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-23 18:28:47 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (45ms)
- 2025-1-23 18:28:47 - debug: run build task 给所有的资源加上 MD5 后缀 success in 45 ms√, progress: 56%
- 2025-1-23 18:28:47 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:211.10MB, end 211.22MB, increase: 126.61KB
- 2025-1-23 18:28:47 - debug: cocos-service:(onAfterBuild) start..., progress: 56%
- 2025-1-23 18:28:47 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-23 18:28:47 - debug: // ---- build task cocos-service:onAfterBuild ---- (98ms)
- 2025-1-23 18:28:47 - debug: cocos-service:(onAfterBuild) in 98 ms ✓, progress: 58%
- 2025-1-23 18:28:47 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 58%
- 2025-1-23 18:28:47 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-23 18:28:47 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (47ms)
- 2025-1-23 18:28:47 - debug: adsense-h5g-plugin:(onAfterBuild) in 47 ms ✓, progress: 60%
- 2025-1-23 18:28:47 - log: Asset DB is resume!
- 2025-1-23 18:28:47 - debug: builder:build-project-total (19382ms)
- 2025-1-23 18:28:47 - debug: build success in 19382!
- 2025-1-23 18:28:47 - debug: [Build Memory track]: builder:build-project-total start:173.02MB, end 208.90MB, increase: 35.87MB
- 2025-1-23 18:28:47 - debug: ================================ build Task (web-mobile) Finished in (19 s)ms ================================
- 2025-1-24 15:24:39 - debug: =================================== build Task (web-mobile) Start ================================
- 2025-1-24 15:24:39 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"web-mobile","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"includeModules":{"gfx-webgl2":"on","physics":"inherit-project-setting","physics-2d":"inherit-project-setting"},"macroConfig":{"cleanupImageCache":"inherit-project-setting"}},"nativeCodeBundleMode":"both","polyfills":{"asyncFunctions":true},"experimentalEraseModules":false,"startSceneAssetBundle":false,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"merge_dep","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"web-mobile","taskName":"web-mobile","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":false,"packages":{"adsense-h5g-plugin":{"enableAdsense":false,"enableTestAd":false,"__version__":"1.0.1","AFPHostPropertyCode":"ca-host-pub-5396158963872751","AFPHostDomain":"douyougame.com","otherAFPHostPropertyCode":"","otherAFPDomain":""},"web-mobile":{"useWebGPU":false,"orientation":"auto","embedWebDebugger":false,"__version__":"1.0.1"},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/web-mobile2025-1-22 19-22.log"}
- 2025-1-24 15:24:39 - debug: Build with Cocos Creator 3.8.4
- 2025-1-24 15:24:39 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-24 15:24:39 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-24 15:24:40 - debug: // ---- build task cocos-service:onBeforeBuild ---- (200ms)
- 2025-1-24 15:24:40 - debug: cocos-service:(onBeforeBuild) in 200 ms ✓, progress: 2%
- 2025-1-24 15:24:40 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-24 15:24:40 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-24 15:24:40 - debug: // ---- build task scene:onBeforeBuild ---- (40ms)
- 2025-1-24 15:24:40 - debug: scene:(onBeforeBuild) in 40 ms ✓, progress: 4%
- 2025-1-24 15:24:40 - debug: Start lock asset db..., progress: 4%
- 2025-1-24 15:24:40 - log: Asset DB is paused with build!
- 2025-1-24 15:24:40 - debug: Query all assets info in project
- 2025-1-24 15:24:40 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-24 15:24:40 - debug: web-mobile:(onAfterInit) start..., progress: 4%
- 2025-1-24 15:24:40 - debug: // ---- build task web-mobile:onAfterInit ----
- 2025-1-24 15:24:40 - debug: // ---- build task web-mobile:onAfterInit ---- (21ms)
- 2025-1-24 15:24:40 - debug: web-mobile:(onAfterInit) in 21 ms ✓, progress: 5%
- 2025-1-24 15:24:40 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-24 15:24:40 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-24 15:24:40 - debug: // ---- build task cocos-service:onAfterInit ---- (126ms)
- 2025-1-24 15:24:40 - debug: cocos-service:(onAfterInit) in 126 ms ✓, progress: 7%
- 2025-1-24 15:24:40 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-24 15:24:40 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-24 15:24:40 - debug: // ---- build task engine:onAfterInit ---- (41ms)
- 2025-1-24 15:24:40 - debug: engine:(onAfterInit) in 41 ms ✓, progress: 9%
- 2025-1-24 15:24:40 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-24 15:24:40 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-24 15:24:40 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-24 15:24:40 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (48ms)
- 2025-1-24 15:24:40 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 48 ms ✓, progress: 9%
- 2025-1-24 15:24:40 - debug: Init all bundles start..., progress: 9%
- 2025-1-24 15:24:40 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-24 15:24:40 - debug: web-mobile:(onAfterBundleInit) start..., progress: 9%
- 2025-1-24 15:24:40 - debug: // ---- build task web-mobile:onAfterBundleInit ----
- 2025-1-24 15:24:40 - debug: // ---- build task web-mobile:onAfterBundleInit ---- (76ms)
- 2025-1-24 15:24:40 - debug: web-mobile:(onAfterBundleInit) in 76 ms ✓, progress: 9%
- 2025-1-24 15:24:40 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-24 15:24:40 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-24 15:24:40 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-24 15:24:40 - debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
- 2025-1-24 15:24:40 - debug: Number of all scenes: 3
- 2025-1-24 15:24:40 - debug: Number of all scripts: 128
- 2025-1-24 15:24:40 - debug: Number of other assets: 1204
- 2025-1-24 15:24:40 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-24 15:24:40 - debug: reload all scripts.
- 2025-1-24 15:24:40 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-24 15:24:40 - groupCollapsed: Invalidate all modules
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-24 15:24:40 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-24 15:24:40 - groupEnd: Invalidate all modules
- 2025-1-24 15:24:40 - groupCollapsed: Imports all modules
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3c\3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3c\3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e9\e908646c1435d653de6447e2ae846c959ac29b33.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e9\e908646c1435d653de6447e2ae846c959ac29b33.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e6\e671bb16456ad253c126408d753c04295ea07129.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e6\e671bb16456ad253c126408d753c04295ea07129.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ad9214371678a1d97027b6cf28752dcbab25e0f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ad9214371678a1d97027b6cf28752dcbab25e0f.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f8dff31feda7b51e2d0428361dac48e18834ed8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f8dff31feda7b51e2d0428361dac48e18834ed8.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a62597dd07a24c3714ad095eedbfc8f76f2d165c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a62597dd07a24c3714ad095eedbfc8f76f2d165c.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41d16e1f8113566bf1c111c20aceca9e4a6626d6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41d16e1f8113566bf1c111c20aceca9e4a6626d6.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\87\879eb4b2cb07a55807079158fde54421bac04056.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\87\879eb4b2cb07a55807079158fde54421bac04056.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3975fe5ce64c51324369e49e8afd9c685ef1036d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3975fe5ce64c51324369e49e8afd9c685ef1036d.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d72ce35042ce99e7f64ae289f73e61427ebc5661.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d72ce35042ce99e7f64ae289f73e61427ebc5661.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31f21e9610b2e754c9705fb8b4947b7629eba3ec.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31f21e9610b2e754c9705fb8b4947b7629eba3ec.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register ch_start_pack
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e2\e2c07fd606d93eb79afeed6ef4de521f2be03414.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e2\e2c07fd606d93eb79afeed6ef4de521f2be03414.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c6623815813aae756c57cca6f89a3182c222719.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c6623815813aae756c57cca6f89a3182c222719.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\33\33d6d868e05219070a908e953bde210e54f92e26.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\33\33d6d868e05219070a908e953bde210e54f92e26.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Register ui_updater
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6b\6b45817391fda8032e9c3052f72099ae80b977e5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6b\6b45817391fda8032e9c3052f72099ae80b977e5.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9b4abce15a8c07b4b00096caaa35df726664c0eb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9b4abce15a8c07b4b00096caaa35df726664c0eb.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\51\518c777b9b184349470f0a8548bfc02a3ac13b12.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\51\518c777b9b184349470f0a8548bfc02a3ac13b12.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73c6533bf475cf801676942513edca165a6ed07f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73c6533bf475cf801676942513edca165a6ed07f.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\79\79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\79\79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\bd\bd8a015d9f05319ae091f7383c093a5f26a12133.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\bd\bd8a015d9f05319ae091f7383c093a5f26a12133.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c9\c969313d23703c6a3fcc53d5e71bae664ed7849e.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c9\c969313d23703c6a3fcc53d5e71bae664ed7849e.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\53\5355f477731c1aa517e29e27c45ac35bf99fe727.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\53\5355f477731c1aa517e29e27c45ac35bf99fe727.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8ea009be5644c7164c4b5ae51cd349e5525e465.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8ea009be5644c7164c4b5ae51cd349e5525e465.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4e\4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4e\4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\17\1787d8e2147a43214097b7b6fea81022fa7297b5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\17\1787d8e2147a43214097b7b6fea81022fa7297b5.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f780142056b451af1186d982a8e16130bfd276a2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f780142056b451af1186d982a8e16130bfd276a2.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b6\b601769373047d5119da5c4cb4b3a4bba6a651af.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b6\b601769373047d5119da5c4cb4b3a4bba6a651af.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69708f163aeb7f1d3d93c5d9454dca6576ef2581.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69708f163aeb7f1d3d93c5d9454dca6576ef2581.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\81\815a8e3b66559b0d1265c7b789166062c8861bd5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\81\815a8e3b66559b0d1265c7b789166062c8861bd5.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cf\cf9c45e29398b29856527964dd8d734c5d4fdec4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cf\cf9c45e29398b29856527964dd8d734c5d4fdec4.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e81d067c8870d70331d8b9656a976c1f558e5de.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e81d067c8870d70331d8b9656a976c1f558e5de.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\df\df48ec67964f126550b0d5d71bec2b4cfc027d50.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\df\df48ec67964f126550b0d5d71bec2b4cfc027d50.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e08485787ba9b2ad7c98e435102c966d3f5c64ae.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e08485787ba9b2ad7c98e435102c966d3f5c64ae.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\74\7404a8ee135932a387eac99bfb33951576fe8b67.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\74\7404a8ee135932a387eac99bfb33951576fe8b67.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f91b0c989c2a479c1da04fdb508bd586eba443c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f91b0c989c2a479c1da04fdb508bd586eba443c.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34df8999c17a8450e101699bd789ccbd57ce24ce.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34df8999c17a8450e101699bd789ccbd57ce24ce.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d5\d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d5\d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\3166d186d5cd2eca604e02fdebeb727752294da4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\3166d186d5cd2eca604e02fdebeb727752294da4.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a8\a89b293907eed8bf35922b74df584b59608173f2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a8\a89b293907eed8bf35922b74df584b59608173f2.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\5908d1524fdbf33b63c9c924078b09b63cc7fc89.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\5908d1524fdbf33b63c9c924078b09b63cc7fc89.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\12\122ae41024fa99aa4949a176919256851ded60b7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\12\122ae41024fa99aa4949a176919256851ded60b7.js is not in module cache!
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register ListItem
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-24 15:24:40 - debug: [[Executor]] Register List
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\71\71b930d6142312f684efd1718dfcd7bfd1e95eaa.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\71\71b930d6142312f684efd1718dfcd7bfd1e95eaa.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register MotionTrail
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register MovieClip
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb13e961bcd8d7069545036fc45d02908c0eee94.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb13e961bcd8d7069545036fc45d02908c0eee94.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register RewardFly
- 2025-1-24 15:24:40 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-24 15:24:40 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\20\20712297188dd3bbe9fb3acc1799edea45dda86b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\20\20712297188dd3bbe9fb3acc1799edea45dda86b.js is not in module cache!
- 2025-1-24 15:24:40 - debug: [[Executor]] Register SpineView
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UISpineMovie
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\974d5e18287f52413bf4aef79e6b1b43e2db1119.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\974d5e18287f52413bf4aef79e6b1b43e2db1119.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b7\b71ec6998eef381fede6b5fd1614855829fc2f22.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b7\b71ec6998eef381fede6b5fd1614855829fc2f22.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\13\137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\13\137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7a\7a060cba1d5a032475d6578a562fb8df8171eb0b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7a\7a060cba1d5a032475d6578a562fb8df8171eb0b.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c307a58b694cc824581802a8099e6d62860adb91.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c307a58b694cc824581802a8099e6d62860adb91.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d6b2307e211bf7d71fb96955f3a221662b8b975.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d6b2307e211bf7d71fb96955f3a221662b8b975.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09a6fd4930dfcb5968a1b01550a6275640cfa703.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09a6fd4930dfcb5968a1b01550a6275640cfa703.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\82\82914e241315735457587bc37563ed7db8183cd0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\82\82914e241315735457587bc37563ed7db8183cd0.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_idiom
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5c49ac26bc7b811c9d08fcff5242440f88d29d17.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5c49ac26bc7b811c9d08fcff5242440f88d29d17.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_idiom_order
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c4\c4f98bd93a546a52de77fc64f647d47575afdfde.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c4\c4f98bd93a546a52de77fc64f647d47575afdfde.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_idiom_unorder_1_3
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\084428b3dfc28ebcd60f1249169098df9f4287da.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\084428b3dfc28ebcd60f1249169098df9f4287da.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_idiom_unorder_2_2
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_idiom_unorder_3_1
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_level
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a30868ce54a6c8efe10f298b9b16214ac85c863.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a30868ce54a6c8efe10f298b9b16214ac85c863.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_level_2
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0e\0e87907262cdfe9bb04b67b17e1eca1e38126d79.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0e\0e87907262cdfe9bb04b67b17e1eca1e38126d79.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_store
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\505b34a78c0dbfe58195107ebd90b3bc5807bf10.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\505b34a78c0dbfe58195107ebd90b3bc5807bf10.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register table_task
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c28f184f0d05e5d5976de9f0de294b88d5de4347.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c28f184f0d05e5d5976de9f0de294b88d5de4347.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\78\789715a9ff1e6669695bc6f37f849347673e7936.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\78\789715a9ff1e6669695bc6f37f849347673e7936.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a4102a464059398e43bc26dd3fe1faf79989cb3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a4102a464059398e43bc26dd3fe1faf79989cb3.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f0\f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f0\f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2c\2cb4568cc17fc880801c649b7e09213445038932.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2c\2cb4568cc17fc880801c649b7e09213445038932.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\46\4669e191907a2a708fa7ba923dc04da98435f165.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\46\4669e191907a2a708fa7ba923dc04da98435f165.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d4\d4808bb291a6c1906241b46a992fa068602b87c7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d4\d4808bb291a6c1906241b46a992fa068602b87c7.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a163e5eb12e84fcff92e09679473d95caa7ce42.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a163e5eb12e84fcff92e09679473d95caa7ce42.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ef\ef2d221df54a2db9265b17ea24ca2a0b327d2619.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ef\ef2d221df54a2db9265b17ea24ca2a0b327d2619.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\92\9223b50b0b25e34c00abbd1136311e176203d399.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\92\9223b50b0b25e34c00abbd1136311e176203d399.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4f\4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4f\4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d7e3424c179d135dc59489a147ede15a8748562.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d7e3424c179d135dc59489a147ede15a8748562.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b9\b968f7f08649c00a45a730a74c55b98d374e1ea3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b9\b968f7f08649c00a45a730a74c55b98d374e1ea3.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b62ba828bd2568fd07a8c27879bd9e102538148.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b62ba828bd2568fd07a8c27879bd9e102538148.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73e6dc2a8fc59081071dcebb82927640ef5a7f21.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73e6dc2a8fc59081071dcebb82927640ef5a7f21.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c1\c10bd777343c22d44996eae3d1e908c1e444e54c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c1\c10bd777343c22d44996eae3d1e908c1e444e54c.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a0\a0c4f651e5297607ee62681e54a78e7903383828.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a0\a0c4f651e5297607ee62681e54a78e7903383828.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3a\3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3a\3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\fd\fd567b6cff2bda101ea5067e96a8431f92b55a12.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\fd\fd567b6cff2bda101ea5067e96a8431f92b55a12.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\76\76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\76\76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caf1f57c4e93834ff6792756f81ca4dda67117d5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caf1f57c4e93834ff6792756f81ca4dda67117d5.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7e\7e7ab0c417629d8b4decc7970b158f69484ca3a0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7e\7e7ab0c417629d8b4decc7970b158f69484ca3a0.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa522899127047b80d0893406f275d7a7aa74d2c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa522899127047b80d0893406f275d7a7aa74d2c.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\30\30148fb61fef14f86e2cda463a167887dbf8cde4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\30\30148fb61fef14f86e2cda463a167887dbf8cde4.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a5\a59d8099545685d191f1183a0f3bc7f3602b80cf.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a5\a59d8099545685d191f1183a0f3bc7f3602b80cf.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41297756668c0510f828032e1d12f96a4d1a9194.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41297756668c0510f828032e1d12f96a4d1a9194.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\64\648fcac29cbf9485ceab7e7d1359724ae2b1b196.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\64\648fcac29cbf9485ceab7e7d1359724ae2b1b196.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\96\96e2fcee174623dab28594a5fc60dc89148d32de.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\96\96e2fcee174623dab28594a5fc60dc89148d32de.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4a\4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4a\4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e8565b65da4744bcef3d3da0a471e3f78c932ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e8565b65da4744bcef3d3da0a471e3f78c932ab.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47c8e77781a159f10d589db5916314688580bc33.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47c8e77781a159f10d589db5916314688580bc33.js is not in module cache!
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_GameRules
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Idiom
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Idioms
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Settings
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Tips
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Hall
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Rank
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Rank
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Sign_Reward
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Sign
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Sign
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Invite
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Invite
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Store
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Store
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Start
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_SideBar
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Task
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Task
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Hall
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Tips
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Settings
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Win
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Win
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Main
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Fail
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Fail
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Main
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Hall
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Cube_Infor
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register CreateIdiom
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Layout_Lock
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Lock
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register GameCtl
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Register Container_Manager
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Register UI_Item
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-24 15:24:41 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\83\8346f1745fc6cfca5a9df831ccc439dc13140cfb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\83\8346f1745fc6cfca5a9df831ccc439dc13140cfb.js is not in module cache!
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js" loaded.
- 2025-1-24 15:24:41 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-24 15:24:41 - groupEnd: Imports all modules
- 2025-1-24 15:24:41 - debug: Incremental keys: chSdk,chsdk
- 2025-1-24 15:24:41 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-24 15:24:41 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-24 15:24:41 - debug: handle json group in bundle internal
- 2025-1-24 15:24:41 - debug: handle json group in bundle internal success
- 2025-1-24 15:24:41 - debug: handle json group in bundle resources
- 2025-1-24 15:24:41 - debug: handle json group in bundle main
- 2025-1-24 15:24:41 - debug: handle json group in bundle module_extra
- 2025-1-24 15:24:41 - debug: handle json group in bundle module_basic
- 2025-1-24 15:24:41 - debug: handle json group in bundle module_game
- 2025-1-24 15:24:41 - debug: init image compress task 0 in bundle internal
- 2025-1-24 15:24:41 - debug: handle json group in bundle resources success
- 2025-1-24 15:24:41 - debug: init image compress task 0 in bundle resources
- 2025-1-24 15:24:41 - debug: handle json group in bundle module_basic success
- 2025-1-24 15:24:41 - debug: init image compress task 0 in bundle module_basic
- 2025-1-24 15:24:41 - debug: handle json group in bundle module_extra success
- 2025-1-24 15:24:41 - debug: init image compress task 0 in bundle module_extra
- 2025-1-24 15:24:41 - debug: handle json group in bundle main success
- 2025-1-24 15:24:41 - debug: init image compress task 0 in bundle main
- 2025-1-24 15:24:41 - debug: handle json group in bundle module_game success
- 2025-1-24 15:24:41 - debug: init image compress task 0 in bundle module_game
- 2025-1-24 15:24:41 - debug: // ---- build task 查询 Asset Bundle ---- (601ms)
- 2025-1-24 15:24:41 - debug: run build task 查询 Asset Bundle success in 601 ms√, progress: 14%
- 2025-1-24 15:24:41 - debug: [Build Memory track]: 查询 Asset Bundle start:168.05MB, end 199.58MB, increase: 31.53MB
- 2025-1-24 15:24:41 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-24 15:24:41 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-24 15:24:41 - debug: // ---- build task 查询 Asset Bundle ---- (59ms)
- 2025-1-24 15:24:41 - debug: run build task 查询 Asset Bundle success in 59 ms√, progress: 19%
- 2025-1-24 15:24:41 - debug: [Build Memory track]: 查询 Asset Bundle start:199.62MB, end 199.96MB, increase: 350.89KB
- 2025-1-24 15:24:41 - debug: 打包脚本 start, progress: 19%
- 2025-1-24 15:24:41 - debug: // ---- build task 打包脚本 ----
- 2025-1-24 15:24:41 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:24:41 - log: [build-script]enter sub process 1472, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
- 2025-1-24 15:24:45 - debug: excute-script over with build-script 3884ms
- 2025-1-24 15:24:45 - debug: Generate systemJs..., progress: 19%
- 2025-1-24 15:24:45 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:24:48 - debug: excute-script over with build-script 3602ms
- 2025-1-24 15:24:48 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-24 15:24:48 - debug: Build script in bundle start, progress: 19%
- 2025-1-24 15:24:48 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:24:53 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
- 2025-1-24 15:24:53 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
- 2025-1-24 15:24:56 - debug: excute-script over with build-script 8048ms
- 2025-1-24 15:24:56 - debug: Copy externalScripts success!
- 2025-1-24 15:24:56 - debug: Build script in bundle success, progress: 19%
- 2025-1-24 15:24:56 - debug: 构建项目脚本 in (8160 ms) √, progress: 19%
- 2025-1-24 15:24:56 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-24 15:24:57 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\eb86d1cb887caa950b2345052eaff7db)}
- 2025-1-24 15:24:57 - debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","gfx-webgl2","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"HTML5","useCache":true,"nativeCodeBundleMode":"both","wasmCompressionMode":false,"split":false,"assetURLFormat":"runtime-resolved","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\web-mobile\\cocos-js","flags":{"DEBUG":false,"WEBGPU":false},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-24 15:24:57 - debug: 构建引擎脚本 in (262 ms) √, progress: 19%
- 2025-1-24 15:24:57 - debug: Copy plugin script ..., progress: 19%
- 2025-1-24 15:24:57 - debug: Generate import-map..., progress: 19%
- 2025-1-24 15:24:57 - debug: // ---- build task 打包脚本 ---- (15994ms)
- 2025-1-24 15:24:57 - debug: run build task 打包脚本 success in 15 s√, progress: 24%
- 2025-1-24 15:24:57 - debug: [Build Memory track]: 打包脚本 start:200.14MB, end 196.25MB, increase: -3977.67KB
- 2025-1-24 15:24:57 - debug: Build Assets start, progress: 24%
- 2025-1-24 15:24:57 - debug: // ---- build task Build Assets ----
- 2025-1-24 15:24:57 - debug: Build bundles..., progress: 24%
- 2025-1-24 15:24:57 - debug: Pack Images start, progress: 24%
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-24 15:24:58 - debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-24 15:24:58 - debug(2): remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-24 15:24:58 - debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-24 15:24:58 - debug(2): remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-24 15:24:58 - debug: builder:pack-auto-atlas-image (1204ms)
- 2025-1-24 15:24:58 - debug: Pack Images success, progress: 24%
- 2025-1-24 15:24:58 - debug: Compress image start..., progress: 24%
- 2025-1-24 15:24:58 - group: Compress image...
- 2025-1-24 15:24:58 - debug: sort compress task {}
- 2025-1-24 15:24:58 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-24 15:24:58 - debug: No image need to compress
- 2025-1-24 15:24:58 - groupEnd: Compress image...
- 2025-1-24 15:24:58 - debug: Compress image success..., progress: 24%
- 2025-1-24 15:24:58 - debug: Output asset in bundles start, progress: 24%
- 2025-1-24 15:24:58 - debug: Handle all json groups in bundle internal
- 2025-1-24 15:24:58 - debug: handle json group
- 2025-1-24 15:24:58 - debug: Handle all json groups in bundle resources
- 2025-1-24 15:24:58 - debug: handle json group
- 2025-1-24 15:24:58 - debug: Handle all json groups in bundle main
- 2025-1-24 15:24:58 - debug: handle json group
- 2025-1-24 15:24:58 - debug: Handle all json groups in bundle module_extra
- 2025-1-24 15:24:58 - debug: handle json group
- 2025-1-24 15:24:58 - debug: handle single json
- 2025-1-24 15:24:58 - debug: Handle all json groups in bundle module_basic
- 2025-1-24 15:24:58 - debug: handle json group
- 2025-1-24 15:24:58 - debug: Handle all json groups in bundle module_game
- 2025-1-24 15:24:58 - debug: handle json group
- 2025-1-24 15:24:58 - debug: Json group(03ccd410a) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: handle single json
- 2025-1-24 15:24:58 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: handle single json
- 2025-1-24 15:24:58 - debug: Json group(0119562e1) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0e251093b) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: handle single json
- 2025-1-24 15:24:58 - debug: Json group(02318630c) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: handle single json
- 2025-1-24 15:24:58 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(078a3a89c) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(041ac2e1c) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(04a6d010d) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(097e5daf7) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0816c2a7a) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0a46ee258) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(033a6699b) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-24 15:24:58 - debug: handle single json
- 2025-1-24 15:24:59 - debug: Output asset in bundles success, progress: 24%
- 2025-1-24 15:24:59 - debug: Output asset in bundles start, progress: 24%
- 2025-1-24 15:24:59 - debug: compress config of bundle internal...
- 2025-1-24 15:24:59 - debug: compress config of bundle internal success
- 2025-1-24 15:24:59 - debug: compress config of bundle resources...
- 2025-1-24 15:24:59 - debug: compress config of bundle resources success
- 2025-1-24 15:24:59 - debug: compress config of bundle main...
- 2025-1-24 15:24:59 - debug: compress config of bundle main success
- 2025-1-24 15:24:59 - debug: compress config of bundle module_extra...
- 2025-1-24 15:24:59 - debug: compress config of bundle module_extra success
- 2025-1-24 15:24:59 - debug: compress config of bundle module_basic...
- 2025-1-24 15:24:59 - debug: compress config of bundle module_basic success
- 2025-1-24 15:24:59 - debug: compress config of bundle module_game...
- 2025-1-24 15:24:59 - debug: compress config of bundle module_game success
- 2025-1-24 15:24:59 - debug: output config of bundle internal
- 2025-1-24 15:24:59 - debug: output config of bundle internal success
- 2025-1-24 15:24:59 - debug: output config of bundle resources
- 2025-1-24 15:24:59 - debug: output config of bundle resources success
- 2025-1-24 15:24:59 - debug: output config of bundle main
- 2025-1-24 15:24:59 - debug: output config of bundle main success
- 2025-1-24 15:24:59 - debug: output config of bundle module_extra
- 2025-1-24 15:24:59 - debug: output config of bundle module_extra success
- 2025-1-24 15:24:59 - debug: output config of bundle module_basic
- 2025-1-24 15:24:59 - debug: output config of bundle module_basic success
- 2025-1-24 15:24:59 - debug: output config of bundle module_game
- 2025-1-24 15:24:59 - debug: output config of bundle module_game success
- 2025-1-24 15:24:59 - debug: Output asset in bundles success, progress: 24%
- 2025-1-24 15:24:59 - debug: // ---- build task Build Assets ---- (1877ms)
- 2025-1-24 15:24:59 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-24 15:24:59 - debug: [Build Memory track]: Build Assets start:196.29MB, end 201.99MB, increase: 5.70MB
- 2025-1-24 15:24:59 - debug: 整理部分构建选项内数据到 settings.json start, progress: 29%
- 2025-1-24 15:24:59 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-24 15:24:59 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (52ms)
- 2025-1-24 15:24:59 - debug: run build task 整理部分构建选项内数据到 settings.json success in 52 ms√, progress: 31%
- 2025-1-24 15:24:59 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:202.08MB, end 202.21MB, increase: 128.79KB
- 2025-1-24 15:24:59 - debug: 填充脚本数据到 settings.json start, progress: 31%
- 2025-1-24 15:24:59 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-24 15:24:59 - debug: // ---- build task 填充脚本数据到 settings.json ---- (46ms)
- 2025-1-24 15:24:59 - debug: run build task 填充脚本数据到 settings.json success in 46 ms√, progress: 32%
- 2025-1-24 15:24:59 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:202.24MB, end 202.37MB, increase: 126.79KB
- 2025-1-24 15:24:59 - debug: 整理部分构建选项内数据到 settings.json start, progress: 32%
- 2025-1-24 15:24:59 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-24 15:24:59 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (67ms)
- 2025-1-24 15:24:59 - debug: run build task 整理部分构建选项内数据到 settings.json success in 67 ms√, progress: 34%
- 2025-1-24 15:24:59 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:202.40MB, end 202.66MB, increase: 258.90KB
- 2025-1-24 15:24:59 - debug: web-mobile:(onBeforeCompressSettings) start..., progress: 34%
- 2025-1-24 15:24:59 - debug: // ---- build task web-mobile:onBeforeCompressSettings ----
- 2025-1-24 15:24:59 - debug: // ---- build task web-mobile:onBeforeCompressSettings ---- (68ms)
- 2025-1-24 15:24:59 - debug: web-mobile:(onBeforeCompressSettings) in 68 ms ✓, progress: 36%
- 2025-1-24 15:24:59 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-24 15:24:59 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-24 15:24:59 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (189ms)
- 2025-1-24 15:24:59 - debug: cocos-service:(onBeforeCompressSettings) in 189 ms ✓, progress: 38%
- 2025-1-24 15:24:59 - debug: 整理静态模板文件 start, progress: 38%
- 2025-1-24 15:24:59 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-24 15:24:59 - debug: // ---- build task 整理静态模板文件 ---- (166ms)
- 2025-1-24 15:24:59 - debug: run build task 整理静态模板文件 success in 166 ms√, progress: 43%
- 2025-1-24 15:24:59 - debug: [Build Memory track]: 整理静态模板文件 start:203.07MB, end 205.69MB, increase: 2.62MB
- 2025-1-24 15:24:59 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 43%
- 2025-1-24 15:24:59 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-24 15:24:59 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (91ms)
- 2025-1-24 15:24:59 - debug: cocos-service:(onAfterCompressSettings) in 91 ms ✓, progress: 45%
- 2025-1-24 15:24:59 - debug: web-mobile:(onBeforeCopyBuildTemplate) start..., progress: 45%
- 2025-1-24 15:24:59 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ----
- 2025-1-24 15:25:00 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ---- (145ms)
- 2025-1-24 15:25:00 - debug: web-mobile:(onBeforeCopyBuildTemplate) in 145 ms ✓, progress: 46%
- 2025-1-24 15:25:00 - debug: 给所有的资源加上 MD5 后缀 start, progress: 46%
- 2025-1-24 15:25:00 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-24 15:25:00 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (65ms)
- 2025-1-24 15:25:00 - debug: run build task 给所有的资源加上 MD5 后缀 success in 65 ms√, progress: 56%
- 2025-1-24 15:25:00 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:208.69MB, end 204.30MB, increase: -4488.15KB
- 2025-1-24 15:25:00 - debug: cocos-service:(onAfterBuild) start..., progress: 56%
- 2025-1-24 15:25:00 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-24 15:25:00 - debug: // ---- build task cocos-service:onAfterBuild ---- (213ms)
- 2025-1-24 15:25:00 - debug: cocos-service:(onAfterBuild) in 213 ms ✓, progress: 58%
- 2025-1-24 15:25:00 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 58%
- 2025-1-24 15:25:00 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-24 15:25:00 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (40ms)
- 2025-1-24 15:25:00 - debug: adsense-h5g-plugin:(onAfterBuild) in 40 ms ✓, progress: 60%
- 2025-1-24 15:25:00 - log: Asset DB is resume!
- 2025-1-24 15:25:00 - debug: builder:build-project-total (20445ms)
- 2025-1-24 15:25:00 - debug: build success in 20445!
- 2025-1-24 15:25:00 - debug: [Build Memory track]: builder:build-project-total start:167.59MB, end 206.52MB, increase: 38.94MB
- 2025-1-24 15:25:00 - debug: ================================ build Task (web-mobile) Finished in (20 s)ms ================================
- 2025-1-24 15:29:32 - debug: =================================== build Task (web-mobile) Start ================================
- 2025-1-24 15:29:32 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"web-mobile","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"includeModules":{"gfx-webgl2":"on","physics":"inherit-project-setting","physics-2d":"inherit-project-setting"},"macroConfig":{"cleanupImageCache":"inherit-project-setting"}},"nativeCodeBundleMode":"both","polyfills":{"asyncFunctions":true},"experimentalEraseModules":false,"startSceneAssetBundle":false,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"merge_dep","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"web-mobile","taskName":"web-mobile","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":false,"packages":{"adsense-h5g-plugin":{"enableAdsense":false,"enableTestAd":false,"__version__":"1.0.1","AFPHostPropertyCode":"ca-host-pub-5396158963872751","AFPHostDomain":"douyougame.com","otherAFPHostPropertyCode":"","otherAFPDomain":""},"web-mobile":{"useWebGPU":false,"orientation":"auto","embedWebDebugger":false,"__version__":"1.0.1"},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/web-mobile2025-1-22 19-22.log"}
- 2025-1-24 15:29:32 - debug: Build with Cocos Creator 3.8.4
- 2025-1-24 15:29:32 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-24 15:29:32 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-24 15:29:33 - debug: // ---- build task cocos-service:onBeforeBuild ---- (139ms)
- 2025-1-24 15:29:33 - debug: cocos-service:(onBeforeBuild) in 139 ms ✓, progress: 2%
- 2025-1-24 15:29:33 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-24 15:29:33 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-24 15:29:33 - debug: // ---- build task scene:onBeforeBuild ---- (38ms)
- 2025-1-24 15:29:33 - debug: scene:(onBeforeBuild) in 38 ms ✓, progress: 4%
- 2025-1-24 15:29:33 - debug: Start lock asset db..., progress: 4%
- 2025-1-24 15:29:33 - log: Asset DB is paused with build!
- 2025-1-24 15:29:33 - debug: Query all assets info in project
- 2025-1-24 15:29:33 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-24 15:29:33 - debug: web-mobile:(onAfterInit) start..., progress: 4%
- 2025-1-24 15:29:33 - debug: // ---- build task web-mobile:onAfterInit ----
- 2025-1-24 15:29:33 - debug: // ---- build task web-mobile:onAfterInit ---- (21ms)
- 2025-1-24 15:29:33 - debug: web-mobile:(onAfterInit) in 21 ms ✓, progress: 5%
- 2025-1-24 15:29:33 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-24 15:29:33 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-24 15:29:33 - debug: // ---- build task cocos-service:onAfterInit ---- (144ms)
- 2025-1-24 15:29:33 - debug: cocos-service:(onAfterInit) in 144 ms ✓, progress: 7%
- 2025-1-24 15:29:33 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-24 15:29:33 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-24 15:29:33 - debug: // ---- build task engine:onAfterInit ---- (37ms)
- 2025-1-24 15:29:33 - debug: engine:(onAfterInit) in 37 ms ✓, progress: 9%
- 2025-1-24 15:29:33 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-24 15:29:33 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-24 15:29:33 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-24 15:29:33 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (73ms)
- 2025-1-24 15:29:33 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 73 ms ✓, progress: 9%
- 2025-1-24 15:29:33 - debug: Init all bundles start..., progress: 9%
- 2025-1-24 15:29:33 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-24 15:29:33 - debug: web-mobile:(onAfterBundleInit) start..., progress: 9%
- 2025-1-24 15:29:33 - debug: // ---- build task web-mobile:onAfterBundleInit ----
- 2025-1-24 15:29:33 - debug: // ---- build task web-mobile:onAfterBundleInit ---- (68ms)
- 2025-1-24 15:29:33 - debug: web-mobile:(onAfterBundleInit) in 68 ms ✓, progress: 9%
- 2025-1-24 15:29:33 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-24 15:29:33 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-24 15:29:33 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-24 15:29:33 - debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
- 2025-1-24 15:29:33 - debug: Number of all scenes: 3
- 2025-1-24 15:29:33 - debug: Number of all scripts: 128
- 2025-1-24 15:29:33 - debug: Number of other assets: 1204
- 2025-1-24 15:29:33 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-24 15:29:33 - debug: reload all scripts.
- 2025-1-24 15:29:33 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-24 15:29:33 - groupCollapsed: Invalidate all modules
- 2025-1-24 15:29:33 - debug: Unregister BuiltinPipelineSettings
- 2025-1-24 15:29:33 - debug: Unregister DebugViewRuntimeControl
- 2025-1-24 15:29:33 - debug: Unregister ch_sdk_comp
- 2025-1-24 15:29:33 - debug: Unregister ch_start_pack
- 2025-1-24 15:29:33 - debug: Unregister __NodeEventAgent__
- 2025-1-24 15:29:33 - debug: Unregister ResolutionAutoFit
- 2025-1-24 15:29:33 - debug: Unregister ui_updater
- 2025-1-24 15:29:33 - debug: Unregister ClickPenetrate
- 2025-1-24 15:29:33 - debug: Unregister ListItem
- 2025-1-24 15:29:33 - debug: Unregister List
- 2025-1-24 15:29:33 - debug: Unregister MotionTrail
- 2025-1-24 15:29:33 - debug: Unregister MovieClip
- 2025-1-24 15:29:33 - debug: Unregister RewardFly
- 2025-1-24 15:29:33 - debug: Unregister SpineView
- 2025-1-24 15:29:33 - debug: Unregister UISpineMovie
- 2025-1-24 15:29:33 - debug: Unregister Layout_UIAlert
- 2025-1-24 15:29:33 - debug: Unregister Layout_UI_Notify
- 2025-1-24 15:29:33 - debug: Unregister Layout_UIWaiting
- 2025-1-24 15:29:33 - debug: Unregister table_idiom
- 2025-1-24 15:29:33 - debug: Unregister table_idiom_order
- 2025-1-24 15:29:33 - debug: Unregister table_idiom_unorder_1_3
- 2025-1-24 15:29:33 - debug: Unregister table_idiom_unorder_2_2
- 2025-1-24 15:29:33 - debug: Unregister table_idiom_unorder_3_1
- 2025-1-24 15:29:33 - debug: Unregister table_level
- 2025-1-24 15:29:33 - debug: Unregister table_level_2
- 2025-1-24 15:29:33 - debug: Unregister table_store
- 2025-1-24 15:29:33 - debug: Unregister table_task
- 2025-1-24 15:29:33 - debug: Unregister Layout_GameRules
- 2025-1-24 15:29:33 - debug: Unregister UI_GameRules
- 2025-1-24 15:29:33 - debug: Unregister UI_Idiom
- 2025-1-24 15:29:33 - debug: Unregister Layout_Idioms
- 2025-1-24 15:29:33 - debug: Unregister UI_Idioms
- 2025-1-24 15:29:33 - debug: Unregister Layout_Settings
- 2025-1-24 15:29:33 - debug: Unregister Layout_Tips
- 2025-1-24 15:29:33 - debug: Unregister Layout_Hall
- 2025-1-24 15:29:33 - debug: Unregister UI_Head_Icon
- 2025-1-24 15:29:33 - debug: Unregister UI_Rank_Item
- 2025-1-24 15:29:33 - debug: Unregister Layout_Rank
- 2025-1-24 15:29:33 - debug: Unregister UI_Rank
- 2025-1-24 15:29:33 - debug: Unregister Sign_Reward
- 2025-1-24 15:29:33 - debug: Unregister Layout_Sign
- 2025-1-24 15:29:33 - debug: Unregister UI_Sign
- 2025-1-24 15:29:33 - debug: Unregister Layout_Invite
- 2025-1-24 15:29:33 - debug: Unregister UI_Invite
- 2025-1-24 15:29:33 - debug: Unregister Layout_Store
- 2025-1-24 15:29:33 - debug: Unregister UI_Store
- 2025-1-24 15:29:33 - debug: Unregister Layout_SideBar
- 2025-1-24 15:29:33 - debug: Unregister Start
- 2025-1-24 15:29:33 - debug: Unregister UI_SideBar
- 2025-1-24 15:29:33 - debug: Unregister UI_Task_Item
- 2025-1-24 15:29:33 - debug: Unregister Layout_Task
- 2025-1-24 15:29:33 - debug: Unregister UI_Task
- 2025-1-24 15:29:33 - debug: Unregister UI_Hall
- 2025-1-24 15:29:33 - debug: Unregister UI_Tips
- 2025-1-24 15:29:33 - debug: Unregister UI_Settings
- 2025-1-24 15:29:33 - debug: Unregister Layout_Win
- 2025-1-24 15:29:33 - debug: Unregister UI_Win
- 2025-1-24 15:29:33 - debug: Unregister Layout_Main
- 2025-1-24 15:29:33 - debug: Unregister Layout_TimesOver
- 2025-1-24 15:29:33 - debug: Unregister Layout_Fail
- 2025-1-24 15:29:33 - debug: Unregister UI_Fail
- 2025-1-24 15:29:33 - debug: Unregister UI_TimesOver
- 2025-1-24 15:29:33 - debug: Unregister UI_Main
- 2025-1-24 15:29:33 - debug: Unregister Hall
- 2025-1-24 15:29:33 - debug: Unregister Cube_Infor
- 2025-1-24 15:29:33 - debug: Unregister CreateIdiom
- 2025-1-24 15:29:33 - debug: Unregister Layout_LatticeFull
- 2025-1-24 15:29:33 - debug: Unregister UI_LatticeFull
- 2025-1-24 15:29:33 - debug: Unregister Layout_Lock
- 2025-1-24 15:29:33 - debug: Unregister UI_Lock
- 2025-1-24 15:29:33 - debug: Unregister GameCtl
- 2025-1-24 15:29:33 - debug: Unregister Container_Manager
- 2025-1-24 15:29:33 - debug: Unregister UI_Item
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
- 2025-1-24 15:29:33 - debug: Invalidating 'pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js'
- 2025-1-24 15:29:33 - groupEnd: Invalidate all modules
- 2025-1-24 15:29:33 - groupCollapsed: Imports all modules
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-24 15:29:33 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register ch_start_pack
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register ui_updater
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register ListItem
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register List
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register MotionTrail
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register MovieClip
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register RewardFly
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register SpineView
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UISpineMovie
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_idiom
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_idiom_order
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_idiom_unorder_1_3
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_idiom_unorder_2_2
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_idiom_unorder_3_1
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_level
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_level_2
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_store
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register table_task
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js" loaded.
- 2025-1-24 15:29:33 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js is not in module cache!
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_GameRules
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Idiom
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Idioms
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Settings
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Tips
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Hall
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Rank
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Rank
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Sign_Reward
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Sign
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Sign
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Invite
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Invite
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Store
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Store
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Start
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_SideBar
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Task
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Task
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Hall
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Tips
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Settings
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Win
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Win
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Main
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Fail
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Fail
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Main
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Hall
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Cube_Infor
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register CreateIdiom
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Layout_Lock
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Lock
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register GameCtl
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register Container_Manager
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Register UI_Item
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js" loaded.
- 2025-1-24 15:29:33 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-24 15:29:33 - groupEnd: Imports all modules
- 2025-1-24 15:29:33 - debug: Incremental keys: chSdk,chsdk
- 2025-1-24 15:29:33 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-24 15:29:33 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-24 15:29:33 - debug: handle json group in bundle internal
- 2025-1-24 15:29:33 - debug: handle json group in bundle internal success
- 2025-1-24 15:29:33 - debug: handle json group in bundle resources
- 2025-1-24 15:29:33 - debug: handle json group in bundle main
- 2025-1-24 15:29:33 - debug: handle json group in bundle module_extra
- 2025-1-24 15:29:33 - debug: handle json group in bundle module_basic
- 2025-1-24 15:29:33 - debug: handle json group in bundle module_game
- 2025-1-24 15:29:33 - debug: init image compress task 0 in bundle internal
- 2025-1-24 15:29:33 - debug: handle json group in bundle resources success
- 2025-1-24 15:29:33 - debug: init image compress task 0 in bundle resources
- 2025-1-24 15:29:33 - debug: handle json group in bundle module_basic success
- 2025-1-24 15:29:33 - debug: init image compress task 0 in bundle module_basic
- 2025-1-24 15:29:33 - debug: handle json group in bundle module_extra success
- 2025-1-24 15:29:33 - debug: init image compress task 0 in bundle module_extra
- 2025-1-24 15:29:33 - debug: handle json group in bundle main success
- 2025-1-24 15:29:33 - debug: init image compress task 0 in bundle main
- 2025-1-24 15:29:33 - debug: handle json group in bundle module_game success
- 2025-1-24 15:29:33 - debug: init image compress task 0 in bundle module_game
- 2025-1-24 15:29:33 - debug: // ---- build task 查询 Asset Bundle ---- (329ms)
- 2025-1-24 15:29:33 - debug: run build task 查询 Asset Bundle success in 329 ms√, progress: 14%
- 2025-1-24 15:29:33 - debug: [Build Memory track]: 查询 Asset Bundle start:217.77MB, end 219.62MB, increase: 1.86MB
- 2025-1-24 15:29:33 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-24 15:29:33 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-24 15:29:34 - debug: // ---- build task 查询 Asset Bundle ---- (167ms)
- 2025-1-24 15:29:34 - debug: run build task 查询 Asset Bundle success in 167 ms√, progress: 19%
- 2025-1-24 15:29:34 - debug: [Build Memory track]: 查询 Asset Bundle start:219.66MB, end 220.19MB, increase: 539.35KB
- 2025-1-24 15:29:34 - debug: 打包脚本 start, progress: 19%
- 2025-1-24 15:29:34 - debug: // ---- build task 打包脚本 ----
- 2025-1-24 15:29:34 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:29:34 - log: [build-script]enter sub process 25364, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
- 2025-1-24 15:29:37 - debug: excute-script over with build-script 3511ms
- 2025-1-24 15:29:37 - debug: Generate systemJs..., progress: 19%
- 2025-1-24 15:29:37 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:29:40 - debug: excute-script over with build-script 2458ms
- 2025-1-24 15:29:40 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-24 15:29:40 - debug: Build script in bundle start, progress: 19%
- 2025-1-24 15:29:40 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:29:44 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
- 2025-1-24 15:29:44 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
- 2025-1-24 15:29:48 - debug: excute-script over with build-script 8041ms
- 2025-1-24 15:29:48 - debug: Copy externalScripts success!
- 2025-1-24 15:29:48 - debug: Build script in bundle success, progress: 19%
- 2025-1-24 15:29:48 - debug: 构建项目脚本 in (8128 ms) √, progress: 19%
- 2025-1-24 15:29:48 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-24 15:29:48 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\eb86d1cb887caa950b2345052eaff7db)}
- 2025-1-24 15:29:48 - debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","gfx-webgl2","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"HTML5","useCache":true,"nativeCodeBundleMode":"both","wasmCompressionMode":false,"split":false,"assetURLFormat":"runtime-resolved","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\web-mobile\\cocos-js","flags":{"DEBUG":false,"WEBGPU":false},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-24 15:29:48 - debug: 构建引擎脚本 in (120 ms) √, progress: 19%
- 2025-1-24 15:29:48 - debug: Copy plugin script ..., progress: 19%
- 2025-1-24 15:29:48 - debug: Generate import-map..., progress: 19%
- 2025-1-24 15:29:48 - debug: // ---- build task 打包脚本 ---- (14290ms)
- 2025-1-24 15:29:48 - debug: run build task 打包脚本 success in 14 s√, progress: 24%
- 2025-1-24 15:29:48 - debug: [Build Memory track]: 打包脚本 start:220.36MB, end 219.57MB, increase: -804.38KB
- 2025-1-24 15:29:48 - debug: Build Assets start, progress: 24%
- 2025-1-24 15:29:48 - debug: // ---- build task Build Assets ----
- 2025-1-24 15:29:48 - debug: Build bundles..., progress: 24%
- 2025-1-24 15:29:48 - debug: Pack Images start, progress: 24%
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-24 15:29:49 - debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-24 15:29:49 - debug(2): remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-24 15:29:49 - debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-24 15:29:49 - debug(2): remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-24 15:29:49 - debug: builder:pack-auto-atlas-image (892ms)
- 2025-1-24 15:29:49 - debug: Pack Images success, progress: 24%
- 2025-1-24 15:29:49 - debug: Compress image start..., progress: 24%
- 2025-1-24 15:29:49 - group: Compress image...
- 2025-1-24 15:29:49 - debug: sort compress task {}
- 2025-1-24 15:29:49 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-24 15:29:49 - debug: No image need to compress
- 2025-1-24 15:29:49 - groupEnd: Compress image...
- 2025-1-24 15:29:49 - debug: Compress image success..., progress: 24%
- 2025-1-24 15:29:49 - debug: Output asset in bundles start, progress: 24%
- 2025-1-24 15:29:49 - debug: Handle all json groups in bundle internal
- 2025-1-24 15:29:49 - debug: handle json group
- 2025-1-24 15:29:49 - debug: Handle all json groups in bundle resources
- 2025-1-24 15:29:49 - debug: handle json group
- 2025-1-24 15:29:49 - debug: Handle all json groups in bundle main
- 2025-1-24 15:29:49 - debug: handle json group
- 2025-1-24 15:29:49 - debug: Handle all json groups in bundle module_extra
- 2025-1-24 15:29:49 - debug: handle json group
- 2025-1-24 15:29:49 - debug: handle single json
- 2025-1-24 15:29:49 - debug: Handle all json groups in bundle module_basic
- 2025-1-24 15:29:49 - debug: handle json group
- 2025-1-24 15:29:49 - debug: Handle all json groups in bundle module_game
- 2025-1-24 15:29:49 - debug: handle json group
- 2025-1-24 15:29:49 - debug: Json group(03ccd410a) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: handle single json
- 2025-1-24 15:29:49 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: handle single json
- 2025-1-24 15:29:49 - debug: Json group(0119562e1) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0e251093b) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: handle single json
- 2025-1-24 15:29:49 - debug: Json group(02318630c) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: handle single json
- 2025-1-24 15:29:49 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(078a3a89c) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(041ac2e1c) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(04a6d010d) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(097e5daf7) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0816c2a7a) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0a46ee258) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(033a6699b) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-24 15:29:49 - debug: handle single json
- 2025-1-24 15:29:49 - debug: Output asset in bundles success, progress: 24%
- 2025-1-24 15:29:49 - debug: Output asset in bundles start, progress: 24%
- 2025-1-24 15:29:49 - debug: compress config of bundle internal...
- 2025-1-24 15:29:49 - debug: compress config of bundle internal success
- 2025-1-24 15:29:49 - debug: compress config of bundle resources...
- 2025-1-24 15:29:49 - debug: compress config of bundle resources success
- 2025-1-24 15:29:49 - debug: compress config of bundle main...
- 2025-1-24 15:29:49 - debug: compress config of bundle main success
- 2025-1-24 15:29:49 - debug: compress config of bundle module_extra...
- 2025-1-24 15:29:49 - debug: compress config of bundle module_extra success
- 2025-1-24 15:29:49 - debug: compress config of bundle module_basic...
- 2025-1-24 15:29:49 - debug: compress config of bundle module_basic success
- 2025-1-24 15:29:49 - debug: compress config of bundle module_game...
- 2025-1-24 15:29:49 - debug: compress config of bundle module_game success
- 2025-1-24 15:29:49 - debug: output config of bundle internal
- 2025-1-24 15:29:49 - debug: output config of bundle internal success
- 2025-1-24 15:29:49 - debug: output config of bundle resources
- 2025-1-24 15:29:49 - debug: output config of bundle resources success
- 2025-1-24 15:29:49 - debug: output config of bundle main
- 2025-1-24 15:29:49 - debug: output config of bundle main success
- 2025-1-24 15:29:49 - debug: output config of bundle module_extra
- 2025-1-24 15:29:49 - debug: output config of bundle module_extra success
- 2025-1-24 15:29:49 - debug: output config of bundle module_basic
- 2025-1-24 15:29:49 - debug: output config of bundle module_basic success
- 2025-1-24 15:29:49 - debug: output config of bundle module_game
- 2025-1-24 15:29:49 - debug: output config of bundle module_game success
- 2025-1-24 15:29:49 - debug: Output asset in bundles success, progress: 24%
- 2025-1-24 15:29:49 - debug: // ---- build task Build Assets ---- (1431ms)
- 2025-1-24 15:29:49 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-24 15:29:49 - debug: [Build Memory track]: Build Assets start:219.61MB, end 209.78MB, increase: -10058.68KB
- 2025-1-24 15:29:49 - debug: 整理部分构建选项内数据到 settings.json start, progress: 29%
- 2025-1-24 15:29:49 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-24 15:29:49 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (42ms)
- 2025-1-24 15:29:49 - debug: run build task 整理部分构建选项内数据到 settings.json success in 42 ms√, progress: 31%
- 2025-1-24 15:29:49 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.87MB, end 210.00MB, increase: 130.36KB
- 2025-1-24 15:29:49 - debug: 填充脚本数据到 settings.json start, progress: 31%
- 2025-1-24 15:29:49 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-24 15:29:49 - debug: // ---- build task 填充脚本数据到 settings.json ---- (60ms)
- 2025-1-24 15:29:49 - debug: run build task 填充脚本数据到 settings.json success in 60 ms√, progress: 32%
- 2025-1-24 15:29:49 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.04MB, end 210.16MB, increase: 128.74KB
- 2025-1-24 15:29:49 - debug: 整理部分构建选项内数据到 settings.json start, progress: 32%
- 2025-1-24 15:29:49 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-24 15:29:49 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (108ms)
- 2025-1-24 15:29:49 - debug: run build task 整理部分构建选项内数据到 settings.json success in 108 ms√, progress: 34%
- 2025-1-24 15:29:49 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.20MB, end 210.47MB, increase: 282.10KB
- 2025-1-24 15:29:49 - debug: web-mobile:(onBeforeCompressSettings) start..., progress: 34%
- 2025-1-24 15:29:49 - debug: // ---- build task web-mobile:onBeforeCompressSettings ----
- 2025-1-24 15:29:50 - debug: // ---- build task web-mobile:onBeforeCompressSettings ---- (59ms)
- 2025-1-24 15:29:50 - debug: web-mobile:(onBeforeCompressSettings) in 59 ms ✓, progress: 36%
- 2025-1-24 15:29:50 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-24 15:29:50 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-24 15:29:50 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (179ms)
- 2025-1-24 15:29:50 - debug: cocos-service:(onBeforeCompressSettings) in 179 ms ✓, progress: 38%
- 2025-1-24 15:29:50 - debug: 整理静态模板文件 start, progress: 38%
- 2025-1-24 15:29:50 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-24 15:29:50 - debug: // ---- build task 整理静态模板文件 ---- (81ms)
- 2025-1-24 15:29:50 - debug: run build task 整理静态模板文件 success in 81 ms√, progress: 43%
- 2025-1-24 15:29:50 - debug: [Build Memory track]: 整理静态模板文件 start:210.85MB, end 214.72MB, increase: 3.87MB
- 2025-1-24 15:29:50 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 43%
- 2025-1-24 15:29:50 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-24 15:29:50 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (125ms)
- 2025-1-24 15:29:50 - debug: cocos-service:(onAfterCompressSettings) in 125 ms ✓, progress: 45%
- 2025-1-24 15:29:50 - debug: web-mobile:(onBeforeCopyBuildTemplate) start..., progress: 45%
- 2025-1-24 15:29:50 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ----
- 2025-1-24 15:29:50 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ---- (66ms)
- 2025-1-24 15:29:50 - debug: web-mobile:(onBeforeCopyBuildTemplate) in 66 ms ✓, progress: 46%
- 2025-1-24 15:29:50 - debug: 给所有的资源加上 MD5 后缀 start, progress: 46%
- 2025-1-24 15:29:50 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-24 15:29:50 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (47ms)
- 2025-1-24 15:29:50 - debug: run build task 给所有的资源加上 MD5 后缀 success in 47 ms√, progress: 56%
- 2025-1-24 15:29:50 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:211.11MB, end 211.23MB, increase: 126.26KB
- 2025-1-24 15:29:50 - debug: cocos-service:(onAfterBuild) start..., progress: 56%
- 2025-1-24 15:29:50 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-24 15:29:50 - debug: // ---- build task cocos-service:onAfterBuild ---- (108ms)
- 2025-1-24 15:29:50 - debug: cocos-service:(onAfterBuild) in 108 ms ✓, progress: 58%
- 2025-1-24 15:29:50 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 58%
- 2025-1-24 15:29:50 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-24 15:29:50 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (39ms)
- 2025-1-24 15:29:50 - debug: adsense-h5g-plugin:(onAfterBuild) in 39 ms ✓, progress: 60%
- 2025-1-24 15:29:50 - log: Asset DB is resume!
- 2025-1-24 15:29:50 - debug: builder:build-project-total (17806ms)
- 2025-1-24 15:29:50 - debug: build success in 17806!
- 2025-1-24 15:29:50 - debug: [Build Memory track]: builder:build-project-total start:215.03MB, end 213.24MB, increase: -1828.62KB
- 2025-1-24 15:29:50 - debug: ================================ build Task (web-mobile) Finished in (17 s)ms ================================
- 2025-1-24 15:40:22 - debug: =================================== build Task (web-mobile) Start ================================
- 2025-1-24 15:40:22 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"web-mobile","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"includeModules":{"gfx-webgl2":"on","physics":"inherit-project-setting","physics-2d":"inherit-project-setting"},"macroConfig":{"cleanupImageCache":"inherit-project-setting"}},"nativeCodeBundleMode":"both","polyfills":{"asyncFunctions":true},"experimentalEraseModules":false,"startSceneAssetBundle":false,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"merge_dep","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"web-mobile","taskName":"web-mobile","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":false,"packages":{"adsense-h5g-plugin":{"enableAdsense":false,"enableTestAd":false,"__version__":"1.0.1","AFPHostPropertyCode":"ca-host-pub-5396158963872751","AFPHostDomain":"douyougame.com","otherAFPHostPropertyCode":"","otherAFPDomain":""},"web-mobile":{"useWebGPU":false,"orientation":"auto","embedWebDebugger":false,"__version__":"1.0.1"},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/web-mobile2025-1-22 19-22.log"}
- 2025-1-24 15:40:22 - debug: Build with Cocos Creator 3.8.4
- 2025-1-24 15:40:22 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-24 15:40:22 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-24 15:40:22 - debug: // ---- build task cocos-service:onBeforeBuild ---- (174ms)
- 2025-1-24 15:40:22 - debug: cocos-service:(onBeforeBuild) in 174 ms ✓, progress: 2%
- 2025-1-24 15:40:22 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-24 15:40:22 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-24 15:40:22 - debug: // ---- build task scene:onBeforeBuild ---- (38ms)
- 2025-1-24 15:40:22 - debug: scene:(onBeforeBuild) in 38 ms ✓, progress: 4%
- 2025-1-24 15:40:22 - debug: Start lock asset db..., progress: 4%
- 2025-1-24 15:40:22 - log: Asset DB is paused with build!
- 2025-1-24 15:40:22 - debug: Query all assets info in project
- 2025-1-24 15:40:22 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-24 15:40:22 - debug: web-mobile:(onAfterInit) start..., progress: 4%
- 2025-1-24 15:40:22 - debug: // ---- build task web-mobile:onAfterInit ----
- 2025-1-24 15:40:22 - debug: // ---- build task web-mobile:onAfterInit ---- (25ms)
- 2025-1-24 15:40:22 - debug: web-mobile:(onAfterInit) in 25 ms ✓, progress: 5%
- 2025-1-24 15:40:22 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-24 15:40:22 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-24 15:40:22 - debug: // ---- build task cocos-service:onAfterInit ---- (128ms)
- 2025-1-24 15:40:22 - debug: cocos-service:(onAfterInit) in 128 ms ✓, progress: 7%
- 2025-1-24 15:40:22 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-24 15:40:22 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-24 15:40:23 - debug: // ---- build task engine:onAfterInit ---- (59ms)
- 2025-1-24 15:40:23 - debug: engine:(onAfterInit) in 59 ms ✓, progress: 9%
- 2025-1-24 15:40:23 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-24 15:40:23 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-24 15:40:23 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-24 15:40:23 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (40ms)
- 2025-1-24 15:40:23 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 40 ms ✓, progress: 9%
- 2025-1-24 15:40:23 - debug: Init all bundles start..., progress: 9%
- 2025-1-24 15:40:23 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-24 15:40:23 - debug: web-mobile:(onAfterBundleInit) start..., progress: 9%
- 2025-1-24 15:40:23 - debug: // ---- build task web-mobile:onAfterBundleInit ----
- 2025-1-24 15:40:23 - debug: // ---- build task web-mobile:onAfterBundleInit ---- (63ms)
- 2025-1-24 15:40:23 - debug: web-mobile:(onAfterBundleInit) in 63 ms ✓, progress: 9%
- 2025-1-24 15:40:23 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-24 15:40:23 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-24 15:40:23 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-24 15:40:23 - debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
- 2025-1-24 15:40:23 - debug: Number of all scenes: 3
- 2025-1-24 15:40:23 - debug: Number of all scripts: 128
- 2025-1-24 15:40:23 - debug: Number of other assets: 1204
- 2025-1-24 15:40:23 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-24 15:40:23 - debug: reload all scripts.
- 2025-1-24 15:40:23 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-24 15:40:23 - groupCollapsed: Invalidate all modules
- 2025-1-24 15:40:23 - debug: Unregister BuiltinPipelineSettings
- 2025-1-24 15:40:23 - debug: Unregister DebugViewRuntimeControl
- 2025-1-24 15:40:23 - debug: Unregister ch_sdk_comp
- 2025-1-24 15:40:23 - debug: Unregister ch_start_pack
- 2025-1-24 15:40:23 - debug: Unregister __NodeEventAgent__
- 2025-1-24 15:40:23 - debug: Unregister ResolutionAutoFit
- 2025-1-24 15:40:23 - debug: Unregister ui_updater
- 2025-1-24 15:40:23 - debug: Unregister ClickPenetrate
- 2025-1-24 15:40:23 - debug: Unregister ListItem
- 2025-1-24 15:40:23 - debug: Unregister List
- 2025-1-24 15:40:23 - debug: Unregister MotionTrail
- 2025-1-24 15:40:23 - debug: Unregister MovieClip
- 2025-1-24 15:40:23 - debug: Unregister RewardFly
- 2025-1-24 15:40:23 - debug: Unregister SpineView
- 2025-1-24 15:40:23 - debug: Unregister UISpineMovie
- 2025-1-24 15:40:23 - debug: Unregister Layout_UIAlert
- 2025-1-24 15:40:23 - debug: Unregister Layout_UI_Notify
- 2025-1-24 15:40:23 - debug: Unregister Layout_UIWaiting
- 2025-1-24 15:40:23 - debug: Unregister table_idiom
- 2025-1-24 15:40:23 - debug: Unregister table_idiom_order
- 2025-1-24 15:40:23 - debug: Unregister table_idiom_unorder_1_3
- 2025-1-24 15:40:23 - debug: Unregister table_idiom_unorder_2_2
- 2025-1-24 15:40:23 - debug: Unregister table_idiom_unorder_3_1
- 2025-1-24 15:40:23 - debug: Unregister table_level
- 2025-1-24 15:40:23 - debug: Unregister table_level_2
- 2025-1-24 15:40:23 - debug: Unregister table_store
- 2025-1-24 15:40:23 - debug: Unregister table_task
- 2025-1-24 15:40:23 - debug: Unregister Layout_GameRules
- 2025-1-24 15:40:23 - debug: Unregister UI_GameRules
- 2025-1-24 15:40:23 - debug: Unregister UI_Idiom
- 2025-1-24 15:40:23 - debug: Unregister Layout_Idioms
- 2025-1-24 15:40:23 - debug: Unregister UI_Idioms
- 2025-1-24 15:40:23 - debug: Unregister Layout_Settings
- 2025-1-24 15:40:23 - debug: Unregister Layout_Tips
- 2025-1-24 15:40:23 - debug: Unregister Layout_Hall
- 2025-1-24 15:40:23 - debug: Unregister UI_Head_Icon
- 2025-1-24 15:40:23 - debug: Unregister UI_Rank_Item
- 2025-1-24 15:40:23 - debug: Unregister Layout_Rank
- 2025-1-24 15:40:23 - debug: Unregister UI_Rank
- 2025-1-24 15:40:23 - debug: Unregister Sign_Reward
- 2025-1-24 15:40:23 - debug: Unregister Layout_Sign
- 2025-1-24 15:40:23 - debug: Unregister UI_Sign
- 2025-1-24 15:40:23 - debug: Unregister Layout_Invite
- 2025-1-24 15:40:23 - debug: Unregister UI_Invite
- 2025-1-24 15:40:23 - debug: Unregister Layout_Store
- 2025-1-24 15:40:23 - debug: Unregister UI_Store
- 2025-1-24 15:40:23 - debug: Unregister Layout_SideBar
- 2025-1-24 15:40:23 - debug: Unregister Start
- 2025-1-24 15:40:23 - debug: Unregister UI_SideBar
- 2025-1-24 15:40:23 - debug: Unregister UI_Task_Item
- 2025-1-24 15:40:23 - debug: Unregister Layout_Task
- 2025-1-24 15:40:23 - debug: Unregister UI_Task
- 2025-1-24 15:40:23 - debug: Unregister UI_Hall
- 2025-1-24 15:40:23 - debug: Unregister UI_Tips
- 2025-1-24 15:40:23 - debug: Unregister UI_Settings
- 2025-1-24 15:40:23 - debug: Unregister Layout_Win
- 2025-1-24 15:40:23 - debug: Unregister UI_Win
- 2025-1-24 15:40:23 - debug: Unregister Layout_Main
- 2025-1-24 15:40:23 - debug: Unregister Layout_TimesOver
- 2025-1-24 15:40:23 - debug: Unregister Layout_Fail
- 2025-1-24 15:40:23 - debug: Unregister UI_Fail
- 2025-1-24 15:40:23 - debug: Unregister UI_TimesOver
- 2025-1-24 15:40:23 - debug: Unregister UI_Main
- 2025-1-24 15:40:23 - debug: Unregister Hall
- 2025-1-24 15:40:23 - debug: Unregister Cube_Infor
- 2025-1-24 15:40:23 - debug: Unregister CreateIdiom
- 2025-1-24 15:40:23 - debug: Unregister Layout_LatticeFull
- 2025-1-24 15:40:23 - debug: Unregister UI_LatticeFull
- 2025-1-24 15:40:23 - debug: Unregister Layout_Lock
- 2025-1-24 15:40:23 - debug: Unregister UI_Lock
- 2025-1-24 15:40:23 - debug: Unregister GameCtl
- 2025-1-24 15:40:23 - debug: Unregister Container_Manager
- 2025-1-24 15:40:23 - debug: Unregister UI_Item
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
- 2025-1-24 15:40:23 - debug: Invalidating 'pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js'
- 2025-1-24 15:40:23 - groupEnd: Invalidate all modules
- 2025-1-24 15:40:23 - groupCollapsed: Imports all modules
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-24 15:40:23 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register ch_start_pack
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register ui_updater
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register ListItem
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register List
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register MotionTrail
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register MovieClip
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register RewardFly
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register SpineView
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UISpineMovie
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_idiom
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_idiom_order
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_idiom_unorder_1_3
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_idiom_unorder_2_2
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_idiom_unorder_3_1
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_level
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_level_2
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_store
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register table_task
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js" loaded.
- 2025-1-24 15:40:23 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js is not in module cache!
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_GameRules
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Idiom
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Idioms
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Settings
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Tips
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Hall
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Rank
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Rank
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Sign_Reward
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Sign
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Sign
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Invite
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Invite
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Store
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Store
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Start
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_SideBar
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Task
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Task
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Hall
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Tips
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Settings
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Win
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Win
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Main
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Fail
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Fail
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Main
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Hall
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Cube_Infor
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register CreateIdiom
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Layout_Lock
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Lock
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register GameCtl
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register Container_Manager
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Register UI_Item
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js" loaded.
- 2025-1-24 15:40:23 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-24 15:40:23 - groupEnd: Imports all modules
- 2025-1-24 15:40:23 - debug: Incremental keys: chSdk,chsdk
- 2025-1-24 15:40:23 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-24 15:40:23 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-24 15:40:23 - debug: handle json group in bundle internal
- 2025-1-24 15:40:23 - debug: handle json group in bundle internal success
- 2025-1-24 15:40:23 - debug: handle json group in bundle resources
- 2025-1-24 15:40:23 - debug: handle json group in bundle main
- 2025-1-24 15:40:23 - debug: handle json group in bundle module_extra
- 2025-1-24 15:40:23 - debug: handle json group in bundle module_basic
- 2025-1-24 15:40:23 - debug: handle json group in bundle module_game
- 2025-1-24 15:40:23 - debug: init image compress task 0 in bundle internal
- 2025-1-24 15:40:23 - debug: handle json group in bundle resources success
- 2025-1-24 15:40:23 - debug: init image compress task 0 in bundle resources
- 2025-1-24 15:40:23 - debug: handle json group in bundle module_basic success
- 2025-1-24 15:40:23 - debug: init image compress task 0 in bundle module_basic
- 2025-1-24 15:40:23 - debug: handle json group in bundle module_extra success
- 2025-1-24 15:40:23 - debug: init image compress task 0 in bundle module_extra
- 2025-1-24 15:40:23 - debug: handle json group in bundle main success
- 2025-1-24 15:40:23 - debug: init image compress task 0 in bundle main
- 2025-1-24 15:40:23 - debug: handle json group in bundle module_game success
- 2025-1-24 15:40:23 - debug: init image compress task 0 in bundle module_game
- 2025-1-24 15:40:23 - debug: // ---- build task 查询 Asset Bundle ---- (316ms)
- 2025-1-24 15:40:23 - debug: run build task 查询 Asset Bundle success in 316 ms√, progress: 14%
- 2025-1-24 15:40:23 - debug: [Build Memory track]: 查询 Asset Bundle start:210.10MB, end 216.57MB, increase: 6.47MB
- 2025-1-24 15:40:23 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-24 15:40:23 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-24 15:40:23 - debug: // ---- build task 查询 Asset Bundle ---- (125ms)
- 2025-1-24 15:40:23 - debug: run build task 查询 Asset Bundle success in 125 ms√, progress: 19%
- 2025-1-24 15:40:23 - debug: [Build Memory track]: 查询 Asset Bundle start:216.61MB, end 214.34MB, increase: -2320.79KB
- 2025-1-24 15:40:23 - debug: 打包脚本 start, progress: 19%
- 2025-1-24 15:40:23 - debug: // ---- build task 打包脚本 ----
- 2025-1-24 15:40:23 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:40:24 - log: [build-script]enter sub process 13864, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
- 2025-1-24 15:40:26 - debug: excute-script over with build-script 3347ms
- 2025-1-24 15:40:26 - debug: Generate systemJs..., progress: 19%
- 2025-1-24 15:40:27 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:40:29 - debug: excute-script over with build-script 2590ms
- 2025-1-24 15:40:29 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-24 15:40:29 - debug: Build script in bundle start, progress: 19%
- 2025-1-24 15:40:29 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 15:40:34 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
- 2025-1-24 15:40:34 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
- 2025-1-24 15:40:37 - debug: excute-script over with build-script 8081ms
- 2025-1-24 15:40:37 - debug: Copy externalScripts success!
- 2025-1-24 15:40:37 - debug: Build script in bundle success, progress: 19%
- 2025-1-24 15:40:37 - debug: 构建项目脚本 in (8167 ms) √, progress: 19%
- 2025-1-24 15:40:37 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-24 15:40:37 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\eb86d1cb887caa950b2345052eaff7db)}
- 2025-1-24 15:40:37 - debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","gfx-webgl2","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"HTML5","useCache":true,"nativeCodeBundleMode":"both","wasmCompressionMode":false,"split":false,"assetURLFormat":"runtime-resolved","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\web-mobile\\cocos-js","flags":{"DEBUG":false,"WEBGPU":false},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-24 15:40:37 - debug: 构建引擎脚本 in (134 ms) √, progress: 19%
- 2025-1-24 15:40:37 - debug: Copy plugin script ..., progress: 19%
- 2025-1-24 15:40:37 - debug: Generate import-map..., progress: 19%
- 2025-1-24 15:40:37 - debug: // ---- build task 打包脚本 ---- (14318ms)
- 2025-1-24 15:40:37 - debug: run build task 打包脚本 success in 14 s√, progress: 24%
- 2025-1-24 15:40:37 - debug: [Build Memory track]: 打包脚本 start:214.51MB, end 215.47MB, increase: 985.80KB
- 2025-1-24 15:40:37 - debug: Build Assets start, progress: 24%
- 2025-1-24 15:40:37 - debug: // ---- build task Build Assets ----
- 2025-1-24 15:40:37 - debug: Build bundles..., progress: 24%
- 2025-1-24 15:40:37 - debug: Pack Images start, progress: 24%
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-24 15:40:38 - debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-24 15:40:38 - debug(2): remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-24 15:40:38 - debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-24 15:40:38 - debug(2): remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-24 15:40:38 - debug: builder:pack-auto-atlas-image (869ms)
- 2025-1-24 15:40:38 - debug: Pack Images success, progress: 24%
- 2025-1-24 15:40:38 - debug: Compress image start..., progress: 24%
- 2025-1-24 15:40:38 - group: Compress image...
- 2025-1-24 15:40:38 - debug: sort compress task {}
- 2025-1-24 15:40:38 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-24 15:40:38 - debug: No image need to compress
- 2025-1-24 15:40:38 - groupEnd: Compress image...
- 2025-1-24 15:40:38 - debug: Compress image success..., progress: 24%
- 2025-1-24 15:40:38 - debug: Output asset in bundles start, progress: 24%
- 2025-1-24 15:40:38 - debug: Handle all json groups in bundle internal
- 2025-1-24 15:40:38 - debug: handle json group
- 2025-1-24 15:40:38 - debug: Handle all json groups in bundle resources
- 2025-1-24 15:40:38 - debug: handle json group
- 2025-1-24 15:40:38 - debug: Handle all json groups in bundle main
- 2025-1-24 15:40:38 - debug: handle json group
- 2025-1-24 15:40:38 - debug: Handle all json groups in bundle module_extra
- 2025-1-24 15:40:38 - debug: handle json group
- 2025-1-24 15:40:38 - debug: handle single json
- 2025-1-24 15:40:38 - debug: Handle all json groups in bundle module_basic
- 2025-1-24 15:40:38 - debug: handle json group
- 2025-1-24 15:40:38 - debug: Handle all json groups in bundle module_game
- 2025-1-24 15:40:38 - debug: handle json group
- 2025-1-24 15:40:38 - debug: Json group(03ccd410a) compile success,json number: 6
- 2025-1-24 15:40:38 - debug: handle single json
- 2025-1-24 15:40:38 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-24 15:40:38 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-24 15:40:38 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-24 15:40:38 - debug: handle single json
- 2025-1-24 15:40:38 - debug: Json group(0119562e1) compile success,json number: 6
- 2025-1-24 15:40:38 - debug: Json group(0e251093b) compile success,json number: 6
- 2025-1-24 15:40:38 - debug: handle single json
- 2025-1-24 15:40:39 - debug: Json group(02318630c) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: handle single json
- 2025-1-24 15:40:39 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(078a3a89c) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(041ac2e1c) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(04a6d010d) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(097e5daf7) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(0816c2a7a) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(0a46ee258) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(033a6699b) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-24 15:40:39 - debug: handle single json
- 2025-1-24 15:40:39 - debug: Output asset in bundles success, progress: 24%
- 2025-1-24 15:40:39 - debug: Output asset in bundles start, progress: 24%
- 2025-1-24 15:40:39 - debug: compress config of bundle internal...
- 2025-1-24 15:40:39 - debug: compress config of bundle internal success
- 2025-1-24 15:40:39 - debug: compress config of bundle resources...
- 2025-1-24 15:40:39 - debug: compress config of bundle resources success
- 2025-1-24 15:40:39 - debug: compress config of bundle main...
- 2025-1-24 15:40:39 - debug: compress config of bundle main success
- 2025-1-24 15:40:39 - debug: compress config of bundle module_extra...
- 2025-1-24 15:40:39 - debug: compress config of bundle module_extra success
- 2025-1-24 15:40:39 - debug: compress config of bundle module_basic...
- 2025-1-24 15:40:39 - debug: compress config of bundle module_basic success
- 2025-1-24 15:40:39 - debug: compress config of bundle module_game...
- 2025-1-24 15:40:39 - debug: compress config of bundle module_game success
- 2025-1-24 15:40:39 - debug: output config of bundle internal
- 2025-1-24 15:40:39 - debug: output config of bundle internal success
- 2025-1-24 15:40:39 - debug: output config of bundle resources
- 2025-1-24 15:40:39 - debug: output config of bundle resources success
- 2025-1-24 15:40:39 - debug: output config of bundle main
- 2025-1-24 15:40:39 - debug: output config of bundle main success
- 2025-1-24 15:40:39 - debug: output config of bundle module_extra
- 2025-1-24 15:40:39 - debug: output config of bundle module_extra success
- 2025-1-24 15:40:39 - debug: output config of bundle module_basic
- 2025-1-24 15:40:39 - debug: output config of bundle module_basic success
- 2025-1-24 15:40:39 - debug: output config of bundle module_game
- 2025-1-24 15:40:39 - debug: output config of bundle module_game success
- 2025-1-24 15:40:39 - debug: Output asset in bundles success, progress: 24%
- 2025-1-24 15:40:39 - debug: // ---- build task Build Assets ---- (1402ms)
- 2025-1-24 15:40:39 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-24 15:40:39 - debug: [Build Memory track]: Build Assets start:215.51MB, end 214.53MB, increase: -1004.55KB
- 2025-1-24 15:40:39 - debug: 整理部分构建选项内数据到 settings.json start, progress: 29%
- 2025-1-24 15:40:39 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-24 15:40:39 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (50ms)
- 2025-1-24 15:40:39 - debug: run build task 整理部分构建选项内数据到 settings.json success in 50 ms√, progress: 31%
- 2025-1-24 15:40:39 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.62MB, end 214.74MB, increase: 126.97KB
- 2025-1-24 15:40:39 - debug: 填充脚本数据到 settings.json start, progress: 31%
- 2025-1-24 15:40:39 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-24 15:40:39 - debug: // ---- build task 填充脚本数据到 settings.json ---- (42ms)
- 2025-1-24 15:40:39 - debug: run build task 填充脚本数据到 settings.json success in 42 ms√, progress: 32%
- 2025-1-24 15:40:39 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.77MB, end 214.90MB, increase: 125.36KB
- 2025-1-24 15:40:39 - debug: 整理部分构建选项内数据到 settings.json start, progress: 32%
- 2025-1-24 15:40:39 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-24 15:40:39 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (58ms)
- 2025-1-24 15:40:39 - debug: run build task 整理部分构建选项内数据到 settings.json success in 58 ms√, progress: 34%
- 2025-1-24 15:40:39 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.93MB, end 215.16MB, increase: 230.75KB
- 2025-1-24 15:40:39 - debug: web-mobile:(onBeforeCompressSettings) start..., progress: 34%
- 2025-1-24 15:40:39 - debug: // ---- build task web-mobile:onBeforeCompressSettings ----
- 2025-1-24 15:40:39 - debug: // ---- build task web-mobile:onBeforeCompressSettings ---- (67ms)
- 2025-1-24 15:40:39 - debug: web-mobile:(onBeforeCompressSettings) in 67 ms ✓, progress: 36%
- 2025-1-24 15:40:39 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-24 15:40:39 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-24 15:40:39 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (210ms)
- 2025-1-24 15:40:39 - debug: cocos-service:(onBeforeCompressSettings) in 210 ms ✓, progress: 38%
- 2025-1-24 15:40:39 - debug: 整理静态模板文件 start, progress: 38%
- 2025-1-24 15:40:39 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-24 15:40:39 - debug: // ---- build task 整理静态模板文件 ---- (84ms)
- 2025-1-24 15:40:39 - debug: run build task 整理静态模板文件 success in 84 ms√, progress: 43%
- 2025-1-24 15:40:39 - debug: [Build Memory track]: 整理静态模板文件 start:215.58MB, end 209.52MB, increase: -6204.60KB
- 2025-1-24 15:40:39 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 43%
- 2025-1-24 15:40:39 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-24 15:40:39 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (92ms)
- 2025-1-24 15:40:39 - debug: cocos-service:(onAfterCompressSettings) in 92 ms ✓, progress: 45%
- 2025-1-24 15:40:39 - debug: web-mobile:(onBeforeCopyBuildTemplate) start..., progress: 45%
- 2025-1-24 15:40:39 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ----
- 2025-1-24 15:40:40 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ---- (62ms)
- 2025-1-24 15:40:40 - debug: web-mobile:(onBeforeCopyBuildTemplate) in 62 ms ✓, progress: 46%
- 2025-1-24 15:40:40 - debug: 给所有的资源加上 MD5 后缀 start, progress: 46%
- 2025-1-24 15:40:40 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-24 15:40:40 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (64ms)
- 2025-1-24 15:40:40 - debug: run build task 给所有的资源加上 MD5 后缀 success in 64 ms√, progress: 56%
- 2025-1-24 15:40:40 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:212.33MB, end 212.49MB, increase: 172.46KB
- 2025-1-24 15:40:40 - debug: cocos-service:(onAfterBuild) start..., progress: 56%
- 2025-1-24 15:40:40 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-24 15:40:40 - debug: // ---- build task cocos-service:onAfterBuild ---- (141ms)
- 2025-1-24 15:40:40 - debug: cocos-service:(onAfterBuild) in 141 ms ✓, progress: 58%
- 2025-1-24 15:40:40 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 58%
- 2025-1-24 15:40:40 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-24 15:40:40 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (40ms)
- 2025-1-24 15:40:40 - debug: adsense-h5g-plugin:(onAfterBuild) in 40 ms ✓, progress: 60%
- 2025-1-24 15:40:40 - log: Asset DB is resume!
- 2025-1-24 15:40:40 - debug: builder:build-project-total (17787ms)
- 2025-1-24 15:40:40 - debug: build success in 17787!
- 2025-1-24 15:40:40 - debug: [Build Memory track]: builder:build-project-total start:210.09MB, end 215.72MB, increase: 5.63MB
- 2025-1-24 15:40:40 - debug: ================================ build Task (web-mobile) Finished in (17 s)ms ================================
- 2025-1-24 19:32:35 - debug: =================================== build Task (web-mobile) Start ================================
- 2025-1-24 19:32:35 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"web-mobile","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"includeModules":{"gfx-webgl2":"on","physics":"inherit-project-setting","physics-2d":"inherit-project-setting"},"macroConfig":{"cleanupImageCache":"inherit-project-setting"}},"nativeCodeBundleMode":"both","polyfills":{"asyncFunctions":true},"experimentalEraseModules":false,"startSceneAssetBundle":false,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"merge_dep","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"web-mobile","taskName":"web-mobile","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":false,"packages":{"adsense-h5g-plugin":{"enableAdsense":false,"enableTestAd":false,"__version__":"1.0.1","AFPHostPropertyCode":"ca-host-pub-5396158963872751","AFPHostDomain":"douyougame.com","otherAFPHostPropertyCode":"","otherAFPDomain":""},"web-mobile":{"useWebGPU":false,"orientation":"auto","embedWebDebugger":false,"__version__":"1.0.1"},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/web-mobile2025-1-22 19-22.log"}
- 2025-1-24 19:32:35 - debug: Build with Cocos Creator 3.8.4
- 2025-1-24 19:32:35 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-24 19:32:35 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-24 19:32:36 - debug: // ---- build task cocos-service:onBeforeBuild ---- (171ms)
- 2025-1-24 19:32:36 - debug: cocos-service:(onBeforeBuild) in 171 ms ✓, progress: 2%
- 2025-1-24 19:32:36 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-24 19:32:36 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-24 19:32:36 - debug: // ---- build task scene:onBeforeBuild ---- (42ms)
- 2025-1-24 19:32:36 - debug: scene:(onBeforeBuild) in 42 ms ✓, progress: 4%
- 2025-1-24 19:32:36 - debug: Start lock asset db..., progress: 4%
- 2025-1-24 19:32:36 - log: Asset DB is paused with build!
- 2025-1-24 19:32:36 - debug: Query all assets info in project
- 2025-1-24 19:32:36 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-24 19:32:36 - debug: web-mobile:(onAfterInit) start..., progress: 4%
- 2025-1-24 19:32:36 - debug: // ---- build task web-mobile:onAfterInit ----
- 2025-1-24 19:32:36 - debug: // ---- build task web-mobile:onAfterInit ---- (23ms)
- 2025-1-24 19:32:36 - debug: web-mobile:(onAfterInit) in 23 ms ✓, progress: 5%
- 2025-1-24 19:32:36 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-24 19:32:36 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-24 19:32:36 - debug: // ---- build task cocos-service:onAfterInit ---- (96ms)
- 2025-1-24 19:32:36 - debug: cocos-service:(onAfterInit) in 96 ms ✓, progress: 7%
- 2025-1-24 19:32:36 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-24 19:32:36 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-24 19:32:36 - debug: // ---- build task engine:onAfterInit ---- (41ms)
- 2025-1-24 19:32:36 - debug: engine:(onAfterInit) in 41 ms ✓, progress: 9%
- 2025-1-24 19:32:36 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-24 19:32:36 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-24 19:32:36 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-24 19:32:36 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (75ms)
- 2025-1-24 19:32:36 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 75 ms ✓, progress: 9%
- 2025-1-24 19:32:36 - debug: Init all bundles start..., progress: 9%
- 2025-1-24 19:32:36 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-24 19:32:36 - debug: web-mobile:(onAfterBundleInit) start..., progress: 9%
- 2025-1-24 19:32:36 - debug: // ---- build task web-mobile:onAfterBundleInit ----
- 2025-1-24 19:32:36 - debug: // ---- build task web-mobile:onAfterBundleInit ---- (73ms)
- 2025-1-24 19:32:36 - debug: web-mobile:(onAfterBundleInit) in 73 ms ✓, progress: 9%
- 2025-1-24 19:32:36 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-24 19:32:36 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-24 19:32:36 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-24 19:32:36 - debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
- 2025-1-24 19:32:36 - debug: Number of all scenes: 3
- 2025-1-24 19:32:36 - debug: Number of all scripts: 129
- 2025-1-24 19:32:36 - debug: Number of other assets: 1225
- 2025-1-24 19:32:36 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-24 19:32:36 - debug: reload all scripts.
- 2025-1-24 19:32:36 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-24 19:32:36 - groupCollapsed: Invalidate all modules
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-24 19:32:36 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-24 19:32:36 - groupEnd: Invalidate all modules
- 2025-1-24 19:32:36 - groupCollapsed: Imports all modules
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3c\3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3c\3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e9\e908646c1435d653de6447e2ae846c959ac29b33.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e9\e908646c1435d653de6447e2ae846c959ac29b33.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e6\e671bb16456ad253c126408d753c04295ea07129.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e6\e671bb16456ad253c126408d753c04295ea07129.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a62597dd07a24c3714ad095eedbfc8f76f2d165c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a62597dd07a24c3714ad095eedbfc8f76f2d165c.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ad9214371678a1d97027b6cf28752dcbab25e0f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ad9214371678a1d97027b6cf28752dcbab25e0f.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41d16e1f8113566bf1c111c20aceca9e4a6626d6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41d16e1f8113566bf1c111c20aceca9e4a6626d6.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f8dff31feda7b51e2d0428361dac48e18834ed8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f8dff31feda7b51e2d0428361dac48e18834ed8.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\87\879eb4b2cb07a55807079158fde54421bac04056.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\87\879eb4b2cb07a55807079158fde54421bac04056.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3975fe5ce64c51324369e49e8afd9c685ef1036d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3975fe5ce64c51324369e49e8afd9c685ef1036d.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d72ce35042ce99e7f64ae289f73e61427ebc5661.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d72ce35042ce99e7f64ae289f73e61427ebc5661.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31f21e9610b2e754c9705fb8b4947b7629eba3ec.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31f21e9610b2e754c9705fb8b4947b7629eba3ec.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register ch_start_pack
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e2\e2c07fd606d93eb79afeed6ef4de521f2be03414.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e2\e2c07fd606d93eb79afeed6ef4de521f2be03414.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\33\33d6d868e05219070a908e953bde210e54f92e26.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\33\33d6d868e05219070a908e953bde210e54f92e26.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c6623815813aae756c57cca6f89a3182c222719.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c6623815813aae756c57cca6f89a3182c222719.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register ui_updater
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6b\6b45817391fda8032e9c3052f72099ae80b977e5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6b\6b45817391fda8032e9c3052f72099ae80b977e5.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9b4abce15a8c07b4b00096caaa35df726664c0eb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9b4abce15a8c07b4b00096caaa35df726664c0eb.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\51\518c777b9b184349470f0a8548bfc02a3ac13b12.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\51\518c777b9b184349470f0a8548bfc02a3ac13b12.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73c6533bf475cf801676942513edca165a6ed07f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73c6533bf475cf801676942513edca165a6ed07f.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\79\79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\79\79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\bd\bd8a015d9f05319ae091f7383c093a5f26a12133.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\bd\bd8a015d9f05319ae091f7383c093a5f26a12133.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c9\c969313d23703c6a3fcc53d5e71bae664ed7849e.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c9\c969313d23703c6a3fcc53d5e71bae664ed7849e.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\53\5355f477731c1aa517e29e27c45ac35bf99fe727.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\53\5355f477731c1aa517e29e27c45ac35bf99fe727.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8ea009be5644c7164c4b5ae51cd349e5525e465.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8ea009be5644c7164c4b5ae51cd349e5525e465.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4e\4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4e\4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\17\1787d8e2147a43214097b7b6fea81022fa7297b5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\17\1787d8e2147a43214097b7b6fea81022fa7297b5.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f780142056b451af1186d982a8e16130bfd276a2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f780142056b451af1186d982a8e16130bfd276a2.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b6\b601769373047d5119da5c4cb4b3a4bba6a651af.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b6\b601769373047d5119da5c4cb4b3a4bba6a651af.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69708f163aeb7f1d3d93c5d9454dca6576ef2581.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69708f163aeb7f1d3d93c5d9454dca6576ef2581.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\81\815a8e3b66559b0d1265c7b789166062c8861bd5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\81\815a8e3b66559b0d1265c7b789166062c8861bd5.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cf\cf9c45e29398b29856527964dd8d734c5d4fdec4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cf\cf9c45e29398b29856527964dd8d734c5d4fdec4.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e81d067c8870d70331d8b9656a976c1f558e5de.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e81d067c8870d70331d8b9656a976c1f558e5de.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\df\df48ec67964f126550b0d5d71bec2b4cfc027d50.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\df\df48ec67964f126550b0d5d71bec2b4cfc027d50.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e08485787ba9b2ad7c98e435102c966d3f5c64ae.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e08485787ba9b2ad7c98e435102c966d3f5c64ae.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\74\7404a8ee135932a387eac99bfb33951576fe8b67.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\74\7404a8ee135932a387eac99bfb33951576fe8b67.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f91b0c989c2a479c1da04fdb508bd586eba443c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f91b0c989c2a479c1da04fdb508bd586eba443c.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34df8999c17a8450e101699bd789ccbd57ce24ce.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34df8999c17a8450e101699bd789ccbd57ce24ce.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d5\d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d5\d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\3166d186d5cd2eca604e02fdebeb727752294da4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\3166d186d5cd2eca604e02fdebeb727752294da4.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a8\a89b293907eed8bf35922b74df584b59608173f2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a8\a89b293907eed8bf35922b74df584b59608173f2.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\5908d1524fdbf33b63c9c924078b09b63cc7fc89.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\5908d1524fdbf33b63c9c924078b09b63cc7fc89.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\12\122ae41024fa99aa4949a176919256851ded60b7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\12\122ae41024fa99aa4949a176919256851ded60b7.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register ListItem
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register List
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\71\71b930d6142312f684efd1718dfcd7bfd1e95eaa.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\71\71b930d6142312f684efd1718dfcd7bfd1e95eaa.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register MotionTrail
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register MovieClip
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb13e961bcd8d7069545036fc45d02908c0eee94.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb13e961bcd8d7069545036fc45d02908c0eee94.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register RewardFly
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\20\20712297188dd3bbe9fb3acc1799edea45dda86b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\20\20712297188dd3bbe9fb3acc1799edea45dda86b.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register SpineView
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UISpineMovie
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\974d5e18287f52413bf4aef79e6b1b43e2db1119.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\974d5e18287f52413bf4aef79e6b1b43e2db1119.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b7\b71ec6998eef381fede6b5fd1614855829fc2f22.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b7\b71ec6998eef381fede6b5fd1614855829fc2f22.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\13\137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\13\137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7a\7a060cba1d5a032475d6578a562fb8df8171eb0b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7a\7a060cba1d5a032475d6578a562fb8df8171eb0b.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c307a58b694cc824581802a8099e6d62860adb91.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c307a58b694cc824581802a8099e6d62860adb91.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d6b2307e211bf7d71fb96955f3a221662b8b975.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d6b2307e211bf7d71fb96955f3a221662b8b975.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09a6fd4930dfcb5968a1b01550a6275640cfa703.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09a6fd4930dfcb5968a1b01550a6275640cfa703.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\82\82914e241315735457587bc37563ed7db8183cd0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\82\82914e241315735457587bc37563ed7db8183cd0.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_idiom
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5c49ac26bc7b811c9d08fcff5242440f88d29d17.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5c49ac26bc7b811c9d08fcff5242440f88d29d17.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_idiom_order
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c4\c4f98bd93a546a52de77fc64f647d47575afdfde.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c4\c4f98bd93a546a52de77fc64f647d47575afdfde.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_idiom_unorder_1_3
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\084428b3dfc28ebcd60f1249169098df9f4287da.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\084428b3dfc28ebcd60f1249169098df9f4287da.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_idiom_unorder_2_2
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_idiom_unorder_3_1
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_level
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a30868ce54a6c8efe10f298b9b16214ac85c863.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a30868ce54a6c8efe10f298b9b16214ac85c863.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_level_2
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/0a/0a30868ce54a6c8efe10f298b9b16214ac85c863.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0e\0e87907262cdfe9bb04b67b17e1eca1e38126d79.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0e\0e87907262cdfe9bb04b67b17e1eca1e38126d79.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_store
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\505b34a78c0dbfe58195107ebd90b3bc5807bf10.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\505b34a78c0dbfe58195107ebd90b3bc5807bf10.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register table_task
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c28f184f0d05e5d5976de9f0de294b88d5de4347.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c28f184f0d05e5d5976de9f0de294b88d5de4347.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a4102a464059398e43bc26dd3fe1faf79989cb3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a4102a464059398e43bc26dd3fe1faf79989cb3.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\78\789715a9ff1e6669695bc6f37f849347673e7936.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\78\789715a9ff1e6669695bc6f37f849347673e7936.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d4\d4808bb291a6c1906241b46a992fa068602b87c7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d4\d4808bb291a6c1906241b46a992fa068602b87c7.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ef\ef2d221df54a2db9265b17ea24ca2a0b327d2619.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ef\ef2d221df54a2db9265b17ea24ca2a0b327d2619.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\92\9223b50b0b25e34c00abbd1136311e176203d399.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\92\9223b50b0b25e34c00abbd1136311e176203d399.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a163e5eb12e84fcff92e09679473d95caa7ce42.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a163e5eb12e84fcff92e09679473d95caa7ce42.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\46\4669e191907a2a708fa7ba923dc04da98435f165.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\46\4669e191907a2a708fa7ba923dc04da98435f165.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f0\f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f0\f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b9\b968f7f08649c00a45a730a74c55b98d374e1ea3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b9\b968f7f08649c00a45a730a74c55b98d374e1ea3.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2c\2cb4568cc17fc880801c649b7e09213445038932.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2c\2cb4568cc17fc880801c649b7e09213445038932.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a0\a0c4f651e5297607ee62681e54a78e7903383828.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a0\a0c4f651e5297607ee62681e54a78e7903383828.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\76\76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\76\76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c1\c10bd777343c22d44996eae3d1e908c1e444e54c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c1\c10bd777343c22d44996eae3d1e908c1e444e54c.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\fd\fd567b6cff2bda101ea5067e96a8431f92b55a12.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\fd\fd567b6cff2bda101ea5067e96a8431f92b55a12.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3a\3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3a\3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caf1f57c4e93834ff6792756f81ca4dda67117d5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caf1f57c4e93834ff6792756f81ca4dda67117d5.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4f\4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4f\4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d7e3424c179d135dc59489a147ede15a8748562.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d7e3424c179d135dc59489a147ede15a8748562.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73e6dc2a8fc59081071dcebb82927640ef5a7f21.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73e6dc2a8fc59081071dcebb82927640ef5a7f21.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b62ba828bd2568fd07a8c27879bd9e102538148.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b62ba828bd2568fd07a8c27879bd9e102538148.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e8565b65da4744bcef3d3da0a471e3f78c932ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e8565b65da4744bcef3d3da0a471e3f78c932ab.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4a\4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4a\4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\30\30148fb61fef14f86e2cda463a167887dbf8cde4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\30\30148fb61fef14f86e2cda463a167887dbf8cde4.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa522899127047b80d0893406f275d7a7aa74d2c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa522899127047b80d0893406f275d7a7aa74d2c.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7e\7e7ab0c417629d8b4decc7970b158f69484ca3a0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7e\7e7ab0c417629d8b4decc7970b158f69484ca3a0.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\64\648fcac29cbf9485ceab7e7d1359724ae2b1b196.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\64\648fcac29cbf9485ceab7e7d1359724ae2b1b196.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41297756668c0510f828032e1d12f96a4d1a9194.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41297756668c0510f828032e1d12f96a4d1a9194.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a5\a59d8099545685d191f1183a0f3bc7f3602b80cf.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a5\a59d8099545685d191f1183a0f3bc7f3602b80cf.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\96\96e2fcee174623dab28594a5fc60dc89148d32de.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\96\96e2fcee174623dab28594a5fc60dc89148d32de.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47c8e77781a159f10d589db5916314688580bc33.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47c8e77781a159f10d589db5916314688580bc33.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js is not in module cache!
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_GameRules
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Idiom
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Idioms
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Settings
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Tips
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/2e/2e8565b65da4744bcef3d3da0a471e3f78c932ab.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Hall
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Rank
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Rank
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Sign_Reward
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Sign
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Sign
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Invite
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Invite
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Store
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Store
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Start
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_SideBar
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Task
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Task
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Hall
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Tips
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/76/76754d05477925cb3e9d728bb7f254d9b1b8f4e6.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Settings
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Win
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Win
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Main
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Fail
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Fail
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Main
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Hall
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Cube_Infor
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register CreateIdiom
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Layout_Lock
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Lock
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register GameCtl
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Container_Manager
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41efb8b31a2dd15c9c62abcfcc402ffe41a74826.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41efb8b31a2dd15c9c62abcfcc402ffe41a74826.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register Hall_Root
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/41/41efb8b31a2dd15c9c62abcfcc402ffe41a74826.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Register UI_Item
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-24 19:32:36 - debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\83\8346f1745fc6cfca5a9df831ccc439dc13140cfb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\83\8346f1745fc6cfca5a9df831ccc439dc13140cfb.js is not in module cache!
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/83/8346f1745fc6cfca5a9df831ccc439dc13140cfb.js" loaded.
- 2025-1-24 19:32:36 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-24 19:32:36 - groupEnd: Imports all modules
- 2025-1-24 19:32:36 - debug: Incremental keys: chSdk,chsdk
- 2025-1-24 19:32:36 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-24 19:32:37 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-24 19:32:37 - debug: handle json group in bundle internal
- 2025-1-24 19:32:37 - debug: handle json group in bundle internal success
- 2025-1-24 19:32:37 - debug: handle json group in bundle resources
- 2025-1-24 19:32:37 - debug: handle json group in bundle main
- 2025-1-24 19:32:37 - debug: handle json group in bundle module_extra
- 2025-1-24 19:32:37 - debug: handle json group in bundle module_basic
- 2025-1-24 19:32:37 - debug: handle json group in bundle module_game
- 2025-1-24 19:32:37 - debug: init image compress task 0 in bundle internal
- 2025-1-24 19:32:37 - debug: handle json group in bundle resources success
- 2025-1-24 19:32:37 - debug: init image compress task 0 in bundle resources
- 2025-1-24 19:32:37 - debug: handle json group in bundle module_basic success
- 2025-1-24 19:32:37 - debug: init image compress task 0 in bundle module_basic
- 2025-1-24 19:32:37 - debug: handle json group in bundle module_extra success
- 2025-1-24 19:32:37 - debug: init image compress task 0 in bundle module_extra
- 2025-1-24 19:32:37 - debug: handle json group in bundle main success
- 2025-1-24 19:32:37 - debug: init image compress task 0 in bundle main
- 2025-1-24 19:32:37 - debug: handle json group in bundle module_game success
- 2025-1-24 19:32:37 - debug: init image compress task 0 in bundle module_game
- 2025-1-24 19:32:37 - debug: // ---- build task 查询 Asset Bundle ---- (548ms)
- 2025-1-24 19:32:37 - debug: run build task 查询 Asset Bundle success in 548 ms√, progress: 14%
- 2025-1-24 19:32:37 - debug: [Build Memory track]: 查询 Asset Bundle start:168.46MB, end 200.03MB, increase: 31.56MB
- 2025-1-24 19:32:37 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-24 19:32:37 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-24 19:32:37 - debug: // ---- build task 查询 Asset Bundle ---- (84ms)
- 2025-1-24 19:32:37 - debug: run build task 查询 Asset Bundle success in 84 ms√, progress: 19%
- 2025-1-24 19:32:37 - debug: [Build Memory track]: 查询 Asset Bundle start:200.06MB, end 200.58MB, increase: 532.84KB
- 2025-1-24 19:32:37 - debug: 打包脚本 start, progress: 19%
- 2025-1-24 19:32:37 - debug: // ---- build task 打包脚本 ----
- 2025-1-24 19:32:37 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 19:32:37 - log: [build-script]enter sub process 18636, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
- 2025-1-24 19:32:40 - debug: excute-script over with build-script 3482ms
- 2025-1-24 19:32:40 - debug: Generate systemJs..., progress: 19%
- 2025-1-24 19:32:40 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 19:32:43 - debug: excute-script over with build-script 2599ms
- 2025-1-24 19:32:43 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-24 19:32:43 - debug: Build script in bundle start, progress: 19%
- 2025-1-24 19:32:43 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-24 19:32:48 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
- 2025-1-24 19:32:48 - warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/start/Start.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/start/Start.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_LatticeFull/UI_LatticeFull.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Lock/UI_Lock.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
[warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
- 2025-1-24 19:32:51 - debug: excute-script over with build-script 8135ms
- 2025-1-24 19:32:51 - debug: Copy externalScripts success!
- 2025-1-24 19:32:51 - debug: Build script in bundle success, progress: 19%
- 2025-1-24 19:32:51 - debug: 构建项目脚本 in (8236 ms) √, progress: 19%
- 2025-1-24 19:32:51 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-24 19:32:51 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\eb86d1cb887caa950b2345052eaff7db)}
- 2025-1-24 19:32:51 - debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","gfx-webgl2","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"HTML5","useCache":true,"nativeCodeBundleMode":"both","wasmCompressionMode":false,"split":false,"assetURLFormat":"runtime-resolved","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\web-mobile\\cocos-js","flags":{"DEBUG":false,"WEBGPU":false},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-24 19:32:51 - debug: 构建引擎脚本 in (144 ms) √, progress: 19%
- 2025-1-24 19:32:51 - debug: Copy plugin script ..., progress: 19%
- 2025-1-24 19:32:51 - debug: Generate import-map..., progress: 19%
- 2025-1-24 19:32:51 - debug: // ---- build task 打包脚本 ---- (14545ms)
- 2025-1-24 19:32:51 - debug: run build task 打包脚本 success in 14 s√, progress: 24%
- 2025-1-24 19:32:51 - debug: [Build Memory track]: 打包脚本 start:200.77MB, end 195.75MB, increase: -5141.57KB
- 2025-1-24 19:32:51 - debug: Build Assets start, progress: 24%
- 2025-1-24 19:32:51 - debug: // ---- build task Build Assets ----
- 2025-1-24 19:32:51 - debug: Build bundles..., progress: 24%
- 2025-1-24 19:32:51 - debug: Pack Images start, progress: 24%
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-24 19:32:52 - debug: Start trim sprite image ...
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-24 19:32:52 - debug: Start trim sprite image ...
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-24 19:32:52 - debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-24 19:32:52 - debug: determine atlas size...
- 2025-1-24 19:32:52 - debug: Start generate atlas image...
- 2025-1-24 19:32:52 - debug: determine atlas size...
- 2025-1-24 19:32:52 - debug: Start generate atlas image...
- 2025-1-24 19:32:52 - debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
- 2025-1-24 19:32:52 - debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
- 2025-1-24 19:32:52 - debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
- 2025-1-24 19:32:52 - debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
- 2025-1-24 19:32:52 - debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
- 2025-1-24 19:32:52 - debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
- 2025-1-24 19:32:52 - debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
- 2025-1-24 19:32:53 - debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
- 2025-1-24 19:32:53 - debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
- 2025-1-24 19:32:53 - debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
- 2025-1-24 19:32:53 - debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
- 2025-1-24 19:32:53 - debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
- 2025-1-24 19:32:53 - debug(2): remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
- 2025-1-24 19:32:53 - debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
- 2025-1-24 19:32:53 - debug(2): remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
- 2025-1-24 19:32:53 - debug: builder:pack-auto-atlas-image (1326ms)
- 2025-1-24 19:32:53 - debug: Pack Images success, progress: 24%
- 2025-1-24 19:32:53 - debug: Compress image start..., progress: 24%
- 2025-1-24 19:32:53 - group: Compress image...
- 2025-1-24 19:32:53 - debug: sort compress task {}
- 2025-1-24 19:32:53 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-24 19:32:53 - debug: No image need to compress
- 2025-1-24 19:32:53 - groupEnd: Compress image...
- 2025-1-24 19:32:53 - debug: Compress image success..., progress: 24%
- 2025-1-24 19:32:53 - debug: Output asset in bundles start, progress: 24%
- 2025-1-24 19:32:53 - debug: Handle all json groups in bundle internal
- 2025-1-24 19:32:53 - debug: handle json group
- 2025-1-24 19:32:53 - debug: Handle all json groups in bundle resources
- 2025-1-24 19:32:53 - debug: handle json group
- 2025-1-24 19:32:53 - debug: Handle all json groups in bundle main
- 2025-1-24 19:32:53 - debug: handle json group
- 2025-1-24 19:32:53 - debug: Handle all json groups in bundle module_extra
- 2025-1-24 19:32:53 - debug: handle json group
- 2025-1-24 19:32:53 - debug: handle single json
- 2025-1-24 19:32:53 - debug: Handle all json groups in bundle module_basic
- 2025-1-24 19:32:53 - debug: handle json group
- 2025-1-24 19:32:53 - debug: Handle all json groups in bundle module_game
- 2025-1-24 19:32:53 - debug: handle json group
- 2025-1-24 19:32:53 - debug: Json group(03ccd410a) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: handle single json
- 2025-1-24 19:32:53 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: handle single json
- 2025-1-24 19:32:53 - debug: Json group(0119562e1) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0424829d4) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: handle single json
- 2025-1-24 19:32:53 - debug: Json group(02318630c) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: handle single json
- 2025-1-24 19:32:53 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(08f30b54e) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(078a3a89c) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(041ac2e1c) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(04a6d010d) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(097e5daf7) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(091e713ef) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0a46ee258) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(033a6699b) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-24 19:32:53 - debug: handle single json
- 2025-1-24 19:32:53 - debug: Output asset in bundles success, progress: 24%
- 2025-1-24 19:32:53 - debug: Output asset in bundles start, progress: 24%
- 2025-1-24 19:32:53 - debug: compress config of bundle internal...
- 2025-1-24 19:32:53 - debug: compress config of bundle internal success
- 2025-1-24 19:32:53 - debug: compress config of bundle resources...
- 2025-1-24 19:32:53 - debug: compress config of bundle resources success
- 2025-1-24 19:32:53 - debug: compress config of bundle main...
- 2025-1-24 19:32:53 - debug: compress config of bundle main success
- 2025-1-24 19:32:53 - debug: compress config of bundle module_extra...
- 2025-1-24 19:32:53 - debug: compress config of bundle module_extra success
- 2025-1-24 19:32:53 - debug: compress config of bundle module_basic...
- 2025-1-24 19:32:53 - debug: compress config of bundle module_basic success
- 2025-1-24 19:32:53 - debug: compress config of bundle module_game...
- 2025-1-24 19:32:53 - debug: compress config of bundle module_game success
- 2025-1-24 19:32:53 - debug: output config of bundle internal
- 2025-1-24 19:32:53 - debug: output config of bundle internal success
- 2025-1-24 19:32:53 - debug: output config of bundle resources
- 2025-1-24 19:32:53 - debug: output config of bundle resources success
- 2025-1-24 19:32:53 - debug: output config of bundle main
- 2025-1-24 19:32:53 - debug: output config of bundle main success
- 2025-1-24 19:32:53 - debug: output config of bundle module_extra
- 2025-1-24 19:32:53 - debug: output config of bundle module_extra success
- 2025-1-24 19:32:53 - debug: output config of bundle module_basic
- 2025-1-24 19:32:53 - debug: output config of bundle module_basic success
- 2025-1-24 19:32:53 - debug: output config of bundle module_game
- 2025-1-24 19:32:53 - debug: output config of bundle module_game success
- 2025-1-24 19:32:53 - debug: Output asset in bundles success, progress: 24%
- 2025-1-24 19:32:53 - debug: // ---- build task Build Assets ---- (2017ms)
- 2025-1-24 19:32:53 - debug: run build task Build Assets success in 2 s√, progress: 29%
- 2025-1-24 19:32:53 - debug: [Build Memory track]: Build Assets start:195.78MB, end 214.40MB, increase: 18.61MB
- 2025-1-24 19:32:53 - debug: 整理部分构建选项内数据到 settings.json start, progress: 29%
- 2025-1-24 19:32:53 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-24 19:32:53 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (49ms)
- 2025-1-24 19:32:53 - debug: run build task 整理部分构建选项内数据到 settings.json success in 49 ms√, progress: 31%
- 2025-1-24 19:32:53 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.49MB, end 214.61MB, increase: 125.54KB
- 2025-1-24 19:32:53 - debug: 填充脚本数据到 settings.json start, progress: 31%
- 2025-1-24 19:32:53 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-24 19:32:53 - debug: // ---- build task 填充脚本数据到 settings.json ---- (49ms)
- 2025-1-24 19:32:53 - debug: run build task 填充脚本数据到 settings.json success in 49 ms√, progress: 32%
- 2025-1-24 19:32:53 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.65MB, end 214.77MB, increase: 123.81KB
- 2025-1-24 19:32:53 - debug: 整理部分构建选项内数据到 settings.json start, progress: 32%
- 2025-1-24 19:32:53 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-24 19:32:53 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (88ms)
- 2025-1-24 19:32:53 - debug: run build task 整理部分构建选项内数据到 settings.json success in 88 ms√, progress: 34%
- 2025-1-24 19:32:53 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.80MB, end 215.08MB, increase: 284.15KB
- 2025-1-24 19:32:53 - debug: web-mobile:(onBeforeCompressSettings) start..., progress: 34%
- 2025-1-24 19:32:53 - debug: // ---- build task web-mobile:onBeforeCompressSettings ----
- 2025-1-24 19:32:53 - debug: // ---- build task web-mobile:onBeforeCompressSettings ---- (58ms)
- 2025-1-24 19:32:53 - debug: web-mobile:(onBeforeCompressSettings) in 58 ms ✓, progress: 36%
- 2025-1-24 19:32:53 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-24 19:32:53 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-24 19:32:54 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (168ms)
- 2025-1-24 19:32:54 - debug: cocos-service:(onBeforeCompressSettings) in 168 ms ✓, progress: 38%
- 2025-1-24 19:32:54 - debug: 整理静态模板文件 start, progress: 38%
- 2025-1-24 19:32:54 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-24 19:32:54 - debug: // ---- build task 整理静态模板文件 ---- (145ms)
- 2025-1-24 19:32:54 - debug: run build task 整理静态模板文件 success in 145 ms√, progress: 43%
- 2025-1-24 19:32:54 - debug: [Build Memory track]: 整理静态模板文件 start:215.44MB, end 209.23MB, increase: -6365.52KB
- 2025-1-24 19:32:54 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 43%
- 2025-1-24 19:32:54 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-24 19:32:54 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (104ms)
- 2025-1-24 19:32:54 - debug: cocos-service:(onAfterCompressSettings) in 104 ms ✓, progress: 45%
- 2025-1-24 19:32:54 - debug: web-mobile:(onBeforeCopyBuildTemplate) start..., progress: 45%
- 2025-1-24 19:32:54 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ----
- 2025-1-24 19:32:54 - debug: // ---- build task web-mobile:onBeforeCopyBuildTemplate ---- (72ms)
- 2025-1-24 19:32:54 - debug: web-mobile:(onBeforeCopyBuildTemplate) in 72 ms ✓, progress: 46%
- 2025-1-24 19:32:54 - debug: 给所有的资源加上 MD5 后缀 start, progress: 46%
- 2025-1-24 19:32:54 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-24 19:32:54 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (49ms)
- 2025-1-24 19:32:54 - debug: run build task 给所有的资源加上 MD5 后缀 success in 49 ms√, progress: 56%
- 2025-1-24 19:32:54 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:212.41MB, end 212.53MB, increase: 124.06KB
- 2025-1-24 19:32:54 - debug: cocos-service:(onAfterBuild) start..., progress: 56%
- 2025-1-24 19:32:54 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-24 19:32:54 - debug: // ---- build task cocos-service:onAfterBuild ---- (105ms)
- 2025-1-24 19:32:54 - debug: cocos-service:(onAfterBuild) in 105 ms ✓, progress: 58%
- 2025-1-24 19:32:54 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 58%
- 2025-1-24 19:32:54 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-24 19:32:54 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (41ms)
- 2025-1-24 19:32:54 - debug: adsense-h5g-plugin:(onAfterBuild) in 41 ms ✓, progress: 60%
- 2025-1-24 19:32:54 - log: Asset DB is resume!
- 2025-1-24 19:32:54 - debug: builder:build-project-total (18821ms)
- 2025-1-24 19:32:54 - debug: build success in 18821!
- 2025-1-24 19:32:54 - debug: [Build Memory track]: builder:build-project-total start:167.90MB, end 216.97MB, increase: 49.07MB
- 2025-1-24 19:32:54 - debug: ================================ build Task (web-mobile) Finished in (18 s)ms ================================
|