123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758 |
- 2025-1-18 10:29:13 - debug: =================================== build Task (wechatgame) Start ================================
- 2025-1-18 10:29:13 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","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":"brotli","packages":{"cocos-service":{"configID":"7dcd5c","services":[]},"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
- 2025-1-18 10:29:13 - debug: Build with Cocos Creator 3.8.4
- 2025-1-18 10:29:13 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-18 10:29:13 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-18 10:29:14 - debug: // ---- build task cocos-service:onBeforeBuild ---- (252ms)
- 2025-1-18 10:29:14 - debug: cocos-service:(onBeforeBuild) in 252 ms ✓, progress: 2%
- 2025-1-18 10:29:14 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-18 10:29:14 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-18 10:29:14 - debug: // ---- build task scene:onBeforeBuild ---- (18ms)
- 2025-1-18 10:29:14 - debug: scene:(onBeforeBuild) in 18 ms ✓, progress: 4%
- 2025-1-18 10:29:14 - debug: Start lock asset db..., progress: 4%
- 2025-1-18 10:29:14 - log: Asset DB is paused with build!
- 2025-1-18 10:29:14 - debug: Query all assets info in project
- 2025-1-18 10:29:14 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-18 10:29:14 - debug: wechatgame:(onAfterInit) start..., progress: 4%
- 2025-1-18 10:29:14 - debug: // ---- build task wechatgame:onAfterInit ----
- 2025-1-18 10:29:14 - debug: // ---- build task wechatgame:onAfterInit ---- (5ms)
- 2025-1-18 10:29:14 - debug: wechatgame:(onAfterInit) in 5 ms ✓, progress: 5%
- 2025-1-18 10:29:14 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-18 10:29:14 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-18 10:29:14 - debug: // ---- build task cocos-service:onAfterInit ---- (67ms)
- 2025-1-18 10:29:14 - debug: cocos-service:(onAfterInit) in 67 ms ✓, progress: 7%
- 2025-1-18 10:29:14 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-18 10:29:14 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-18 10:29:14 - debug: // ---- build task engine:onAfterInit ---- (13ms)
- 2025-1-18 10:29:14 - debug: engine:(onAfterInit) in 13 ms ✓, progress: 9%
- 2025-1-18 10:29:14 - debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 10:29:14 - debug: // ---- build task wechatgame:onBeforeBundleInit ----
- 2025-1-18 10:29:14 - debug: // ---- build task wechatgame:onBeforeBundleInit ---- (17ms)
- 2025-1-18 10:29:14 - debug: wechatgame:(onBeforeBundleInit) in 17 ms ✓, progress: 9%
- 2025-1-18 10:29:14 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 10:29:14 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-18 10:29:14 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-18 10:29:14 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (18ms)
- 2025-1-18 10:29:14 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 18 ms ✓, progress: 9%
- 2025-1-18 10:29:14 - debug: Init all bundles start..., progress: 9%
- 2025-1-18 10:29:14 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-18 10:29:14 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-18 10:29:14 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 10:29:14 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: Number of all scenes: 3
- 2025-1-18 10:29:14 - debug: Number of all scripts: 118
- 2025-1-18 10:29:14 - debug: Number of other assets: 1130
- 2025-1-18 10:29:14 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-18 10:29:14 - debug: reload all scripts.
- 2025-1-18 10:29:14 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-18 10:29:14 - groupCollapsed: Invalidate all modules
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 10:29:14 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-18 10:29:14 - groupEnd: Invalidate all modules
- 2025-1-18 10:29:14 - groupCollapsed: Imports all modules
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register ch_start_pack
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register ui_updater
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register ListItem
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register List
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register MotionTrail
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register MovieClip
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register RewardFly
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register SpineView
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register UISpineMovie
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register table_idiom
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register table_level
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_GameRules
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Idiom
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Idioms
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Settings
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Hall
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Rank
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Rank
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Sign_Reward
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Sign
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Sign
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Invite
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Invite
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Store
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Store
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Start
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_SideBar
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Task
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Task
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Hall
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Settings
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Win
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Win
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Main
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Fail
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Fail
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Main
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Hall
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Cube_Infor
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register CreateIdiom
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Layout_Lock
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register UI_Lock
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register GameCtl
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Register Container_Manager
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-18 10:29:14 - 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-18 10:29:14 - debug: [[Executor]] Register UI_Item
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-18 10:29:14 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 10:29:14 - groupEnd: Imports all modules
- 2025-1-18 10:29:14 - debug: Incremental keys: chSdk,chsdk
- 2025-1-18 10:29:14 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-18 10:29:14 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-18 10:29:14 - debug: handle json group in bundle internal
- 2025-1-18 10:29:14 - debug: handle json group in bundle internal success
- 2025-1-18 10:29:14 - debug: handle json group in bundle start-scene
- 2025-1-18 10:29:14 - debug: handle json group in bundle start-scene success
- 2025-1-18 10:29:14 - debug: handle json group in bundle main
- 2025-1-18 10:29:14 - debug: handle json group in bundle main success
- 2025-1-18 10:29:14 - debug: handle json group in bundle module_extra
- 2025-1-18 10:29:14 - debug: handle json group in bundle module_basic
- 2025-1-18 10:29:14 - debug: handle json group in bundle module_game
- 2025-1-18 10:29:14 - debug: init image compress task 0 in bundle internal
- 2025-1-18 10:29:14 - debug: init image compress task 0 in bundle start-scene
- 2025-1-18 10:29:14 - debug: init image compress task 0 in bundle main
- 2025-1-18 10:29:14 - debug: handle json group in bundle module_extra success
- 2025-1-18 10:29:14 - debug: init image compress task 0 in bundle module_extra
- 2025-1-18 10:29:14 - debug: handle json group in bundle module_basic success
- 2025-1-18 10:29:14 - debug: init image compress task 0 in bundle module_basic
- 2025-1-18 10:29:14 - debug: handle json group in bundle module_game success
- 2025-1-18 10:29:14 - debug: init image compress task 0 in bundle module_game
- 2025-1-18 10:29:14 - debug: // ---- build task 查询 Asset Bundle ---- (447ms)
- 2025-1-18 10:29:14 - debug: run build task 查询 Asset Bundle success in 447 ms√, progress: 14%
- 2025-1-18 10:29:14 - debug: [Build Memory track]: 查询 Asset Bundle start:166.16MB, end 199.72MB, increase: 33.56MB
- 2025-1-18 10:29:14 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-18 10:29:14 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 10:29:14 - debug: // ---- build task 查询 Asset Bundle ---- (16ms)
- 2025-1-18 10:29:14 - debug: run build task 查询 Asset Bundle success in 16 ms√, progress: 19%
- 2025-1-18 10:29:14 - debug: [Build Memory track]: 查询 Asset Bundle start:199.76MB, end 200.05MB, increase: 293.15KB
- 2025-1-18 10:29:14 - debug: 打包脚本 start, progress: 19%
- 2025-1-18 10:29:14 - debug: // ---- build task 打包脚本 ----
- 2025-1-18 10:29:14 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 10:29:15 - log: [build-script]enter sub process 8816, 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-18 10:29:17 - debug: excute-script over with build-script 3161ms
- 2025-1-18 10:29:17 - debug: Generate systemJs..., progress: 19%
- 2025-1-18 10:29:17 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 10:29:20 - debug: excute-script over with build-script 2370ms
- 2025-1-18 10:29:20 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-18 10:29:20 - debug: Build script in bundle start, progress: 19%
- 2025-1-18 10:29:20 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 10:29:24 - 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-18 10:29:24 - 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/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_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_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_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_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_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_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_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_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_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_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_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_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_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_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/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-18 10:29:28 - debug: excute-script over with build-script 7865ms
- 2025-1-18 10:29:28 - debug: Copy externalScripts success!
- 2025-1-18 10:29:28 - debug: Build script in bundle success, progress: 19%
- 2025-1-18 10:29:28 - debug: 构建项目脚本 in (7949 ms) √, progress: 19%
- 2025-1-18 10:29:28 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-18 10:29:28 - debug: Engine cache ({link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\0ae7f2329c7dd0c47838e7933f7b8cfa)}) does not exist.
- 2025-1-18 10:29:28 - debug: start build engine with options: {"incremental":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\0ae7f2329c7dd0c47838e7933f7b8cfa.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\\0ae7f2329c7dd0c47838e7933f7b8cfa","moduleFormat":"system","compress":true,"split":false,"nativeCodeBundleMode":"wasm","assetURLFormat":"relative-from-out","sourceMap":false,"loose":true,"features":["2d","3d","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"platform":"WECHAT","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"mode":"BUILD","metaFile":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\0ae7f2329c7dd0c47838e7933f7b8cfa.meta\\meta.json","wasmCompressionMode":"brotli"}
- 2025-1-18 10:29:28 - log: Run build task(build-engine) in child, see: chrome://inspect/#devices
- 2025-1-18 10:29:28 - log: [build-engine]enter sub process 24944, 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-18 10:29:29 - 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\\0ae7f2329c7dd0c47838e7933f7b8cfa","platform":"WECHAT","moduleFormat":"system","compress":true,"split":false,"nativeCodeBundleMode":"wasm","assetURLFormat":"relative-from-out","noDeprecatedFeatures":false,"sourceMap":false,"features":["2d","3d","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"loose":true,"mode":"BUILD","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"metaFile":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\0ae7f2329c7dd0c47838e7933f7b8cfa.meta\\meta.json","incremental":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\0ae7f2329c7dd0c47838e7933f7b8cfa.watch-files.json","wasmCompressionMode":"brotli"}
- 2025-1-18 10:29:29 - 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 = false;
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 = true;
tryDefineGlobal('CC_WECHAT', true);
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 = true;
tryDefineGlobal('CC_MINIGAME', true);
export const RUNTIME_BASED = false;
tryDefineGlobal('CC_RUNTIME_BASED', false);
export const SUPPORT_JIT = false;
tryDefineGlobal('CC_SUPPORT_JIT', false);
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 = 1;
export const WASM_SUBPACKAGE = true;
export const CULL_MESHOPT = true;
- 2025-1-18 10:29:29 - 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\\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';
- 2025-1-18 10:29:30 - 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-18 10:29:30 - log: [build-engine]Redirect module pal/wasm to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\wasm\wasm-minigame.ts
- 2025-1-18 10:29:31 - log: [build-engine]Redirect module pal/screen-adapter to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\screen-adapter\minigame\screen-adapter.ts
- 2025-1-18 10:29:31 - log: [build-engine]Redirect module pal/minigame to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\minigame\wechat.ts
- 2025-1-18 10:29:31 - log: [build-engine]Redirect module pal/system-info to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\system-info\minigame\system-info.ts
- 2025-1-18 10:29:34 - log: [build-engine]Redirect module pal/audio to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\audio\minigame\player.ts
- 2025-1-18 10:29:35 - log: [build-engine]Redirect module pal/input to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\input\minigame\index.ts
- 2025-1-18 10:29:35 - log: [build-engine]Redirect module pal/env to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\env\minigame\env.ts
- 2025-1-18 10:29:35 - log: [build-engine]Redirect module pal/pacer to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\pacer\pacer-minigame.ts
- 2025-1-18 10:29:39 - log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
- 2025-1-18 10:29:41 - 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-18 10:29:49 - log: [build-engine]==== Performance ====
{"# BUILD":[19974.834699988365,446346712,504372960],"## generate module graph":[18114.51270008087,387742132,445773824],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId":[7.048699975013733,1152968,445735020],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId (async)":[26.681690454483032,5000424,445735560],"- plugin 1 (@cocos/ccbuild|module-overrides) - resolveId":[6.253004312515259,666244,445736012],"- plugin 2 (virtual) - resolveId":[20.810503721237183,4819888,445737888],"load modules":[72337.87709331512,3278383692,441365240],"- plugin 0 (@cocos/ccbuild|external-loader) - load":[2.314600110054016,273368,441331448],"- plugin 0 (@cocos/ccbuild|external-loader) - load (async)":[4.574701547622681,1228032,441331936],"- plugin 1 (@cocos/ccbuild|module-overrides) - load":[5.58250105381012,324936,441332624],"- plugin 2 (virtual) - load":[1.2671008110046387,85588,441333020],"- plugin 6 (json) - transform":[3.3207015991210938,827588,441368956],"- plugin 7 (commonjs) - transform":[11.129299998283386,610276,441372140],"- plugin 8 (babel) - transform":[166.68380045890808,-10621228,441399244],"generate ast":[464.2461996078491,221396,444598896],"analyse ast":[835.5632019042969,86390028,445729916],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId":[14.843796133995056,-13064336,445739456],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId (async)":[47.79789400100708,7381584,445740028],"- plugin 4 (ts-paths) - resolveId":[4.12550163269043,456868,445740416],"- plugin 5 (node-resolve) - resolveId":[35.123698353767395,4235120,445741556],"- plugin 5 (node-resolve) - resolveId (async)":[87896.94527816772,1403107484,445741996],"- plugin 5 (node-resolve) - load":[1.3452993631362915,89424,441333424],"- plugin 7 (commonjs) - load":[4.353599786758423,680712,441334884],"- plugin 8 (babel) - load":[242.21030068397522,10521448,441335280],"- plugin 8 (babel) - transform (async)":[13440.705799818039,244372132,444037596],"- plugin 7 (commonjs) - resolveId":[1.7923996448516846,69576,445742436],"- plugin 8 (babel) - resolveId":[0.8711997270584106,52932,445742840],"## sort modules":[142.3085000514984,9290712,455064844],"## mark included statements":[1717.8861000537872,49306304,504371392],"treeshaking pass 1":[742.6829999685287,44424912,493302832],"treeshaking pass 2":[221.9264999628067,7422060,500725136],"treeshaking pass 3":[114.06700003147125,3585864,504311244],"treeshaking pass 4":[103.83430004119873,-983916,503327572],"treeshaking pass 5":[72.33460009098053,3094492,506422308],"treeshaking pass 6":[59.65030002593994,2409584,508832136],"treeshaking pass 7":[55.052199959754944,-478852,508353528],"treeshaking pass 8":[49.05830001831055,-2796176,505557596],"treeshaking pass 9":[47.76419997215271,3968604,509526444],"treeshaking pass 10":[51.26189994812012,-4206852,505319836],"treeshaking pass 11":[47.60000002384186,3707824,509027904],"treeshaking pass 12":[52.732200026512146,-3762516,505265632],"treeshaking pass 13":[47.99820005893707,3692388,508958264],"treeshaking pass 14":[46.45770001411438,-4589568,504368940]}
==== ====
- 2025-1-18 10:30:02 - debug: excute-script over with build-engine 34333ms
- 2025-1-18 10:30:02 - debug: 构建引擎脚本 in (34379 ms) √, progress: 19%
- 2025-1-18 10:30:02 - debug: Copy plugin script ..., progress: 19%
- 2025-1-18 10:30:02 - debug: Generate import-map..., progress: 19%
- 2025-1-18 10:30:02 - debug: // ---- build task 打包脚本 ---- (47955ms)
- 2025-1-18 10:30:02 - debug: run build task 打包脚本 success in 47 s√, progress: 24%
- 2025-1-18 10:30:02 - debug: [Build Memory track]: 打包脚本 start:200.22MB, end 199.35MB, increase: -893.55KB
- 2025-1-18 10:30:02 - debug: Build Assets start, progress: 24%
- 2025-1-18 10:30:02 - debug: // ---- build task Build Assets ----
- 2025-1-18 10:30:02 - debug: Build bundles..., progress: 24%
- 2025-1-18 10:30:02 - debug: Pack Images start, progress: 24%
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: Start trim sprite image ...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:03 - debug: determine atlas size...
- 2025-1-18 10:30:03 - debug: Start generate atlas image...
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 10:30:04 - debug(2): remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 10:30:04 - debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 10:30:04 - debug(2): remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 10:30:04 - debug: builder:pack-auto-atlas-image (1547ms)
- 2025-1-18 10:30:04 - debug: Pack Images success, progress: 24%
- 2025-1-18 10:30:04 - debug: Compress image start..., progress: 24%
- 2025-1-18 10:30:04 - group: Compress image...
- 2025-1-18 10:30:04 - debug: sort compress task {}
- 2025-1-18 10:30:04 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-18 10:30:04 - debug: No image need to compress
- 2025-1-18 10:30:04 - groupEnd: Compress image...
- 2025-1-18 10:30:04 - debug: Compress image success..., progress: 24%
- 2025-1-18 10:30:04 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 10:30:04 - debug: Handle all json groups in bundle internal
- 2025-1-18 10:30:04 - debug: handle json group
- 2025-1-18 10:30:04 - debug: Handle all json groups in bundle start-scene
- 2025-1-18 10:30:04 - debug: handle json group
- 2025-1-18 10:30:04 - debug: Handle all json groups in bundle main
- 2025-1-18 10:30:04 - debug: handle json group
- 2025-1-18 10:30:04 - debug: handle single json
- 2025-1-18 10:30:04 - debug: Handle all json groups in bundle module_extra
- 2025-1-18 10:30:04 - debug: handle json group
- 2025-1-18 10:30:04 - debug: handle single json
- 2025-1-18 10:30:04 - debug: Handle all json groups in bundle module_basic
- 2025-1-18 10:30:04 - debug: handle json group
- 2025-1-18 10:30:04 - debug: Handle all json groups in bundle module_game
- 2025-1-18 10:30:04 - debug: handle json group
- 2025-1-18 10:30:04 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: handle single json
- 2025-1-18 10:30:04 - debug: Json group(04ade8c9e) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: handle single json
- 2025-1-18 10:30:04 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: handle single json
- 2025-1-18 10:30:04 - debug: Json group(09d6a42a2) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0a1731415) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0403d1262) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0329651a2) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0332e55a0) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(022fd81fe) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-18 10:30:04 - debug: handle single json
- 2025-1-18 10:30:04 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 10:30:04 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 10:30:04 - debug: compress config of bundle internal...
- 2025-1-18 10:30:04 - debug: compress config of bundle internal success
- 2025-1-18 10:30:04 - debug: compress config of bundle start-scene...
- 2025-1-18 10:30:04 - debug: compress config of bundle start-scene success
- 2025-1-18 10:30:04 - debug: compress config of bundle main...
- 2025-1-18 10:30:04 - debug: compress config of bundle main success
- 2025-1-18 10:30:04 - debug: compress config of bundle module_extra...
- 2025-1-18 10:30:04 - debug: compress config of bundle module_extra success
- 2025-1-18 10:30:04 - debug: compress config of bundle module_basic...
- 2025-1-18 10:30:04 - debug: compress config of bundle module_basic success
- 2025-1-18 10:30:04 - debug: compress config of bundle module_game...
- 2025-1-18 10:30:04 - debug: compress config of bundle module_game success
- 2025-1-18 10:30:04 - debug: output config of bundle internal
- 2025-1-18 10:30:04 - debug: output config of bundle internal success
- 2025-1-18 10:30:04 - debug: output config of bundle start-scene
- 2025-1-18 10:30:04 - debug: output config of bundle start-scene success
- 2025-1-18 10:30:04 - debug: output config of bundle main
- 2025-1-18 10:30:04 - debug: output config of bundle main success
- 2025-1-18 10:30:04 - debug: output config of bundle module_extra
- 2025-1-18 10:30:04 - debug: output config of bundle module_extra success
- 2025-1-18 10:30:04 - debug: output config of bundle module_basic
- 2025-1-18 10:30:04 - debug: output config of bundle module_basic success
- 2025-1-18 10:30:04 - debug: output config of bundle module_game
- 2025-1-18 10:30:04 - debug: output config of bundle module_game success
- 2025-1-18 10:30:04 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 10:30:04 - debug: // ---- build task Build Assets ---- (2071ms)
- 2025-1-18 10:30:04 - debug: run build task Build Assets success in 2 s√, progress: 29%
- 2025-1-18 10:30:04 - debug: [Build Memory track]: Build Assets start:199.39MB, end 210.39MB, increase: 11.01MB
- 2025-1-18 10:30:04 - debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
- 2025-1-18 10:30:04 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
- 2025-1-18 10:30:04 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (16ms)
- 2025-1-18 10:30:04 - debug: wechatgame:(onAfterBundleBuildTask) in 16 ms ✓, progress: 29%
- 2025-1-18 10:30:04 - debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
- 2025-1-18 10:30:04 - debug: // ---- build task wechatgame:onAfterBuildAssets ----
- 2025-1-18 10:30:04 - debug: // ---- build task wechatgame:onAfterBuildAssets ---- (18ms)
- 2025-1-18 10:30:04 - debug: wechatgame:(onAfterBuildAssets) in 18 ms ✓, progress: 31%
- 2025-1-18 10:30:04 - debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
- 2025-1-18 10:30:04 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 10:30:04 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (34ms)
- 2025-1-18 10:30:04 - debug: run build task 整理部分构建选项内数据到 settings.json success in 34 ms√, progress: 33%
- 2025-1-18 10:30:04 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.68MB, end 210.77MB, increase: 87.75KB
- 2025-1-18 10:30:04 - debug: 填充脚本数据到 settings.json start, progress: 33%
- 2025-1-18 10:30:04 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-18 10:30:04 - debug: // ---- build task 填充脚本数据到 settings.json ---- (23ms)
- 2025-1-18 10:30:04 - debug: run build task 填充脚本数据到 settings.json success in 23 ms√, progress: 34%
- 2025-1-18 10:30:04 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.80MB, end 210.87MB, increase: 69.83KB
- 2025-1-18 10:30:04 - debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
- 2025-1-18 10:30:04 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 10:30:04 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (21ms)
- 2025-1-18 10:30:04 - debug: run build task 整理部分构建选项内数据到 settings.json success in 21 ms√, progress: 36%
- 2025-1-18 10:30:04 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.91MB, end 211.08MB, increase: 174.98KB
- 2025-1-18 10:30:04 - debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-18 10:30:04 - debug: // ---- build task wechatgame:onBeforeCompressSettings ----
- 2025-1-18 10:30:04 - debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (22ms)
- 2025-1-18 10:30:04 - debug: wechatgame:(onBeforeCompressSettings) in 22 ms ✓, progress: 38%
- 2025-1-18 10:30:04 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
- 2025-1-18 10:30:04 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-18 10:30:05 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (161ms)
- 2025-1-18 10:30:05 - debug: cocos-service:(onBeforeCompressSettings) in 161 ms ✓, progress: 40%
- 2025-1-18 10:30:05 - debug: 整理静态模板文件 start, progress: 40%
- 2025-1-18 10:30:05 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-18 10:30:05 - debug: // ---- build task 整理静态模板文件 ---- (78ms)
- 2025-1-18 10:30:05 - debug: run build task 整理静态模板文件 success in 78 ms√, progress: 45%
- 2025-1-18 10:30:05 - debug: [Build Memory track]: 整理静态模板文件 start:211.34MB, end 206.39MB, increase: -5063.34KB
- 2025-1-18 10:30:05 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
- 2025-1-18 10:30:05 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-18 10:30:05 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (202ms)
- 2025-1-18 10:30:05 - debug: cocos-service:(onAfterCompressSettings) in 202 ms ✓, progress: 46%
- 2025-1-18 10:30:05 - debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
- 2025-1-18 10:30:05 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
- 2025-1-18 10:30:05 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (18ms)
- 2025-1-18 10:30:05 - debug: wechatgame:(onBeforeCopyBuildTemplate) in 18 ms ✓, progress: 48%
- 2025-1-18 10:30:05 - debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
- 2025-1-18 10:30:05 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
- 2025-1-18 10:30:05 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (20ms)
- 2025-1-18 10:30:05 - debug: wechatgame:(onAfterCopyBuildTemplate) in 20 ms ✓, progress: 50%
- 2025-1-18 10:30:05 - debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
- 2025-1-18 10:30:05 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-18 10:30:05 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (21ms)
- 2025-1-18 10:30:05 - debug: run build task 给所有的资源加上 MD5 后缀 success in 21 ms√, progress: 60%
- 2025-1-18 10:30:05 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:207.01MB, end 207.07MB, increase: 69.67KB
- 2025-1-18 10:30:05 - debug: wechatgame:(onAfterBuild) start..., progress: 60%
- 2025-1-18 10:30:05 - debug: // ---- build task wechatgame:onAfterBuild ----
- 2025-1-18 10:30:05 - debug: // ---- build task wechatgame:onAfterBuild ---- (303ms)
- 2025-1-18 10:30:05 - debug: wechatgame:(onAfterBuild) in 303 ms ✓, progress: 62%
- 2025-1-18 10:30:05 - debug: cocos-service:(onAfterBuild) start..., progress: 62%
- 2025-1-18 10:30:05 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-18 10:30:05 - debug: // ---- build task cocos-service:onAfterBuild ---- (102ms)
- 2025-1-18 10:30:05 - debug: cocos-service:(onAfterBuild) in 102 ms ✓, progress: 64%
- 2025-1-18 10:30:05 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
- 2025-1-18 10:30:05 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-18 10:30:05 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (17ms)
- 2025-1-18 10:30:05 - debug: adsense-h5g-plugin:(onAfterBuild) in 17 ms ✓, progress: 65%
- 2025-1-18 10:30:05 - log: Asset DB is resume!
- 2025-1-18 10:30:05 - debug: builder:build-project-total (52074ms)
- 2025-1-18 10:30:05 - debug: build success in 52074!
- 2025-1-18 10:30:05 - debug: [Build Memory track]: builder:build-project-total start:165.24MB, end 208.72MB, increase: 43.47MB
- 2025-1-18 10:30:05 - debug: ================================ build Task (wechatgame) Finished in (52 s)ms ================================
- 2025-1-18 10:57:54 - debug: =================================== build Task (wechatgame) Start ================================
- 2025-1-18 10:57:54 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","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":"brotli","packages":{"cocos-service":{"configID":"7dcd5c","services":[]},"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
- 2025-1-18 10:57:54 - debug: Build with Cocos Creator 3.8.4
- 2025-1-18 10:57:54 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-18 10:57:54 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-18 10:57:54 - debug: // ---- build task cocos-service:onBeforeBuild ---- (147ms)
- 2025-1-18 10:57:54 - debug: cocos-service:(onBeforeBuild) in 147 ms ✓, progress: 2%
- 2025-1-18 10:57:54 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-18 10:57:54 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-18 10:57:54 - debug: // ---- build task scene:onBeforeBuild ---- (17ms)
- 2025-1-18 10:57:54 - debug: scene:(onBeforeBuild) in 17 ms ✓, progress: 4%
- 2025-1-18 10:57:54 - debug: Start lock asset db..., progress: 4%
- 2025-1-18 10:57:54 - log: Asset DB is paused with build!
- 2025-1-18 10:57:54 - debug: Query all assets info in project
- 2025-1-18 10:57:54 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-18 10:57:54 - debug: wechatgame:(onAfterInit) start..., progress: 4%
- 2025-1-18 10:57:54 - debug: // ---- build task wechatgame:onAfterInit ----
- 2025-1-18 10:57:54 - debug: // ---- build task wechatgame:onAfterInit ---- (18ms)
- 2025-1-18 10:57:54 - debug: wechatgame:(onAfterInit) in 18 ms ✓, progress: 5%
- 2025-1-18 10:57:54 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-18 10:57:54 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-18 10:57:55 - debug: // ---- build task cocos-service:onAfterInit ---- (566ms)
- 2025-1-18 10:57:55 - debug: cocos-service:(onAfterInit) in 566 ms ✓, progress: 7%
- 2025-1-18 10:57:55 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-18 10:57:55 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-18 10:57:55 - debug: // ---- build task engine:onAfterInit ---- (18ms)
- 2025-1-18 10:57:55 - debug: engine:(onAfterInit) in 18 ms ✓, progress: 9%
- 2025-1-18 10:57:55 - debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 10:57:55 - debug: // ---- build task wechatgame:onBeforeBundleInit ----
- 2025-1-18 10:57:55 - debug: // ---- build task wechatgame:onBeforeBundleInit ---- (23ms)
- 2025-1-18 10:57:55 - debug: wechatgame:(onBeforeBundleInit) in 23 ms ✓, progress: 9%
- 2025-1-18 10:57:55 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 10:57:55 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-18 10:57:55 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-18 10:57:55 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (25ms)
- 2025-1-18 10:57:55 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 25 ms ✓, progress: 9%
- 2025-1-18 10:57:55 - debug: Init all bundles start..., progress: 9%
- 2025-1-18 10:57:55 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-18 10:57:55 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-18 10:57:55 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 10:57:55 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-18 10:57:55 - 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-18 10:57:55 - debug: Number of all scenes: 3
- 2025-1-18 10:57:55 - debug: Number of all scripts: 118
- 2025-1-18 10:57:55 - debug: Number of other assets: 1130
- 2025-1-18 10:57:55 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-18 10:57:55 - debug: reload all scripts.
- 2025-1-18 10:57:55 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-18 10:57:55 - groupCollapsed: Invalidate all modules
- 2025-1-18 10:57:55 - debug: Unregister BuiltinPipelineSettings
- 2025-1-18 10:57:55 - debug: Unregister DebugViewRuntimeControl
- 2025-1-18 10:57:55 - debug: Unregister ch_sdk_comp
- 2025-1-18 10:57:55 - debug: Unregister ch_start_pack
- 2025-1-18 10:57:55 - debug: Unregister __NodeEventAgent__
- 2025-1-18 10:57:55 - debug: Unregister ResolutionAutoFit
- 2025-1-18 10:57:55 - debug: Unregister ui_updater
- 2025-1-18 10:57:55 - debug: Unregister ClickPenetrate
- 2025-1-18 10:57:55 - debug: Unregister ListItem
- 2025-1-18 10:57:55 - debug: Unregister List
- 2025-1-18 10:57:55 - debug: Unregister MotionTrail
- 2025-1-18 10:57:55 - debug: Unregister MovieClip
- 2025-1-18 10:57:55 - debug: Unregister RewardFly
- 2025-1-18 10:57:55 - debug: Unregister SpineView
- 2025-1-18 10:57:55 - debug: Unregister UISpineMovie
- 2025-1-18 10:57:55 - debug: Unregister Layout_UIAlert
- 2025-1-18 10:57:55 - debug: Unregister Layout_UI_Notify
- 2025-1-18 10:57:55 - debug: Unregister Layout_UIWaiting
- 2025-1-18 10:57:55 - debug: Unregister table_idiom
- 2025-1-18 10:57:55 - debug: Unregister table_level
- 2025-1-18 10:57:55 - debug: Unregister Layout_GameRules
- 2025-1-18 10:57:55 - debug: Unregister UI_GameRules
- 2025-1-18 10:57:55 - debug: Unregister UI_Idiom
- 2025-1-18 10:57:55 - debug: Unregister Layout_Idioms
- 2025-1-18 10:57:55 - debug: Unregister UI_Idioms
- 2025-1-18 10:57:55 - debug: Unregister Layout_Settings
- 2025-1-18 10:57:55 - debug: Unregister Layout_Hall
- 2025-1-18 10:57:55 - debug: Unregister UI_Head_Icon
- 2025-1-18 10:57:55 - debug: Unregister UI_Rank_Item
- 2025-1-18 10:57:55 - debug: Unregister Layout_Rank
- 2025-1-18 10:57:55 - debug: Unregister UI_Rank
- 2025-1-18 10:57:55 - debug: Unregister Sign_Reward
- 2025-1-18 10:57:55 - debug: Unregister Layout_Sign
- 2025-1-18 10:57:55 - debug: Unregister UI_Sign
- 2025-1-18 10:57:55 - debug: Unregister Layout_Invite
- 2025-1-18 10:57:55 - debug: Unregister UI_Invite
- 2025-1-18 10:57:55 - debug: Unregister Layout_Store
- 2025-1-18 10:57:55 - debug: Unregister UI_Store
- 2025-1-18 10:57:55 - debug: Unregister Layout_SideBar
- 2025-1-18 10:57:55 - debug: Unregister Start
- 2025-1-18 10:57:55 - debug: Unregister UI_SideBar
- 2025-1-18 10:57:55 - debug: Unregister UI_Task_Item
- 2025-1-18 10:57:55 - debug: Unregister Layout_Task
- 2025-1-18 10:57:55 - debug: Unregister UI_Task
- 2025-1-18 10:57:55 - debug: Unregister UI_Hall
- 2025-1-18 10:57:55 - debug: Unregister UI_Settings
- 2025-1-18 10:57:55 - debug: Unregister Layout_Win
- 2025-1-18 10:57:55 - debug: Unregister UI_Win
- 2025-1-18 10:57:55 - debug: Unregister Layout_Main
- 2025-1-18 10:57:55 - debug: Unregister Layout_TimesOver
- 2025-1-18 10:57:55 - debug: Unregister Layout_Fail
- 2025-1-18 10:57:55 - debug: Unregister UI_Fail
- 2025-1-18 10:57:55 - debug: Unregister UI_TimesOver
- 2025-1-18 10:57:55 - debug: Unregister UI_Main
- 2025-1-18 10:57:55 - debug: Unregister Hall
- 2025-1-18 10:57:55 - debug: Unregister Cube_Infor
- 2025-1-18 10:57:55 - debug: Unregister CreateIdiom
- 2025-1-18 10:57:55 - debug: Unregister Layout_LatticeFull
- 2025-1-18 10:57:55 - debug: Unregister UI_LatticeFull
- 2025-1-18 10:57:55 - debug: Unregister Layout_Lock
- 2025-1-18 10:57:55 - debug: Unregister UI_Lock
- 2025-1-18 10:57:55 - debug: Unregister GameCtl
- 2025-1-18 10:57:55 - debug: Unregister Container_Manager
- 2025-1-18 10:57:55 - debug: Unregister UI_Item
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
- 2025-1-18 10:57:55 - debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
- 2025-1-18 10:57:55 - groupEnd: Invalidate all modules
- 2025-1-18 10:57:55 - groupCollapsed: Imports all modules
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register ch_start_pack
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register ui_updater
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register ListItem
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register List
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register MotionTrail
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register MovieClip
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register RewardFly
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register SpineView
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UISpineMovie
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register table_idiom
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register table_level
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_GameRules
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Idiom
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Idioms
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Settings
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Hall
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Rank
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Rank
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Sign_Reward
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Sign
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Sign
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Invite
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Invite
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Store
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Store
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Start
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_SideBar
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Task
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Task
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Hall
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Settings
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Win
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Win
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Main
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Fail
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Fail
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Main
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Hall
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Cube_Infor
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register CreateIdiom
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Layout_Lock
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Lock
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register GameCtl
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register Container_Manager
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Register UI_Item
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-18 10:57:55 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 10:57:55 - groupEnd: Imports all modules
- 2025-1-18 10:57:55 - debug: Incremental keys: chSdk,chsdk
- 2025-1-18 10:57:55 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-18 10:57:56 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-18 10:57:57 - debug: handle json group in bundle internal
- 2025-1-18 10:57:57 - debug: handle json group in bundle internal success
- 2025-1-18 10:57:57 - debug: handle json group in bundle start-scene
- 2025-1-18 10:57:57 - debug: handle json group in bundle start-scene success
- 2025-1-18 10:57:57 - debug: handle json group in bundle main
- 2025-1-18 10:57:57 - debug: handle json group in bundle main success
- 2025-1-18 10:57:57 - debug: handle json group in bundle module_extra
- 2025-1-18 10:57:57 - debug: handle json group in bundle module_basic
- 2025-1-18 10:57:57 - debug: handle json group in bundle module_game
- 2025-1-18 10:57:57 - debug: init image compress task 0 in bundle internal
- 2025-1-18 10:57:57 - debug: init image compress task 0 in bundle start-scene
- 2025-1-18 10:57:57 - debug: init image compress task 0 in bundle main
- 2025-1-18 10:57:57 - debug: handle json group in bundle module_extra success
- 2025-1-18 10:57:57 - debug: init image compress task 0 in bundle module_extra
- 2025-1-18 10:57:57 - debug: handle json group in bundle module_basic success
- 2025-1-18 10:57:57 - debug: init image compress task 0 in bundle module_basic
- 2025-1-18 10:57:57 - debug: handle json group in bundle module_game success
- 2025-1-18 10:57:57 - debug: init image compress task 0 in bundle module_game
- 2025-1-18 10:57:57 - debug: // ---- build task 查询 Asset Bundle ---- (1433ms)
- 2025-1-18 10:57:57 - debug: run build task 查询 Asset Bundle success in 1 s√, progress: 14%
- 2025-1-18 10:57:57 - debug: [Build Memory track]: 查询 Asset Bundle start:202.52MB, end 206.57MB, increase: 4.06MB
- 2025-1-18 10:57:57 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-18 10:57:57 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 10:57:57 - debug: // ---- build task 查询 Asset Bundle ---- (39ms)
- 2025-1-18 10:57:57 - debug: run build task 查询 Asset Bundle success in 39 ms√, progress: 19%
- 2025-1-18 10:57:57 - debug: [Build Memory track]: 查询 Asset Bundle start:206.61MB, end 206.88MB, increase: 280.51KB
- 2025-1-18 10:57:57 - debug: 打包脚本 start, progress: 19%
- 2025-1-18 10:57:57 - debug: // ---- build task 打包脚本 ----
- 2025-1-18 10:57:57 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 10:57:57 - debug: Query all assets info in project
- 2025-1-18 10:57:57 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-18 10:57:57 - debug: 查询 Asset Bundle start, progress: 0%
- 2025-1-18 10:57:57 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 10:57:57 - 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-18 10:57:57 - debug: Number of all scenes: 3
- 2025-1-18 10:57:57 - debug: Number of all scripts: 118
- 2025-1-18 10:57:57 - debug: Number of other assets: 1130
- 2025-1-18 10:57:57 - debug: // ---- build task 查询 Asset Bundle ---- (11ms)
- 2025-1-18 10:57:57 - debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
- 2025-1-18 10:57:57 - debug: [Build Memory track]: 查询 Asset Bundle start:207.69MB, end 206.51MB, increase: -1202.99KB
- 2025-1-18 10:57:57 - debug: 查询 Asset Bundle start, progress: 5%
- 2025-1-18 10:57:57 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 10:57:57 - debug: // ---- build task 查询 Asset Bundle ---- (4ms)
- 2025-1-18 10:57:57 - debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
- 2025-1-18 10:57:57 - debug: [Build Memory track]: 查询 Asset Bundle start:206.55MB, end 206.78MB, increase: 241.58KB
- 2025-1-18 10:57:57 - debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
- 2025-1-18 10:57:57 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 10:57:57 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
- 2025-1-18 10:57:57 - debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
- 2025-1-18 10:57:57 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.82MB, end 206.85MB, increase: 32.97KB
- 2025-1-18 10:57:57 - debug: 填充脚本数据到 settings.json start, progress: 12%
- 2025-1-18 10:57:57 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-18 10:57:57 - debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
- 2025-1-18 10:57:57 - debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
- 2025-1-18 10:57:57 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:206.89MB, end 206.92MB, increase: 30.47KB
- 2025-1-18 10:57:57 - debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
- 2025-1-18 10:57:57 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 10:57:57 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
- 2025-1-18 10:57:57 - debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
- 2025-1-18 10:57:57 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.95MB, end 207.09MB, increase: 139.11KB
- 2025-1-18 10:57:57 - log: [build-script]enter sub process 22716, 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-18 10:58:01 - debug: excute-script over with build-script 4652ms
- 2025-1-18 10:58:01 - debug: Generate systemJs..., progress: 19%
- 2025-1-18 10:58:01 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 10:58:04 - debug: excute-script over with build-script 2705ms
- 2025-1-18 10:58:04 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-18 10:58:04 - debug: Build script in bundle start, progress: 19%
- 2025-1-18 10:58:04 - log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
- 2025-1-18 10:58:04 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 10:58:06 - log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
- 2025-1-18 10:58:08 - 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-18 10:58:08 - 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/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_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_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_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_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_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_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_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_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_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_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_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_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_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_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/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-18 10:58:08 - log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
- 2025-1-18 10:58:10 - log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
- 2025-1-18 10:58:11 - log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
- 2025-1-18 10:58:12 - log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
- 2025-1-18 10:58:12 - debug: excute-script over with build-script 7729ms
- 2025-1-18 10:58:12 - debug: Copy externalScripts success!
- 2025-1-18 10:58:12 - debug: Build script in bundle success, progress: 19%
- 2025-1-18 10:58:12 - debug: 构建项目脚本 in (7837 ms) √, progress: 19%
- 2025-1-18 10:58:12 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-18 10:58:12 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\0ae7f2329c7dd0c47838e7933f7b8cfa)}
- 2025-1-18 10:58:12 - debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"WECHAT","useCache":true,"nativeCodeBundleMode":"wasm","wasmCompressionMode":"brotli","split":false,"skip":false,"assetURLFormat":"relative-from-out","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\wechatgame\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-18 10:58:12 - debug: 构建引擎脚本 in (131 ms) √, progress: 19%
- 2025-1-18 10:58:12 - debug: Copy plugin script ..., progress: 19%
- 2025-1-18 10:58:12 - debug: Generate import-map..., progress: 19%
- 2025-1-18 10:58:12 - debug: // ---- build task 打包脚本 ---- (15384ms)
- 2025-1-18 10:58:12 - debug: run build task 打包脚本 success in 15 s√, progress: 24%
- 2025-1-18 10:58:12 - debug: [Build Memory track]: 打包脚本 start:207.07MB, end 207.36MB, increase: 303.13KB
- 2025-1-18 10:58:12 - debug: Build Assets start, progress: 24%
- 2025-1-18 10:58:12 - debug: // ---- build task Build Assets ----
- 2025-1-18 10:58:12 - debug: Build bundles..., progress: 24%
- 2025-1-18 10:58:12 - debug: Pack Images start, progress: 24%
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 10:58:13 - debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 10:58:13 - debug(2): remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 10:58:13 - debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 10:58:13 - debug(2): remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 10:58:13 - debug: builder:pack-auto-atlas-image (732ms)
- 2025-1-18 10:58:13 - debug: Pack Images success, progress: 24%
- 2025-1-18 10:58:13 - debug: Compress image start..., progress: 24%
- 2025-1-18 10:58:13 - group: Compress image...
- 2025-1-18 10:58:13 - debug: sort compress task {}
- 2025-1-18 10:58:13 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-18 10:58:13 - debug: No image need to compress
- 2025-1-18 10:58:13 - groupEnd: Compress image...
- 2025-1-18 10:58:13 - debug: Compress image success..., progress: 24%
- 2025-1-18 10:58:13 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 10:58:13 - debug: Handle all json groups in bundle internal
- 2025-1-18 10:58:13 - debug: handle json group
- 2025-1-18 10:58:13 - debug: Handle all json groups in bundle start-scene
- 2025-1-18 10:58:13 - debug: handle json group
- 2025-1-18 10:58:13 - debug: Handle all json groups in bundle main
- 2025-1-18 10:58:13 - debug: handle json group
- 2025-1-18 10:58:13 - debug: handle single json
- 2025-1-18 10:58:13 - debug: Handle all json groups in bundle module_extra
- 2025-1-18 10:58:13 - debug: handle json group
- 2025-1-18 10:58:13 - debug: handle single json
- 2025-1-18 10:58:13 - debug: Handle all json groups in bundle module_basic
- 2025-1-18 10:58:13 - debug: handle json group
- 2025-1-18 10:58:13 - debug: Handle all json groups in bundle module_game
- 2025-1-18 10:58:13 - debug: handle json group
- 2025-1-18 10:58:13 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: handle single json
- 2025-1-18 10:58:13 - debug: Json group(04ade8c9e) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: handle single json
- 2025-1-18 10:58:13 - debug: Json group(09d6a42a2) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: handle single json
- 2025-1-18 10:58:13 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0a1731415) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0403d1262) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0329651a2) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0332e55a0) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(022fd81fe) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-18 10:58:13 - debug: handle single json
- 2025-1-18 10:58:13 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 10:58:13 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 10:58:13 - debug: compress config of bundle internal...
- 2025-1-18 10:58:13 - debug: compress config of bundle internal success
- 2025-1-18 10:58:13 - debug: compress config of bundle start-scene...
- 2025-1-18 10:58:13 - debug: compress config of bundle start-scene success
- 2025-1-18 10:58:13 - debug: compress config of bundle main...
- 2025-1-18 10:58:13 - debug: compress config of bundle main success
- 2025-1-18 10:58:13 - debug: compress config of bundle module_extra...
- 2025-1-18 10:58:13 - debug: compress config of bundle module_extra success
- 2025-1-18 10:58:13 - debug: compress config of bundle module_basic...
- 2025-1-18 10:58:13 - debug: compress config of bundle module_basic success
- 2025-1-18 10:58:13 - debug: compress config of bundle module_game...
- 2025-1-18 10:58:13 - debug: compress config of bundle module_game success
- 2025-1-18 10:58:13 - debug: output config of bundle internal
- 2025-1-18 10:58:13 - debug: output config of bundle internal success
- 2025-1-18 10:58:13 - debug: output config of bundle start-scene
- 2025-1-18 10:58:13 - debug: output config of bundle start-scene success
- 2025-1-18 10:58:13 - debug: output config of bundle main
- 2025-1-18 10:58:13 - debug: output config of bundle main success
- 2025-1-18 10:58:13 - debug: output config of bundle module_extra
- 2025-1-18 10:58:13 - debug: output config of bundle module_extra success
- 2025-1-18 10:58:13 - debug: output config of bundle module_basic
- 2025-1-18 10:58:13 - debug: output config of bundle module_basic success
- 2025-1-18 10:58:13 - debug: output config of bundle module_game
- 2025-1-18 10:58:13 - debug: output config of bundle module_game success
- 2025-1-18 10:58:13 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 10:58:13 - debug: // ---- build task Build Assets ---- (1202ms)
- 2025-1-18 10:58:13 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-18 10:58:13 - debug: [Build Memory track]: Build Assets start:207.40MB, end 208.88MB, increase: 1.48MB
- 2025-1-18 10:58:13 - debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
- 2025-1-18 10:58:13 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
- 2025-1-18 10:58:13 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (19ms)
- 2025-1-18 10:58:13 - debug: wechatgame:(onAfterBundleBuildTask) in 19 ms ✓, progress: 29%
- 2025-1-18 10:58:13 - debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
- 2025-1-18 10:58:13 - debug: // ---- build task wechatgame:onAfterBuildAssets ----
- 2025-1-18 10:58:13 - debug: // ---- build task wechatgame:onAfterBuildAssets ---- (24ms)
- 2025-1-18 10:58:13 - debug: wechatgame:(onAfterBuildAssets) in 24 ms ✓, progress: 31%
- 2025-1-18 10:58:13 - debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
- 2025-1-18 10:58:13 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 10:58:13 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (30ms)
- 2025-1-18 10:58:13 - debug: run build task 整理部分构建选项内数据到 settings.json success in 30 ms√, progress: 33%
- 2025-1-18 10:58:13 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.16MB, end 209.23MB, increase: 70.60KB
- 2025-1-18 10:58:13 - debug: 填充脚本数据到 settings.json start, progress: 33%
- 2025-1-18 10:58:13 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-18 10:58:13 - debug: // ---- build task 填充脚本数据到 settings.json ---- (26ms)
- 2025-1-18 10:58:13 - debug: run build task 填充脚本数据到 settings.json success in 26 ms√, progress: 34%
- 2025-1-18 10:58:13 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.27MB, end 209.36MB, increase: 92.07KB
- 2025-1-18 10:58:13 - debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
- 2025-1-18 10:58:13 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 10:58:13 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (32ms)
- 2025-1-18 10:58:13 - debug: run build task 整理部分构建选项内数据到 settings.json success in 32 ms√, progress: 36%
- 2025-1-18 10:58:13 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.40MB, end 209.57MB, increase: 174.52KB
- 2025-1-18 10:58:13 - debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-18 10:58:13 - debug: // ---- build task wechatgame:onBeforeCompressSettings ----
- 2025-1-18 10:58:13 - debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (46ms)
- 2025-1-18 10:58:13 - debug: wechatgame:(onBeforeCompressSettings) in 46 ms ✓, progress: 38%
- 2025-1-18 10:58:13 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
- 2025-1-18 10:58:13 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-18 10:58:13 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (152ms)
- 2025-1-18 10:58:13 - debug: cocos-service:(onBeforeCompressSettings) in 152 ms ✓, progress: 40%
- 2025-1-18 10:58:13 - debug: 整理静态模板文件 start, progress: 40%
- 2025-1-18 10:58:13 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-18 10:58:14 - debug: // ---- build task 整理静态模板文件 ---- (58ms)
- 2025-1-18 10:58:14 - debug: run build task 整理静态模板文件 success in 58 ms√, progress: 45%
- 2025-1-18 10:58:14 - debug: [Build Memory track]: 整理静态模板文件 start:209.82MB, end 205.11MB, increase: -4826.83KB
- 2025-1-18 10:58:14 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
- 2025-1-18 10:58:14 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-18 10:58:14 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (73ms)
- 2025-1-18 10:58:14 - debug: cocos-service:(onAfterCompressSettings) in 73 ms ✓, progress: 46%
- 2025-1-18 10:58:14 - debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
- 2025-1-18 10:58:14 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
- 2025-1-18 10:58:14 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (25ms)
- 2025-1-18 10:58:14 - debug: wechatgame:(onBeforeCopyBuildTemplate) in 25 ms ✓, progress: 48%
- 2025-1-18 10:58:14 - debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
- 2025-1-18 10:58:14 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
- 2025-1-18 10:58:14 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (33ms)
- 2025-1-18 10:58:14 - debug: wechatgame:(onAfterCopyBuildTemplate) in 33 ms ✓, progress: 50%
- 2025-1-18 10:58:14 - debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
- 2025-1-18 10:58:14 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-18 10:58:14 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (27ms)
- 2025-1-18 10:58:14 - debug: run build task 给所有的资源加上 MD5 后缀 success in 27 ms√, progress: 60%
- 2025-1-18 10:58:14 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:205.73MB, end 205.80MB, increase: 68.56KB
- 2025-1-18 10:58:14 - debug: wechatgame:(onAfterBuild) start..., progress: 60%
- 2025-1-18 10:58:14 - debug: // ---- build task wechatgame:onAfterBuild ----
- 2025-1-18 10:58:14 - debug: // ---- build task wechatgame:onAfterBuild ---- (653ms)
- 2025-1-18 10:58:14 - debug: wechatgame:(onAfterBuild) in 653 ms ✓, progress: 62%
- 2025-1-18 10:58:14 - debug: cocos-service:(onAfterBuild) start..., progress: 62%
- 2025-1-18 10:58:14 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-18 10:58:14 - debug: // ---- build task cocos-service:onAfterBuild ---- (65ms)
- 2025-1-18 10:58:14 - debug: cocos-service:(onAfterBuild) in 65 ms ✓, progress: 64%
- 2025-1-18 10:58:14 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
- 2025-1-18 10:58:14 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-18 10:58:14 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (22ms)
- 2025-1-18 10:58:14 - debug: adsense-h5g-plugin:(onAfterBuild) in 22 ms ✓, progress: 65%
- 2025-1-18 10:58:14 - log: Asset DB is resume!
- 2025-1-18 10:58:14 - debug: builder:build-project-total (20256ms)
- 2025-1-18 10:58:15 - debug: build success in 20256!
- 2025-1-18 10:58:15 - debug: [Build Memory track]: builder:build-project-total start:201.94MB, end 206.90MB, increase: 4.95MB
- 2025-1-18 10:58:15 - debug: ================================ build Task (wechatgame) Finished in (20 s)ms ================================
- 2025-1-18 11:00:03 - debug: =================================== build Task (wechatgame) Start ================================
- 2025-1-18 11:00:03 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","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":"brotli","packages":{"cocos-service":{"configID":"7dcd5c","services":[]},"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
- 2025-1-18 11:00:03 - debug: Build with Cocos Creator 3.8.4
- 2025-1-18 11:00:03 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-18 11:00:03 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-18 11:00:04 - debug: // ---- build task cocos-service:onBeforeBuild ---- (151ms)
- 2025-1-18 11:00:04 - debug: cocos-service:(onBeforeBuild) in 151 ms ✓, progress: 2%
- 2025-1-18 11:00:04 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-18 11:00:04 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-18 11:00:04 - debug: // ---- build task scene:onBeforeBuild ---- (16ms)
- 2025-1-18 11:00:04 - debug: scene:(onBeforeBuild) in 16 ms ✓, progress: 4%
- 2025-1-18 11:00:04 - debug: Start lock asset db..., progress: 4%
- 2025-1-18 11:00:04 - log: Asset DB is paused with build!
- 2025-1-18 11:00:04 - debug: Query all assets info in project
- 2025-1-18 11:00:04 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-18 11:00:04 - debug: wechatgame:(onAfterInit) start..., progress: 4%
- 2025-1-18 11:00:04 - debug: // ---- build task wechatgame:onAfterInit ----
- 2025-1-18 11:00:04 - debug: // ---- build task wechatgame:onAfterInit ---- (17ms)
- 2025-1-18 11:00:04 - debug: wechatgame:(onAfterInit) in 17 ms ✓, progress: 5%
- 2025-1-18 11:00:04 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-18 11:00:04 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-18 11:00:04 - debug: // ---- build task cocos-service:onAfterInit ---- (304ms)
- 2025-1-18 11:00:04 - debug: cocos-service:(onAfterInit) in 304 ms ✓, progress: 7%
- 2025-1-18 11:00:04 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-18 11:00:04 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-18 11:00:04 - debug: // ---- build task engine:onAfterInit ---- (16ms)
- 2025-1-18 11:00:04 - debug: engine:(onAfterInit) in 16 ms ✓, progress: 9%
- 2025-1-18 11:00:04 - debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 11:00:04 - debug: // ---- build task wechatgame:onBeforeBundleInit ----
- 2025-1-18 11:00:04 - debug: // ---- build task wechatgame:onBeforeBundleInit ---- (18ms)
- 2025-1-18 11:00:04 - debug: wechatgame:(onBeforeBundleInit) in 18 ms ✓, progress: 9%
- 2025-1-18 11:00:04 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 11:00:04 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-18 11:00:04 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-18 11:00:04 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (18ms)
- 2025-1-18 11:00:04 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 18 ms ✓, progress: 9%
- 2025-1-18 11:00:04 - debug: Init all bundles start..., progress: 9%
- 2025-1-18 11:00:04 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-18 11:00:04 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-18 11:00:04 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 11:00:04 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-18 11:00:04 - 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-18 11:00:04 - debug: Number of all scenes: 3
- 2025-1-18 11:00:04 - debug: Number of all scripts: 118
- 2025-1-18 11:00:04 - debug: Number of other assets: 1130
- 2025-1-18 11:00:04 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-18 11:00:04 - debug: reload all scripts.
- 2025-1-18 11:00:04 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-18 11:00:04 - groupCollapsed: Invalidate all modules
- 2025-1-18 11:00:04 - debug: Unregister BuiltinPipelineSettings
- 2025-1-18 11:00:04 - debug: Unregister DebugViewRuntimeControl
- 2025-1-18 11:00:04 - debug: Unregister ch_sdk_comp
- 2025-1-18 11:00:04 - debug: Unregister ch_start_pack
- 2025-1-18 11:00:04 - debug: Unregister __NodeEventAgent__
- 2025-1-18 11:00:04 - debug: Unregister ResolutionAutoFit
- 2025-1-18 11:00:04 - debug: Unregister ui_updater
- 2025-1-18 11:00:04 - debug: Unregister ClickPenetrate
- 2025-1-18 11:00:04 - debug: Unregister ListItem
- 2025-1-18 11:00:04 - debug: Unregister List
- 2025-1-18 11:00:04 - debug: Unregister MotionTrail
- 2025-1-18 11:00:04 - debug: Unregister MovieClip
- 2025-1-18 11:00:04 - debug: Unregister RewardFly
- 2025-1-18 11:00:04 - debug: Unregister SpineView
- 2025-1-18 11:00:04 - debug: Unregister UISpineMovie
- 2025-1-18 11:00:04 - debug: Unregister Layout_UIAlert
- 2025-1-18 11:00:04 - debug: Unregister Layout_UI_Notify
- 2025-1-18 11:00:04 - debug: Unregister Layout_UIWaiting
- 2025-1-18 11:00:04 - debug: Unregister table_idiom
- 2025-1-18 11:00:04 - debug: Unregister table_level
- 2025-1-18 11:00:04 - debug: Unregister Layout_GameRules
- 2025-1-18 11:00:04 - debug: Unregister UI_GameRules
- 2025-1-18 11:00:04 - debug: Unregister UI_Idiom
- 2025-1-18 11:00:04 - debug: Unregister Layout_Idioms
- 2025-1-18 11:00:04 - debug: Unregister UI_Idioms
- 2025-1-18 11:00:04 - debug: Unregister Layout_Settings
- 2025-1-18 11:00:04 - debug: Unregister Layout_Hall
- 2025-1-18 11:00:04 - debug: Unregister UI_Head_Icon
- 2025-1-18 11:00:04 - debug: Unregister UI_Rank_Item
- 2025-1-18 11:00:04 - debug: Unregister Layout_Rank
- 2025-1-18 11:00:04 - debug: Unregister UI_Rank
- 2025-1-18 11:00:04 - debug: Unregister Sign_Reward
- 2025-1-18 11:00:04 - debug: Unregister Layout_Sign
- 2025-1-18 11:00:04 - debug: Unregister UI_Sign
- 2025-1-18 11:00:04 - debug: Unregister Layout_Invite
- 2025-1-18 11:00:04 - debug: Unregister UI_Invite
- 2025-1-18 11:00:04 - debug: Unregister Layout_Store
- 2025-1-18 11:00:04 - debug: Unregister UI_Store
- 2025-1-18 11:00:04 - debug: Unregister Layout_SideBar
- 2025-1-18 11:00:04 - debug: Unregister Start
- 2025-1-18 11:00:04 - debug: Unregister UI_SideBar
- 2025-1-18 11:00:04 - debug: Unregister UI_Task_Item
- 2025-1-18 11:00:04 - debug: Unregister Layout_Task
- 2025-1-18 11:00:04 - debug: Unregister UI_Task
- 2025-1-18 11:00:04 - debug: Unregister UI_Hall
- 2025-1-18 11:00:04 - debug: Unregister UI_Settings
- 2025-1-18 11:00:04 - debug: Unregister Layout_Win
- 2025-1-18 11:00:04 - debug: Unregister UI_Win
- 2025-1-18 11:00:04 - debug: Unregister Layout_Main
- 2025-1-18 11:00:04 - debug: Unregister Layout_TimesOver
- 2025-1-18 11:00:04 - debug: Unregister Layout_Fail
- 2025-1-18 11:00:04 - debug: Unregister UI_Fail
- 2025-1-18 11:00:04 - debug: Unregister UI_TimesOver
- 2025-1-18 11:00:04 - debug: Unregister UI_Main
- 2025-1-18 11:00:04 - debug: Unregister Hall
- 2025-1-18 11:00:04 - debug: Unregister Cube_Infor
- 2025-1-18 11:00:04 - debug: Unregister CreateIdiom
- 2025-1-18 11:00:04 - debug: Unregister Layout_LatticeFull
- 2025-1-18 11:00:04 - debug: Unregister UI_LatticeFull
- 2025-1-18 11:00:04 - debug: Unregister Layout_Lock
- 2025-1-18 11:00:04 - debug: Unregister UI_Lock
- 2025-1-18 11:00:04 - debug: Unregister GameCtl
- 2025-1-18 11:00:04 - debug: Unregister Container_Manager
- 2025-1-18 11:00:04 - debug: Unregister UI_Item
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
- 2025-1-18 11:00:04 - debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
- 2025-1-18 11:00:04 - groupEnd: Invalidate all modules
- 2025-1-18 11:00:04 - groupCollapsed: Imports all modules
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register ch_start_pack
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register ui_updater
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register ListItem
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register List
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register MotionTrail
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register MovieClip
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register RewardFly
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register SpineView
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UISpineMovie
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register table_idiom
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register table_level
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_GameRules
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Idiom
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Idioms
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Settings
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Hall
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Rank
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Rank
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Sign_Reward
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Sign
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Sign
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Invite
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Invite
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Store
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Store
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Start
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_SideBar
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Task
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Task
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Hall
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Settings
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Win
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Win
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Main
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Fail
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Fail
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Main
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Hall
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Cube_Infor
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register CreateIdiom
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Layout_Lock
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Lock
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register GameCtl
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register Container_Manager
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Register UI_Item
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-18 11:00:04 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 11:00:04 - groupEnd: Imports all modules
- 2025-1-18 11:00:04 - debug: Incremental keys: chSdk,chsdk
- 2025-1-18 11:00:04 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-18 11:00:04 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-18 11:00:04 - debug: handle json group in bundle internal
- 2025-1-18 11:00:04 - debug: handle json group in bundle internal success
- 2025-1-18 11:00:04 - debug: handle json group in bundle start-scene
- 2025-1-18 11:00:04 - debug: handle json group in bundle start-scene success
- 2025-1-18 11:00:04 - debug: handle json group in bundle main
- 2025-1-18 11:00:04 - debug: handle json group in bundle main success
- 2025-1-18 11:00:04 - debug: handle json group in bundle module_extra
- 2025-1-18 11:00:04 - debug: handle json group in bundle module_basic
- 2025-1-18 11:00:04 - debug: handle json group in bundle module_game
- 2025-1-18 11:00:04 - debug: init image compress task 0 in bundle internal
- 2025-1-18 11:00:04 - debug: init image compress task 0 in bundle start-scene
- 2025-1-18 11:00:04 - debug: init image compress task 0 in bundle main
- 2025-1-18 11:00:04 - debug: handle json group in bundle module_extra success
- 2025-1-18 11:00:04 - debug: init image compress task 0 in bundle module_extra
- 2025-1-18 11:00:04 - debug: handle json group in bundle module_basic success
- 2025-1-18 11:00:04 - debug: init image compress task 0 in bundle module_basic
- 2025-1-18 11:00:04 - debug: handle json group in bundle module_game success
- 2025-1-18 11:00:04 - debug: init image compress task 0 in bundle module_game
- 2025-1-18 11:00:04 - debug: // ---- build task 查询 Asset Bundle ---- (354ms)
- 2025-1-18 11:00:04 - debug: run build task 查询 Asset Bundle success in 354 ms√, progress: 14%
- 2025-1-18 11:00:04 - debug: [Build Memory track]: 查询 Asset Bundle start:207.66MB, end 212.05MB, increase: 4.39MB
- 2025-1-18 11:00:04 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-18 11:00:04 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 11:00:04 - debug: // ---- build task 查询 Asset Bundle ---- (28ms)
- 2025-1-18 11:00:04 - debug: run build task 查询 Asset Bundle success in 28 ms√, progress: 19%
- 2025-1-18 11:00:04 - debug: [Build Memory track]: 查询 Asset Bundle start:212.08MB, end 212.37MB, increase: 297.27KB
- 2025-1-18 11:00:04 - debug: 打包脚本 start, progress: 19%
- 2025-1-18 11:00:04 - debug: // ---- build task 打包脚本 ----
- 2025-1-18 11:00:04 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 11:00:05 - log: [build-script]enter sub process 16720, 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-18 11:00:08 - debug: excute-script over with build-script 3341ms
- 2025-1-18 11:00:08 - debug: Generate systemJs..., progress: 19%
- 2025-1-18 11:00:08 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 11:00:10 - debug: excute-script over with build-script 2395ms
- 2025-1-18 11:00:10 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-18 11:00:10 - debug: Build script in bundle start, progress: 19%
- 2025-1-18 11:00:10 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 11:00:14 - 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/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_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-18 11:00:14 - 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_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_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_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_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_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_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_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_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_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_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_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_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_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/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-18 11:00:17 - debug: excute-script over with build-script 7225ms
- 2025-1-18 11:00:17 - debug: Copy externalScripts success!
- 2025-1-18 11:00:17 - debug: Build script in bundle success, progress: 19%
- 2025-1-18 11:00:17 - debug: 构建项目脚本 in (7288 ms) √, progress: 19%
- 2025-1-18 11:00:17 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-18 11:00:18 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\0ae7f2329c7dd0c47838e7933f7b8cfa)}
- 2025-1-18 11:00:18 - debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"WECHAT","useCache":true,"nativeCodeBundleMode":"wasm","wasmCompressionMode":"brotli","split":false,"skip":false,"assetURLFormat":"relative-from-out","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\wechatgame\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-18 11:00:18 - debug: 构建引擎脚本 in (95 ms) √, progress: 19%
- 2025-1-18 11:00:18 - debug: Copy plugin script ..., progress: 19%
- 2025-1-18 11:00:18 - debug: Generate import-map..., progress: 19%
- 2025-1-18 11:00:18 - debug: // ---- build task 打包脚本 ---- (13173ms)
- 2025-1-18 11:00:18 - debug: run build task 打包脚本 success in 13 s√, progress: 24%
- 2025-1-18 11:00:18 - debug: [Build Memory track]: 打包脚本 start:212.56MB, end 212.96MB, increase: 416.50KB
- 2025-1-18 11:00:18 - debug: Build Assets start, progress: 24%
- 2025-1-18 11:00:18 - debug: // ---- build task Build Assets ----
- 2025-1-18 11:00:18 - debug: Build bundles..., progress: 24%
- 2025-1-18 11:00:18 - debug: Pack Images start, progress: 24%
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 11:00:18 - debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 11:00:18 - debug(2): remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 11:00:18 - debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 11:00:18 - debug(2): remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 11:00:18 - debug: builder:pack-auto-atlas-image (688ms)
- 2025-1-18 11:00:18 - debug: Pack Images success, progress: 24%
- 2025-1-18 11:00:18 - debug: Compress image start..., progress: 24%
- 2025-1-18 11:00:18 - group: Compress image...
- 2025-1-18 11:00:18 - debug: sort compress task {}
- 2025-1-18 11:00:18 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-18 11:00:18 - debug: No image need to compress
- 2025-1-18 11:00:18 - groupEnd: Compress image...
- 2025-1-18 11:00:18 - debug: Compress image success..., progress: 24%
- 2025-1-18 11:00:18 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 11:00:18 - debug: Handle all json groups in bundle internal
- 2025-1-18 11:00:18 - debug: handle json group
- 2025-1-18 11:00:18 - debug: Handle all json groups in bundle start-scene
- 2025-1-18 11:00:18 - debug: handle json group
- 2025-1-18 11:00:18 - debug: Handle all json groups in bundle main
- 2025-1-18 11:00:18 - debug: handle json group
- 2025-1-18 11:00:18 - debug: handle single json
- 2025-1-18 11:00:18 - debug: Handle all json groups in bundle module_extra
- 2025-1-18 11:00:18 - debug: handle json group
- 2025-1-18 11:00:18 - debug: handle single json
- 2025-1-18 11:00:18 - debug: Handle all json groups in bundle module_basic
- 2025-1-18 11:00:18 - debug: handle json group
- 2025-1-18 11:00:18 - debug: Handle all json groups in bundle module_game
- 2025-1-18 11:00:18 - debug: handle json group
- 2025-1-18 11:00:18 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: handle single json
- 2025-1-18 11:00:18 - debug: Json group(04ade8c9e) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: handle single json
- 2025-1-18 11:00:18 - debug: Json group(09d6a42a2) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: handle single json
- 2025-1-18 11:00:18 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: Json group(0a1731415) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-18 11:00:18 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(0403d1262) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(0329651a2) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(0332e55a0) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(022fd81fe) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-18 11:00:19 - debug: handle single json
- 2025-1-18 11:00:19 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 11:00:19 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 11:00:19 - debug: compress config of bundle internal...
- 2025-1-18 11:00:19 - debug: compress config of bundle internal success
- 2025-1-18 11:00:19 - debug: compress config of bundle start-scene...
- 2025-1-18 11:00:19 - debug: compress config of bundle start-scene success
- 2025-1-18 11:00:19 - debug: compress config of bundle main...
- 2025-1-18 11:00:19 - debug: compress config of bundle main success
- 2025-1-18 11:00:19 - debug: compress config of bundle module_extra...
- 2025-1-18 11:00:19 - debug: compress config of bundle module_extra success
- 2025-1-18 11:00:19 - debug: compress config of bundle module_basic...
- 2025-1-18 11:00:19 - debug: compress config of bundle module_basic success
- 2025-1-18 11:00:19 - debug: compress config of bundle module_game...
- 2025-1-18 11:00:19 - debug: compress config of bundle module_game success
- 2025-1-18 11:00:19 - debug: output config of bundle internal
- 2025-1-18 11:00:19 - debug: output config of bundle internal success
- 2025-1-18 11:00:19 - debug: output config of bundle start-scene
- 2025-1-18 11:00:19 - debug: output config of bundle start-scene success
- 2025-1-18 11:00:19 - debug: output config of bundle main
- 2025-1-18 11:00:19 - debug: output config of bundle main success
- 2025-1-18 11:00:19 - debug: output config of bundle module_extra
- 2025-1-18 11:00:19 - debug: output config of bundle module_extra success
- 2025-1-18 11:00:19 - debug: output config of bundle module_basic
- 2025-1-18 11:00:19 - debug: output config of bundle module_basic success
- 2025-1-18 11:00:19 - debug: output config of bundle module_game
- 2025-1-18 11:00:19 - debug: output config of bundle module_game success
- 2025-1-18 11:00:19 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 11:00:19 - debug: // ---- build task Build Assets ---- (1071ms)
- 2025-1-18 11:00:19 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-18 11:00:19 - debug: [Build Memory track]: Build Assets start:212.99MB, end 205.62MB, increase: -7552.29KB
- 2025-1-18 11:00:19 - debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (18ms)
- 2025-1-18 11:00:19 - debug: wechatgame:(onAfterBundleBuildTask) in 18 ms ✓, progress: 29%
- 2025-1-18 11:00:19 - debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onAfterBuildAssets ----
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onAfterBuildAssets ---- (22ms)
- 2025-1-18 11:00:19 - debug: wechatgame:(onAfterBuildAssets) in 22 ms ✓, progress: 31%
- 2025-1-18 11:00:19 - debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
- 2025-1-18 11:00:19 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 11:00:19 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (30ms)
- 2025-1-18 11:00:19 - debug: run build task 整理部分构建选项内数据到 settings.json success in 30 ms√, progress: 33%
- 2025-1-18 11:00:19 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.90MB, end 205.97MB, increase: 68.84KB
- 2025-1-18 11:00:19 - debug: 填充脚本数据到 settings.json start, progress: 33%
- 2025-1-18 11:00:19 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-18 11:00:19 - debug: // ---- build task 填充脚本数据到 settings.json ---- (22ms)
- 2025-1-18 11:00:19 - debug: run build task 填充脚本数据到 settings.json success in 22 ms√, progress: 34%
- 2025-1-18 11:00:19 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:206.00MB, end 206.07MB, increase: 69.23KB
- 2025-1-18 11:00:19 - debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
- 2025-1-18 11:00:19 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 11:00:19 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (29ms)
- 2025-1-18 11:00:19 - debug: run build task 整理部分构建选项内数据到 settings.json success in 29 ms√, progress: 36%
- 2025-1-18 11:00:19 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.10MB, end 206.27MB, increase: 172.83KB
- 2025-1-18 11:00:19 - debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onBeforeCompressSettings ----
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (23ms)
- 2025-1-18 11:00:19 - debug: wechatgame:(onBeforeCompressSettings) in 23 ms ✓, progress: 38%
- 2025-1-18 11:00:19 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
- 2025-1-18 11:00:19 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-18 11:00:19 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (427ms)
- 2025-1-18 11:00:19 - debug: cocos-service:(onBeforeCompressSettings) in 427 ms ✓, progress: 40%
- 2025-1-18 11:00:19 - debug: 整理静态模板文件 start, progress: 40%
- 2025-1-18 11:00:19 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-18 11:00:19 - debug: // ---- build task 整理静态模板文件 ---- (50ms)
- 2025-1-18 11:00:19 - debug: run build task 整理静态模板文件 success in 50 ms√, progress: 45%
- 2025-1-18 11:00:19 - debug: [Build Memory track]: 整理静态模板文件 start:206.58MB, end 210.14MB, increase: 3.56MB
- 2025-1-18 11:00:19 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
- 2025-1-18 11:00:19 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-18 11:00:19 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (61ms)
- 2025-1-18 11:00:19 - debug: cocos-service:(onAfterCompressSettings) in 61 ms ✓, progress: 46%
- 2025-1-18 11:00:19 - debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (19ms)
- 2025-1-18 11:00:19 - debug: wechatgame:(onBeforeCopyBuildTemplate) in 19 ms ✓, progress: 48%
- 2025-1-18 11:00:19 - debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (27ms)
- 2025-1-18 11:00:19 - debug: wechatgame:(onAfterCopyBuildTemplate) in 27 ms ✓, progress: 50%
- 2025-1-18 11:00:19 - debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
- 2025-1-18 11:00:19 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-18 11:00:19 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (38ms)
- 2025-1-18 11:00:19 - debug: run build task 给所有的资源加上 MD5 后缀 success in 38 ms√, progress: 60%
- 2025-1-18 11:00:19 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:210.72MB, end 210.81MB, increase: 86.11KB
- 2025-1-18 11:00:19 - debug: wechatgame:(onAfterBuild) start..., progress: 60%
- 2025-1-18 11:00:19 - debug: // ---- build task wechatgame:onAfterBuild ----
- 2025-1-18 11:00:20 - debug: // ---- build task wechatgame:onAfterBuild ---- (284ms)
- 2025-1-18 11:00:20 - debug: wechatgame:(onAfterBuild) in 284 ms ✓, progress: 62%
- 2025-1-18 11:00:20 - debug: cocos-service:(onAfterBuild) start..., progress: 62%
- 2025-1-18 11:00:20 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-18 11:00:20 - debug: // ---- build task cocos-service:onAfterBuild ---- (186ms)
- 2025-1-18 11:00:20 - debug: cocos-service:(onAfterBuild) in 186 ms ✓, progress: 64%
- 2025-1-18 11:00:20 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
- 2025-1-18 11:00:20 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-18 11:00:20 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (16ms)
- 2025-1-18 11:00:20 - debug: adsense-h5g-plugin:(onAfterBuild) in 16 ms ✓, progress: 65%
- 2025-1-18 11:00:20 - log: Asset DB is resume!
- 2025-1-18 11:00:20 - debug: builder:build-project-total (16560ms)
- 2025-1-18 11:00:20 - debug: build success in 16560!
- 2025-1-18 11:00:20 - debug: [Build Memory track]: builder:build-project-total start:206.84MB, end 207.71MB, increase: 888.03KB
- 2025-1-18 11:00:20 - debug: ================================ build Task (wechatgame) Finished in (16 s)ms ================================
- 2025-1-18 11:02:44 - debug: =================================== build Task (wechatgame) Start ================================
- 2025-1-18 11:02:44 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","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":"brotli","packages":{"cocos-service":{"configID":"7dcd5c","services":[]},"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
- 2025-1-18 11:02:44 - debug: Build with Cocos Creator 3.8.4
- 2025-1-18 11:02:44 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-18 11:02:44 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-18 11:02:44 - debug: // ---- build task cocos-service:onBeforeBuild ---- (342ms)
- 2025-1-18 11:02:44 - debug: cocos-service:(onBeforeBuild) in 342 ms ✓, progress: 2%
- 2025-1-18 11:02:44 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-18 11:02:44 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-18 11:02:44 - debug: // ---- build task scene:onBeforeBuild ---- (19ms)
- 2025-1-18 11:02:44 - debug: scene:(onBeforeBuild) in 19 ms ✓, progress: 4%
- 2025-1-18 11:02:44 - debug: Start lock asset db..., progress: 4%
- 2025-1-18 11:02:44 - log: Asset DB is paused with build!
- 2025-1-18 11:02:44 - debug: Query all assets info in project
- 2025-1-18 11:02:44 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-18 11:02:44 - debug: wechatgame:(onAfterInit) start..., progress: 4%
- 2025-1-18 11:02:44 - debug: // ---- build task wechatgame:onAfterInit ----
- 2025-1-18 11:02:44 - debug: // ---- build task wechatgame:onAfterInit ---- (6ms)
- 2025-1-18 11:02:44 - debug: wechatgame:(onAfterInit) in 6 ms ✓, progress: 5%
- 2025-1-18 11:02:44 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-18 11:02:44 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-18 11:02:44 - debug: // ---- build task cocos-service:onAfterInit ---- (73ms)
- 2025-1-18 11:02:44 - debug: cocos-service:(onAfterInit) in 73 ms ✓, progress: 7%
- 2025-1-18 11:02:44 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-18 11:02:44 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-18 11:02:44 - debug: // ---- build task engine:onAfterInit ---- (16ms)
- 2025-1-18 11:02:44 - debug: engine:(onAfterInit) in 16 ms ✓, progress: 9%
- 2025-1-18 11:02:44 - debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 11:02:44 - debug: // ---- build task wechatgame:onBeforeBundleInit ----
- 2025-1-18 11:02:44 - debug: // ---- build task wechatgame:onBeforeBundleInit ---- (18ms)
- 2025-1-18 11:02:44 - debug: wechatgame:(onBeforeBundleInit) in 18 ms ✓, progress: 9%
- 2025-1-18 11:02:44 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 11:02:44 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-18 11:02:44 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-18 11:02:44 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (29ms)
- 2025-1-18 11:02:44 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 29 ms ✓, progress: 9%
- 2025-1-18 11:02:44 - debug: Init all bundles start..., progress: 9%
- 2025-1-18 11:02:44 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-18 11:02:44 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-18 11:02:44 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 11:02:44 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-18 11:02:44 - 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-18 11:02:44 - debug: Number of all scenes: 3
- 2025-1-18 11:02:44 - debug: Number of all scripts: 118
- 2025-1-18 11:02:44 - debug: Number of other assets: 1130
- 2025-1-18 11:02:44 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-18 11:02:44 - debug: reload all scripts.
- 2025-1-18 11:02:44 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-18 11:02:44 - groupCollapsed: Invalidate all modules
- 2025-1-18 11:02:44 - debug: Unregister BuiltinPipelineSettings
- 2025-1-18 11:02:44 - debug: Unregister DebugViewRuntimeControl
- 2025-1-18 11:02:44 - debug: Unregister ch_sdk_comp
- 2025-1-18 11:02:44 - debug: Unregister ch_start_pack
- 2025-1-18 11:02:44 - debug: Unregister __NodeEventAgent__
- 2025-1-18 11:02:44 - debug: Unregister ResolutionAutoFit
- 2025-1-18 11:02:44 - debug: Unregister ui_updater
- 2025-1-18 11:02:44 - debug: Unregister ClickPenetrate
- 2025-1-18 11:02:44 - debug: Unregister ListItem
- 2025-1-18 11:02:44 - debug: Unregister List
- 2025-1-18 11:02:44 - debug: Unregister MotionTrail
- 2025-1-18 11:02:44 - debug: Unregister MovieClip
- 2025-1-18 11:02:44 - debug: Unregister RewardFly
- 2025-1-18 11:02:44 - debug: Unregister SpineView
- 2025-1-18 11:02:44 - debug: Unregister UISpineMovie
- 2025-1-18 11:02:44 - debug: Unregister Layout_UIAlert
- 2025-1-18 11:02:44 - debug: Unregister Layout_UI_Notify
- 2025-1-18 11:02:44 - debug: Unregister Layout_UIWaiting
- 2025-1-18 11:02:44 - debug: Unregister table_idiom
- 2025-1-18 11:02:44 - debug: Unregister table_level
- 2025-1-18 11:02:44 - debug: Unregister Layout_GameRules
- 2025-1-18 11:02:44 - debug: Unregister UI_GameRules
- 2025-1-18 11:02:44 - debug: Unregister UI_Idiom
- 2025-1-18 11:02:44 - debug: Unregister Layout_Idioms
- 2025-1-18 11:02:44 - debug: Unregister UI_Idioms
- 2025-1-18 11:02:44 - debug: Unregister Layout_Settings
- 2025-1-18 11:02:44 - debug: Unregister Layout_Hall
- 2025-1-18 11:02:44 - debug: Unregister UI_Head_Icon
- 2025-1-18 11:02:44 - debug: Unregister UI_Rank_Item
- 2025-1-18 11:02:44 - debug: Unregister Layout_Rank
- 2025-1-18 11:02:44 - debug: Unregister UI_Rank
- 2025-1-18 11:02:44 - debug: Unregister Sign_Reward
- 2025-1-18 11:02:44 - debug: Unregister Layout_Sign
- 2025-1-18 11:02:44 - debug: Unregister UI_Sign
- 2025-1-18 11:02:44 - debug: Unregister Layout_Invite
- 2025-1-18 11:02:44 - debug: Unregister UI_Invite
- 2025-1-18 11:02:44 - debug: Unregister Layout_Store
- 2025-1-18 11:02:44 - debug: Unregister UI_Store
- 2025-1-18 11:02:44 - debug: Unregister Layout_SideBar
- 2025-1-18 11:02:44 - debug: Unregister Start
- 2025-1-18 11:02:44 - debug: Unregister UI_SideBar
- 2025-1-18 11:02:44 - debug: Unregister UI_Task_Item
- 2025-1-18 11:02:44 - debug: Unregister Layout_Task
- 2025-1-18 11:02:44 - debug: Unregister UI_Task
- 2025-1-18 11:02:44 - debug: Unregister UI_Hall
- 2025-1-18 11:02:44 - debug: Unregister UI_Settings
- 2025-1-18 11:02:44 - debug: Unregister Layout_Win
- 2025-1-18 11:02:44 - debug: Unregister UI_Win
- 2025-1-18 11:02:44 - debug: Unregister Layout_Main
- 2025-1-18 11:02:44 - debug: Unregister Layout_TimesOver
- 2025-1-18 11:02:44 - debug: Unregister Layout_Fail
- 2025-1-18 11:02:44 - debug: Unregister UI_Fail
- 2025-1-18 11:02:44 - debug: Unregister UI_TimesOver
- 2025-1-18 11:02:44 - debug: Unregister UI_Main
- 2025-1-18 11:02:44 - debug: Unregister Hall
- 2025-1-18 11:02:44 - debug: Unregister Cube_Infor
- 2025-1-18 11:02:44 - debug: Unregister CreateIdiom
- 2025-1-18 11:02:44 - debug: Unregister Layout_LatticeFull
- 2025-1-18 11:02:44 - debug: Unregister UI_LatticeFull
- 2025-1-18 11:02:44 - debug: Unregister Layout_Lock
- 2025-1-18 11:02:44 - debug: Unregister UI_Lock
- 2025-1-18 11:02:44 - debug: Unregister GameCtl
- 2025-1-18 11:02:44 - debug: Unregister Container_Manager
- 2025-1-18 11:02:44 - debug: Unregister UI_Item
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
- 2025-1-18 11:02:44 - debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
- 2025-1-18 11:02:44 - groupEnd: Invalidate all modules
- 2025-1-18 11:02:44 - groupCollapsed: Imports all modules
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register ch_start_pack
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register ui_updater
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register ListItem
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register List
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register MotionTrail
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register MovieClip
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register RewardFly
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register SpineView
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UISpineMovie
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register table_idiom
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register table_level
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_GameRules
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Idiom
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Idioms
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Settings
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Hall
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Rank
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Rank
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Sign_Reward
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Sign
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Sign
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Invite
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Invite
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Store
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Store
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Start
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_SideBar
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Task
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Task
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Hall
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Settings
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Win
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Win
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Main
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Fail
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Fail
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Main
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Hall
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Cube_Infor
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register CreateIdiom
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Layout_Lock
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Lock
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register GameCtl
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register Container_Manager
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Register UI_Item
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-18 11:02:44 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 11:02:44 - groupEnd: Imports all modules
- 2025-1-18 11:02:44 - debug: Incremental keys: chSdk,chsdk
- 2025-1-18 11:02:44 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-18 11:02:44 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-18 11:02:44 - debug: handle json group in bundle internal
- 2025-1-18 11:02:44 - debug: handle json group in bundle internal success
- 2025-1-18 11:02:44 - debug: handle json group in bundle start-scene
- 2025-1-18 11:02:44 - debug: handle json group in bundle start-scene success
- 2025-1-18 11:02:44 - debug: handle json group in bundle main
- 2025-1-18 11:02:44 - debug: handle json group in bundle main success
- 2025-1-18 11:02:44 - debug: handle json group in bundle module_extra
- 2025-1-18 11:02:44 - debug: handle json group in bundle module_basic
- 2025-1-18 11:02:44 - debug: handle json group in bundle module_game
- 2025-1-18 11:02:44 - debug: init image compress task 0 in bundle internal
- 2025-1-18 11:02:44 - debug: init image compress task 0 in bundle start-scene
- 2025-1-18 11:02:44 - debug: init image compress task 0 in bundle main
- 2025-1-18 11:02:44 - debug: handle json group in bundle module_extra success
- 2025-1-18 11:02:44 - debug: init image compress task 0 in bundle module_extra
- 2025-1-18 11:02:44 - debug: handle json group in bundle module_basic success
- 2025-1-18 11:02:44 - debug: init image compress task 0 in bundle module_basic
- 2025-1-18 11:02:44 - debug: handle json group in bundle module_game success
- 2025-1-18 11:02:44 - debug: init image compress task 0 in bundle module_game
- 2025-1-18 11:02:44 - debug: // ---- build task 查询 Asset Bundle ---- (235ms)
- 2025-1-18 11:02:44 - debug: run build task 查询 Asset Bundle success in 235 ms√, progress: 14%
- 2025-1-18 11:02:44 - debug: [Build Memory track]: 查询 Asset Bundle start:212.15MB, end 216.19MB, increase: 4.03MB
- 2025-1-18 11:02:44 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-18 11:02:44 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 11:02:44 - debug: // ---- build task 查询 Asset Bundle ---- (17ms)
- 2025-1-18 11:02:44 - debug: run build task 查询 Asset Bundle success in 17 ms√, progress: 19%
- 2025-1-18 11:02:44 - debug: [Build Memory track]: 查询 Asset Bundle start:216.22MB, end 216.50MB, increase: 284.16KB
- 2025-1-18 11:02:44 - debug: 打包脚本 start, progress: 19%
- 2025-1-18 11:02:44 - debug: // ---- build task 打包脚本 ----
- 2025-1-18 11:02:44 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 11:02:45 - log: [build-script]enter sub process 17560, 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-18 11:02:48 - debug: excute-script over with build-script 3188ms
- 2025-1-18 11:02:48 - debug: Generate systemJs..., progress: 19%
- 2025-1-18 11:02:48 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 11:02:50 - debug: excute-script over with build-script 2335ms
- 2025-1-18 11:02:50 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-18 11:02:50 - debug: Build script in bundle start, progress: 19%
- 2025-1-18 11:02:50 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 11:02:54 - 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/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_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-18 11:02:54 - 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_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_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_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_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_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_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_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_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_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_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_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_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_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/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-18 11:02:57 - debug: excute-script over with build-script 7195ms
- 2025-1-18 11:02:57 - debug: Copy externalScripts success!
- 2025-1-18 11:02:57 - debug: Build script in bundle success, progress: 19%
- 2025-1-18 11:02:57 - debug: 构建项目脚本 in (7248 ms) √, progress: 19%
- 2025-1-18 11:02:57 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-18 11:02:57 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\0ae7f2329c7dd0c47838e7933f7b8cfa)}
- 2025-1-18 11:02:57 - debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"WECHAT","useCache":true,"nativeCodeBundleMode":"wasm","wasmCompressionMode":"brotli","split":false,"skip":false,"assetURLFormat":"relative-from-out","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\wechatgame\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-18 11:02:57 - debug: 构建引擎脚本 in (93 ms) √, progress: 19%
- 2025-1-18 11:02:57 - debug: Copy plugin script ..., progress: 19%
- 2025-1-18 11:02:57 - debug: Generate import-map..., progress: 19%
- 2025-1-18 11:02:57 - debug: // ---- build task 打包脚本 ---- (12938ms)
- 2025-1-18 11:02:57 - debug: run build task 打包脚本 success in 12 s√, progress: 24%
- 2025-1-18 11:02:57 - debug: [Build Memory track]: 打包脚本 start:216.67MB, end 217.15MB, increase: 485.99KB
- 2025-1-18 11:02:57 - debug: Build Assets start, progress: 24%
- 2025-1-18 11:02:57 - debug: // ---- build task Build Assets ----
- 2025-1-18 11:02:57 - debug: Build bundles..., progress: 24%
- 2025-1-18 11:02:57 - debug: Pack Images start, progress: 24%
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 11:02:58 - debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 11:02:58 - debug(2): remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 11:02:58 - debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 11:02:58 - debug(2): remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 11:02:58 - debug: builder:pack-auto-atlas-image (692ms)
- 2025-1-18 11:02:58 - debug: Pack Images success, progress: 24%
- 2025-1-18 11:02:58 - debug: Compress image start..., progress: 24%
- 2025-1-18 11:02:58 - group: Compress image...
- 2025-1-18 11:02:58 - debug: sort compress task {}
- 2025-1-18 11:02:58 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-18 11:02:58 - debug: No image need to compress
- 2025-1-18 11:02:58 - groupEnd: Compress image...
- 2025-1-18 11:02:58 - debug: Compress image success..., progress: 24%
- 2025-1-18 11:02:58 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 11:02:58 - debug: Handle all json groups in bundle internal
- 2025-1-18 11:02:58 - debug: handle json group
- 2025-1-18 11:02:58 - debug: Handle all json groups in bundle start-scene
- 2025-1-18 11:02:58 - debug: handle json group
- 2025-1-18 11:02:58 - debug: Handle all json groups in bundle main
- 2025-1-18 11:02:58 - debug: handle json group
- 2025-1-18 11:02:58 - debug: handle single json
- 2025-1-18 11:02:58 - debug: Handle all json groups in bundle module_extra
- 2025-1-18 11:02:58 - debug: handle json group
- 2025-1-18 11:02:58 - debug: handle single json
- 2025-1-18 11:02:58 - debug: Handle all json groups in bundle module_basic
- 2025-1-18 11:02:58 - debug: handle json group
- 2025-1-18 11:02:58 - debug: Handle all json groups in bundle module_game
- 2025-1-18 11:02:58 - debug: handle json group
- 2025-1-18 11:02:58 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: handle single json
- 2025-1-18 11:02:58 - debug: Json group(04ade8c9e) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: handle single json
- 2025-1-18 11:02:58 - debug: Json group(09d6a42a2) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: handle single json
- 2025-1-18 11:02:58 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0a1731415) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0403d1262) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0329651a2) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0332e55a0) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(022fd81fe) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-18 11:02:58 - debug: handle single json
- 2025-1-18 11:02:58 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 11:02:58 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 11:02:58 - debug: compress config of bundle internal...
- 2025-1-18 11:02:58 - debug: compress config of bundle internal success
- 2025-1-18 11:02:58 - debug: compress config of bundle start-scene...
- 2025-1-18 11:02:58 - debug: compress config of bundle start-scene success
- 2025-1-18 11:02:58 - debug: compress config of bundle main...
- 2025-1-18 11:02:58 - debug: compress config of bundle main success
- 2025-1-18 11:02:58 - debug: compress config of bundle module_extra...
- 2025-1-18 11:02:58 - debug: compress config of bundle module_extra success
- 2025-1-18 11:02:58 - debug: compress config of bundle module_basic...
- 2025-1-18 11:02:58 - debug: compress config of bundle module_basic success
- 2025-1-18 11:02:58 - debug: compress config of bundle module_game...
- 2025-1-18 11:02:58 - debug: compress config of bundle module_game success
- 2025-1-18 11:02:58 - debug: output config of bundle internal
- 2025-1-18 11:02:58 - debug: output config of bundle internal success
- 2025-1-18 11:02:58 - debug: output config of bundle start-scene
- 2025-1-18 11:02:58 - debug: output config of bundle start-scene success
- 2025-1-18 11:02:58 - debug: output config of bundle main
- 2025-1-18 11:02:58 - debug: output config of bundle main success
- 2025-1-18 11:02:58 - debug: output config of bundle module_extra
- 2025-1-18 11:02:58 - debug: output config of bundle module_extra success
- 2025-1-18 11:02:58 - debug: output config of bundle module_basic
- 2025-1-18 11:02:58 - debug: output config of bundle module_basic success
- 2025-1-18 11:02:58 - debug: output config of bundle module_game
- 2025-1-18 11:02:58 - debug: output config of bundle module_game success
- 2025-1-18 11:02:58 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 11:02:58 - debug: // ---- build task Build Assets ---- (1016ms)
- 2025-1-18 11:02:58 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-18 11:02:58 - debug: [Build Memory track]: Build Assets start:217.18MB, end 209.29MB, increase: -8076.35KB
- 2025-1-18 11:02:58 - debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
- 2025-1-18 11:02:58 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
- 2025-1-18 11:02:58 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (17ms)
- 2025-1-18 11:02:58 - debug: wechatgame:(onAfterBundleBuildTask) in 17 ms ✓, progress: 29%
- 2025-1-18 11:02:58 - debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
- 2025-1-18 11:02:58 - debug: // ---- build task wechatgame:onAfterBuildAssets ----
- 2025-1-18 11:02:58 - debug: // ---- build task wechatgame:onAfterBuildAssets ---- (20ms)
- 2025-1-18 11:02:58 - debug: wechatgame:(onAfterBuildAssets) in 20 ms ✓, progress: 31%
- 2025-1-18 11:02:58 - debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
- 2025-1-18 11:02:58 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 11:02:58 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (19ms)
- 2025-1-18 11:02:58 - debug: run build task 整理部分构建选项内数据到 settings.json success in 19 ms√, progress: 33%
- 2025-1-18 11:02:58 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.61MB, end 209.68MB, increase: 69.19KB
- 2025-1-18 11:02:58 - debug: 填充脚本数据到 settings.json start, progress: 33%
- 2025-1-18 11:02:58 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-18 11:02:59 - debug: // ---- build task 填充脚本数据到 settings.json ---- (28ms)
- 2025-1-18 11:02:59 - debug: run build task 填充脚本数据到 settings.json success in 28 ms√, progress: 34%
- 2025-1-18 11:02:59 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.72MB, end 209.78MB, increase: 69.18KB
- 2025-1-18 11:02:59 - debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
- 2025-1-18 11:02:59 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 11:02:59 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (35ms)
- 2025-1-18 11:02:59 - debug: run build task 整理部分构建选项内数据到 settings.json success in 35 ms√, progress: 36%
- 2025-1-18 11:02:59 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.82MB, end 210.00MB, increase: 187.49KB
- 2025-1-18 11:02:59 - debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-18 11:02:59 - debug: // ---- build task wechatgame:onBeforeCompressSettings ----
- 2025-1-18 11:02:59 - debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (24ms)
- 2025-1-18 11:02:59 - debug: wechatgame:(onBeforeCompressSettings) in 24 ms ✓, progress: 38%
- 2025-1-18 11:02:59 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
- 2025-1-18 11:02:59 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-18 11:02:59 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (236ms)
- 2025-1-18 11:02:59 - debug: cocos-service:(onBeforeCompressSettings) in 236 ms ✓, progress: 40%
- 2025-1-18 11:02:59 - debug: 整理静态模板文件 start, progress: 40%
- 2025-1-18 11:02:59 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-18 11:02:59 - debug: // ---- build task 整理静态模板文件 ---- (45ms)
- 2025-1-18 11:02:59 - debug: run build task 整理静态模板文件 success in 45 ms√, progress: 45%
- 2025-1-18 11:02:59 - debug: [Build Memory track]: 整理静态模板文件 start:210.27MB, end 213.63MB, increase: 3.36MB
- 2025-1-18 11:02:59 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
- 2025-1-18 11:02:59 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-18 11:02:59 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (219ms)
- 2025-1-18 11:02:59 - debug: cocos-service:(onAfterCompressSettings) in 219 ms ✓, progress: 46%
- 2025-1-18 11:02:59 - debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
- 2025-1-18 11:02:59 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
- 2025-1-18 11:02:59 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (16ms)
- 2025-1-18 11:02:59 - debug: wechatgame:(onBeforeCopyBuildTemplate) in 16 ms ✓, progress: 48%
- 2025-1-18 11:02:59 - debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
- 2025-1-18 11:02:59 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
- 2025-1-18 11:02:59 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (20ms)
- 2025-1-18 11:02:59 - debug: wechatgame:(onAfterCopyBuildTemplate) in 20 ms ✓, progress: 50%
- 2025-1-18 11:02:59 - debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
- 2025-1-18 11:02:59 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-18 11:02:59 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (22ms)
- 2025-1-18 11:02:59 - debug: run build task 给所有的资源加上 MD5 后缀 success in 22 ms√, progress: 60%
- 2025-1-18 11:02:59 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:214.24MB, end 214.31MB, increase: 67.59KB
- 2025-1-18 11:02:59 - debug: wechatgame:(onAfterBuild) start..., progress: 60%
- 2025-1-18 11:02:59 - debug: // ---- build task wechatgame:onAfterBuild ----
- 2025-1-18 11:02:59 - debug: // ---- build task wechatgame:onAfterBuild ---- (295ms)
- 2025-1-18 11:02:59 - debug: wechatgame:(onAfterBuild) in 295 ms ✓, progress: 62%
- 2025-1-18 11:02:59 - debug: cocos-service:(onAfterBuild) start..., progress: 62%
- 2025-1-18 11:02:59 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-18 11:02:59 - debug: // ---- build task cocos-service:onAfterBuild ---- (60ms)
- 2025-1-18 11:02:59 - debug: cocos-service:(onAfterBuild) in 60 ms ✓, progress: 64%
- 2025-1-18 11:02:59 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
- 2025-1-18 11:02:59 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-18 11:03:00 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (15ms)
- 2025-1-18 11:03:00 - debug: adsense-h5g-plugin:(onAfterBuild) in 15 ms ✓, progress: 65%
- 2025-1-18 11:03:00 - log: Asset DB is resume!
- 2025-1-18 11:03:00 - debug: builder:build-project-total (15880ms)
- 2025-1-18 11:03:00 - debug: build success in 15880!
- 2025-1-18 11:03:00 - debug: [Build Memory track]: builder:build-project-total start:212.55MB, end 209.60MB, increase: -3018.21KB
- 2025-1-18 11:03:00 - debug: ================================ build Task (wechatgame) Finished in (15 s)ms ================================
- 2025-1-18 12:20:41 - debug: =================================== build Task (wechatgame) Start ================================
- 2025-1-18 12:20:41 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","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":"brotli","packages":{"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
- 2025-1-18 12:20:41 - debug: Build with Cocos Creator 3.8.4
- 2025-1-18 12:20:41 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-18 12:20:41 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-18 12:20:41 - debug: // ---- build task cocos-service:onBeforeBuild ---- (160ms)
- 2025-1-18 12:20:41 - debug: cocos-service:(onBeforeBuild) in 160 ms ✓, progress: 2%
- 2025-1-18 12:20:41 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-18 12:20:41 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-18 12:20:41 - debug: // ---- build task scene:onBeforeBuild ---- (35ms)
- 2025-1-18 12:20:41 - debug: scene:(onBeforeBuild) in 35 ms ✓, progress: 4%
- 2025-1-18 12:20:41 - debug: Start lock asset db..., progress: 4%
- 2025-1-18 12:20:41 - log: Asset DB is paused with build!
- 2025-1-18 12:20:41 - debug: Query all assets info in project
- 2025-1-18 12:20:41 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-18 12:20:41 - debug: wechatgame:(onAfterInit) start..., progress: 4%
- 2025-1-18 12:20:41 - debug: // ---- build task wechatgame:onAfterInit ----
- 2025-1-18 12:20:41 - debug: // ---- build task wechatgame:onAfterInit ---- (17ms)
- 2025-1-18 12:20:41 - debug: wechatgame:(onAfterInit) in 17 ms ✓, progress: 5%
- 2025-1-18 12:20:41 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-18 12:20:41 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-18 12:20:41 - debug: // ---- build task cocos-service:onAfterInit ---- (82ms)
- 2025-1-18 12:20:41 - debug: cocos-service:(onAfterInit) in 82 ms ✓, progress: 7%
- 2025-1-18 12:20:41 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-18 12:20:41 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-18 12:20:41 - debug: // ---- build task engine:onAfterInit ---- (32ms)
- 2025-1-18 12:20:41 - debug: engine:(onAfterInit) in 32 ms ✓, progress: 9%
- 2025-1-18 12:20:41 - debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 12:20:41 - debug: // ---- build task wechatgame:onBeforeBundleInit ----
- 2025-1-18 12:20:41 - debug: // ---- build task wechatgame:onBeforeBundleInit ---- (37ms)
- 2025-1-18 12:20:41 - debug: wechatgame:(onBeforeBundleInit) in 37 ms ✓, progress: 9%
- 2025-1-18 12:20:41 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 12:20:41 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-18 12:20:41 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-18 12:20:41 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (39ms)
- 2025-1-18 12:20:41 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 39 ms ✓, progress: 9%
- 2025-1-18 12:20:41 - debug: Init all bundles start..., progress: 9%
- 2025-1-18 12:20:41 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-18 12:20:41 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-18 12:20:41 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 12:20:41 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: Number of all scenes: 3
- 2025-1-18 12:20:41 - debug: Number of all scripts: 118
- 2025-1-18 12:20:41 - debug: Number of other assets: 1135
- 2025-1-18 12:20:41 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-18 12:20:41 - debug: reload all scripts.
- 2025-1-18 12:20:41 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-18 12:20:41 - groupCollapsed: Invalidate all modules
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 12:20:41 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-18 12:20:41 - groupEnd: Invalidate all modules
- 2025-1-18 12:20:41 - groupCollapsed: Imports all modules
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Register ch_start_pack
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Register ui_updater
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-18 12:20:41 - 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-18 12:20:41 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register ListItem
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register List
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register MotionTrail
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register MovieClip
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register RewardFly
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register SpineView
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register UISpineMovie
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register table_idiom
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register table_level
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_GameRules
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Idiom
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Idioms
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Settings
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Hall
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Rank
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Rank
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Sign_Reward
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Sign
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Sign
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Invite
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Invite
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Store
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Store
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Start
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_SideBar
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Task
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Task
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Hall
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Settings
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Win
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Win
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Main
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Fail
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Fail
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Main
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Hall
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Cube_Infor
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register CreateIdiom
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Layout_Lock
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register UI_Lock
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register GameCtl
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Register Container_Manager
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-18 12:20:42 - 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-18 12:20:42 - debug: [[Executor]] Register UI_Item
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-18 12:20:42 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 12:20:42 - groupEnd: Imports all modules
- 2025-1-18 12:20:42 - debug: Incremental keys: chSdk,chsdk
- 2025-1-18 12:20:42 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-18 12:20:42 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-18 12:20:42 - debug: handle json group in bundle internal
- 2025-1-18 12:20:42 - debug: handle json group in bundle internal success
- 2025-1-18 12:20:42 - debug: handle json group in bundle start-scene
- 2025-1-18 12:20:42 - debug: handle json group in bundle start-scene success
- 2025-1-18 12:20:42 - debug: handle json group in bundle main
- 2025-1-18 12:20:42 - debug: handle json group in bundle main success
- 2025-1-18 12:20:42 - debug: handle json group in bundle module_extra
- 2025-1-18 12:20:42 - debug: handle json group in bundle module_basic
- 2025-1-18 12:20:42 - debug: handle json group in bundle module_game
- 2025-1-18 12:20:42 - debug: init image compress task 0 in bundle internal
- 2025-1-18 12:20:42 - debug: init image compress task 0 in bundle start-scene
- 2025-1-18 12:20:42 - debug: init image compress task 0 in bundle main
- 2025-1-18 12:20:42 - debug: handle json group in bundle module_extra success
- 2025-1-18 12:20:42 - debug: init image compress task 0 in bundle module_extra
- 2025-1-18 12:20:42 - debug: handle json group in bundle module_basic success
- 2025-1-18 12:20:42 - debug: init image compress task 0 in bundle module_basic
- 2025-1-18 12:20:42 - debug: handle json group in bundle module_game success
- 2025-1-18 12:20:42 - debug: init image compress task 0 in bundle module_game
- 2025-1-18 12:20:42 - debug: // ---- build task 查询 Asset Bundle ---- (682ms)
- 2025-1-18 12:20:42 - debug: run build task 查询 Asset Bundle success in 682 ms√, progress: 14%
- 2025-1-18 12:20:42 - debug: [Build Memory track]: 查询 Asset Bundle start:162.95MB, end 199.50MB, increase: 36.55MB
- 2025-1-18 12:20:42 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-18 12:20:42 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 12:20:42 - debug: // ---- build task 查询 Asset Bundle ---- (50ms)
- 2025-1-18 12:20:42 - debug: run build task 查询 Asset Bundle success in 50 ms√, progress: 19%
- 2025-1-18 12:20:42 - debug: [Build Memory track]: 查询 Asset Bundle start:199.53MB, end 199.82MB, increase: 292.99KB
- 2025-1-18 12:20:42 - debug: 打包脚本 start, progress: 19%
- 2025-1-18 12:20:42 - debug: // ---- build task 打包脚本 ----
- 2025-1-18 12:20:42 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 12:20:43 - log: [build-script]enter sub process 15816, 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-18 12:20:46 - debug: excute-script over with build-script 3530ms
- 2025-1-18 12:20:46 - debug: Generate systemJs..., progress: 19%
- 2025-1-18 12:20:46 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 12:20:48 - debug: excute-script over with build-script 2517ms
- 2025-1-18 12:20:48 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-18 12:20:48 - debug: Build script in bundle start, progress: 19%
- 2025-1-18 12:20:48 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 12:20:52 - 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/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_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_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
- 2025-1-18 12:20:52 - 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_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_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_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_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_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_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_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_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_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_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_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_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/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-18 12:20:56 - debug: excute-script over with build-script 7443ms
- 2025-1-18 12:20:56 - debug: Copy externalScripts success!
- 2025-1-18 12:20:56 - debug: Build script in bundle success, progress: 19%
- 2025-1-18 12:20:56 - debug: 构建项目脚本 in (7528 ms) √, progress: 19%
- 2025-1-18 12:20:56 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-18 12:20:56 - debug: Engine cache ({link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}) does not exist.
- 2025-1-18 12:20:56 - debug: start build engine with options: {"incremental":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454.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\\28e650b030519d2cf0f243f53f248454","moduleFormat":"system","compress":true,"split":false,"nativeCodeBundleMode":"wasm","assetURLFormat":"relative-from-out","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","custom-pipeline-builtin-scripts"],"platform":"WECHAT","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"mode":"BUILD","metaFile":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454.meta\\meta.json","wasmCompressionMode":"brotli"}
- 2025-1-18 12:20:56 - log: Run build task(build-engine) in child, see: chrome://inspect/#devices
- 2025-1-18 12:20:56 - log: [build-engine]enter sub process 14912, 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-18 12:20:57 - 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\\28e650b030519d2cf0f243f53f248454","platform":"WECHAT","moduleFormat":"system","compress":true,"split":false,"nativeCodeBundleMode":"wasm","assetURLFormat":"relative-from-out","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","custom-pipeline-builtin-scripts"],"loose":true,"mode":"BUILD","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"metaFile":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454.meta\\meta.json","incremental":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454.watch-files.json","wasmCompressionMode":"brotli"}
- 2025-1-18 12:20:57 - 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 = false;
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 = true;
tryDefineGlobal('CC_WECHAT', true);
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 = true;
tryDefineGlobal('CC_MINIGAME', true);
export const RUNTIME_BASED = false;
tryDefineGlobal('CC_RUNTIME_BASED', false);
export const SUPPORT_JIT = false;
tryDefineGlobal('CC_SUPPORT_JIT', false);
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 = 1;
export const WASM_SUBPACKAGE = true;
export const CULL_MESHOPT = true;
- 2025-1-18 12:20:57 - 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';
- 2025-1-18 12:20:58 - 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-18 12:20:58 - log: [build-engine]Redirect module pal/wasm to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\wasm\wasm-minigame.ts
- 2025-1-18 12:20:59 - log: [build-engine]Redirect module pal/screen-adapter to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\screen-adapter\minigame\screen-adapter.ts
- 2025-1-18 12:20:59 - log: [build-engine]Redirect module pal/minigame to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\minigame\wechat.ts
- 2025-1-18 12:20:59 - log: [build-engine]Redirect module pal/system-info to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\system-info\minigame\system-info.ts
- 2025-1-18 12:21:03 - log: [build-engine]Redirect module pal/input to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\input\minigame\index.ts
- 2025-1-18 12:21:03 - log: [build-engine]Redirect module pal/audio to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\audio\minigame\player.ts
- 2025-1-18 12:21:04 - log: [build-engine]Redirect module pal/env to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\env\minigame\env.ts
- 2025-1-18 12:21:04 - log: [build-engine]Redirect module pal/pacer to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\pacer\pacer-minigame.ts
- 2025-1-18 12:21:08 - 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-18 12:21:09 - 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-18 12:21:17 - log: [build-engine]==== Performance ====
{"# BUILD":[20151.528200030327,457611192,515624204],"## generate module graph":[18213.91100001335,393474692,451493148],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId":[7.56490421295166,1191592,699885596],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId (async)":[26.897005081176758,5073336,699888656],"- plugin 1 (@cocos/ccbuild|module-overrides) - resolveId":[6.516701936721802,686984,699897244],"- plugin 2 (virtual) - resolveId":[21.297600030899048,5084992,699932924],"load modules":[63929.12220060825,3132303200,685637672],"- plugin 0 (@cocos/ccbuild|external-loader) - load":[2.542500853538513,287788,701800664],"- plugin 0 (@cocos/ccbuild|external-loader) - load (async)":[4.981099963188171,1200716,701801128],"- plugin 1 (@cocos/ccbuild|module-overrides) - load":[6.076698422431946,285440,701801792],"- plugin 2 (virtual) - load":[1.5041992664337158,89516,701802188],"- plugin 6 (json) - transform":[3.5056004524230957,832400,685641388],"- plugin 7 (commonjs) - transform":[12.17870008945465,599192,685644516],"- plugin 8 (babel) - transform":[164.36370146274567,13701112,685671676],"generate ast":[466.4596997499466,5162536,694784368],"analyse ast":[820.9321006536484,79640688,699828528],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId":[10.24489676952362,-3419604,699957460],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId (async)":[64.39640200138092,7884896,699961056],"- plugin 4 (ts-paths) - resolveId":[4.852902293205261,467244,699968860],"- plugin 5 (node-resolve) - resolveId":[36.69290113449097,117840,700032216],"- plugin 5 (node-resolve) - resolveId (async)":[74870.77188742161,-11851221852,702776380],"- plugin 5 (node-resolve) - load":[1.4836050271987915,93636,701802592],"- plugin 7 (commonjs) - load":[7.450700163841248,-4465628,701803848],"- plugin 8 (babel) - load":[247.75040233135223,10557304,701804244],"- plugin 8 (babel) - transform (async)":[13284.960799455643,641485316,698458704],"- plugin 7 (commonjs) - resolveId":[1.8147001266479492,73088,700121020],"- plugin 8 (babel) - resolveId":[0.9782993793487549,55472,700121424],"## sort modules":[151.46460008621216,3515128,455008580],"## mark included statements":[1785.8983000516891,60613812,515622636],"treeshaking pass 1":[778.0303000211716,47516536,502898304],"treeshaking pass 2":[230.68470001220703,7204776,510103324],"treeshaking pass 3":[122.98860001564026,5520128,515623696],"treeshaking pass 4":[100.74380004405975,-181760,515442180],"treeshaking pass 5":[77.52090001106262,4020076,519462500],"treeshaking pass 6":[65.94679999351501,-4093024,515369720],"treeshaking pass 7":[56.14959990978241,134380,515504344],"treeshaking pass 8":[53.644099950790405,5811896,521316484],"treeshaking pass 9":[52.17289996147156,-3551560,517765168],"treeshaking pass 10":[49.44599997997284,-3610784,514154628],"treeshaking pass 11":[49.805399894714355,4275756,518430628],"treeshaking pass 12":[50.636500000953674,-3130368,515300504],"treeshaking pass 13":[48.43470001220703,4284636,519585384],"treeshaking pass 14":[48.6742000579834,-3965444,515620184]}
- 2025-1-18 12:21:17 - log: [build-engine]==== ====
- 2025-1-18 12:21:31 - debug: excute-script over with build-engine 35564ms
- 2025-1-18 12:21:31 - debug: 构建引擎脚本 in (35643 ms) √, progress: 19%
- 2025-1-18 12:21:31 - debug: Copy plugin script ..., progress: 19%
- 2025-1-18 12:21:31 - debug: Generate import-map..., progress: 19%
- 2025-1-18 12:21:31 - debug: // ---- build task 打包脚本 ---- (49347ms)
- 2025-1-18 12:21:31 - debug: run build task 打包脚本 success in 49 s√, progress: 24%
- 2025-1-18 12:21:31 - debug: [Build Memory track]: 打包脚本 start:199.99MB, end 196.44MB, increase: -3639.51KB
- 2025-1-18 12:21:31 - debug: Build Assets start, progress: 24%
- 2025-1-18 12:21:31 - debug: // ---- build task Build Assets ----
- 2025-1-18 12:21:31 - debug: Build bundles..., progress: 24%
- 2025-1-18 12:21:31 - debug: Pack Images start, progress: 24%
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 12:21:32 - debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 12:21:32 - debug(2): remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 12:21:32 - debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 12:21:32 - debug(2): remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 12:21:32 - debug: builder:pack-auto-atlas-image (766ms)
- 2025-1-18 12:21:32 - debug: Pack Images success, progress: 24%
- 2025-1-18 12:21:32 - debug: Compress image start..., progress: 24%
- 2025-1-18 12:21:32 - group: Compress image...
- 2025-1-18 12:21:32 - debug: sort compress task {}
- 2025-1-18 12:21:32 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-18 12:21:32 - debug: No image need to compress
- 2025-1-18 12:21:32 - groupEnd: Compress image...
- 2025-1-18 12:21:32 - debug: Compress image success..., progress: 24%
- 2025-1-18 12:21:32 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 12:21:32 - debug: Handle all json groups in bundle internal
- 2025-1-18 12:21:32 - debug: handle json group
- 2025-1-18 12:21:32 - debug: Handle all json groups in bundle start-scene
- 2025-1-18 12:21:32 - debug: handle json group
- 2025-1-18 12:21:32 - debug: Handle all json groups in bundle main
- 2025-1-18 12:21:32 - debug: handle json group
- 2025-1-18 12:21:32 - debug: handle single json
- 2025-1-18 12:21:32 - debug: Handle all json groups in bundle module_extra
- 2025-1-18 12:21:32 - debug: handle json group
- 2025-1-18 12:21:32 - debug: handle single json
- 2025-1-18 12:21:32 - debug: Handle all json groups in bundle module_basic
- 2025-1-18 12:21:32 - debug: handle json group
- 2025-1-18 12:21:32 - debug: Handle all json groups in bundle module_game
- 2025-1-18 12:21:32 - debug: handle json group
- 2025-1-18 12:21:32 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: handle single json
- 2025-1-18 12:21:32 - debug: Json group(04ade8c9e) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: handle single json
- 2025-1-18 12:21:32 - debug: Json group(09d6a42a2) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: handle single json
- 2025-1-18 12:21:32 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0a1731415) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0db065665) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0403d1262) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0329651a2) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0332e55a0) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(022fd81fe) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-18 12:21:32 - debug: handle single json
- 2025-1-18 12:21:33 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 12:21:33 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 12:21:33 - debug: compress config of bundle internal...
- 2025-1-18 12:21:33 - debug: compress config of bundle internal success
- 2025-1-18 12:21:33 - debug: compress config of bundle start-scene...
- 2025-1-18 12:21:33 - debug: compress config of bundle start-scene success
- 2025-1-18 12:21:33 - debug: compress config of bundle main...
- 2025-1-18 12:21:33 - debug: compress config of bundle main success
- 2025-1-18 12:21:33 - debug: compress config of bundle module_extra...
- 2025-1-18 12:21:33 - debug: compress config of bundle module_extra success
- 2025-1-18 12:21:33 - debug: compress config of bundle module_basic...
- 2025-1-18 12:21:33 - debug: compress config of bundle module_basic success
- 2025-1-18 12:21:33 - debug: compress config of bundle module_game...
- 2025-1-18 12:21:33 - debug: compress config of bundle module_game success
- 2025-1-18 12:21:33 - debug: output config of bundle internal
- 2025-1-18 12:21:33 - debug: output config of bundle internal success
- 2025-1-18 12:21:33 - debug: output config of bundle start-scene
- 2025-1-18 12:21:33 - debug: output config of bundle start-scene success
- 2025-1-18 12:21:33 - debug: output config of bundle main
- 2025-1-18 12:21:33 - debug: output config of bundle main success
- 2025-1-18 12:21:33 - debug: output config of bundle module_extra
- 2025-1-18 12:21:33 - debug: output config of bundle module_extra success
- 2025-1-18 12:21:33 - debug: output config of bundle module_basic
- 2025-1-18 12:21:33 - debug: output config of bundle module_basic success
- 2025-1-18 12:21:33 - debug: output config of bundle module_game
- 2025-1-18 12:21:33 - debug: output config of bundle module_game success
- 2025-1-18 12:21:33 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 12:21:33 - debug: // ---- build task Build Assets ---- (1248ms)
- 2025-1-18 12:21:33 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-18 12:21:33 - debug: [Build Memory track]: Build Assets start:196.48MB, end 202.87MB, increase: 6.39MB
- 2025-1-18 12:21:33 - debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (30ms)
- 2025-1-18 12:21:33 - debug: wechatgame:(onAfterBundleBuildTask) in 30 ms ✓, progress: 29%
- 2025-1-18 12:21:33 - debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onAfterBuildAssets ----
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onAfterBuildAssets ---- (32ms)
- 2025-1-18 12:21:33 - debug: wechatgame:(onAfterBuildAssets) in 32 ms ✓, progress: 31%
- 2025-1-18 12:21:33 - debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
- 2025-1-18 12:21:33 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 12:21:33 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (27ms)
- 2025-1-18 12:21:33 - debug: run build task 整理部分构建选项内数据到 settings.json success in 27 ms√, progress: 33%
- 2025-1-18 12:21:33 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:203.16MB, end 203.23MB, increase: 70.27KB
- 2025-1-18 12:21:33 - debug: 填充脚本数据到 settings.json start, progress: 33%
- 2025-1-18 12:21:33 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-18 12:21:33 - debug: // ---- build task 填充脚本数据到 settings.json ---- (33ms)
- 2025-1-18 12:21:33 - debug: run build task 填充脚本数据到 settings.json success in 33 ms√, progress: 34%
- 2025-1-18 12:21:33 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:203.26MB, end 203.33MB, increase: 71.25KB
- 2025-1-18 12:21:33 - debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
- 2025-1-18 12:21:33 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 12:21:33 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (71ms)
- 2025-1-18 12:21:33 - debug: run build task 整理部分构建选项内数据到 settings.json success in 71 ms√, progress: 36%
- 2025-1-18 12:21:33 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:203.37MB, end 203.60MB, increase: 238.02KB
- 2025-1-18 12:21:33 - debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onBeforeCompressSettings ----
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (35ms)
- 2025-1-18 12:21:33 - debug: wechatgame:(onBeforeCompressSettings) in 35 ms ✓, progress: 38%
- 2025-1-18 12:21:33 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
- 2025-1-18 12:21:33 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-18 12:21:33 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (173ms)
- 2025-1-18 12:21:33 - debug: cocos-service:(onBeforeCompressSettings) in 173 ms ✓, progress: 40%
- 2025-1-18 12:21:33 - debug: 整理静态模板文件 start, progress: 40%
- 2025-1-18 12:21:33 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-18 12:21:33 - debug: // ---- build task 整理静态模板文件 ---- (96ms)
- 2025-1-18 12:21:33 - debug: run build task 整理静态模板文件 success in 96 ms√, progress: 45%
- 2025-1-18 12:21:33 - debug: [Build Memory track]: 整理静态模板文件 start:203.86MB, end 202.72MB, increase: -1172.17KB
- 2025-1-18 12:21:33 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
- 2025-1-18 12:21:33 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-18 12:21:33 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (81ms)
- 2025-1-18 12:21:33 - debug: cocos-service:(onAfterCompressSettings) in 81 ms ✓, progress: 46%
- 2025-1-18 12:21:33 - debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (35ms)
- 2025-1-18 12:21:33 - debug: wechatgame:(onBeforeCopyBuildTemplate) in 35 ms ✓, progress: 48%
- 2025-1-18 12:21:33 - debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (53ms)
- 2025-1-18 12:21:33 - debug: wechatgame:(onAfterCopyBuildTemplate) in 53 ms ✓, progress: 50%
- 2025-1-18 12:21:33 - debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
- 2025-1-18 12:21:33 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-18 12:21:33 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (43ms)
- 2025-1-18 12:21:33 - debug: run build task 给所有的资源加上 MD5 后缀 success in 43 ms√, progress: 60%
- 2025-1-18 12:21:33 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:203.35MB, end 203.41MB, increase: 69.09KB
- 2025-1-18 12:21:33 - debug: wechatgame:(onAfterBuild) start..., progress: 60%
- 2025-1-18 12:21:33 - debug: // ---- build task wechatgame:onAfterBuild ----
- 2025-1-18 12:21:34 - debug: // ---- build task wechatgame:onAfterBuild ---- (348ms)
- 2025-1-18 12:21:34 - debug: wechatgame:(onAfterBuild) in 348 ms ✓, progress: 62%
- 2025-1-18 12:21:34 - debug: cocos-service:(onAfterBuild) start..., progress: 62%
- 2025-1-18 12:21:34 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-18 12:21:34 - debug: // ---- build task cocos-service:onAfterBuild ---- (77ms)
- 2025-1-18 12:21:34 - debug: cocos-service:(onAfterBuild) in 77 ms ✓, progress: 64%
- 2025-1-18 12:21:34 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
- 2025-1-18 12:21:34 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-18 12:21:34 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (38ms)
- 2025-1-18 12:21:34 - debug: adsense-h5g-plugin:(onAfterBuild) in 38 ms ✓, progress: 65%
- 2025-1-18 12:21:34 - log: Asset DB is resume!
- 2025-1-18 12:21:34 - debug: builder:build-project-total (53099ms)
- 2025-1-18 12:21:34 - debug: build success in 53099!
- 2025-1-18 12:21:34 - debug: [Build Memory track]: builder:build-project-total start:161.92MB, end 205.14MB, increase: 43.22MB
- 2025-1-18 12:21:34 - debug: ================================ build Task (wechatgame) Finished in (53 s)ms ================================
- 2025-1-18 12:33:53 - debug: =================================== build Task (wechatgame) Start ================================
- 2025-1-18 12:33:53 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","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":"brotli","packages":{"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
- 2025-1-18 12:33:53 - debug: Build with Cocos Creator 3.8.4
- 2025-1-18 12:33:53 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-18 12:33:53 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-18 12:33:53 - debug: // ---- build task cocos-service:onBeforeBuild ---- (190ms)
- 2025-1-18 12:33:53 - debug: cocos-service:(onBeforeBuild) in 190 ms ✓, progress: 2%
- 2025-1-18 12:33:53 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-18 12:33:53 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-18 12:33:53 - debug: // ---- build task scene:onBeforeBuild ---- (30ms)
- 2025-1-18 12:33:53 - debug: scene:(onBeforeBuild) in 30 ms ✓, progress: 4%
- 2025-1-18 12:33:53 - debug: Start lock asset db..., progress: 4%
- 2025-1-18 12:33:53 - log: Asset DB is paused with build!
- 2025-1-18 12:33:53 - debug: Query all assets info in project
- 2025-1-18 12:33:53 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-18 12:33:53 - debug: wechatgame:(onAfterInit) start..., progress: 4%
- 2025-1-18 12:33:53 - debug: // ---- build task wechatgame:onAfterInit ----
- 2025-1-18 12:33:53 - debug: // ---- build task wechatgame:onAfterInit ---- (13ms)
- 2025-1-18 12:33:53 - debug: wechatgame:(onAfterInit) in 13 ms ✓, progress: 5%
- 2025-1-18 12:33:53 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-18 12:33:53 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-18 12:33:53 - debug: // ---- build task cocos-service:onAfterInit ---- (92ms)
- 2025-1-18 12:33:53 - debug: cocos-service:(onAfterInit) in 92 ms ✓, progress: 7%
- 2025-1-18 12:33:53 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-18 12:33:53 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-18 12:33:53 - debug: // ---- build task engine:onAfterInit ---- (27ms)
- 2025-1-18 12:33:53 - debug: engine:(onAfterInit) in 27 ms ✓, progress: 9%
- 2025-1-18 12:33:53 - debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 12:33:53 - debug: // ---- build task wechatgame:onBeforeBundleInit ----
- 2025-1-18 12:33:53 - debug: // ---- build task wechatgame:onBeforeBundleInit ---- (40ms)
- 2025-1-18 12:33:53 - debug: wechatgame:(onBeforeBundleInit) in 40 ms ✓, progress: 9%
- 2025-1-18 12:33:53 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 12:33:53 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-18 12:33:53 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-18 12:33:53 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (31ms)
- 2025-1-18 12:33:53 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 31 ms ✓, progress: 9%
- 2025-1-18 12:33:53 - debug: Init all bundles start..., progress: 9%
- 2025-1-18 12:33:53 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-18 12:33:53 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-18 12:33:53 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 12:33:53 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-18 12:33:53 - 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-18 12:33:53 - debug: Number of all scenes: 3
- 2025-1-18 12:33:53 - debug: Number of all scripts: 118
- 2025-1-18 12:33:53 - debug: Number of other assets: 1135
- 2025-1-18 12:33:53 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-18 12:33:53 - debug: reload all scripts.
- 2025-1-18 12:33:53 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-18 12:33:53 - groupCollapsed: Invalidate all modules
- 2025-1-18 12:33:53 - debug: Unregister BuiltinPipelineSettings
- 2025-1-18 12:33:53 - debug: Unregister DebugViewRuntimeControl
- 2025-1-18 12:33:53 - debug: Unregister ch_sdk_comp
- 2025-1-18 12:33:53 - debug: Unregister ch_start_pack
- 2025-1-18 12:33:53 - debug: Unregister __NodeEventAgent__
- 2025-1-18 12:33:53 - debug: Unregister ResolutionAutoFit
- 2025-1-18 12:33:53 - debug: Unregister ui_updater
- 2025-1-18 12:33:53 - debug: Unregister ClickPenetrate
- 2025-1-18 12:33:53 - debug: Unregister ListItem
- 2025-1-18 12:33:53 - debug: Unregister List
- 2025-1-18 12:33:53 - debug: Unregister MotionTrail
- 2025-1-18 12:33:53 - debug: Unregister MovieClip
- 2025-1-18 12:33:53 - debug: Unregister RewardFly
- 2025-1-18 12:33:53 - debug: Unregister SpineView
- 2025-1-18 12:33:53 - debug: Unregister UISpineMovie
- 2025-1-18 12:33:53 - debug: Unregister Layout_UIAlert
- 2025-1-18 12:33:53 - debug: Unregister Layout_UI_Notify
- 2025-1-18 12:33:53 - debug: Unregister Layout_UIWaiting
- 2025-1-18 12:33:53 - debug: Unregister table_idiom
- 2025-1-18 12:33:53 - debug: Unregister table_level
- 2025-1-18 12:33:53 - debug: Unregister Layout_GameRules
- 2025-1-18 12:33:53 - debug: Unregister UI_GameRules
- 2025-1-18 12:33:53 - debug: Unregister UI_Idiom
- 2025-1-18 12:33:53 - debug: Unregister Layout_Idioms
- 2025-1-18 12:33:53 - debug: Unregister UI_Idioms
- 2025-1-18 12:33:53 - debug: Unregister Layout_Settings
- 2025-1-18 12:33:53 - debug: Unregister Layout_Hall
- 2025-1-18 12:33:53 - debug: Unregister UI_Head_Icon
- 2025-1-18 12:33:53 - debug: Unregister UI_Rank_Item
- 2025-1-18 12:33:53 - debug: Unregister Layout_Rank
- 2025-1-18 12:33:53 - debug: Unregister UI_Rank
- 2025-1-18 12:33:53 - debug: Unregister Sign_Reward
- 2025-1-18 12:33:53 - debug: Unregister Layout_Sign
- 2025-1-18 12:33:53 - debug: Unregister UI_Sign
- 2025-1-18 12:33:53 - debug: Unregister Layout_Invite
- 2025-1-18 12:33:53 - debug: Unregister UI_Invite
- 2025-1-18 12:33:53 - debug: Unregister Layout_Store
- 2025-1-18 12:33:53 - debug: Unregister UI_Store
- 2025-1-18 12:33:53 - debug: Unregister Layout_SideBar
- 2025-1-18 12:33:53 - debug: Unregister Start
- 2025-1-18 12:33:53 - debug: Unregister UI_SideBar
- 2025-1-18 12:33:53 - debug: Unregister UI_Task_Item
- 2025-1-18 12:33:53 - debug: Unregister Layout_Task
- 2025-1-18 12:33:53 - debug: Unregister UI_Task
- 2025-1-18 12:33:53 - debug: Unregister UI_Hall
- 2025-1-18 12:33:53 - debug: Unregister UI_Settings
- 2025-1-18 12:33:53 - debug: Unregister Layout_Win
- 2025-1-18 12:33:53 - debug: Unregister UI_Win
- 2025-1-18 12:33:53 - debug: Unregister Layout_Main
- 2025-1-18 12:33:53 - debug: Unregister Layout_TimesOver
- 2025-1-18 12:33:53 - debug: Unregister Layout_Fail
- 2025-1-18 12:33:53 - debug: Unregister UI_Fail
- 2025-1-18 12:33:53 - debug: Unregister UI_TimesOver
- 2025-1-18 12:33:53 - debug: Unregister UI_Main
- 2025-1-18 12:33:53 - debug: Unregister Hall
- 2025-1-18 12:33:53 - debug: Unregister Cube_Infor
- 2025-1-18 12:33:53 - debug: Unregister CreateIdiom
- 2025-1-18 12:33:53 - debug: Unregister Layout_LatticeFull
- 2025-1-18 12:33:53 - debug: Unregister UI_LatticeFull
- 2025-1-18 12:33:53 - debug: Unregister Layout_Lock
- 2025-1-18 12:33:53 - debug: Unregister UI_Lock
- 2025-1-18 12:33:53 - debug: Unregister GameCtl
- 2025-1-18 12:33:53 - debug: Unregister Container_Manager
- 2025-1-18 12:33:53 - debug: Unregister UI_Item
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
- 2025-1-18 12:33:53 - debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
- 2025-1-18 12:33:53 - groupEnd: Invalidate all modules
- 2025-1-18 12:33:53 - groupCollapsed: Imports all modules
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 12:33:53 - 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-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register ch_start_pack
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register ui_updater
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register ListItem
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register List
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register MotionTrail
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register MovieClip
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register RewardFly
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register SpineView
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UISpineMovie
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register table_idiom
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register table_level
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-18 12:33:53 - 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-18 12:33:53 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_GameRules
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Idiom
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Idioms
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Settings
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Hall
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Rank
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Rank
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Sign_Reward
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Sign
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Sign
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Invite
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Invite
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Store
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Store
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Start
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_SideBar
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Task
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Task
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Hall
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Settings
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Win
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Win
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Main
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Fail
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Fail
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Main
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Hall
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Cube_Infor
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register CreateIdiom
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Layout_Lock
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Lock
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register GameCtl
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register Container_Manager
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Register UI_Item
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-18 12:33:53 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 12:33:53 - groupEnd: Imports all modules
- 2025-1-18 12:33:53 - debug: Incremental keys: chSdk,chsdk
- 2025-1-18 12:33:53 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-18 12:33:53 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-18 12:33:53 - debug: handle json group in bundle internal
- 2025-1-18 12:33:53 - debug: handle json group in bundle internal success
- 2025-1-18 12:33:53 - debug: handle json group in bundle start-scene
- 2025-1-18 12:33:53 - debug: handle json group in bundle start-scene success
- 2025-1-18 12:33:53 - debug: handle json group in bundle main
- 2025-1-18 12:33:53 - debug: handle json group in bundle main success
- 2025-1-18 12:33:53 - debug: handle json group in bundle module_extra
- 2025-1-18 12:33:53 - debug: handle json group in bundle module_basic
- 2025-1-18 12:33:53 - debug: handle json group in bundle module_game
- 2025-1-18 12:33:53 - debug: init image compress task 0 in bundle internal
- 2025-1-18 12:33:53 - debug: init image compress task 0 in bundle start-scene
- 2025-1-18 12:33:53 - debug: init image compress task 0 in bundle main
- 2025-1-18 12:33:53 - debug: handle json group in bundle module_extra success
- 2025-1-18 12:33:53 - debug: init image compress task 0 in bundle module_extra
- 2025-1-18 12:33:53 - debug: handle json group in bundle module_basic success
- 2025-1-18 12:33:53 - debug: init image compress task 0 in bundle module_basic
- 2025-1-18 12:33:53 - debug: handle json group in bundle module_game success
- 2025-1-18 12:33:53 - debug: init image compress task 0 in bundle module_game
- 2025-1-18 12:33:53 - debug: // ---- build task 查询 Asset Bundle ---- (381ms)
- 2025-1-18 12:33:53 - debug: run build task 查询 Asset Bundle success in 381 ms√, progress: 14%
- 2025-1-18 12:33:53 - debug: [Build Memory track]: 查询 Asset Bundle start:223.75MB, end 203.01MB, increase: -21228.76KB
- 2025-1-18 12:33:53 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-18 12:33:53 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 12:33:54 - debug: // ---- build task 查询 Asset Bundle ---- (64ms)
- 2025-1-18 12:33:54 - debug: run build task 查询 Asset Bundle success in 64 ms√, progress: 19%
- 2025-1-18 12:33:54 - debug: [Build Memory track]: 查询 Asset Bundle start:203.05MB, end 200.65MB, increase: -2461.19KB
- 2025-1-18 12:33:54 - debug: 打包脚本 start, progress: 19%
- 2025-1-18 12:33:54 - debug: // ---- build task 打包脚本 ----
- 2025-1-18 12:33:54 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 12:33:54 - log: [build-script]enter sub process 17932, 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-18 12:33:57 - debug: excute-script over with build-script 3389ms
- 2025-1-18 12:33:57 - debug: Generate systemJs..., progress: 19%
- 2025-1-18 12:33:57 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 12:33:59 - debug: excute-script over with build-script 2526ms
- 2025-1-18 12:33:59 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-18 12:33:59 - debug: Build script in bundle start, progress: 19%
- 2025-1-18 12:34:00 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 12:34:04 - 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/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_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_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
- 2025-1-18 12:34:04 - 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_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_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_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_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_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_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_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_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_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_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_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_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/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-18 12:34:07 - debug: excute-script over with build-script 7335ms
- 2025-1-18 12:34:07 - debug: Copy externalScripts success!
- 2025-1-18 12:34:07 - debug: Build script in bundle success, progress: 19%
- 2025-1-18 12:34:07 - debug: 构建项目脚本 in (7410 ms) √, progress: 19%
- 2025-1-18 12:34:07 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-18 12:34:07 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}
- 2025-1-18 12:34:07 - 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","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"WECHAT","useCache":true,"nativeCodeBundleMode":"wasm","wasmCompressionMode":"brotli","split":false,"skip":false,"assetURLFormat":"relative-from-out","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\wechatgame\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-18 12:34:07 - debug: 构建引擎脚本 in (121 ms) √, progress: 19%
- 2025-1-18 12:34:07 - debug: Copy plugin script ..., progress: 19%
- 2025-1-18 12:34:07 - debug: Generate import-map..., progress: 19%
- 2025-1-18 12:34:07 - debug: // ---- build task 打包脚本 ---- (13556ms)
- 2025-1-18 12:34:07 - debug: run build task 打包脚本 success in 13 s√, progress: 24%
- 2025-1-18 12:34:07 - debug: [Build Memory track]: 打包脚本 start:200.82MB, end 201.79MB, increase: 988.42KB
- 2025-1-18 12:34:07 - debug: Build Assets start, progress: 24%
- 2025-1-18 12:34:07 - debug: // ---- build task Build Assets ----
- 2025-1-18 12:34:07 - debug: Build bundles..., progress: 24%
- 2025-1-18 12:34:07 - debug: Pack Images start, progress: 24%
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 12:34:08 - debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 12:34:08 - debug(2): remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 12:34:08 - debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 12:34:08 - debug(2): remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 12:34:08 - debug: builder:pack-auto-atlas-image (660ms)
- 2025-1-18 12:34:08 - debug: Pack Images success, progress: 24%
- 2025-1-18 12:34:08 - debug: Compress image start..., progress: 24%
- 2025-1-18 12:34:08 - group: Compress image...
- 2025-1-18 12:34:08 - debug: sort compress task {}
- 2025-1-18 12:34:08 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-18 12:34:08 - debug: No image need to compress
- 2025-1-18 12:34:08 - groupEnd: Compress image...
- 2025-1-18 12:34:08 - debug: Compress image success..., progress: 24%
- 2025-1-18 12:34:08 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 12:34:08 - debug: Handle all json groups in bundle internal
- 2025-1-18 12:34:08 - debug: handle json group
- 2025-1-18 12:34:08 - debug: Handle all json groups in bundle start-scene
- 2025-1-18 12:34:08 - debug: handle json group
- 2025-1-18 12:34:08 - debug: Handle all json groups in bundle main
- 2025-1-18 12:34:08 - debug: handle json group
- 2025-1-18 12:34:08 - debug: handle single json
- 2025-1-18 12:34:08 - debug: Handle all json groups in bundle module_extra
- 2025-1-18 12:34:08 - debug: handle json group
- 2025-1-18 12:34:08 - debug: handle single json
- 2025-1-18 12:34:08 - debug: Handle all json groups in bundle module_basic
- 2025-1-18 12:34:08 - debug: handle json group
- 2025-1-18 12:34:08 - debug: Handle all json groups in bundle module_game
- 2025-1-18 12:34:08 - debug: handle json group
- 2025-1-18 12:34:08 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: handle single json
- 2025-1-18 12:34:08 - debug: Json group(04ade8c9e) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: handle single json
- 2025-1-18 12:34:08 - debug: Json group(09d6a42a2) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: handle single json
- 2025-1-18 12:34:08 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0a1731415) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0db065665) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0403d1262) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0329651a2) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0332e55a0) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(022fd81fe) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-18 12:34:08 - debug: handle single json
- 2025-1-18 12:34:08 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 12:34:08 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 12:34:08 - debug: compress config of bundle internal...
- 2025-1-18 12:34:08 - debug: compress config of bundle internal success
- 2025-1-18 12:34:08 - debug: compress config of bundle start-scene...
- 2025-1-18 12:34:08 - debug: compress config of bundle start-scene success
- 2025-1-18 12:34:08 - debug: compress config of bundle main...
- 2025-1-18 12:34:08 - debug: compress config of bundle main success
- 2025-1-18 12:34:08 - debug: compress config of bundle module_extra...
- 2025-1-18 12:34:08 - debug: compress config of bundle module_extra success
- 2025-1-18 12:34:08 - debug: compress config of bundle module_basic...
- 2025-1-18 12:34:08 - debug: compress config of bundle module_basic success
- 2025-1-18 12:34:08 - debug: compress config of bundle module_game...
- 2025-1-18 12:34:08 - debug: compress config of bundle module_game success
- 2025-1-18 12:34:08 - debug: output config of bundle internal
- 2025-1-18 12:34:08 - debug: output config of bundle internal success
- 2025-1-18 12:34:08 - debug: output config of bundle start-scene
- 2025-1-18 12:34:08 - debug: output config of bundle start-scene success
- 2025-1-18 12:34:08 - debug: output config of bundle main
- 2025-1-18 12:34:08 - debug: output config of bundle main success
- 2025-1-18 12:34:08 - debug: output config of bundle module_extra
- 2025-1-18 12:34:08 - debug: output config of bundle module_extra success
- 2025-1-18 12:34:08 - debug: output config of bundle module_basic
- 2025-1-18 12:34:08 - debug: output config of bundle module_basic success
- 2025-1-18 12:34:08 - debug: output config of bundle module_game
- 2025-1-18 12:34:08 - debug: output config of bundle module_game success
- 2025-1-18 12:34:08 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 12:34:08 - debug: // ---- build task Build Assets ---- (1197ms)
- 2025-1-18 12:34:08 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-18 12:34:08 - debug: [Build Memory track]: Build Assets start:201.83MB, end 205.74MB, increase: 3.92MB
- 2025-1-18 12:34:08 - debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
- 2025-1-18 12:34:08 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
- 2025-1-18 12:34:08 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (37ms)
- 2025-1-18 12:34:08 - debug: wechatgame:(onAfterBundleBuildTask) in 37 ms ✓, progress: 29%
- 2025-1-18 12:34:08 - debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
- 2025-1-18 12:34:08 - debug: // ---- build task wechatgame:onAfterBuildAssets ----
- 2025-1-18 12:34:08 - debug: // ---- build task wechatgame:onAfterBuildAssets ---- (35ms)
- 2025-1-18 12:34:08 - debug: wechatgame:(onAfterBuildAssets) in 35 ms ✓, progress: 31%
- 2025-1-18 12:34:08 - debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
- 2025-1-18 12:34:08 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 12:34:08 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (39ms)
- 2025-1-18 12:34:08 - debug: run build task 整理部分构建选项内数据到 settings.json success in 39 ms√, progress: 33%
- 2025-1-18 12:34:08 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.03MB, end 206.10MB, increase: 71.23KB
- 2025-1-18 12:34:08 - debug: 填充脚本数据到 settings.json start, progress: 33%
- 2025-1-18 12:34:08 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-18 12:34:08 - debug: // ---- build task 填充脚本数据到 settings.json ---- (33ms)
- 2025-1-18 12:34:08 - debug: run build task 填充脚本数据到 settings.json success in 33 ms√, progress: 34%
- 2025-1-18 12:34:08 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:206.14MB, end 206.21MB, increase: 75.29KB
- 2025-1-18 12:34:08 - debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
- 2025-1-18 12:34:08 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 12:34:09 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (50ms)
- 2025-1-18 12:34:09 - debug: run build task 整理部分构建选项内数据到 settings.json success in 50 ms√, progress: 36%
- 2025-1-18 12:34:09 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.24MB, end 206.42MB, increase: 179.31KB
- 2025-1-18 12:34:09 - debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-18 12:34:09 - debug: // ---- build task wechatgame:onBeforeCompressSettings ----
- 2025-1-18 12:34:09 - debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (54ms)
- 2025-1-18 12:34:09 - debug: wechatgame:(onBeforeCompressSettings) in 54 ms ✓, progress: 38%
- 2025-1-18 12:34:09 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
- 2025-1-18 12:34:09 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-18 12:34:09 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (503ms)
- 2025-1-18 12:34:09 - debug: cocos-service:(onBeforeCompressSettings) in 503 ms ✓, progress: 40%
- 2025-1-18 12:34:09 - debug: 整理静态模板文件 start, progress: 40%
- 2025-1-18 12:34:09 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-18 12:34:09 - debug: // ---- build task 整理静态模板文件 ---- (76ms)
- 2025-1-18 12:34:09 - debug: run build task 整理静态模板文件 success in 76 ms√, progress: 45%
- 2025-1-18 12:34:09 - debug: [Build Memory track]: 整理静态模板文件 start:206.72MB, end 200.83MB, increase: -6023.69KB
- 2025-1-18 12:34:09 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
- 2025-1-18 12:34:09 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-18 12:34:09 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (119ms)
- 2025-1-18 12:34:09 - debug: cocos-service:(onAfterCompressSettings) in 119 ms ✓, progress: 46%
- 2025-1-18 12:34:09 - debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
- 2025-1-18 12:34:09 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
- 2025-1-18 12:34:09 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (24ms)
- 2025-1-18 12:34:09 - debug: wechatgame:(onBeforeCopyBuildTemplate) in 24 ms ✓, progress: 48%
- 2025-1-18 12:34:09 - debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
- 2025-1-18 12:34:09 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
- 2025-1-18 12:34:09 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (43ms)
- 2025-1-18 12:34:09 - debug: wechatgame:(onAfterCopyBuildTemplate) in 43 ms ✓, progress: 50%
- 2025-1-18 12:34:09 - debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
- 2025-1-18 12:34:09 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-18 12:34:09 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (32ms)
- 2025-1-18 12:34:09 - debug: run build task 给所有的资源加上 MD5 后缀 success in 32 ms√, progress: 60%
- 2025-1-18 12:34:09 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:201.43MB, end 201.50MB, increase: 71.73KB
- 2025-1-18 12:34:09 - debug: wechatgame:(onAfterBuild) start..., progress: 60%
- 2025-1-18 12:34:09 - debug: // ---- build task wechatgame:onAfterBuild ----
- 2025-1-18 12:34:10 - debug: // ---- build task wechatgame:onAfterBuild ---- (1096ms)
- 2025-1-18 12:34:10 - debug: wechatgame:(onAfterBuild) in 1096 ms ✓, progress: 62%
- 2025-1-18 12:34:10 - debug: cocos-service:(onAfterBuild) start..., progress: 62%
- 2025-1-18 12:34:10 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-18 12:34:11 - debug: // ---- build task cocos-service:onAfterBuild ---- (176ms)
- 2025-1-18 12:34:11 - debug: cocos-service:(onAfterBuild) in 176 ms ✓, progress: 64%
- 2025-1-18 12:34:11 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
- 2025-1-18 12:34:11 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-18 12:34:11 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (30ms)
- 2025-1-18 12:34:11 - debug: adsense-h5g-plugin:(onAfterBuild) in 30 ms ✓, progress: 65%
- 2025-1-18 12:34:11 - log: Asset DB is resume!
- 2025-1-18 12:34:11 - debug: builder:build-project-total (18154ms)
- 2025-1-18 12:34:11 - debug: build success in 18154!
- 2025-1-18 12:34:11 - debug: [Build Memory track]: builder:build-project-total start:223.05MB, end 202.37MB, increase: -21181.73KB
- 2025-1-18 12:34:11 - debug: ================================ build Task (wechatgame) Finished in (18 s)ms ================================
- 2025-1-18 17:19:12 - debug: =================================== build Task (wechatgame) Start ================================
- 2025-1-18 17:19:12 - debug: Start build task, options:
{"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","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":"brotli","packages":{"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
- 2025-1-18 17:19:12 - debug: Build with Cocos Creator 3.8.4
- 2025-1-18 17:19:12 - debug: cocos-service:(onBeforeBuild) start..., progress: 0%
- 2025-1-18 17:19:12 - debug: // ---- build task cocos-service:onBeforeBuild ----
- 2025-1-18 17:19:12 - debug: // ---- build task cocos-service:onBeforeBuild ---- (196ms)
- 2025-1-18 17:19:12 - debug: cocos-service:(onBeforeBuild) in 196 ms ✓, progress: 2%
- 2025-1-18 17:19:12 - debug: scene:(onBeforeBuild) start..., progress: 2%
- 2025-1-18 17:19:12 - debug: // ---- build task scene:onBeforeBuild ----
- 2025-1-18 17:19:12 - debug: // ---- build task scene:onBeforeBuild ---- (26ms)
- 2025-1-18 17:19:12 - debug: scene:(onBeforeBuild) in 26 ms ✓, progress: 4%
- 2025-1-18 17:19:12 - debug: Start lock asset db..., progress: 4%
- 2025-1-18 17:19:12 - log: Asset DB is paused with build!
- 2025-1-18 17:19:12 - debug: Query all assets info in project
- 2025-1-18 17:19:12 - debug: init custom config: keepNodeUuid: false, useCache: true
- 2025-1-18 17:19:12 - debug: wechatgame:(onAfterInit) start..., progress: 4%
- 2025-1-18 17:19:12 - debug: // ---- build task wechatgame:onAfterInit ----
- 2025-1-18 17:19:12 - debug: // ---- build task wechatgame:onAfterInit ---- (17ms)
- 2025-1-18 17:19:12 - debug: wechatgame:(onAfterInit) in 17 ms ✓, progress: 5%
- 2025-1-18 17:19:12 - debug: cocos-service:(onAfterInit) start..., progress: 5%
- 2025-1-18 17:19:12 - debug: // ---- build task cocos-service:onAfterInit ----
- 2025-1-18 17:19:13 - debug: // ---- build task cocos-service:onAfterInit ---- (86ms)
- 2025-1-18 17:19:13 - debug: cocos-service:(onAfterInit) in 86 ms ✓, progress: 7%
- 2025-1-18 17:19:13 - debug: engine:(onAfterInit) start..., progress: 7%
- 2025-1-18 17:19:13 - debug: // ---- build task engine:onAfterInit ----
- 2025-1-18 17:19:13 - debug: // ---- build task engine:onAfterInit ---- (30ms)
- 2025-1-18 17:19:13 - debug: engine:(onAfterInit) in 30 ms ✓, progress: 9%
- 2025-1-18 17:19:13 - debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 17:19:13 - debug: // ---- build task wechatgame:onBeforeBundleInit ----
- 2025-1-18 17:19:13 - debug: // ---- build task wechatgame:onBeforeBundleInit ---- (31ms)
- 2025-1-18 17:19:13 - debug: wechatgame:(onBeforeBundleInit) in 31 ms ✓, progress: 9%
- 2025-1-18 17:19:13 - debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
- 2025-1-18 17:19:13 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
- 2025-1-18 17:19:13 - debug: [adsense-h5g-plugin] remove script success
- 2025-1-18 17:19:13 - debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (36ms)
- 2025-1-18 17:19:13 - debug: adsense-h5g-plugin:(onBeforeBundleInit) in 36 ms ✓, progress: 9%
- 2025-1-18 17:19:13 - debug: Init all bundles start..., progress: 9%
- 2025-1-18 17:19:13 - debug: Num of bundles: 6..., progress: 9%
- 2025-1-18 17:19:13 - debug: 查询 Asset Bundle start, progress: 9%
- 2025-1-18 17:19:13 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 17:19:13 - debug: Init bundle root assets start..., progress: 9%
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: Number of all scenes: 3
- 2025-1-18 17:19:13 - debug: Number of all scripts: 124
- 2025-1-18 17:19:13 - debug: Number of other assets: 1141
- 2025-1-18 17:19:13 - debug: Init bundle root assets success..., progress: 9%
- 2025-1-18 17:19:13 - debug: reload all scripts.
- 2025-1-18 17:19:13 - debug: Set detail map pack:///resolution-detail-map.json: {}
- 2025-1-18 17:19:13 - groupCollapsed: Invalidate all modules
- 2025-1-18 17:19:13 - debug: Unregister BuiltinPipelineSettings
- 2025-1-18 17:19:13 - debug: Unregister DebugViewRuntimeControl
- 2025-1-18 17:19:13 - debug: Unregister ch_sdk_comp
- 2025-1-18 17:19:13 - debug: Unregister ch_start_pack
- 2025-1-18 17:19:13 - debug: Unregister __NodeEventAgent__
- 2025-1-18 17:19:13 - debug: Unregister ResolutionAutoFit
- 2025-1-18 17:19:13 - debug: Unregister ui_updater
- 2025-1-18 17:19:13 - debug: Unregister ClickPenetrate
- 2025-1-18 17:19:13 - debug: Unregister ListItem
- 2025-1-18 17:19:13 - debug: Unregister List
- 2025-1-18 17:19:13 - debug: Unregister MotionTrail
- 2025-1-18 17:19:13 - debug: Unregister MovieClip
- 2025-1-18 17:19:13 - debug: Unregister RewardFly
- 2025-1-18 17:19:13 - debug: Unregister SpineView
- 2025-1-18 17:19:13 - debug: Unregister UISpineMovie
- 2025-1-18 17:19:13 - debug: Unregister Layout_UIAlert
- 2025-1-18 17:19:13 - debug: Unregister Layout_UI_Notify
- 2025-1-18 17:19:13 - debug: Unregister Layout_UIWaiting
- 2025-1-18 17:19:13 - debug: Unregister table_idiom
- 2025-1-18 17:19:13 - debug: Unregister table_level
- 2025-1-18 17:19:13 - debug: Unregister Layout_GameRules
- 2025-1-18 17:19:13 - debug: Unregister UI_GameRules
- 2025-1-18 17:19:13 - debug: Unregister UI_Idiom
- 2025-1-18 17:19:13 - debug: Unregister Layout_Idioms
- 2025-1-18 17:19:13 - debug: Unregister UI_Idioms
- 2025-1-18 17:19:13 - debug: Unregister Layout_Settings
- 2025-1-18 17:19:13 - debug: Unregister Layout_Hall
- 2025-1-18 17:19:13 - debug: Unregister UI_Head_Icon
- 2025-1-18 17:19:13 - debug: Unregister UI_Rank_Item
- 2025-1-18 17:19:13 - debug: Unregister Layout_Rank
- 2025-1-18 17:19:13 - debug: Unregister UI_Rank
- 2025-1-18 17:19:13 - debug: Unregister Sign_Reward
- 2025-1-18 17:19:13 - debug: Unregister Layout_Sign
- 2025-1-18 17:19:13 - debug: Unregister UI_Sign
- 2025-1-18 17:19:13 - debug: Unregister Layout_Invite
- 2025-1-18 17:19:13 - debug: Unregister UI_Invite
- 2025-1-18 17:19:13 - debug: Unregister Layout_Store
- 2025-1-18 17:19:13 - debug: Unregister UI_Store
- 2025-1-18 17:19:13 - debug: Unregister Layout_SideBar
- 2025-1-18 17:19:13 - debug: Unregister Start
- 2025-1-18 17:19:13 - debug: Unregister UI_SideBar
- 2025-1-18 17:19:13 - debug: Unregister UI_Task_Item
- 2025-1-18 17:19:13 - debug: Unregister Layout_Task
- 2025-1-18 17:19:13 - debug: Unregister UI_Task
- 2025-1-18 17:19:13 - debug: Unregister UI_Hall
- 2025-1-18 17:19:13 - debug: Unregister UI_Settings
- 2025-1-18 17:19:13 - debug: Unregister Layout_Win
- 2025-1-18 17:19:13 - debug: Unregister UI_Win
- 2025-1-18 17:19:13 - debug: Unregister Layout_Main
- 2025-1-18 17:19:13 - debug: Unregister Layout_TimesOver
- 2025-1-18 17:19:13 - debug: Unregister Layout_Fail
- 2025-1-18 17:19:13 - debug: Unregister UI_Fail
- 2025-1-18 17:19:13 - debug: Unregister UI_TimesOver
- 2025-1-18 17:19:13 - debug: Unregister UI_Main
- 2025-1-18 17:19:13 - debug: Unregister Hall
- 2025-1-18 17:19:13 - debug: Unregister Cube_Infor
- 2025-1-18 17:19:13 - debug: Unregister CreateIdiom
- 2025-1-18 17:19:13 - debug: Unregister Layout_LatticeFull
- 2025-1-18 17:19:13 - debug: Unregister UI_LatticeFull
- 2025-1-18 17:19:13 - debug: Unregister Layout_Lock
- 2025-1-18 17:19:13 - debug: Unregister UI_Lock
- 2025-1-18 17:19:13 - debug: Unregister GameCtl
- 2025-1-18 17:19:13 - debug: Unregister Container_Manager
- 2025-1-18 17:19:13 - debug: Unregister UI_Item
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
- 2025-1-18 17:19:13 - debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
- 2025-1-18 17:19:13 - groupEnd: Invalidate all modules
- 2025-1-18 17:19:13 - groupCollapsed: Imports all modules
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register BuiltinPipelineSettings
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register DebugViewRuntimeControl
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register ch_sdk_comp
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register ch_start_pack
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register __NodeEventAgent__
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register ResolutionAutoFit
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register ui_updater
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register ClickPenetrate
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register ListItem
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register List
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register MotionTrail
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register MovieClip
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register RewardFly
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register SpineView
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UISpineMovie
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_UIAlert
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_UI_Notify
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_UIWaiting
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register table_idiom
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register table_idiom_order
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register table_idiom_unorder_1_3
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register table_idiom_unorder_2_2
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register table_idiom_unorder_3_1
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register table_level
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register table_store
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register table_task
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register Layout_GameRules
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_GameRules
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Idiom
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Idioms
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Idioms
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Settings
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Hall
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Head_Icon
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Rank_Item
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Rank
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Rank
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Sign_Reward
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Sign
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Sign
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Invite
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Invite
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Store
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Store
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_SideBar
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Start
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_SideBar
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Task_Item
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Task
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Task
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Hall
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Settings
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Win
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Win
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Main
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_TimesOver
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Fail
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Fail
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_TimesOver
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Main
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Hall
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Cube_Infor
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register CreateIdiom
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_LatticeFull
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_LatticeFull
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Layout_Lock
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register UI_Lock
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register GameCtl
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Register Container_Manager
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
- 2025-1-18 17:19:13 - 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-18 17:19:13 - debug: [[Executor]] Register UI_Item
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
- 2025-1-18 17:19:13 - debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
- 2025-1-18 17:19:13 - groupEnd: Imports all modules
- 2025-1-18 17:19:13 - debug: Incremental keys: chSdk,chsdk
- 2025-1-18 17:19:13 - debug: Init bundle share assets start..., progress: 9%
- 2025-1-18 17:19:13 - debug: Init bundle share assets success..., progress: 9%
- 2025-1-18 17:19:13 - debug: handle json group in bundle internal
- 2025-1-18 17:19:13 - debug: handle json group in bundle internal success
- 2025-1-18 17:19:13 - debug: handle json group in bundle start-scene
- 2025-1-18 17:19:13 - debug: handle json group in bundle start-scene success
- 2025-1-18 17:19:13 - debug: handle json group in bundle main
- 2025-1-18 17:19:13 - debug: handle json group in bundle main success
- 2025-1-18 17:19:13 - debug: handle json group in bundle module_extra
- 2025-1-18 17:19:13 - debug: handle json group in bundle module_basic
- 2025-1-18 17:19:13 - debug: handle json group in bundle module_game
- 2025-1-18 17:19:13 - debug: init image compress task 0 in bundle internal
- 2025-1-18 17:19:13 - debug: init image compress task 0 in bundle start-scene
- 2025-1-18 17:19:13 - debug: init image compress task 0 in bundle main
- 2025-1-18 17:19:13 - debug: handle json group in bundle module_extra success
- 2025-1-18 17:19:13 - debug: init image compress task 0 in bundle module_extra
- 2025-1-18 17:19:13 - debug: handle json group in bundle module_basic success
- 2025-1-18 17:19:13 - debug: init image compress task 0 in bundle module_basic
- 2025-1-18 17:19:13 - debug: handle json group in bundle module_game success
- 2025-1-18 17:19:13 - debug: init image compress task 0 in bundle module_game
- 2025-1-18 17:19:13 - debug: // ---- build task 查询 Asset Bundle ---- (312ms)
- 2025-1-18 17:19:13 - debug: run build task 查询 Asset Bundle success in 312 ms√, progress: 14%
- 2025-1-18 17:19:13 - debug: [Build Memory track]: 查询 Asset Bundle start:218.89MB, end 202.10MB, increase: -17195.19KB
- 2025-1-18 17:19:13 - debug: 查询 Asset Bundle start, progress: 14%
- 2025-1-18 17:19:13 - debug: // ---- build task 查询 Asset Bundle ----
- 2025-1-18 17:19:13 - debug: // ---- build task 查询 Asset Bundle ---- (42ms)
- 2025-1-18 17:19:13 - debug: run build task 查询 Asset Bundle success in 42 ms√, progress: 19%
- 2025-1-18 17:19:13 - debug: [Build Memory track]: 查询 Asset Bundle start:202.13MB, end 202.39MB, increase: 261.88KB
- 2025-1-18 17:19:13 - debug: 打包脚本 start, progress: 19%
- 2025-1-18 17:19:13 - debug: // ---- build task 打包脚本 ----
- 2025-1-18 17:19:13 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 17:19:14 - log: [build-script]enter sub process 13952, 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-18 17:19:16 - debug: excute-script over with build-script 3286ms
- 2025-1-18 17:19:16 - debug: Generate systemJs..., progress: 19%
- 2025-1-18 17:19:16 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 17:19:19 - debug: excute-script over with build-script 2427ms
- 2025-1-18 17:19:19 - debug: 构建项目脚本 start..., progress: 19%
- 2025-1-18 17:19:19 - debug: Build script in bundle start, progress: 19%
- 2025-1-18 17:19:19 - log: Run build task(build-script) in child, see: chrome://inspect/#devices
- 2025-1-18 17:19:23 - 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/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_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-18 17:19:23 - 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_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_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_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_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_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_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_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_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_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_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_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_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_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/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-18 17:19:26 - debug: excute-script over with build-script 7319ms
- 2025-1-18 17:19:26 - debug: Copy externalScripts success!
- 2025-1-18 17:19:26 - debug: Build script in bundle success, progress: 19%
- 2025-1-18 17:19:26 - debug: 构建项目脚本 in (7388 ms) √, progress: 19%
- 2025-1-18 17:19:26 - debug: 构建引擎脚本 start..., progress: 19%
- 2025-1-18 17:19:26 - debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}
- 2025-1-18 17:19:26 - 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","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"WECHAT","useCache":true,"nativeCodeBundleMode":"wasm","wasmCompressionMode":"brotli","split":false,"skip":false,"assetURLFormat":"relative-from-out","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\wechatgame\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
- 2025-1-18 17:19:26 - debug: 构建引擎脚本 in (219 ms) √, progress: 19%
- 2025-1-18 17:19:26 - debug: Copy plugin script ..., progress: 19%
- 2025-1-18 17:19:26 - debug: Generate import-map..., progress: 19%
- 2025-1-18 17:19:26 - debug: // ---- build task 打包脚本 ---- (13417ms)
- 2025-1-18 17:19:26 - debug: run build task 打包脚本 success in 13 s√, progress: 24%
- 2025-1-18 17:19:26 - debug: [Build Memory track]: 打包脚本 start:202.56MB, end 203.12MB, increase: 568.06KB
- 2025-1-18 17:19:26 - debug: Build Assets start, progress: 24%
- 2025-1-18 17:19:26 - debug: // ---- build task Build Assets ----
- 2025-1-18 17:19:26 - debug: Build bundles..., progress: 24%
- 2025-1-18 17:19:26 - debug: Pack Images start, progress: 24%
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 17:19:27 - debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
- 2025-1-18 17:19:27 - debug(2): remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
- 2025-1-18 17:19:27 - debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
- 2025-1-18 17:19:27 - debug(2): remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
- 2025-1-18 17:19:27 - debug: builder:pack-auto-atlas-image (732ms)
- 2025-1-18 17:19:27 - debug: Pack Images success, progress: 24%
- 2025-1-18 17:19:27 - debug: Compress image start..., progress: 24%
- 2025-1-18 17:19:27 - group: Compress image...
- 2025-1-18 17:19:27 - debug: sort compress task {}
- 2025-1-18 17:19:27 - debug: Num of all image compress task 0, really: 0, configTasks: 0
- 2025-1-18 17:19:27 - debug: No image need to compress
- 2025-1-18 17:19:27 - groupEnd: Compress image...
- 2025-1-18 17:19:27 - debug: Compress image success..., progress: 24%
- 2025-1-18 17:19:27 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 17:19:27 - debug: Handle all json groups in bundle internal
- 2025-1-18 17:19:27 - debug: handle json group
- 2025-1-18 17:19:27 - debug: Handle all json groups in bundle start-scene
- 2025-1-18 17:19:27 - debug: handle json group
- 2025-1-18 17:19:27 - debug: Handle all json groups in bundle main
- 2025-1-18 17:19:27 - debug: handle json group
- 2025-1-18 17:19:27 - debug: handle single json
- 2025-1-18 17:19:27 - debug: Handle all json groups in bundle module_extra
- 2025-1-18 17:19:27 - debug: handle json group
- 2025-1-18 17:19:27 - debug: handle single json
- 2025-1-18 17:19:27 - debug: Handle all json groups in bundle module_basic
- 2025-1-18 17:19:27 - debug: handle json group
- 2025-1-18 17:19:27 - debug: Handle all json groups in bundle module_game
- 2025-1-18 17:19:27 - debug: handle json group
- 2025-1-18 17:19:27 - debug: Json group(07325bfaa) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0a66f4293) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0ba471961) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: handle single json
- 2025-1-18 17:19:27 - debug: Json group(04ade8c9e) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: handle single json
- 2025-1-18 17:19:27 - debug: Json group(09d6a42a2) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0a54f6860) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: handle single json
- 2025-1-18 17:19:27 - debug: Json group(08d4f0835) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0a1731415) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(093f10e90) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(02c882590) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0db065665) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0787c84da) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(03c9cd961) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0471cee9c) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0403d1262) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(070166e93) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(0329651a2) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(02b639d30) compile success,json number: 6
- 2025-1-18 17:19:27 - debug: Json group(06db2e96b) compile success,json number: 6
- 2025-1-18 17:19:28 - debug: Json group(0c5a2fc7e) compile success,json number: 6
- 2025-1-18 17:19:28 - debug: Json group(0332e55a0) compile success,json number: 6
- 2025-1-18 17:19:28 - debug: Json group(01236a39b) compile success,json number: 6
- 2025-1-18 17:19:28 - debug: Json group(022fd81fe) compile success,json number: 6
- 2025-1-18 17:19:28 - debug: Json group(02d36d139) compile success,json number: 6
- 2025-1-18 17:19:28 - debug: Json group(0d54cf783) compile success,json number: 6
- 2025-1-18 17:19:28 - debug: handle single json
- 2025-1-18 17:19:28 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 17:19:28 - debug: Output asset in bundles start, progress: 24%
- 2025-1-18 17:19:28 - debug: compress config of bundle internal...
- 2025-1-18 17:19:28 - debug: compress config of bundle internal success
- 2025-1-18 17:19:28 - debug: compress config of bundle start-scene...
- 2025-1-18 17:19:28 - debug: compress config of bundle start-scene success
- 2025-1-18 17:19:28 - debug: compress config of bundle main...
- 2025-1-18 17:19:28 - debug: compress config of bundle main success
- 2025-1-18 17:19:28 - debug: compress config of bundle module_extra...
- 2025-1-18 17:19:28 - debug: compress config of bundle module_extra success
- 2025-1-18 17:19:28 - debug: compress config of bundle module_basic...
- 2025-1-18 17:19:28 - debug: compress config of bundle module_basic success
- 2025-1-18 17:19:28 - debug: compress config of bundle module_game...
- 2025-1-18 17:19:28 - debug: compress config of bundle module_game success
- 2025-1-18 17:19:28 - debug: output config of bundle internal
- 2025-1-18 17:19:28 - debug: output config of bundle internal success
- 2025-1-18 17:19:28 - debug: output config of bundle start-scene
- 2025-1-18 17:19:28 - debug: output config of bundle start-scene success
- 2025-1-18 17:19:28 - debug: output config of bundle main
- 2025-1-18 17:19:28 - debug: output config of bundle main success
- 2025-1-18 17:19:28 - debug: output config of bundle module_extra
- 2025-1-18 17:19:28 - debug: output config of bundle module_extra success
- 2025-1-18 17:19:28 - debug: output config of bundle module_basic
- 2025-1-18 17:19:28 - debug: output config of bundle module_basic success
- 2025-1-18 17:19:28 - debug: output config of bundle module_game
- 2025-1-18 17:19:28 - debug: output config of bundle module_game success
- 2025-1-18 17:19:28 - debug: Output asset in bundles success, progress: 24%
- 2025-1-18 17:19:28 - debug: // ---- build task Build Assets ---- (1297ms)
- 2025-1-18 17:19:28 - debug: run build task Build Assets success in 1 s√, progress: 29%
- 2025-1-18 17:19:28 - debug: [Build Memory track]: Build Assets start:203.15MB, end 216.70MB, increase: 13.55MB
- 2025-1-18 17:19:28 - debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
- 2025-1-18 17:19:28 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
- 2025-1-18 17:19:28 - debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (34ms)
- 2025-1-18 17:19:28 - debug: wechatgame:(onAfterBundleBuildTask) in 34 ms ✓, progress: 29%
- 2025-1-18 17:19:28 - debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
- 2025-1-18 17:19:28 - debug: // ---- build task wechatgame:onAfterBuildAssets ----
- 2025-1-18 17:19:28 - debug: // ---- build task wechatgame:onAfterBuildAssets ---- (41ms)
- 2025-1-18 17:19:28 - debug: wechatgame:(onAfterBuildAssets) in 41 ms ✓, progress: 31%
- 2025-1-18 17:19:28 - debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
- 2025-1-18 17:19:28 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 17:19:28 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (40ms)
- 2025-1-18 17:19:28 - debug: run build task 整理部分构建选项内数据到 settings.json success in 40 ms√, progress: 33%
- 2025-1-18 17:19:28 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.98MB, end 217.05MB, increase: 69.06KB
- 2025-1-18 17:19:28 - debug: 填充脚本数据到 settings.json start, progress: 33%
- 2025-1-18 17:19:28 - debug: // ---- build task 填充脚本数据到 settings.json ----
- 2025-1-18 17:19:28 - debug: // ---- build task 填充脚本数据到 settings.json ---- (37ms)
- 2025-1-18 17:19:28 - debug: run build task 填充脚本数据到 settings.json success in 37 ms√, progress: 34%
- 2025-1-18 17:19:28 - debug: [Build Memory track]: 填充脚本数据到 settings.json start:217.08MB, end 217.15MB, increase: 69.17KB
- 2025-1-18 17:19:28 - debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
- 2025-1-18 17:19:28 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
- 2025-1-18 17:19:28 - debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (48ms)
- 2025-1-18 17:19:28 - debug: run build task 整理部分构建选项内数据到 settings.json success in 48 ms√, progress: 36%
- 2025-1-18 17:19:28 - debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:217.18MB, end 217.36MB, increase: 182.45KB
- 2025-1-18 17:19:28 - debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
- 2025-1-18 17:19:28 - debug: // ---- build task wechatgame:onBeforeCompressSettings ----
- 2025-1-18 17:19:28 - debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (29ms)
- 2025-1-18 17:19:28 - debug: wechatgame:(onBeforeCompressSettings) in 29 ms ✓, progress: 38%
- 2025-1-18 17:19:28 - debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
- 2025-1-18 17:19:28 - debug: // ---- build task cocos-service:onBeforeCompressSettings ----
- 2025-1-18 17:19:28 - debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (154ms)
- 2025-1-18 17:19:28 - debug: cocos-service:(onBeforeCompressSettings) in 154 ms ✓, progress: 40%
- 2025-1-18 17:19:28 - debug: 整理静态模板文件 start, progress: 40%
- 2025-1-18 17:19:28 - debug: // ---- build task 整理静态模板文件 ----
- 2025-1-18 17:19:28 - debug: // ---- build task 整理静态模板文件 ---- (101ms)
- 2025-1-18 17:19:28 - debug: run build task 整理静态模板文件 success in 101 ms√, progress: 45%
- 2025-1-18 17:19:28 - debug: [Build Memory track]: 整理静态模板文件 start:217.63MB, end 210.84MB, increase: -6952.94KB
- 2025-1-18 17:19:28 - debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
- 2025-1-18 17:19:28 - debug: // ---- build task cocos-service:onAfterCompressSettings ----
- 2025-1-18 17:19:29 - debug: // ---- build task cocos-service:onAfterCompressSettings ---- (534ms)
- 2025-1-18 17:19:29 - debug: cocos-service:(onAfterCompressSettings) in 534 ms ✓, progress: 46%
- 2025-1-18 17:19:29 - debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
- 2025-1-18 17:19:29 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
- 2025-1-18 17:19:29 - debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (33ms)
- 2025-1-18 17:19:29 - debug: wechatgame:(onBeforeCopyBuildTemplate) in 33 ms ✓, progress: 48%
- 2025-1-18 17:19:29 - debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
- 2025-1-18 17:19:29 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
- 2025-1-18 17:19:29 - debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (56ms)
- 2025-1-18 17:19:29 - debug: wechatgame:(onAfterCopyBuildTemplate) in 56 ms ✓, progress: 50%
- 2025-1-18 17:19:29 - debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
- 2025-1-18 17:19:29 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
- 2025-1-18 17:19:29 - debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (34ms)
- 2025-1-18 17:19:29 - debug: run build task 给所有的资源加上 MD5 后缀 success in 34 ms√, progress: 60%
- 2025-1-18 17:19:29 - debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:211.44MB, end 211.50MB, increase: 67.27KB
- 2025-1-18 17:19:29 - debug: wechatgame:(onAfterBuild) start..., progress: 60%
- 2025-1-18 17:19:29 - debug: // ---- build task wechatgame:onAfterBuild ----
- 2025-1-18 17:19:29 - debug: // ---- build task wechatgame:onAfterBuild ---- (336ms)
- 2025-1-18 17:19:29 - debug: wechatgame:(onAfterBuild) in 336 ms ✓, progress: 62%
- 2025-1-18 17:19:29 - debug: cocos-service:(onAfterBuild) start..., progress: 62%
- 2025-1-18 17:19:29 - debug: // ---- build task cocos-service:onAfterBuild ----
- 2025-1-18 17:19:29 - debug: // ---- build task cocos-service:onAfterBuild ---- (84ms)
- 2025-1-18 17:19:29 - debug: cocos-service:(onAfterBuild) in 84 ms ✓, progress: 64%
- 2025-1-18 17:19:29 - debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
- 2025-1-18 17:19:29 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
- 2025-1-18 17:19:29 - debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (30ms)
- 2025-1-18 17:19:29 - debug: adsense-h5g-plugin:(onAfterBuild) in 30 ms ✓, progress: 65%
- 2025-1-18 17:19:29 - log: Asset DB is resume!
- 2025-1-18 17:19:29 - debug: builder:build-project-total (17225ms)
- 2025-1-18 17:19:29 - debug: build success in 17225!
- 2025-1-18 17:19:29 - debug: [Build Memory track]: builder:build-project-total start:219.80MB, end 212.60MB, increase: -7365.39KB
- 2025-1-18 17:19:29 - debug: ================================ build Task (wechatgame) Finished in (17 s)ms ================================
|