2025-2-24 15-41.log 684 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551
  1. 2025-2-24 15:41:17-debug: start **** info
  2. 2025-2-24 15:41:17-log: Cannot access game frame or container.
  3. 2025-2-24 15:41:18-debug: asset-db:require-engine-code (1011ms)
  4. 2025-2-24 15:41:18-log: meshopt wasm decoder initialized
  5. 2025-2-24 15:41:18-log: [box2d]:box2d wasm lib loaded.
  6. 2025-2-24 15:41:18-log: [bullet]:bullet wasm lib loaded.
  7. 2025-2-24 15:41:18-log: Cocos Creator v3.8.4
  8. 2025-2-24 15:41:18-log: Using legacy pipeline
  9. 2025-2-24 15:41:18-log: Forward render pipeline initialized.
  10. 2025-2-24 15:41:19-debug: [Assets Memory track]: asset-db-plugin-register: programming start:82.95MB, end 86.47MB, increase: 3.52MB
  11. 2025-2-24 15:41:18-debug: [Assets Memory track]: asset-db:worker-init: initEngine start:29.18MB, end 82.13MB, increase: 52.95MB
  12. 2025-2-24 15:41:20-debug: [Assets Memory track]: asset-db-plugin-register: builder start:86.50MB, end 205.38MB, increase: 118.88MB
  13. 2025-2-24 15:41:20-debug: [Assets Memory track]: asset-db-plugin-register: project start:82.82MB, end 205.25MB, increase: 122.43MB
  14. 2025-2-24 15:41:20-debug: [Assets Memory track]: asset-db:worker-init: initPlugin start:82.15MB, end 205.28MB, increase: 123.13MB
  15. 2025-2-24 15:41:20-debug: asset-db:worker-init: initPlugin (1742ms)
  16. 2025-2-24 15:41:20-debug: [Assets Memory track]: asset-db:worker-init start:29.17MB, end 205.37MB, increase: 176.20MB
  17. 2025-2-24 15:41:20-debug: Run asset db hook programming:beforePreStart ...
  18. 2025-2-24 15:41:20-debug: Run asset db hook programming:beforePreStart success!
  19. 2025-2-24 15:41:20-debug: Run asset db hook engine-extends:beforePreStart success!
  20. 2025-2-24 15:41:20-debug: Run asset db hook engine-extends:beforePreStart ...
  21. 2025-2-24 15:41:20-debug: asset-db:worker-init (3332ms)
  22. 2025-2-24 15:41:20-debug: asset-db-hook-programming-beforePreStart (98ms)
  23. 2025-2-24 15:41:20-debug: asset-db-hook-engine-extends-beforePreStart (97ms)
  24. 2025-2-24 15:41:20-debug: Preimport db internal success
  25. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch background: #aaff85; color: #000; color: #000;
  26. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic background: #aaff85; color: #000; color: #000;
  27. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core background: #aaff85; color: #000; color: #000;
  28. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra background: #aaff85; color: #000; color: #000;
  29. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res background: #aaff85; color: #000; color: #000;
  30. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal background: #aaff85; color: #000; color: #000;
  31. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\resources background: #aaff85; color: #000; color: #000;
  32. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game background: #aaff85; color: #000; color: #000;
  33. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\Scripts background: #aaff85; color: #000; color: #000;
  34. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\start background: #aaff85; color: #000; color: #000;
  35. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\audio background: #aaff85; color: #000; color: #000;
  36. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\ch-sdk background: #aaff85; color: #000; color: #000;
  37. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\pvp background: #aaff85; color: #000; color: #000;
  38. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块 background: #aaff85; color: #000; color: #000;
  39. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net background: #aaff85; color: #000; color: #000;
  40. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\sign background: #aaff85; color: #000; color: #000;
  41. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\start background: #aaff85; color: #000; color: #000;
  42. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\ui background: #aaff85; color: #000; color: #000;
  43. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util background: #aaff85; color: #000; color: #000;
  44. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class background: #aaff85; color: #000; color: #000;
  45. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp background: #aaff85; color: #000; color: #000;
  46. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_alert background: #aaff85; color: #000; color: #000;
  47. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox background: #aaff85; color: #000; color: #000;
  48. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_waiting background: #aaff85; color: #000; color: #000;
  49. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_notify background: #aaff85; color: #000; color: #000;
  50. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\font background: #aaff85; color: #000; color: #000;
  51. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\sound background: #aaff85; color: #000; color: #000;
  52. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  53. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\hall background: #aaff85; color: #000; color: #000;
  54. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  55. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\materials background: #aaff85; color: #000; color: #000;
  56. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui background: #aaff85; color: #000; color: #000;
  57. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game background: #aaff85; color: #000; color: #000;
  58. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗 background: #aaff85; color: #000; color: #000;
  59. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\Texture background: #aaff85; color: #000; color: #000;
  60. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏 background: #aaff85; color: #000; color: #000;
  61. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城 background: #aaff85; color: #000; color: #000;
  62. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页 background: #aaff85; color: #000; color: #000;
  63. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面 background: #aaff85; color: #000; color: #000;
  64. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语 background: #aaff85; color: #000; color: #000;
  65. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示 background: #aaff85; color: #000; color: #000;
  66. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了 background: #aaff85; color: #000; color: #000;
  67. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务 background: #aaff85; color: #000; color: #000;
  68. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明 background: #aaff85; color: #000; color: #000;
  69. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了 background: #aaff85; color: #000; color: #000;
  70. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到 background: #aaff85; color: #000; color: #000;
  71. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜 background: #aaff85; color: #000; color: #000;
  72. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位 background: #aaff85; color: #000; color: #000;
  73. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置 background: #aaff85; color: #000; color: #000;
  74. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算 background: #aaff85; color: #000; color: #000;
  75. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\resources\multTextures background: #aaff85; color: #000; color: #000;
  76. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\modules background: #aaff85; color: #000; color: #000;
  77. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\clickHand background: #aaff85; color: #000; color: #000;
  78. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Fail background: #aaff85; color: #000; color: #000;
  79. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI background: #aaff85; color: #000; color: #000;
  80. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_GameRules background: #aaff85; color: #000; color: #000;
  81. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Hall background: #aaff85; color: #000; color: #000;
  82. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Idioms background: #aaff85; color: #000; color: #000;
  83. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Invite background: #aaff85; color: #000; color: #000;
  84. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友 background: #aaff85; color: #000; color: #000;
  85. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_LatticeFull background: #aaff85; color: #000; color: #000;
  86. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life background: #aaff85; color: #000; color: #000;
  87. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Lock background: #aaff85; color: #000; color: #000;
  88. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Main background: #aaff85; color: #000; color: #000;
  89. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Rank background: #aaff85; color: #000; color: #000;
  90. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_SideBar background: #aaff85; color: #000; color: #000;
  91. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Settings background: #aaff85; color: #000; color: #000;
  92. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Sign background: #aaff85; color: #000; color: #000;
  93. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Store background: #aaff85; color: #000; color: #000;
  94. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips background: #aaff85; color: #000; color: #000;
  95. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_TimesOver background: #aaff85; color: #000; color: #000;
  96. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹 background: #aaff85; color: #000; color: #000;
  97. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Task background: #aaff85; color: #000; color: #000;
  98. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Win background: #aaff85; color: #000; color: #000;
  99. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具 background: #aaff85; color: #000; color: #000;
  100. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语备用) background: #aaff85; color: #000; color: #000;
  101. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次 background: #aaff85; color: #000; color: #000;
  102. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语) background: #aaff85; color: #000; color: #000;
  103. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_通关(词语) background: #aaff85; color: #000; color: #000;
  104. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像 background: #aaff85; color: #000; color: #000;
  105. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮 background: #aaff85; color: #000; color: #000;
  106. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案 background: #aaff85; color: #000; color: #000;
  107. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮 background: #aaff85; color: #000; color: #000;
  108. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具 background: #aaff85; color: #000; color: #000;
  109. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切 background: #aaff85; color: #000; color: #000;
  110. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功 background: #aaff85; color: #000; color: #000;
  111. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败 background: #aaff85; color: #000; color: #000;
  112. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\ch.ts background: #aaff85; color: #000; color: #000;
  113. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\chsdk_inside.d.ts background: #aaff85; color: #000; color: #000;
  114. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\ch_util.ts background: #aaff85; color: #000; color: #000;
  115. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\resources\multTextures\Mult-effect.effect background: #aaff85; color: #000; color: #000;
  116. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\materials\3dText.effect background: #aaff85; color: #000; color: #000;
  117. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\Scripts\ModuleDef.ts background: #aaff85; color: #000; color: #000;
  118. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\Scripts\SceneDef.ts background: #aaff85; color: #000; color: #000;
  119. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\audio\audio.ts background: #aaff85; color: #000; color: #000;
  120. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\start\Start.ts background: #aaff85; color: #000; color: #000;
  121. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\ch-sdk\chsdk.d.ts background: #aaff85; color: #000; color: #000;
  122. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\net.ts background: #aaff85; color: #000; color: #000;
  123. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\NetBase.ts background: #aaff85; color: #000; color: #000;
  124. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\NetPlayer.ts background: #aaff85; color: #000; color: #000;
  125. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\NetRoom.ts background: #aaff85; color: #000; color: #000;
  126. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\NetTeam.ts background: #aaff85; color: #000; color: #000;
  127. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\sign\sign.ts background: #aaff85; color: #000; color: #000;
  128. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\pvp\ch_pvp.ts background: #aaff85; color: #000; color: #000;
  129. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\start\ch_sdk_comp.ts background: #aaff85; color: #000; color: #000;
  130. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\start\ch_start_pack.ts background: #aaff85; color: #000; color: #000;
  131. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\WsClient.ts background: #aaff85; color: #000; color: #000;
  132. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\ui\ui_ResolutionAutoFit.ts background: #aaff85; color: #000; color: #000;
  133. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\ui\ui_base.ts background: #aaff85; color: #000; color: #000;
  134. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\ArrayUtil.ts background: #aaff85; color: #000; color: #000;
  135. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\DataTimeUtil.ts background: #aaff85; color: #000; color: #000;
  136. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\ui\ui.ts background: #aaff85; color: #000; color: #000;
  137. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\DirectorUtil.ts background: #aaff85; color: #000; color: #000;
  138. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\Instance.ts background: #aaff85; color: #000; color: #000;
  139. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\LocalStorageUtil.ts background: #aaff85; color: #000; color: #000;
  140. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\ProjectileMathUtil.ts background: #aaff85; color: #000; color: #000;
  141. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\PathUtil.ts background: #aaff85; color: #000; color: #000;
  142. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\MathUtil.ts background: #aaff85; color: #000; color: #000;
  143. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\StringUtil.ts background: #aaff85; color: #000; color: #000;
  144. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\ResUtil.ts background: #aaff85; color: #000; color: #000;
  145. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\TableLoadUtil.ts background: #aaff85; color: #000; color: #000;
  146. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\UrlUtil.ts background: #aaff85; color: #000; color: #000;
  147. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Action.ts background: #aaff85; color: #000; color: #000;
  148. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util\Utils.ts background: #aaff85; color: #000; color: #000;
  149. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Delay.ts background: #aaff85; color: #000; color: #000;
  150. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Container.ts background: #aaff85; color: #000; color: #000;
  151. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\GameData.ts background: #aaff85; color: #000; color: #000;
  152. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\FMS.ts background: #aaff85; color: #000; color: #000;
  153. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\HeadIcon.ts background: #aaff85; color: #000; color: #000;
  154. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Line2DMove.ts background: #aaff85; color: #000; color: #000;
  155. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\PeriodData.ts background: #aaff85; color: #000; color: #000;
  156. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\PrefabPool.ts background: #aaff85; color: #000; color: #000;
  157. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Queue.ts background: #aaff85; color: #000; color: #000;
  158. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Random.ts background: #aaff85; color: #000; color: #000;
  159. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Shake.ts background: #aaff85; color: #000; color: #000;
  160. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\SafeNumber.ts background: #aaff85; color: #000; color: #000;
  161. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\TimeJobCenter.ts background: #aaff85; color: #000; color: #000;
  162. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\State.ts background: #aaff85; color: #000; color: #000;
  163. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Timer.ts background: #aaff85; color: #000; color: #000;
  164. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Wait.ts background: #aaff85; color: #000; color: #000;
  165. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  166. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\ClickPenetrate.ts background: #aaff85; color: #000; color: #000;
  167. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\Game.ts background: #aaff85; color: #000; color: #000;
  168. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\List.ts background: #aaff85; color: #000; color: #000;
  169. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\ListItem.ts background: #aaff85; color: #000; color: #000;
  170. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\MotionTrail.ts background: #aaff85; color: #000; color: #000;
  171. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\MovieClip.ts background: #aaff85; color: #000; color: #000;
  172. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\RewardFly.ts background: #aaff85; color: #000; color: #000;
  173. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\UISpineMovie.ts background: #aaff85; color: #000; color: #000;
  174. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\util_comp\SpineView.ts background: #aaff85; color: #000; color: #000;
  175. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_alert\Layout_UIAlert.ts background: #aaff85; color: #000; color: #000;
  176. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_alert\UIAlert.ts background: #aaff85; color: #000; color: #000;
  177. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_notify\Layout_UI_Notify.ts background: #aaff85; color: #000; color: #000;
  178. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_notify\UINotify.ts background: #aaff85; color: #000; color: #000;
  179. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_waiting\Layout_UIWaiting.ts background: #aaff85; color: #000; color: #000;
  180. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_waiting\UIWaiting.ts background: #aaff85; color: #000; color: #000;
  181. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\TableUtil.ts background: #aaff85; color: #000; color: #000;
  182. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_idiom.ts background: #aaff85; color: #000; color: #000;
  183. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts background: #aaff85; color: #000; color: #000;
  184. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_idiom_order.ts background: #aaff85; color: #000; color: #000;
  185. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_2.ts background: #aaff85; color: #000; color: #000;
  186. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_idiom_unorder_3_1.ts background: #aaff85; color: #000; color: #000;
  187. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_level.ts background: #aaff85; color: #000; color: #000;
  188. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_level_2.ts background: #aaff85; color: #000; color: #000;
  189. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_task.ts background: #aaff85; color: #000; color: #000;
  190. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_ts\table_store.ts background: #aaff85; color: #000; color: #000;
  191. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  192. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  193. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\Cube_Infor.ts background: #aaff85; color: #000; color: #000;
  194. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\GameCtl.ts background: #aaff85; color: #000; color: #000;
  195. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\PlayerData.ts background: #aaff85; color: #000; color: #000;
  196. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\hall\Hall.ts background: #aaff85; color: #000; color: #000;
  197. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\resources\multTextures\MultTextures.ts background: #aaff85; color: #000; color: #000;
  198. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\hall\Hall_Root.ts background: #aaff85; color: #000; color: #000;
  199. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\modules\msgpack.min.d.ts background: #aaff85; color: #000; color: #000;
  200. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI\UI_Head_Icon.ts background: #aaff85; color: #000; color: #000;
  201. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI\UI_Item.ts background: #aaff85; color: #000; color: #000;
  202. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Fail\UI_Fail.ts background: #aaff85; color: #000; color: #000;
  203. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Fail\Layout_Fail.ts background: #aaff85; color: #000; color: #000;
  204. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_GameRules\Layout_GameRules.ts background: #aaff85; color: #000; color: #000;
  205. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_GameRules\UI_GameRules.ts background: #aaff85; color: #000; color: #000;
  206. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Hall\UI_Hall.ts background: #aaff85; color: #000; color: #000;
  207. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Hall\Layout_Hall.ts background: #aaff85; color: #000; color: #000;
  208. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Idioms\Layout_Idioms.ts background: #aaff85; color: #000; color: #000;
  209. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Idioms\UI_Idiom.ts background: #aaff85; color: #000; color: #000;
  210. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Idioms\UI_Idioms.ts background: #aaff85; color: #000; color: #000;
  211. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Invite\UI_Invite.ts background: #aaff85; color: #000; color: #000;
  212. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Invite\Layout_Invite.ts background: #aaff85; color: #000; color: #000;
  213. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_LatticeFull\Layout_LatticeFull.ts background: #aaff85; color: #000; color: #000;
  214. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_LatticeFull\UI_LatticeFull.ts background: #aaff85; color: #000; color: #000;
  215. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\Layout_Life.ts background: #aaff85; color: #000; color: #000;
  216. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\UI_Life.ts background: #aaff85; color: #000; color: #000;
  217. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Lock\Layout_Lock.ts background: #aaff85; color: #000; color: #000;
  218. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Lock\UI_Lock.ts background: #aaff85; color: #000; color: #000;
  219. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Main\Layout_Main.ts background: #aaff85; color: #000; color: #000;
  220. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Main\UI_Main.ts background: #aaff85; color: #000; color: #000;
  221. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Rank\Layout_Rank.ts background: #aaff85; color: #000; color: #000;
  222. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Rank\UI_Rank.ts background: #aaff85; color: #000; color: #000;
  223. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Rank\UI_Rank_Item.ts background: #aaff85; color: #000; color: #000;
  224. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Settings\Layout_Settings.ts background: #aaff85; color: #000; color: #000;
  225. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Settings\UI_Settings.ts background: #aaff85; color: #000; color: #000;
  226. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_SideBar\Layout_SideBar.ts background: #aaff85; color: #000; color: #000;
  227. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_SideBar\UI_SideBar.ts background: #aaff85; color: #000; color: #000;
  228. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Sign\Layout_Sign.ts background: #aaff85; color: #000; color: #000;
  229. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Sign\Sign_Reward.ts background: #aaff85; color: #000; color: #000;
  230. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  231. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Store\Layout_Store.ts background: #aaff85; color: #000; color: #000;
  232. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Store\UI_Store.ts background: #aaff85; color: #000; color: #000;
  233. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Task\UI_Task.ts background: #aaff85; color: #000; color: #000;
  234. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Task\Layout_Task.ts background: #aaff85; color: #000; color: #000;
  235. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Task\UI_Task_Item.ts background: #aaff85; color: #000; color: #000;
  236. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_TimesOver\Layout_TimesOver.ts background: #aaff85; color: #000; color: #000;
  237. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Layout_Tips.ts background: #aaff85; color: #000; color: #000;
  238. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_TimesOver\UI_TimesOver.ts background: #aaff85; color: #000; color: #000;
  239. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\UI_Tips.ts background: #aaff85; color: #000; color: #000;
  240. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Win\Layout_Win.ts background: #aaff85; color: #000; color: #000;
  241. 2025-2-24 15:41:20-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Win\UI_Win.ts background: #aaff85; color: #000; color: #000;
  242. 2025-2-24 15:41:20-debug: Preimport db assets success
  243. 2025-2-24 15:41:20-debug: Run asset db hook programming:afterPreStart ...
  244. 2025-2-24 15:41:20-debug: starting packer-driver...
  245. 2025-2-24 15:41:34-debug: initialize scripting environment...
  246. 2025-2-24 15:41:34-debug: Set detail map pack:///resolution-detail-map.json: {}
  247. 2025-2-24 15:41:34-debug: Run asset db hook engine-extends:afterPreStart ...
  248. 2025-2-24 15:41:34-debug: Run asset db hook programming:afterPreStart success!
  249. 2025-2-24 15:41:34-debug: asset-db-hook-programming-afterPreStart (13230ms)
  250. 2025-2-24 15:41:34-debug: recompile effect.bin success
  251. 2025-2-24 15:41:34-debug: Start up the 'internal' database...
  252. 2025-2-24 15:41:34-debug: Run asset db hook engine-extends:afterPreStart success!
  253. 2025-2-24 15:41:34-debug: asset-db:worker-effect-data-processing (632ms)
  254. 2025-2-24 15:41:34-debug: asset-db-hook-engine-extends-afterPreStart (632ms)
  255. 2025-2-24 15:41:34-debug: Start up the 'assets' database...
  256. 2025-2-24 15:41:34-debug: asset-db:worker-startup-database[internal] (14404ms)
  257. 2025-2-24 15:41:34-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\start\start.scene background: #aaff85; color: #000; color: #000;
  258. 2025-2-24 15:41:34-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box1.fbx background: #aaff85; color: #000; color: #000;
  259. 2025-2-24 15:41:34-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box2.fbx background: #aaff85; color: #000; color: #000;
  260. 2025-2-24 15:41:34-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box3.fbx background: #aaff85; color: #000; color: #000;
  261. 2025-2-24 15:41:34-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box4.fbx background: #aaff85; color: #000; color: #000;
  262. 2025-2-24 15:41:34-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\ch-sdk\ch-sdk.umd.js background: #aaff85; color: #000; color: #000;
  263. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\ch-sdk\提示说明.txt background: #aaff85; color: #000; color: #000;
  264. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\core\ui\UICanvas.prefab background: #aaff85; color: #000; color: #000;
  265. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox\default_skybox_diffusion.png background: #aaff85; color: #000; color: #000;
  266. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox\default_skybox_diffusion.png@b47c0 background: #aaff85; color: #000; color: #000;
  267. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox\default_skybox_diffusion.png@b47c0@74afd background: #aaff85; color: #000; color: #000;
  268. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox\default_skybox_diffusion.png@b47c0@8fd34 background: #aaff85; color: #000; color: #000;
  269. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox\default_skybox_diffusion.png@b47c0@bb97f background: #aaff85; color: #000; color: #000;
  270. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox\default_skybox_diffusion.png@b47c0@7d38f background: #aaff85; color: #000; color: #000;
  271. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox\default_skybox_diffusion.png@b47c0@e9a6d background: #aaff85; color: #000; color: #000;
  272. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\internal\default_skybox\default_skybox_diffusion.png@b47c0@40c10 background: #aaff85; color: #000; color: #000;
  273. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_alert\UI_Alert.prefab background: #aaff85; color: #000; color: #000;
  274. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_notify\notify_info.prefab background: #aaff85; color: #000; color: #000;
  275. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_notify\UI_Notify.prefab background: #aaff85; color: #000; color: #000;
  276. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_basic\ui_waiting\UI_Waiting.prefab background: #aaff85; color: #000; color: #000;
  277. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\font\AaBoruokaishuBldjf-Regular.ttf background: #aaff85; color: #000; color: #000;
  278. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\sound\bgm.mp3 background: #aaff85; color: #000; color: #000;
  279. 2025-2-24 15:41:35-debug: Frame rate: 24 [{asset(12070b60-bcd1-45e9-847f-c77e5b4c64b9)}]
  280. 2025-2-24 15:41:35-debug: Frame rate: 24 [{asset(2bd98239-3e22-4a28-b0fe-fd74eaa8dbbb)}]
  281. 2025-2-24 15:41:35-debug: Frame rate: 24 [{asset(4ab88309-2542-41d0-a8da-979dd9805556)}]
  282. 2025-2-24 15:41:35-debug: Frame rate: 24 [{asset(7583a0fd-5dce-4109-9027-be836793fba6)}]
  283. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box4.fbx@c2d4f background: #aaff85; color: #000; color: #000;
  284. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box3.fbx@2e7eb background: #aaff85; color: #000; color: #000;
  285. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box2.fbx@0a48a background: #aaff85; color: #000; color: #000;
  286. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box1.fbx@69938 background: #aaff85; color: #000; color: #000;
  287. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box1.fbx@53dde background: #aaff85; color: #000; color: #000;
  288. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\sound\click_Btn.wav background: #aaff85; color: #000; color: #000;
  289. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box4.fbx@88b2e background: #aaff85; color: #000; color: #000;
  290. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box3.fbx@88b2e background: #aaff85; color: #000; color: #000;
  291. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box2.fbx@88b2e background: #aaff85; color: #000; color: #000;
  292. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box4.fbx@2b9af background: #aaff85; color: #000; color: #000;
  293. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box2.fbx@2b9af background: #aaff85; color: #000; color: #000;
  294. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box3.fbx@2b9af background: #aaff85; color: #000; color: #000;
  295. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box1.fbx@88b2e background: #aaff85; color: #000; color: #000;
  296. 2025-2-24 15:41:35-log: importer: Reuse previously edited material data. 7583a0fd-5dce-4109-9027-be836793fba6@88b2e
  297. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box4.fbx@33a7c background: #aaff85; color: #000; color: #000;
  298. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box3.fbx@285a7 background: #aaff85; color: #000; color: #000;
  299. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box2.fbx@75dc1 background: #aaff85; color: #000; color: #000;
  300. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\成语方块\box1.fbx@2b9af background: #aaff85; color: #000; color: #000;
  301. 2025-2-24 15:41:35-log: importer: Reuse previously edited material data. 7583a0fd-5dce-4109-9027-be836793fba6@2b9af
  302. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\sound\click_Cube.wav background: #aaff85; color: #000; color: #000;
  303. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\sound\dealing.mp3 background: #aaff85; color: #000; color: #000;
  304. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\sound\eliminate.mp3 background: #aaff85; color: #000; color: #000;
  305. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\sound\fly_Cube.mp3 background: #aaff85; color: #000; color: #000;
  306. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\idiom.json background: #aaff85; color: #000; color: #000;
  307. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\idiom_order.json background: #aaff85; color: #000; color: #000;
  308. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json background: #aaff85; color: #000; color: #000;
  309. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json background: #aaff85; color: #000; color: #000;
  310. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\level.json background: #aaff85; color: #000; color: #000;
  311. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json background: #aaff85; color: #000; color: #000;
  312. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\level_2.json background: #aaff85; color: #000; color: #000;
  313. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\store.json background: #aaff85; color: #000; color: #000;
  314. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_extra\table_json\task.json background: #aaff85; color: #000; color: #000;
  315. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\cube1.prefab background: #aaff85; color: #000; color: #000;
  316. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\cube2.prefab background: #aaff85; color: #000; color: #000;
  317. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\cube3.prefab background: #aaff85; color: #000; color: #000;
  318. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\game.scene background: #aaff85; color: #000; color: #000;
  319. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  320. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\materials\3dui.mtl background: #aaff85; color: #000; color: #000;
  321. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\materials\Container.mtl background: #aaff85; color: #000; color: #000;
  322. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\materials\Lock.mtl background: #aaff85; color: #000; color: #000;
  323. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\materials\physics-material.pmtl background: #aaff85; color: #000; color: #000;
  324. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\Texture\存放@2x.png background: #aaff85; color: #000; color: #000;
  325. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\Texture\组11@2x.png background: #aaff85; color: #000; color: #000;
  326. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\67b98ae0df30a64186e3f5175c79e1c74aba092917872-mc8uBB拷贝@2x.png background: #aaff85; color: #000; color: #000;
  327. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\96bc665b03b6475706153389ebd263b93c96010ece6-xqd2Y1拷贝3@2x.png background: #aaff85; color: #000; color: #000;
  328. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\beij1@2x.png background: #aaff85; color: #000; color: #000;
  329. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\Texture\存放@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  330. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\67b98ae0df30a64186e3f5175c79e1c74aba092917872-mc8uBB拷贝@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  331. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\Texture\组11@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  332. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\67b98ae0df30a64186e3f5175c79e1c74aba092917872-mc8uBB拷贝@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  333. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\96bc665b03b6475706153389ebd263b93c96010ece6-xqd2Y1拷贝3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  334. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\不用了@2x.png background: #aaff85; color: #000; color: #000;
  335. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\96bc665b03b6475706153389ebd263b93c96010ece6-xqd2Y1拷贝3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  336. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\体力 封面.png background: #aaff85; color: #000; color: #000;
  337. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\beij1@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  338. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\体力弹窗.png background: #aaff85; color: #000; color: #000;
  339. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\beij1@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  340. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\免费获得@2x.png background: #aaff85; color: #000; color: #000;
  341. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\不用了@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  342. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\不用了@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  343. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\体力 封面.png@6c48a background: #aaff85; color: #000; color: #000;
  344. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\体力 封面.png@f9941 background: #aaff85; color: #000; color: #000;
  345. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层7@2x.png background: #aaff85; color: #000; color: #000;
  346. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\免费获得@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  347. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\体力弹窗.png@6c48a background: #aaff85; color: #000; color: #000;
  348. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\体力弹窗.png@f9941 background: #aaff85; color: #000; color: #000;
  349. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\免费获得@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  350. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层7拷贝@2x.png background: #aaff85; color: #000; color: #000;
  351. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层7@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  352. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层892@2x.png background: #aaff85; color: #000; color: #000;
  353. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层7@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  354. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层7拷贝@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  355. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\矩形3@2x.png background: #aaff85; color: #000; color: #000;
  356. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组10@2x.png background: #aaff85; color: #000; color: #000;
  357. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层7拷贝@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  358. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组11.png background: #aaff85; color: #000; color: #000;
  359. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层892@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  360. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\图层892@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  361. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组11@2x.png background: #aaff85; color: #000; color: #000;
  362. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\矩形3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  363. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组10@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  364. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\矩形3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  365. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组10@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  366. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组11.png@6c48a background: #aaff85; color: #000; color: #000;
  367. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\补充体力@2x.png background: #aaff85; color: #000; color: #000;
  368. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组11.png@f9941 background: #aaff85; color: #000; color: #000;
  369. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\观看广告可立即获得1点体力!@2x.png background: #aaff85; color: #000; color: #000;
  370. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组11@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  371. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\观看广告可立即获得5点体力!@2x.png background: #aaff85; color: #000; color: #000;
  372. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\组11@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  373. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\2.点击《成语消了消》@2x.png background: #aaff85; color: #000; color: #000;
  374. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\SideBar.pac background: #aaff85; color: #000; color: #000;
  375. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\补充体力@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  376. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\补充体力@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  377. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\观看广告可立即获得1点体力!@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  378. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\观看广告可立即获得5点体力!@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  379. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\x2@2x.png background: #aaff85; color: #000; color: #000;
  380. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\观看广告可立即获得5点体力!@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  381. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\x按钮@2x.png background: #aaff85; color: #000; color: #000;
  382. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\切图@2x.png background: #aaff85; color: #000; color: #000;
  383. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\2.点击《成语消了消》@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  384. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\2.点击《成语消了消》@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  385. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\图层2@2x.png background: #aaff85; color: #000; color: #000;
  386. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\x2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  387. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\x按钮@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  388. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\x2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  389. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\x按钮@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  390. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\封面图标.png background: #aaff85; color: #000; color: #000;
  391. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\切图@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  392. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\切图@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  393. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\洗牌@2x.png background: #aaff85; color: #000; color: #000;
  394. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\图层2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  395. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\图层2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  396. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\洗牌拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  397. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\封面图标.png@6c48a background: #aaff85; color: #000; color: #000;
  398. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\封面图标.png@f9941 background: #aaff85; color: #000; color: #000;
  399. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\组10@2x.png background: #aaff85; color: #000; color: #000;
  400. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\组9@2x.png background: #aaff85; color: #000; color: #000;
  401. 2025-2-24 15:41:35-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\洗牌@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  402. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\洗牌@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  403. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\洗牌拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  404. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\进入侧边栏@2x.png background: #aaff85; color: #000; color: #000;
  405. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\洗牌拷贝2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  406. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\Bar.png background: #aaff85; color: #000; color: #000;
  407. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\组10@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  408. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\Loading.pac background: #aaff85; color: #000; color: #000;
  409. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\组10@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  410. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\组9@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  411. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\组9@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  412. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\进入侧边栏@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  413. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\LoadingBar_Bg.png background: #aaff85; color: #000; color: #000;
  414. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\侧边栏\进入侧边栏@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  415. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\100@2x.png background: #aaff85; color: #000; color: #000;
  416. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\Bar.png@6c48a background: #aaff85; color: #000; color: #000;
  417. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\Bar.png@f9941 background: #aaff85; color: #000; color: #000;
  418. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\200@2x.png background: #aaff85; color: #000; color: #000;
  419. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\300@2x.png background: #aaff85; color: #000; color: #000;
  420. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\LoadingBar_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  421. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\LoadingBar_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  422. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\200@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  423. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\100@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  424. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\AddTime_Des.png background: #aaff85; color: #000; color: #000;
  425. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\200@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  426. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\100@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  427. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\300@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  428. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Ad_Logo.png background: #aaff85; color: #000; color: #000;
  429. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\300@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  430. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Bg.png background: #aaff85; color: #000; color: #000;
  431. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Close.png background: #aaff85; color: #000; color: #000;
  432. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\AddTime_Des.png@6c48a background: #aaff85; color: #000; color: #000;
  433. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\AddTime_Des.png@f9941 background: #aaff85; color: #000; color: #000;
  434. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\CoinGet_Bg.png background: #aaff85; color: #000; color: #000;
  435. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Coin_Des.png background: #aaff85; color: #000; color: #000;
  436. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Ad_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  437. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Ad_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  438. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  439. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  440. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  441. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  442. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Coin_Des.png@6c48a background: #aaff85; color: #000; color: #000;
  443. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Coin_Des.png@f9941 background: #aaff85; color: #000; color: #000;
  444. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\CoinGet_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  445. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Eliminate_Des.png background: #aaff85; color: #000; color: #000;
  446. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\CoinGet_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  447. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Empty_Des.png background: #aaff85; color: #000; color: #000;
  448. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Frame.png background: #aaff85; color: #000; color: #000;
  449. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Free.png background: #aaff85; color: #000; color: #000;
  450. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Eliminate_Des.png@6c48a background: #aaff85; color: #000; color: #000;
  451. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Empty_Des.png@6c48a background: #aaff85; color: #000; color: #000;
  452. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Free_Bg.png background: #aaff85; color: #000; color: #000;
  453. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Eliminate_Des.png@f9941 background: #aaff85; color: #000; color: #000;
  454. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Empty_Des.png@f9941 background: #aaff85; color: #000; color: #000;
  455. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Frame.png@6c48a background: #aaff85; color: #000; color: #000;
  456. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Line.png background: #aaff85; color: #000; color: #000;
  457. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Free.png@6c48a background: #aaff85; color: #000; color: #000;
  458. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Shuffle_Des.png background: #aaff85; color: #000; color: #000;
  459. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Frame.png@f9941 background: #aaff85; color: #000; color: #000;
  460. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Free.png@f9941 background: #aaff85; color: #000; color: #000;
  461. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Free_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  462. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Free_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  463. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Line.png@6c48a background: #aaff85; color: #000; color: #000;
  464. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\store.pac background: #aaff85; color: #000; color: #000;
  465. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Line.png@f9941 background: #aaff85; color: #000; color: #000;
  466. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\hall.pac background: #aaff85; color: #000; color: #000;
  467. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Title.png background: #aaff85; color: #000; color: #000;
  468. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\TitleBg.png background: #aaff85; color: #000; color: #000;
  469. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Shuffle_Des.png@6c48a background: #aaff85; color: #000; color: #000;
  470. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Shuffle_Des.png@f9941 background: #aaff85; color: #000; color: #000;
  471. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Invite.png background: #aaff85; color: #000; color: #000;
  472. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Rank.png background: #aaff85; color: #000; color: #000;
  473. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Setting.png background: #aaff85; color: #000; color: #000;
  474. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  475. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  476. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\TitleBg.png@6c48a background: #aaff85; color: #000; color: #000;
  477. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\TitleBg.png@f9941 background: #aaff85; color: #000; color: #000;
  478. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Setting.png@6c48a background: #aaff85; color: #000; color: #000;
  479. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Setting.png@f9941 background: #aaff85; color: #000; color: #000;
  480. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Sign.png background: #aaff85; color: #000; color: #000;
  481. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Rank.png@6c48a background: #aaff85; color: #000; color: #000;
  482. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Invite.png@6c48a background: #aaff85; color: #000; color: #000;
  483. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Start.png background: #aaff85; color: #000; color: #000;
  484. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Rank.png@f9941 background: #aaff85; color: #000; color: #000;
  485. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Invite.png@f9941 background: #aaff85; color: #000; color: #000;
  486. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Store.png background: #aaff85; color: #000; color: #000;
  487. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Task.png background: #aaff85; color: #000; color: #000;
  488. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Ad_Logo.png background: #aaff85; color: #000; color: #000;
  489. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Sign.png@6c48a background: #aaff85; color: #000; color: #000;
  490. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Start.png@6c48a background: #aaff85; color: #000; color: #000;
  491. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Sign.png@f9941 background: #aaff85; color: #000; color: #000;
  492. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Store.png@6c48a background: #aaff85; color: #000; color: #000;
  493. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Start.png@f9941 background: #aaff85; color: #000; color: #000;
  494. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Store.png@f9941 background: #aaff85; color: #000; color: #000;
  495. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Bg.png background: #aaff85; color: #000; color: #000;
  496. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Ad_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  497. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Task.png@6c48a background: #aaff85; color: #000; color: #000;
  498. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Des_Bg.png background: #aaff85; color: #000; color: #000;
  499. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Ad_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  500. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Eliminate.png background: #aaff85; color: #000; color: #000;
  501. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\封面\Task.png@f9941 background: #aaff85; color: #000; color: #000;
  502. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Empty.png background: #aaff85; color: #000; color: #000;
  503. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Frame.png background: #aaff85; color: #000; color: #000;
  504. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  505. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Des_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  506. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  507. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Des_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  508. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Eliminate.png@6c48a background: #aaff85; color: #000; color: #000;
  509. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\hand.png background: #aaff85; color: #000; color: #000;
  510. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Eliminate.png@f9941 background: #aaff85; color: #000; color: #000;
  511. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Empty.png@6c48a background: #aaff85; color: #000; color: #000;
  512. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Frame.png@6c48a background: #aaff85; color: #000; color: #000;
  513. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Empty.png@f9941 background: #aaff85; color: #000; color: #000;
  514. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Frame.png@f9941 background: #aaff85; color: #000; color: #000;
  515. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Idiom.pac background: #aaff85; color: #000; color: #000;
  516. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\hand.png@6c48a background: #aaff85; color: #000; color: #000;
  517. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Idiom_Bg.png background: #aaff85; color: #000; color: #000;
  518. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\hand.png@f9941 background: #aaff85; color: #000; color: #000;
  519. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Pause.png background: #aaff85; color: #000; color: #000;
  520. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\RedPoint.png background: #aaff85; color: #000; color: #000;
  521. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Rules.png background: #aaff85; color: #000; color: #000;
  522. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Shuffle.png background: #aaff85; color: #000; color: #000;
  523. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Rules.png@6c48a background: #aaff85; color: #000; color: #000;
  524. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Idiom_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  525. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Rules.png@f9941 background: #aaff85; color: #000; color: #000;
  526. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Idiom_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  527. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Pause.png@6c48a background: #aaff85; color: #000; color: #000;
  528. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Pause.png@f9941 background: #aaff85; color: #000; color: #000;
  529. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\RedPoint.png@6c48a background: #aaff85; color: #000; color: #000;
  530. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Bg.png background: #aaff85; color: #000; color: #000;
  531. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\RedPoint.png@f9941 background: #aaff85; color: #000; color: #000;
  532. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Close.png background: #aaff85; color: #000; color: #000;
  533. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Shuffle.png@6c48a background: #aaff85; color: #000; color: #000;
  534. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\Shuffle.png@f9941 background: #aaff85; color: #000; color: #000;
  535. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Infor.png background: #aaff85; color: #000; color: #000;
  536. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Level.png background: #aaff85; color: #000; color: #000;
  537. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  538. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Line.png background: #aaff85; color: #000; color: #000;
  539. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  540. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  541. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  542. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Infor.png@6c48a background: #aaff85; color: #000; color: #000;
  543. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Level.png@6c48a background: #aaff85; color: #000; color: #000;
  544. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Infor.png@f9941 background: #aaff85; color: #000; color: #000;
  545. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Level.png@f9941 background: #aaff85; color: #000; color: #000;
  546. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\rank.pac background: #aaff85; color: #000; color: #000;
  547. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Rank.png background: #aaff85; color: #000; color: #000;
  548. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Line.png@6c48a background: #aaff85; color: #000; color: #000;
  549. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Line.png@f9941 background: #aaff85; color: #000; color: #000;
  550. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Title.png background: #aaff85; color: #000; color: #000;
  551. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Bg.png background: #aaff85; color: #000; color: #000;
  552. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Cancel.png background: #aaff85; color: #000; color: #000;
  553. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Cancel_Bg.png background: #aaff85; color: #000; color: #000;
  554. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Rank.png@6c48a background: #aaff85; color: #000; color: #000;
  555. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Rank.png@f9941 background: #aaff85; color: #000; color: #000;
  556. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  557. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  558. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  559. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  560. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Close.png background: #aaff85; color: #000; color: #000;
  561. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Cancel.png@6c48a background: #aaff85; color: #000; color: #000;
  562. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Cancel_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  563. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Cancel.png@f9941 background: #aaff85; color: #000; color: #000;
  564. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Cancel_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  565. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Des.png background: #aaff85; color: #000; color: #000;
  566. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  567. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  568. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Tips.pac background: #aaff85; color: #000; color: #000;
  569. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Ensure.png background: #aaff85; color: #000; color: #000;
  570. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Ensure_Bg.png background: #aaff85; color: #000; color: #000;
  571. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Title.png background: #aaff85; color: #000; color: #000;
  572. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Des.png@6c48a background: #aaff85; color: #000; color: #000;
  573. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\120S.png background: #aaff85; color: #000; color: #000;
  574. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Des.png@f9941 background: #aaff85; color: #000; color: #000;
  575. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Ensure.png@6c48a background: #aaff85; color: #000; color: #000;
  576. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\120S.png@6c48a background: #aaff85; color: #000; color: #000;
  577. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Ensure_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  578. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\120S.png@f9941 background: #aaff85; color: #000; color: #000;
  579. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Ensure_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  580. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Ensure.png@f9941 background: #aaff85; color: #000; color: #000;
  581. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Ad_Logo.png background: #aaff85; color: #000; color: #000;
  582. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  583. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  584. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Bar.png background: #aaff85; color: #000; color: #000;
  585. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Bg.png background: #aaff85; color: #000; color: #000;
  586. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Big_Logo.png background: #aaff85; color: #000; color: #000;
  587. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Ad_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  588. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Btn_Bg1.png background: #aaff85; color: #000; color: #000;
  589. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Ad_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  590. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Bar.png@6c48a background: #aaff85; color: #000; color: #000;
  591. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Big_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  592. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  593. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Bar.png@f9941 background: #aaff85; color: #000; color: #000;
  594. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Big_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  595. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  596. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Btn_Bg2.png background: #aaff85; color: #000; color: #000;
  597. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Btn_Bg1.png@6c48a background: #aaff85; color: #000; color: #000;
  598. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Btn_Bg1.png@f9941 background: #aaff85; color: #000; color: #000;
  599. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Close.png background: #aaff85; color: #000; color: #000;
  600. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Cur.png background: #aaff85; color: #000; color: #000;
  601. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Des.png background: #aaff85; color: #000; color: #000;
  602. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Btn_Bg2.png@6c48a background: #aaff85; color: #000; color: #000;
  603. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Des1.png background: #aaff85; color: #000; color: #000;
  604. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Btn_Bg2.png@f9941 background: #aaff85; color: #000; color: #000;
  605. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Des1.png@6c48a background: #aaff85; color: #000; color: #000;
  606. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Cur.png@6c48a background: #aaff85; color: #000; color: #000;
  607. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Des1.png@f9941 background: #aaff85; color: #000; color: #000;
  608. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  609. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Frame.png background: #aaff85; color: #000; color: #000;
  610. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Cur.png@f9941 background: #aaff85; color: #000; color: #000;
  611. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  612. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Des.png@6c48a background: #aaff85; color: #000; color: #000;
  613. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Des.png@f9941 background: #aaff85; color: #000; color: #000;
  614. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Loading_Bg.png background: #aaff85; color: #000; color: #000;
  615. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Relife.png background: #aaff85; color: #000; color: #000;
  616. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Small_Logo.png background: #aaff85; color: #000; color: #000;
  617. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\timeover.pac background: #aaff85; color: #000; color: #000;
  618. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Frame.png@6c48a background: #aaff85; color: #000; color: #000;
  619. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Frame.png@f9941 background: #aaff85; color: #000; color: #000;
  620. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Small_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  621. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Title.png background: #aaff85; color: #000; color: #000;
  622. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Small_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  623. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Relife.png@6c48a background: #aaff85; color: #000; color: #000;
  624. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Loading_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  625. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Relife.png@f9941 background: #aaff85; color: #000; color: #000;
  626. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Loading_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  627. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Ad_Logo.png background: #aaff85; color: #000; color: #000;
  628. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Bg.png background: #aaff85; color: #000; color: #000;
  629. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  630. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Btn_Bg1.png background: #aaff85; color: #000; color: #000;
  631. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Btn_Bg2.png background: #aaff85; color: #000; color: #000;
  632. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\时间到了\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  633. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Ad_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  634. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Ad_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  635. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Close.png background: #aaff85; color: #000; color: #000;
  636. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Btn_Bg1.png@6c48a background: #aaff85; color: #000; color: #000;
  637. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  638. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Btn_Bg2.png@6c48a background: #aaff85; color: #000; color: #000;
  639. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Defeat.png background: #aaff85; color: #000; color: #000;
  640. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  641. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Btn_Bg1.png@f9941 background: #aaff85; color: #000; color: #000;
  642. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Btn_Bg2.png@f9941 background: #aaff85; color: #000; color: #000;
  643. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Defeat.png@6c48a background: #aaff85; color: #000; color: #000;
  644. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Des.png background: #aaff85; color: #000; color: #000;
  645. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate.png background: #aaff85; color: #000; color: #000;
  646. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  647. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate_1.png background: #aaff85; color: #000; color: #000;
  648. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Defeat.png@f9941 background: #aaff85; color: #000; color: #000;
  649. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  650. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate_1.png@6c48a background: #aaff85; color: #000; color: #000;
  651. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate_1.png@f9941 background: #aaff85; color: #000; color: #000;
  652. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate_2.png background: #aaff85; color: #000; color: #000;
  653. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Empty_Logo.png background: #aaff85; color: #000; color: #000;
  654. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Frame.png background: #aaff85; color: #000; color: #000;
  655. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Des.png@6c48a background: #aaff85; color: #000; color: #000;
  656. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Empty_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  657. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate.png@6c48a background: #aaff85; color: #000; color: #000;
  658. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Des.png@f9941 background: #aaff85; color: #000; color: #000;
  659. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Empty_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  660. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate.png@f9941 background: #aaff85; color: #000; color: #000;
  661. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\latticefull.pac background: #aaff85; color: #000; color: #000;
  662. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate_2.png@6c48a background: #aaff85; color: #000; color: #000;
  663. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Eliminate_2.png@f9941 background: #aaff85; color: #000; color: #000;
  664. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Logo.png background: #aaff85; color: #000; color: #000;
  665. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\RedPoint.png background: #aaff85; color: #000; color: #000;
  666. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Frame.png@6c48a background: #aaff85; color: #000; color: #000;
  667. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Title.png background: #aaff85; color: #000; color: #000;
  668. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Frame.png@f9941 background: #aaff85; color: #000; color: #000;
  669. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\AddTime_Logo.png background: #aaff85; color: #000; color: #000;
  670. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\RedPoint.png@6c48a background: #aaff85; color: #000; color: #000;
  671. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\RedPoint.png@f9941 background: #aaff85; color: #000; color: #000;
  672. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Bar.png background: #aaff85; color: #000; color: #000;
  673. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  674. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  675. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  676. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Bg.png background: #aaff85; color: #000; color: #000;
  677. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\格子满了\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  678. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\AddTime_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  679. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\AddTime_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  680. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Btn_Bg1.png background: #aaff85; color: #000; color: #000;
  681. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Bar.png@6c48a background: #aaff85; color: #000; color: #000;
  682. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Btn_Gray.png background: #aaff85; color: #000; color: #000;
  683. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Bar.png@f9941 background: #aaff85; color: #000; color: #000;
  684. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  685. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  686. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\CanGet.png background: #aaff85; color: #000; color: #000;
  687. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Clsoe.png background: #aaff85; color: #000; color: #000;
  688. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Btn_Bg1.png@6c48a background: #aaff85; color: #000; color: #000;
  689. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Btn_Bg1.png@f9941 background: #aaff85; color: #000; color: #000;
  690. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Btn_Gray.png@6c48a background: #aaff85; color: #000; color: #000;
  691. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Btn_Gray.png@f9941 background: #aaff85; color: #000; color: #000;
  692. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\CanGet.png@6c48a background: #aaff85; color: #000; color: #000;
  693. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Coin_Logo.png background: #aaff85; color: #000; color: #000;
  694. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\CanGet.png@f9941 background: #aaff85; color: #000; color: #000;
  695. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Eliminate_Logo.png background: #aaff85; color: #000; color: #000;
  696. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Empty_Logo.png background: #aaff85; color: #000; color: #000;
  697. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Clsoe.png@6c48a background: #aaff85; color: #000; color: #000;
  698. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Clsoe.png@f9941 background: #aaff85; color: #000; color: #000;
  699. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Get.png background: #aaff85; color: #000; color: #000;
  700. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Coin_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  701. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Coin_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  702. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Eliminate_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  703. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Get_Gray.png background: #aaff85; color: #000; color: #000;
  704. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Empty_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  705. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Eliminate_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  706. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Empty_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  707. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Line.png background: #aaff85; color: #000; color: #000;
  708. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Get_Gray.png@6c48a background: #aaff85; color: #000; color: #000;
  709. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Get.png@6c48a background: #aaff85; color: #000; color: #000;
  710. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\LoadingBar_Bg.png background: #aaff85; color: #000; color: #000;
  711. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Get_Gray.png@f9941 background: #aaff85; color: #000; color: #000;
  712. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Get.png@f9941 background: #aaff85; color: #000; color: #000;
  713. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Shuffle_Logo.png background: #aaff85; color: #000; color: #000;
  714. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\task.pac background: #aaff85; color: #000; color: #000;
  715. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Line.png@6c48a background: #aaff85; color: #000; color: #000;
  716. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Title.png background: #aaff85; color: #000; color: #000;
  717. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Title_Bg.png background: #aaff85; color: #000; color: #000;
  718. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\LoadingBar_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  719. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Line.png@f9941 background: #aaff85; color: #000; color: #000;
  720. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\LoadingBar_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  721. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Shuffle_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  722. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Shuffle_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  723. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  724. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  725. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\x100@2x.png background: #aaff85; color: #000; color: #000;
  726. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\x1@2x.png background: #aaff85; color: #000; color: #000;
  727. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Title_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  728. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\Title_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  729. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Bg.png background: #aaff85; color: #000; color: #000;
  730. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Close.png background: #aaff85; color: #000; color: #000;
  731. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\x100@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  732. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\x1@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  733. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\x100@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  734. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\x1@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  735. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Des.png background: #aaff85; color: #000; color: #000;
  736. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  737. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Line.png background: #aaff85; color: #000; color: #000;
  738. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  739. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Rule.png background: #aaff85; color: #000; color: #000;
  740. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  741. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Des.png@6c48a background: #aaff85; color: #000; color: #000;
  742. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  743. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Des.png@f9941 background: #aaff85; color: #000; color: #000;
  744. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Title.png background: #aaff85; color: #000; color: #000;
  745. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Line.png@6c48a background: #aaff85; color: #000; color: #000;
  746. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Add.png background: #aaff85; color: #000; color: #000;
  747. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Line.png@f9941 background: #aaff85; color: #000; color: #000;
  748. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already.png background: #aaff85; color: #000; color: #000;
  749. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Rule.png@6c48a background: #aaff85; color: #000; color: #000;
  750. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Rule.png@f9941 background: #aaff85; color: #000; color: #000;
  751. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  752. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\游戏说明\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  753. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Add.png@6c48a background: #aaff85; color: #000; color: #000;
  754. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already_Day7.png background: #aaff85; color: #000; color: #000;
  755. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Add.png@f9941 background: #aaff85; color: #000; color: #000;
  756. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already.png@6c48a background: #aaff85; color: #000; color: #000;
  757. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already_Logo.png background: #aaff85; color: #000; color: #000;
  758. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already_Day7.png@6c48a background: #aaff85; color: #000; color: #000;
  759. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already.png@f9941 background: #aaff85; color: #000; color: #000;
  760. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Bg.png background: #aaff85; color: #000; color: #000;
  761. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already_Day7.png@f9941 background: #aaff85; color: #000; color: #000;
  762. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day1.png background: #aaff85; color: #000; color: #000;
  763. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day2.png background: #aaff85; color: #000; color: #000;
  764. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day1.png@6c48a background: #aaff85; color: #000; color: #000;
  765. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day3.png background: #aaff85; color: #000; color: #000;
  766. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day1.png@f9941 background: #aaff85; color: #000; color: #000;
  767. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  768. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  769. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  770. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Already_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  771. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day4.png background: #aaff85; color: #000; color: #000;
  772. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day2.png@6c48a background: #aaff85; color: #000; color: #000;
  773. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day2.png@f9941 background: #aaff85; color: #000; color: #000;
  774. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day3.png@6c48a background: #aaff85; color: #000; color: #000;
  775. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day5.png background: #aaff85; color: #000; color: #000;
  776. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day3.png@f9941 background: #aaff85; color: #000; color: #000;
  777. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day6.png background: #aaff85; color: #000; color: #000;
  778. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day7.png background: #aaff85; color: #000; color: #000;
  779. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day4.png@6c48a background: #aaff85; color: #000; color: #000;
  780. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day4.png@f9941 background: #aaff85; color: #000; color: #000;
  781. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day7_Bg.png background: #aaff85; color: #000; color: #000;
  782. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day6.png@6c48a background: #aaff85; color: #000; color: #000;
  783. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day6.png@f9941 background: #aaff85; color: #000; color: #000;
  784. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day5.png@6c48a background: #aaff85; color: #000; color: #000;
  785. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day5.png@f9941 background: #aaff85; color: #000; color: #000;
  786. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day_Bg.png background: #aaff85; color: #000; color: #000;
  787. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day7.png@6c48a background: #aaff85; color: #000; color: #000;
  788. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Eliminate.png background: #aaff85; color: #000; color: #000;
  789. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day7_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  790. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day7.png@f9941 background: #aaff85; color: #000; color: #000;
  791. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Eliminate_Logo.png background: #aaff85; color: #000; color: #000;
  792. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day7_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  793. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Empty.png background: #aaff85; color: #000; color: #000;
  794. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Empty_Logo.png background: #aaff85; color: #000; color: #000;
  795. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Eliminate.png@6c48a background: #aaff85; color: #000; color: #000;
  796. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  797. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Eliminate_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  798. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Eliminate.png@f9941 background: #aaff85; color: #000; color: #000;
  799. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Day_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  800. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Eliminate_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  801. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\sign.pac background: #aaff85; color: #000; color: #000;
  802. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Empty.png@6c48a background: #aaff85; color: #000; color: #000;
  803. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Shuffle.png background: #aaff85; color: #000; color: #000;
  804. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Shuffle_Logo.png background: #aaff85; color: #000; color: #000;
  805. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\result.pac background: #aaff85; color: #000; color: #000;
  806. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Empty.png@f9941 background: #aaff85; color: #000; color: #000;
  807. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Empty_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  808. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Empty_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  809. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Ad_Logo.png background: #aaff85; color: #000; color: #000;
  810. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Bg.png background: #aaff85; color: #000; color: #000;
  811. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Shuffle_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  812. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Shuffle.png@6c48a background: #aaff85; color: #000; color: #000;
  813. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Btn_Bg.png background: #aaff85; color: #000; color: #000;
  814. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Shuffle_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  815. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\Shuffle.png@f9941 background: #aaff85; color: #000; color: #000;
  816. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Ad_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  817. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Close.png background: #aaff85; color: #000; color: #000;
  818. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Des.png background: #aaff85; color: #000; color: #000;
  819. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Ad_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  820. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  821. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Btn_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  822. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  823. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Btn_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  824. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Ensure.png background: #aaff85; color: #000; color: #000;
  825. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Des.png@6c48a background: #aaff85; color: #000; color: #000;
  826. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\lock.pac background: #aaff85; color: #000; color: #000;
  827. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Des.png@f9941 background: #aaff85; color: #000; color: #000;
  828. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  829. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Frame.png background: #aaff85; color: #000; color: #000;
  830. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  831. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Ensure.png@6c48a background: #aaff85; color: #000; color: #000;
  832. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Lock_Logo.png background: #aaff85; color: #000; color: #000;
  833. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Title.png background: #aaff85; color: #000; color: #000;
  834. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Ensure.png@f9941 background: #aaff85; color: #000; color: #000;
  835. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Frame.png@6c48a background: #aaff85; color: #000; color: #000;
  836. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Bg.png background: #aaff85; color: #000; color: #000;
  837. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Frame.png@f9941 background: #aaff85; color: #000; color: #000;
  838. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Lock_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  839. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg1.png background: #aaff85; color: #000; color: #000;
  840. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Lock_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  841. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg2.png background: #aaff85; color: #000; color: #000;
  842. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  843. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\解锁槽位\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  844. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg3.png background: #aaff85; color: #000; color: #000;
  845. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  846. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  847. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Close.png background: #aaff85; color: #000; color: #000;
  848. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg1.png@6c48a background: #aaff85; color: #000; color: #000;
  849. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg2.png@6c48a background: #aaff85; color: #000; color: #000;
  850. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg1.png@f9941 background: #aaff85; color: #000; color: #000;
  851. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg2.png@f9941 background: #aaff85; color: #000; color: #000;
  852. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg3.png@6c48a background: #aaff85; color: #000; color: #000;
  853. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Bg3.png@f9941 background: #aaff85; color: #000; color: #000;
  854. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Open.png background: #aaff85; color: #000; color: #000;
  855. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Close.png background: #aaff85; color: #000; color: #000;
  856. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Defeat.png background: #aaff85; color: #000; color: #000;
  857. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Close.png@6c48a background: #aaff85; color: #000; color: #000;
  858. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Close.png@f9941 background: #aaff85; color: #000; color: #000;
  859. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Line.png background: #aaff85; color: #000; color: #000;
  860. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  861. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  862. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Music.png background: #aaff85; color: #000; color: #000;
  863. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Line.png@6c48a background: #aaff85; color: #000; color: #000;
  864. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Open.png@6c48a background: #aaff85; color: #000; color: #000;
  865. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Defeat.png@6c48a background: #aaff85; color: #000; color: #000;
  866. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Line.png@f9941 background: #aaff85; color: #000; color: #000;
  867. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Btn_Open.png@f9941 background: #aaff85; color: #000; color: #000;
  868. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Defeat.png@f9941 background: #aaff85; color: #000; color: #000;
  869. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Polygon.png background: #aaff85; color: #000; color: #000;
  870. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\setting.pac background: #aaff85; color: #000; color: #000;
  871. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Music.png@6c48a background: #aaff85; color: #000; color: #000;
  872. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Question.png background: #aaff85; color: #000; color: #000;
  873. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\RePlay.png background: #aaff85; color: #000; color: #000;
  874. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Music.png@f9941 background: #aaff85; color: #000; color: #000;
  875. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Sound.png background: #aaff85; color: #000; color: #000;
  876. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Polygon.png@6c48a background: #aaff85; color: #000; color: #000;
  877. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Polygon.png@f9941 background: #aaff85; color: #000; color: #000;
  878. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Title.png background: #aaff85; color: #000; color: #000;
  879. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Sound.png@6c48a background: #aaff85; color: #000; color: #000;
  880. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Sound.png@f9941 background: #aaff85; color: #000; color: #000;
  881. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Question.png@6c48a background: #aaff85; color: #000; color: #000;
  882. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Question.png@f9941 background: #aaff85; color: #000; color: #000;
  883. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\1@2x.png background: #aaff85; color: #000; color: #000;
  884. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\RePlay.png@6c48a background: #aaff85; color: #000; color: #000;
  885. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  886. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\RePlay.png@f9941 background: #aaff85; color: #000; color: #000;
  887. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\设置\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  888. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\2@2x.png background: #aaff85; color: #000; color: #000;
  889. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\3@2x.png background: #aaff85; color: #000; color: #000;
  890. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\4@2x.png background: #aaff85; color: #000; color: #000;
  891. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\5@2x.png background: #aaff85; color: #000; color: #000;
  892. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\1@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  893. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\1@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  894. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  895. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  896. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Bar.png background: #aaff85; color: #000; color: #000;
  897. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  898. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  899. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\4@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  900. 2025-2-24 15:41:36-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\5@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  901. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\4@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  902. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Bar.png@6c48a background: #aaff85; color: #000; color: #000;
  903. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\5@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  904. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Bg.png background: #aaff85; color: #000; color: #000;
  905. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Bar.png@f9941 background: #aaff85; color: #000; color: #000;
  906. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Btn_Bg1.png background: #aaff85; color: #000; color: #000;
  907. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Btn_Bg2.png background: #aaff85; color: #000; color: #000;
  908. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Close.png background: #aaff85; color: #000; color: #000;
  909. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des1.png background: #aaff85; color: #000; color: #000;
  910. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  911. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  912. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Btn_Bg1.png@6c48a background: #aaff85; color: #000; color: #000;
  913. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Btn_Bg1.png@f9941 background: #aaff85; color: #000; color: #000;
  914. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Btn_Bg2.png@6c48a background: #aaff85; color: #000; color: #000;
  915. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Close.png@6c48a background: #aaff85; color: #000; color: #000;
  916. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Btn_Bg2.png@f9941 background: #aaff85; color: #000; color: #000;
  917. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des1.png@6c48a background: #aaff85; color: #000; color: #000;
  918. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Close.png@f9941 background: #aaff85; color: #000; color: #000;
  919. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des1.png@f9941 background: #aaff85; color: #000; color: #000;
  920. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des2.png background: #aaff85; color: #000; color: #000;
  921. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des3.png background: #aaff85; color: #000; color: #000;
  922. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des4.png background: #aaff85; color: #000; color: #000;
  923. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des5.png background: #aaff85; color: #000; color: #000;
  924. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Frame.png background: #aaff85; color: #000; color: #000;
  925. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des2.png@6c48a background: #aaff85; color: #000; color: #000;
  926. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des2.png@f9941 background: #aaff85; color: #000; color: #000;
  927. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des3.png@6c48a background: #aaff85; color: #000; color: #000;
  928. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des5.png@6c48a background: #aaff85; color: #000; color: #000;
  929. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des4.png@6c48a background: #aaff85; color: #000; color: #000;
  930. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des5.png@f9941 background: #aaff85; color: #000; color: #000;
  931. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des3.png@f9941 background: #aaff85; color: #000; color: #000;
  932. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Des4.png@f9941 background: #aaff85; color: #000; color: #000;
  933. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Frame.png@6c48a background: #aaff85; color: #000; color: #000;
  934. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Frame.png@f9941 background: #aaff85; color: #000; color: #000;
  935. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\invite.pac background: #aaff85; color: #000; color: #000;
  936. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Get_Reward.png background: #aaff85; color: #000; color: #000;
  937. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\LoadingBar_Bg.png background: #aaff85; color: #000; color: #000;
  938. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Refresh.png background: #aaff85; color: #000; color: #000;
  939. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Title.png background: #aaff85; color: #000; color: #000;
  940. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Get_Reward.png@6c48a background: #aaff85; color: #000; color: #000;
  941. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Title_Bg.png background: #aaff85; color: #000; color: #000;
  942. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Get_Reward.png@f9941 background: #aaff85; color: #000; color: #000;
  943. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\resources\multTextures\Mult-material.mtl background: #aaff85; color: #000; color: #000;
  944. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\LoadingBar_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  945. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\ch\net\modules\msgpack.min.js background: #aaff85; color: #000; color: #000;
  946. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\LoadingBar_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  947. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  948. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Refresh.png@6c48a background: #aaff85; color: #000; color: #000;
  949. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  950. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\clickHand\handClick2.anim background: #aaff85; color: #000; color: #000;
  951. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\clickHand\handClick.anim background: #aaff85; color: #000; color: #000;
  952. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Refresh.png@f9941 background: #aaff85; color: #000; color: #000;
  953. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Title_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  954. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Fail\Fail.prefab background: #aaff85; color: #000; color: #000;
  955. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_GameRules\GameRules.prefab background: #aaff85; color: #000; color: #000;
  956. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\Title_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  957. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Hall\Hall.prefab background: #aaff85; color: #000; color: #000;
  958. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Idioms\idiom.prefab background: #aaff85; color: #000; color: #000;
  959. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Idioms\ScrollView.prefab background: #aaff85; color: #000; color: #000;
  960. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  961. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_LatticeFull\LatticeFull.prefab background: #aaff85; color: #000; color: #000;
  962. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\Life.prefab background: #aaff85; color: #000; color: #000;
  963. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Lock\Lock.prefab background: #aaff85; color: #000; color: #000;
  964. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Main\Main.prefab background: #aaff85; color: #000; color: #000;
  965. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Rank\Rank.prefab background: #aaff85; color: #000; color: #000;
  966. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Rank\UI_Rank_Item.prefab background: #aaff85; color: #000; color: #000;
  967. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Settings\Settings.prefab background: #aaff85; color: #000; color: #000;
  968. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_SideBar\SideBar.prefab background: #aaff85; color: #000; color: #000;
  969. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  970. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Store\Store.prefab background: #aaff85; color: #000; color: #000;
  971. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_TimesOver\TimesOver.prefab background: #aaff85; color: #000; color: #000;
  972. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Task\Task.prefab background: #aaff85; color: #000; color: #000;
  973. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Tips.prefab background: #aaff85; color: #000; color: #000;
  974. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Win\Win.prefab background: #aaff85; color: #000; color: #000;
  975. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\Bg.jpg background: #aaff85; color: #000; color: #000;
  976. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\cyxlx.png background: #aaff85; color: #000; color: #000;
  977. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\cyxlx_Healthy.png background: #aaff85; color: #000; color: #000;
  978. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\kndlh.png background: #aaff85; color: #000; color: #000;
  979. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\kndlh_Heality.png background: #aaff85; color: #000; color: #000;
  980. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\cyxlx.png@6c48a background: #aaff85; color: #000; color: #000;
  981. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\cyxlx.png@f9941 background: #aaff85; color: #000; color: #000;
  982. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\Bg.jpg@6c48a background: #aaff85; color: #000; color: #000;
  983. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\Bg.jpg@f9941 background: #aaff85; color: #000; color: #000;
  984. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\cyxlx_Healthy.png@6c48a background: #aaff85; color: #000; color: #000;
  985. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\kndlh.png@6c48a background: #aaff85; color: #000; color: #000;
  986. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\cyxlx_Healthy.png@f9941 background: #aaff85; color: #000; color: #000;
  987. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\kndlh.png@f9941 background: #aaff85; color: #000; color: #000;
  988. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\kndlh_Heality.png@6c48a background: #aaff85; color: #000; color: #000;
  989. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\AddTime.png background: #aaff85; color: #000; color: #000;
  990. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\加载页\新建文件夹\kndlh_Heality.png@f9941 background: #aaff85; color: #000; color: #000;
  991. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Coin.png background: #aaff85; color: #000; color: #000;
  992. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Coin_Logo.png background: #aaff85; color: #000; color: #000;
  993. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Eliminate.png background: #aaff85; color: #000; color: #000;
  994. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Elminate_Logo.png background: #aaff85; color: #000; color: #000;
  995. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Eliminate.png@6c48a background: #aaff85; color: #000; color: #000;
  996. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Eliminate.png@f9941 background: #aaff85; color: #000; color: #000;
  997. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Coin.png@6c48a background: #aaff85; color: #000; color: #000;
  998. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\AddTime.png@6c48a background: #aaff85; color: #000; color: #000;
  999. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Coin.png@f9941 background: #aaff85; color: #000; color: #000;
  1000. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\AddTime.png@f9941 background: #aaff85; color: #000; color: #000;
  1001. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Coin_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1002. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Coin_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1003. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Empty.png background: #aaff85; color: #000; color: #000;
  1004. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Empty_Logo.png background: #aaff85; color: #000; color: #000;
  1005. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Shuffle.png background: #aaff85; color: #000; color: #000;
  1006. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Elminate_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1007. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Elminate_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1008. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Empty.png@6c48a background: #aaff85; color: #000; color: #000;
  1009. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Shuffle_Logo.png background: #aaff85; color: #000; color: #000;
  1010. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Shuffle.png@6c48a background: #aaff85; color: #000; color: #000;
  1011. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Empty.png@f9941 background: #aaff85; color: #000; color: #000;
  1012. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Shuffle.png@f9941 background: #aaff85; color: #000; color: #000;
  1013. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Time_Logo.png background: #aaff85; color: #000; color: #000;
  1014. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语备用)\ui_qc_1.atlas background: #aaff85; color: #000; color: #000;
  1015. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Empty_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1016. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语备用)\ui_qc_1.json background: #aaff85; color: #000; color: #000;
  1017. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Empty_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1018. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Shuffle_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1019. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Shuffle_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1020. 2025-2-24 15:41:37-log: UUID is initialized for "%s". D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语备用)\ui_qc_1.png
  1021. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语备用)\ui_qc_1.png background: #aaff85; color: #000; color: #000;
  1022. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语)\ui_qc.json background: #aaff85; color: #000; color: #000;
  1023. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语)\ui_qc.atlas background: #aaff85; color: #000; color: #000;
  1024. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Time_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1025. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\商城\道具\Time_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1026. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语)\ui_qc.png background: #aaff85; color: #000; color: #000;
  1027. 2025-2-24 15:41:37-log: UUID is initialized for "%s". D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语)\ui_qc.png
  1028. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_通关(词语)\ui_tg.atlas background: #aaff85; color: #000; color: #000;
  1029. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_通关(词语)\ui_tg.json background: #aaff85; color: #000; color: #000;
  1030. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_通关(词语)\ui_tg.png background: #aaff85; color: #000; color: #000;
  1031. 2025-2-24 15:41:37-log: UUID is initialized for "%s". D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_通关(词语)\ui_tg.png
  1032. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语)\ui_qc.png@6c48a background: #aaff85; color: #000; color: #000;
  1033. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语备用)\ui_qc_1.png@6c48a background: #aaff85; color: #000; color: #000;
  1034. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\First.png background: #aaff85; color: #000; color: #000;
  1035. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\HeadFrame.png background: #aaff85; color: #000; color: #000;
  1036. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_1.png background: #aaff85; color: #000; color: #000;
  1037. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_2.png background: #aaff85; color: #000; color: #000;
  1038. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_通关(词语)\ui_tg.png@6c48a background: #aaff85; color: #000; color: #000;
  1039. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\HeadFrame.png@6c48a background: #aaff85; color: #000; color: #000;
  1040. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_3.png background: #aaff85; color: #000; color: #000;
  1041. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\HeadFrame.png@f9941 background: #aaff85; color: #000; color: #000;
  1042. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_1.png@6c48a background: #aaff85; color: #000; color: #000;
  1043. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_1.png@f9941 background: #aaff85; color: #000; color: #000;
  1044. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\First.png@6c48a background: #aaff85; color: #000; color: #000;
  1045. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_3.png@6c48a background: #aaff85; color: #000; color: #000;
  1046. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\First.png@f9941 background: #aaff85; color: #000; color: #000;
  1047. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_3.png@f9941 background: #aaff85; color: #000; color: #000;
  1048. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_2.png@6c48a background: #aaff85; color: #000; color: #000;
  1049. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\My.png background: #aaff85; color: #000; color: #000;
  1050. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Medal_2.png@f9941 background: #aaff85; color: #000; color: #000;
  1051. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Other.png background: #aaff85; color: #000; color: #000;
  1052. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Second.png background: #aaff85; color: #000; color: #000;
  1053. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Third.png background: #aaff85; color: #000; color: #000;
  1054. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_1.png background: #aaff85; color: #000; color: #000;
  1055. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Other.png@6c48a background: #aaff85; color: #000; color: #000;
  1056. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Other.png@f9941 background: #aaff85; color: #000; color: #000;
  1057. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Second.png@6c48a background: #aaff85; color: #000; color: #000;
  1058. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\My.png@6c48a background: #aaff85; color: #000; color: #000;
  1059. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\My.png@f9941 background: #aaff85; color: #000; color: #000;
  1060. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Second.png@f9941 background: #aaff85; color: #000; color: #000;
  1061. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_1.png@6c48a background: #aaff85; color: #000; color: #000;
  1062. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_1.png@f9941 background: #aaff85; color: #000; color: #000;
  1063. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_2.png background: #aaff85; color: #000; color: #000;
  1064. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Third.png@6c48a background: #aaff85; color: #000; color: #000;
  1065. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_3.png background: #aaff85; color: #000; color: #000;
  1066. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_4.png background: #aaff85; color: #000; color: #000;
  1067. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\名次\Third.png@f9941 background: #aaff85; color: #000; color: #000;
  1068. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_5.png background: #aaff85; color: #000; color: #000;
  1069. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_6.png background: #aaff85; color: #000; color: #000;
  1070. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_4.png@6c48a background: #aaff85; color: #000; color: #000;
  1071. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_3.png@6c48a background: #aaff85; color: #000; color: #000;
  1072. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_2.png@6c48a background: #aaff85; color: #000; color: #000;
  1073. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_4.png@f9941 background: #aaff85; color: #000; color: #000;
  1074. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_3.png@f9941 background: #aaff85; color: #000; color: #000;
  1075. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_2.png@f9941 background: #aaff85; color: #000; color: #000;
  1076. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_5.png@6c48a background: #aaff85; color: #000; color: #000;
  1077. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_5.png@f9941 background: #aaff85; color: #000; color: #000;
  1078. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_7.png background: #aaff85; color: #000; color: #000;
  1079. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_8.png background: #aaff85; color: #000; color: #000;
  1080. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_9.png background: #aaff85; color: #000; color: #000;
  1081. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_6.png@6c48a background: #aaff85; color: #000; color: #000;
  1082. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_6.png@f9941 background: #aaff85; color: #000; color: #000;
  1083. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Check_1.png background: #aaff85; color: #000; color: #000;
  1084. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_8.png@6c48a background: #aaff85; color: #000; color: #000;
  1085. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_9.png@6c48a background: #aaff85; color: #000; color: #000;
  1086. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_9.png@f9941 background: #aaff85; color: #000; color: #000;
  1087. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_8.png@f9941 background: #aaff85; color: #000; color: #000;
  1088. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Check_2.png background: #aaff85; color: #000; color: #000;
  1089. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_7.png@6c48a background: #aaff85; color: #000; color: #000;
  1090. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\头像\head_7.png@f9941 background: #aaff85; color: #000; color: #000;
  1091. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Check_1.png@6c48a background: #aaff85; color: #000; color: #000;
  1092. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Friend.png background: #aaff85; color: #000; color: #000;
  1093. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Total.png background: #aaff85; color: #000; color: #000;
  1094. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Check_1.png@f9941 background: #aaff85; color: #000; color: #000;
  1095. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\使用3个道具@2x.png background: #aaff85; color: #000; color: #000;
  1096. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Friend.png@6c48a background: #aaff85; color: #000; color: #000;
  1097. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Check_2.png@6c48a background: #aaff85; color: #000; color: #000;
  1098. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Total.png@6c48a background: #aaff85; color: #000; color: #000;
  1099. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Friend.png@f9941 background: #aaff85; color: #000; color: #000;
  1100. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Total.png@f9941 background: #aaff85; color: #000; color: #000;
  1101. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\匹配100组成语@2x.png background: #aaff85; color: #000; color: #000;
  1102. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\排行榜\总榜-好友榜按钮\Check_2.png@f9941 background: #aaff85; color: #000; color: #000;
  1103. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\使用3个道具@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1104. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\可领取@2x.png background: #aaff85; color: #000; color: #000;
  1105. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\已领取@2x.png background: #aaff85; color: #000; color: #000;
  1106. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\登录奖励@2x.png background: #aaff85; color: #000; color: #000;
  1107. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\使用3个道具@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1108. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\匹配100组成语@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1109. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\匹配100组成语@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1110. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\可领取@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1111. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\可领取@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1112. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\观看8次广告@2x.png background: #aaff85; color: #000; color: #000;
  1113. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\通过5个关卡@2x.png background: #aaff85; color: #000; color: #000;
  1114. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\已领取@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1115. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\登录奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1116. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\已领取@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1117. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\登录奖励@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1118. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Btn_Bg1.png background: #aaff85; color: #000; color: #000;
  1119. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\观看8次广告@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1120. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\观看8次广告@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1121. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Btn_Bg2.png background: #aaff85; color: #000; color: #000;
  1122. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Check.png background: #aaff85; color: #000; color: #000;
  1123. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\通过5个关卡@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1124. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\每日任务\文案\通过5个关卡@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1125. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Btn_Bg1.png@6c48a background: #aaff85; color: #000; color: #000;
  1126. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Check_Des.png background: #aaff85; color: #000; color: #000;
  1127. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Btn_Bg1.png@f9941 background: #aaff85; color: #000; color: #000;
  1128. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Check.png@6c48a background: #aaff85; color: #000; color: #000;
  1129. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Check.png@f9941 background: #aaff85; color: #000; color: #000;
  1130. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Btn_Bg2.png@6c48a background: #aaff85; color: #000; color: #000;
  1131. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Circle.png background: #aaff85; color: #000; color: #000;
  1132. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Btn_Bg2.png@f9941 background: #aaff85; color: #000; color: #000;
  1133. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Check_Des.png@6c48a background: #aaff85; color: #000; color: #000;
  1134. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Free_Get.png background: #aaff85; color: #000; color: #000;
  1135. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Check_Des.png@f9941 background: #aaff85; color: #000; color: #000;
  1136. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Return.png background: #aaff85; color: #000; color: #000;
  1137. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Ad_Logo.png background: #aaff85; color: #000; color: #000;
  1138. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Circle.png@6c48a background: #aaff85; color: #000; color: #000;
  1139. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Bar.png background: #aaff85; color: #000; color: #000;
  1140. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Circle.png@f9941 background: #aaff85; color: #000; color: #000;
  1141. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Free_Get.png@6c48a background: #aaff85; color: #000; color: #000;
  1142. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Free_Get.png@f9941 background: #aaff85; color: #000; color: #000;
  1143. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Btn_Bg1.png background: #aaff85; color: #000; color: #000;
  1144. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Return.png@6c48a background: #aaff85; color: #000; color: #000;
  1145. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\签到\按钮\Return.png@f9941 background: #aaff85; color: #000; color: #000;
  1146. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Ad_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1147. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Btn_Bg2.png background: #aaff85; color: #000; color: #000;
  1148. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Ad_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1149. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Bar.png@6c48a background: #aaff85; color: #000; color: #000;
  1150. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Bar.png@f9941 background: #aaff85; color: #000; color: #000;
  1151. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Des.png background: #aaff85; color: #000; color: #000;
  1152. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Btn_Bg1.png@6c48a background: #aaff85; color: #000; color: #000;
  1153. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Fail_Logo.png background: #aaff85; color: #000; color: #000;
  1154. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Btn_Bg1.png@f9941 background: #aaff85; color: #000; color: #000;
  1155. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Btn_Bg2.png@6c48a background: #aaff85; color: #000; color: #000;
  1156. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\LoadingBar_Bg.png background: #aaff85; color: #000; color: #000;
  1157. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Btn_Bg2.png@f9941 background: #aaff85; color: #000; color: #000;
  1158. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Mask.png background: #aaff85; color: #000; color: #000;
  1159. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Des.png@6c48a background: #aaff85; color: #000; color: #000;
  1160. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Des.png@f9941 background: #aaff85; color: #000; color: #000;
  1161. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Fail_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1162. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Relife.png background: #aaff85; color: #000; color: #000;
  1163. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Fail_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1164. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\LoadingBar_Bg.png@6c48a background: #aaff85; color: #000; color: #000;
  1165. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\LoadingBar_Bg.png@f9941 background: #aaff85; color: #000; color: #000;
  1166. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Mask.png@6c48a background: #aaff85; color: #000; color: #000;
  1167. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Mask.png@f9941 background: #aaff85; color: #000; color: #000;
  1168. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Return_Hall.png background: #aaff85; color: #000; color: #000;
  1169. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Title.png background: #aaff85; color: #000; color: #000;
  1170. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\组5@2x.png background: #aaff85; color: #000; color: #000;
  1171. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Relife.png@6c48a background: #aaff85; color: #000; color: #000;
  1172. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Return_Hall.png@6c48a background: #aaff85; color: #000; color: #000;
  1173. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Relife.png@f9941 background: #aaff85; color: #000; color: #000;
  1174. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Return_Hall.png@f9941 background: #aaff85; color: #000; color: #000;
  1175. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Ad_Logo.png background: #aaff85; color: #000; color: #000;
  1176. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  1177. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\组5@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1178. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg2.png background: #aaff85; color: #000; color: #000;
  1179. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg1.png background: #aaff85; color: #000; color: #000;
  1180. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  1181. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\失败\组5@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1182. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Ad_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1183. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Ad_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1184. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg3.png background: #aaff85; color: #000; color: #000;
  1185. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Coin_Logo.png background: #aaff85; color: #000; color: #000;
  1186. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg2.png@6c48a background: #aaff85; color: #000; color: #000;
  1187. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg1.png@6c48a background: #aaff85; color: #000; color: #000;
  1188. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Frame.png background: #aaff85; color: #000; color: #000;
  1189. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg2.png@f9941 background: #aaff85; color: #000; color: #000;
  1190. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg1.png@f9941 background: #aaff85; color: #000; color: #000;
  1191. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Coin_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1192. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Return_Hall.png background: #aaff85; color: #000; color: #000;
  1193. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg3.png@6c48a background: #aaff85; color: #000; color: #000;
  1194. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Next_Level.png background: #aaff85; color: #000; color: #000;
  1195. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Coin_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1196. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Btn_Bg3.png@f9941 background: #aaff85; color: #000; color: #000;
  1197. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Frame.png@6c48a background: #aaff85; color: #000; color: #000;
  1198. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Frame.png@f9941 background: #aaff85; color: #000; color: #000;
  1199. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Three.png background: #aaff85; color: #000; color: #000;
  1200. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Title.png background: #aaff85; color: #000; color: #000;
  1201. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Next_Level.png@6c48a background: #aaff85; color: #000; color: #000;
  1202. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Return_Hall.png@6c48a background: #aaff85; color: #000; color: #000;
  1203. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Win_Logo.png background: #aaff85; color: #000; color: #000;
  1204. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Next_Level.png@f9941 background: #aaff85; color: #000; color: #000;
  1205. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Return_Hall.png@f9941 background: #aaff85; color: #000; color: #000;
  1206. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Three.png@6c48a background: #aaff85; color: #000; color: #000;
  1207. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Eliminate.png background: #aaff85; color: #000; color: #000;
  1208. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Eliminate_Logo.png background: #aaff85; color: #000; color: #000;
  1209. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Title.png@6c48a background: #aaff85; color: #000; color: #000;
  1210. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Three.png@f9941 background: #aaff85; color: #000; color: #000;
  1211. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Title.png@f9941 background: #aaff85; color: #000; color: #000;
  1212. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Win_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1213. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\结算\成功\Win_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1214. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Empty.png background: #aaff85; color: #000; color: #000;
  1215. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Empty_Logo.png background: #aaff85; color: #000; color: #000;
  1216. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Eliminate.png@6c48a background: #aaff85; color: #000; color: #000;
  1217. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Eliminate_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1218. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Eliminate.png@f9941 background: #aaff85; color: #000; color: #000;
  1219. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Eliminate_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1220. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Shuffle.png background: #aaff85; color: #000; color: #000;
  1221. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Empty_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1222. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Empty.png@6c48a background: #aaff85; color: #000; color: #000;
  1223. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Empty_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1224. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Empty.png@f9941 background: #aaff85; color: #000; color: #000;
  1225. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Shuffle_Logo.png background: #aaff85; color: #000; color: #000;
  1226. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\1@2x.png background: #aaff85; color: #000; color: #000;
  1227. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Shuffle.png@6c48a background: #aaff85; color: #000; color: #000;
  1228. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Shuffle.png@f9941 background: #aaff85; color: #000; color: #000;
  1229. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\2@2x.png background: #aaff85; color: #000; color: #000;
  1230. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\3@2x.png background: #aaff85; color: #000; color: #000;
  1231. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\1@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1232. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Shuffle_Logo.png@6c48a background: #aaff85; color: #000; color: #000;
  1233. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\1@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1234. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\道具\Shuffle_Logo.png@f9941 background: #aaff85; color: #000; color: #000;
  1235. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\4@2x.png background: #aaff85; color: #000; color: #000;
  1236. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1237. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1238. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\5@2x.png background: #aaff85; color: #000; color: #000;
  1239. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1240. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\邀请好友@2x.png background: #aaff85; color: #000; color: #000;
  1241. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1242. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\4@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1243. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\4@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1244. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\邀请好友@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1245. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\邀请好友@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1246. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\5@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1247. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\邀请好友\邀请 补切\5@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1248. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语备用)\ui_qc_1.json background: #aaff85; color: #000; color: #000;
  1249. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语)\ui_qc.json background: #aaff85; color: #000; color: #000;
  1250. 2025-2-24 15:41:37-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_通关(词语)\ui_tg.json background: #aaff85; color: #000; color: #000;
  1251. 2025-2-24 15:41:37-log: UUID is initialized for "%s". D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语备用)\ui_qc_1.png
  1252. 2025-2-24 15:41:37-log: UUID is initialized for "%s". D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_清除(词语)\ui_qc.png
  1253. 2025-2-24 15:41:37-log: UUID is initialized for "%s". D:\CocosCreatorProject\idiom\idiom\assets\res\成语\ui_通关(词语)\ui_tg.png
  1254. 2025-2-24 15:41:37-debug: [Assets Memory track]: asset-db:worker-init: startup start:145.31MB, end 158.74MB, increase: 13.43MB
  1255. 2025-2-24 15:41:37-debug: lazy register asset handler *
  1256. 2025-2-24 15:41:37-debug: lazy register asset handler text
  1257. 2025-2-24 15:41:37-debug: lazy register asset handler directory
  1258. 2025-2-24 15:41:37-debug: lazy register asset handler spine-data
  1259. 2025-2-24 15:41:37-debug: lazy register asset handler json
  1260. 2025-2-24 15:41:37-debug: lazy register asset handler dragonbones
  1261. 2025-2-24 15:41:37-debug: lazy register asset handler dragonbones-atlas
  1262. 2025-2-24 15:41:37-debug: lazy register asset handler typescript
  1263. 2025-2-24 15:41:37-debug: lazy register asset handler scene
  1264. 2025-2-24 15:41:37-debug: lazy register asset handler javascript
  1265. 2025-2-24 15:41:37-debug: lazy register asset handler prefab
  1266. 2025-2-24 15:41:37-debug: lazy register asset handler terrain
  1267. 2025-2-24 15:41:37-debug: lazy register asset handler tiled-map
  1268. 2025-2-24 15:41:37-debug: lazy register asset handler sprite-frame
  1269. 2025-2-24 15:41:37-debug: lazy register asset handler sign-image
  1270. 2025-2-24 15:41:37-debug: lazy register asset handler alpha-image
  1271. 2025-2-24 15:41:37-debug: lazy register asset handler image
  1272. 2025-2-24 15:41:37-debug: lazy register asset handler texture
  1273. 2025-2-24 15:41:37-debug: lazy register asset handler buffer
  1274. 2025-2-24 15:41:37-debug: lazy register asset handler texture-cube
  1275. 2025-2-24 15:41:37-debug: lazy register asset handler render-texture
  1276. 2025-2-24 15:41:37-debug: lazy register asset handler texture-cube-face
  1277. 2025-2-24 15:41:37-debug: lazy register asset handler rt-sprite-frame
  1278. 2025-2-24 15:41:37-debug: lazy register asset handler erp-texture-cube
  1279. 2025-2-24 15:41:37-debug: lazy register asset handler gltf-animation
  1280. 2025-2-24 15:41:37-debug: lazy register asset handler gltf
  1281. 2025-2-24 15:41:37-debug: lazy register asset handler gltf-mesh
  1282. 2025-2-24 15:41:37-debug: lazy register asset handler gltf-skeleton
  1283. 2025-2-24 15:41:37-debug: lazy register asset handler gltf-scene
  1284. 2025-2-24 15:41:37-debug: lazy register asset handler gltf-embeded-image
  1285. 2025-2-24 15:41:37-debug: lazy register asset handler gltf-material
  1286. 2025-2-24 15:41:37-debug: lazy register asset handler material
  1287. 2025-2-24 15:41:37-debug: lazy register asset handler physics-material
  1288. 2025-2-24 15:41:37-debug: lazy register asset handler fbx
  1289. 2025-2-24 15:41:37-debug: lazy register asset handler effect
  1290. 2025-2-24 15:41:37-debug: lazy register asset handler effect-header
  1291. 2025-2-24 15:41:37-debug: lazy register asset handler animation-clip
  1292. 2025-2-24 15:41:37-debug: lazy register asset handler animation-graph
  1293. 2025-2-24 15:41:37-debug: lazy register asset handler animation-graph-variant
  1294. 2025-2-24 15:41:37-debug: lazy register asset handler ttf-font
  1295. 2025-2-24 15:41:37-debug: lazy register asset handler animation-mask
  1296. 2025-2-24 15:41:37-debug: lazy register asset handler audio-clip
  1297. 2025-2-24 15:41:37-debug: lazy register asset handler bitmap-font
  1298. 2025-2-24 15:41:37-debug: lazy register asset handler particle
  1299. 2025-2-24 15:41:37-debug: lazy register asset handler sprite-atlas
  1300. 2025-2-24 15:41:37-debug: lazy register asset handler auto-atlas
  1301. 2025-2-24 15:41:37-debug: lazy register asset handler label-atlas
  1302. 2025-2-24 15:41:37-debug: lazy register asset handler render-pipeline
  1303. 2025-2-24 15:41:37-debug: lazy register asset handler render-flow
  1304. 2025-2-24 15:41:37-debug: lazy register asset handler render-stage
  1305. 2025-2-24 15:41:37-debug: lazy register asset handler instantiation-material
  1306. 2025-2-24 15:41:37-debug: lazy register asset handler instantiation-mesh
  1307. 2025-2-24 15:41:37-debug: lazy register asset handler instantiation-skeleton
  1308. 2025-2-24 15:41:37-debug: lazy register asset handler instantiation-animation
  1309. 2025-2-24 15:41:37-debug: lazy register asset handler video-clip
  1310. 2025-2-24 15:41:37-debug: asset-db:worker-startup-database[assets] (17318ms)
  1311. 2025-2-24 15:41:37-debug: asset-db:start-database (17455ms)
  1312. 2025-2-24 15:41:37-debug: asset-db:ready (23613ms)
  1313. 2025-2-24 15:41:37-debug: init worker message success
  1314. 2025-2-24 15:41:37-debug: programming:execute-script (7ms)
  1315. 2025-2-24 15:41:38-debug: [Build Memory track]: builder:worker-init start:155.46MB, end 164.60MB, increase: 9.14MB
  1316. 2025-2-24 15:41:38-debug: builder:worker-init (457ms)
  1317. 2025-2-24 15:41:43-debug: Query all assets info in project
  1318. 2025-2-24 15:41:43-debug: init custom config: keepNodeUuid: false, useCache: true
  1319. 2025-2-24 15:41:43-debug: 查询 Asset Bundle start, progress: 0%
  1320. 2025-2-24 15:41:43-debug: // ---- build task 查询 Asset Bundle ----
  1321. 2025-2-24 15:41:43-debug: Number of all scenes: 3
  1322. 2025-2-24 15:41:43-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
  1323. 2025-2-24 15:41:43-debug: Number of all scripts: 131
  1324. 2025-2-24 15:41:43-debug: Number of other assets: 1285
  1325. 2025-2-24 15:41:43-debug: // ---- build task 查询 Asset Bundle ---- (15ms)
  1326. 2025-2-24 15:41:43-debug: run build task 查询 Asset Bundle success in 15 ms√, progress: 5%
  1327. 2025-2-24 15:41:43-debug: [Build Memory track]: 查询 Asset Bundle start:166.12MB, end 168.34MB, increase: 2.22MB
  1328. 2025-2-24 15:41:43-debug: 查询 Asset Bundle start, progress: 5%
  1329. 2025-2-24 15:41:43-debug: // ---- build task 查询 Asset Bundle ----
  1330. 2025-2-24 15:41:43-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1331. 2025-2-24 15:41:43-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  1332. 2025-2-24 15:41:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1333. 2025-2-24 15:41:43-debug: [Build Memory track]: 查询 Asset Bundle start:168.38MB, end 168.63MB, increase: 263.75KB
  1334. 2025-2-24 15:41:43-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1335. 2025-2-24 15:41:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1336. 2025-2-24 15:41:43-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  1337. 2025-2-24 15:41:43-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.67MB, end 168.70MB, increase: 31.14KB
  1338. 2025-2-24 15:41:43-debug: 填充脚本数据到 settings.json start, progress: 12%
  1339. 2025-2-24 15:41:43-debug: // ---- build task 填充脚本数据到 settings.json ----
  1340. 2025-2-24 15:41:43-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  1341. 2025-2-24 15:41:43-debug: [Build Memory track]: 填充脚本数据到 settings.json start:168.73MB, end 168.76MB, increase: 28.89KB
  1342. 2025-2-24 15:41:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1343. 2025-2-24 15:41:43-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  1344. 2025-2-24 15:41:43-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1345. 2025-2-24 15:41:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1346. 2025-2-24 15:41:43-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1347. 2025-2-24 15:41:43-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.79MB, end 168.94MB, increase: 151.03KB
  1348. 2025-2-24 15:41:49-debug: refresh db internal success
  1349. 2025-2-24 15:41:49-debug: refresh db assets success
  1350. 2025-2-24 15:41:49-debug: Run asset db hook engine-extends:afterRefresh ...
  1351. 2025-2-24 15:41:49-debug: Run asset db hook engine-extends:afterRefresh success!
  1352. 2025-2-24 15:41:49-debug: asset-db:refresh-all-database (441ms)
  1353. 2025-2-24 15:41:49-debug: asset-db-hook-engine-extends-afterRefresh (4ms)
  1354. 2025-2-24 15:41:49-debug: asset-db:worker-effect-data-processing (3ms)
  1355. 2025-2-24 15:41:52-debug: refresh db internal success
  1356. 2025-2-24 15:41:52-debug: refresh db assets success
  1357. 2025-2-24 15:41:52-debug: Run asset db hook engine-extends:afterRefresh ...
  1358. 2025-2-24 15:41:52-debug: Run asset db hook engine-extends:afterRefresh success!
  1359. 2025-2-24 15:41:52-debug: asset-db:refresh-all-database (298ms)
  1360. 2025-2-24 15:41:52-debug: asset-db:worker-effect-data-processing (2ms)
  1361. 2025-2-24 15:41:52-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  1362. 2025-2-24 15:41:54-debug: refresh db internal success
  1363. 2025-2-24 15:41:54-debug: refresh db assets success
  1364. 2025-2-24 15:41:54-debug: Run asset db hook engine-extends:afterRefresh success!
  1365. 2025-2-24 15:41:54-debug: Run asset db hook engine-extends:afterRefresh ...
  1366. 2025-2-24 15:41:54-debug: asset-db:refresh-all-database (119ms)
  1367. 2025-2-24 15:41:54-debug: asset-db:worker-effect-data-processing (1ms)
  1368. 2025-2-24 15:41:54-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1369. 2025-2-24 15:41:55-debug: refresh db internal success
  1370. 2025-2-24 15:41:55-debug: refresh db assets success
  1371. 2025-2-24 15:41:55-debug: Run asset db hook engine-extends:afterRefresh ...
  1372. 2025-2-24 15:41:55-debug: Run asset db hook engine-extends:afterRefresh success!
  1373. 2025-2-24 15:41:55-debug: asset-db:refresh-all-database (125ms)
  1374. 2025-2-24 15:41:55-debug: asset-db:worker-effect-data-processing (1ms)
  1375. 2025-2-24 15:41:55-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1376. 2025-2-24 15:41:56-debug: refresh db internal success
  1377. 2025-2-24 15:41:56-debug: Run asset db hook engine-extends:afterRefresh ...
  1378. 2025-2-24 15:41:56-debug: Run asset db hook engine-extends:afterRefresh success!
  1379. 2025-2-24 15:41:56-debug: refresh db assets success
  1380. 2025-2-24 15:41:56-debug: asset-db:refresh-all-database (109ms)
  1381. 2025-2-24 15:41:56-debug: asset-db:worker-effect-data-processing (2ms)
  1382. 2025-2-24 15:41:56-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1383. 2025-2-24 15:42:18-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\观看广告可立即获得1点体力!@2x.png background: #aaff85; color: #000; color: #000;
  1384. 2025-2-24 15:42:18-debug: %cReImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\观看广告可立即获得1点体力!@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1385. 2025-2-24 15:42:18-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\体力弹窗\观看广告可立即获得1点体力!@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1386. 2025-2-24 15:42:18-debug: asset-db:reimport-asset3e6b1821-d866-4e7b-8b62-979c3294f71b (20ms)
  1387. 2025-2-24 15:42:22-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\Life.prefab background: #aaff85; color: #000; color: #000;
  1388. 2025-2-24 15:42:22-debug: asset-db:reimport-asset140b0659-6a65-4f55-b8b1-be4ce0da4946 (29ms)
  1389. 2025-2-24 15:42:22-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\Life.prefab background: #aaff85; color: #000; color: #000;
  1390. 2025-2-24 15:42:22-debug: asset-db:reimport-asset140b0659-6a65-4f55-b8b1-be4ce0da4946 (17ms)
  1391. 2025-2-24 15:42:23-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\Life.prefab background: #aaff85; color: #000; color: #000;
  1392. 2025-2-24 15:42:23-debug: asset-db:reimport-asset140b0659-6a65-4f55-b8b1-be4ce0da4946 (26ms)
  1393. 2025-2-24 15:42:28-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\Life.prefab background: #aaff85; color: #000; color: #000;
  1394. 2025-2-24 15:42:28-debug: asset-db:reimport-asset140b0659-6a65-4f55-b8b1-be4ce0da4946 (11ms)
  1395. 2025-2-24 15:42:28-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\Life.prefab background: #aaff85; color: #000; color: #000;
  1396. 2025-2-24 15:42:28-debug: asset-db:reimport-asset140b0659-6a65-4f55-b8b1-be4ce0da4946 (16ms)
  1397. 2025-2-24 15:42:38-debug: refresh db internal success
  1398. 2025-2-24 15:42:38-debug: Run asset db hook engine-extends:afterRefresh ...
  1399. 2025-2-24 15:42:38-debug: Run asset db hook engine-extends:afterRefresh success!
  1400. 2025-2-24 15:42:38-debug: refresh db assets success
  1401. 2025-2-24 15:42:38-debug: asset-db:refresh-all-database (123ms)
  1402. 2025-2-24 15:42:38-debug: asset-db:worker-effect-data-processing (1ms)
  1403. 2025-2-24 15:42:38-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1404. 2025-2-24 15:42:40-debug: refresh db internal success
  1405. 2025-2-24 15:42:40-debug: refresh db assets success
  1406. 2025-2-24 15:42:40-debug: Run asset db hook engine-extends:afterRefresh ...
  1407. 2025-2-24 15:42:40-debug: Run asset db hook engine-extends:afterRefresh success!
  1408. 2025-2-24 15:42:40-debug: asset-db:refresh-all-database (116ms)
  1409. 2025-2-24 15:42:40-debug: asset-db:worker-effect-data-processing (1ms)
  1410. 2025-2-24 15:42:40-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1411. 2025-2-24 15:43:01-debug: refresh db internal success
  1412. 2025-2-24 15:43:01-debug: refresh db assets success
  1413. 2025-2-24 15:43:01-debug: Run asset db hook engine-extends:afterRefresh success!
  1414. 2025-2-24 15:43:01-debug: Run asset db hook engine-extends:afterRefresh ...
  1415. 2025-2-24 15:43:01-debug: asset-db:refresh-all-database (115ms)
  1416. 2025-2-24 15:43:01-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1417. 2025-2-24 15:43:06-debug: refresh db internal success
  1418. 2025-2-24 15:43:06-debug: refresh db assets success
  1419. 2025-2-24 15:43:06-debug: Run asset db hook engine-extends:afterRefresh ...
  1420. 2025-2-24 15:43:06-debug: Run asset db hook engine-extends:afterRefresh success!
  1421. 2025-2-24 15:43:06-debug: asset-db:refresh-all-database (143ms)
  1422. 2025-2-24 15:43:06-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1423. 2025-2-24 15:43:07-debug: refresh db internal success
  1424. 2025-2-24 15:43:07-debug: refresh db assets success
  1425. 2025-2-24 15:43:07-debug: Run asset db hook engine-extends:afterRefresh ...
  1426. 2025-2-24 15:43:07-debug: Run asset db hook engine-extends:afterRefresh success!
  1427. 2025-2-24 15:43:07-debug: asset-db:refresh-all-database (109ms)
  1428. 2025-2-24 15:43:07-debug: asset-db:worker-effect-data-processing (1ms)
  1429. 2025-2-24 15:43:07-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1430. 2025-2-24 15:43:30-debug: refresh db internal success
  1431. 2025-2-24 15:43:30-debug: Run asset db hook engine-extends:afterRefresh ...
  1432. 2025-2-24 15:43:30-debug: Run asset db hook engine-extends:afterRefresh success!
  1433. 2025-2-24 15:43:30-debug: refresh db assets success
  1434. 2025-2-24 15:43:30-debug: asset-db:refresh-all-database (122ms)
  1435. 2025-2-24 15:43:30-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1436. 2025-2-24 15:45:45-debug: refresh db internal success
  1437. 2025-2-24 15:45:45-debug: Run asset db hook engine-extends:afterRefresh ...
  1438. 2025-2-24 15:45:45-debug: Run asset db hook engine-extends:afterRefresh success!
  1439. 2025-2-24 15:45:45-debug: refresh db assets success
  1440. 2025-2-24 15:45:45-debug: asset-db:refresh-all-database (122ms)
  1441. 2025-2-24 15:45:45-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1442. 2025-2-24 15:45:45-debug: asset-db:worker-effect-data-processing (1ms)
  1443. 2025-2-24 15:46:58-debug: refresh db internal success
  1444. 2025-2-24 15:46:58-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Des.png background: #aaff85; color: #000; color: #000;
  1445. 2025-2-24 15:46:58-debug: %cReImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Des.png@6c48a background: #aaff85; color: #000; color: #000;
  1446. 2025-2-24 15:46:58-debug: %cReImport%c: D:\CocosCreatorProject\idiom\idiom\assets\res\提示\Des.png@f9941 background: #aaff85; color: #000; color: #000;
  1447. 2025-2-24 15:46:58-debug: refresh db assets success
  1448. 2025-2-24 15:46:58-debug: Run asset db hook engine-extends:afterRefresh ...
  1449. 2025-2-24 15:46:58-debug: Run asset db hook engine-extends:afterRefresh success!
  1450. 2025-2-24 15:46:58-debug: asset-db:refresh-all-database (148ms)
  1451. 2025-2-24 15:46:58-debug: asset-db:worker-effect-data-processing (2ms)
  1452. 2025-2-24 15:46:58-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1453. 2025-2-24 15:47:00-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Tips.prefab background: #aaff85; color: #000; color: #000;
  1454. 2025-2-24 15:47:00-debug: asset-db:reimport-assetf2ef5fd4-2fbc-4385-b044-63d4ab42cfca (13ms)
  1455. 2025-2-24 15:47:01-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Tips.prefab background: #aaff85; color: #000; color: #000;
  1456. 2025-2-24 15:47:01-debug: asset-db:reimport-assetf2ef5fd4-2fbc-4385-b044-63d4ab42cfca (19ms)
  1457. 2025-2-24 15:47:01-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Tips.prefab background: #aaff85; color: #000; color: #000;
  1458. 2025-2-24 15:47:01-debug: asset-db:reimport-assetf2ef5fd4-2fbc-4385-b044-63d4ab42cfca (13ms)
  1459. 2025-2-24 15:47:17-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  1460. 2025-2-24 15:48:53-debug: refresh db internal success
  1461. 2025-2-24 15:48:53-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\UI_Tips.ts background: #aaff85; color: #000; color: #000;
  1462. 2025-2-24 15:48:53-debug: Run asset db hook engine-extends:afterRefresh ...
  1463. 2025-2-24 15:48:53-debug: Run asset db hook engine-extends:afterRefresh success!
  1464. 2025-2-24 15:48:53-debug: refresh db assets success
  1465. 2025-2-24 15:48:53-debug: asset-db:refresh-all-database (376ms)
  1466. 2025-2-24 15:48:53-debug: asset-db:worker-effect-data-processing (3ms)
  1467. 2025-2-24 15:48:53-debug: asset-db-hook-engine-extends-afterRefresh (4ms)
  1468. 2025-2-24 15:48:54-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Tips.prefab background: #aaff85; color: #000; color: #000;
  1469. 2025-2-24 15:48:54-debug: asset-db:reimport-assetf2ef5fd4-2fbc-4385-b044-63d4ab42cfca (14ms)
  1470. 2025-2-24 15:48:55-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Tips.prefab background: #aaff85; color: #000; color: #000;
  1471. 2025-2-24 15:48:55-debug: asset-db:reimport-assetf2ef5fd4-2fbc-4385-b044-63d4ab42cfca (25ms)
  1472. 2025-2-24 15:50:17-debug: refresh db internal success
  1473. 2025-2-24 15:50:17-debug: refresh db assets success
  1474. 2025-2-24 15:50:17-debug: Run asset db hook engine-extends:afterRefresh ...
  1475. 2025-2-24 15:50:17-debug: Run asset db hook engine-extends:afterRefresh success!
  1476. 2025-2-24 15:50:17-debug: asset-db:refresh-all-database (416ms)
  1477. 2025-2-24 15:50:17-debug: asset-db:worker-effect-data-processing (1ms)
  1478. 2025-2-24 15:50:17-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  1479. 2025-2-24 15:50:18-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Tips.prefab background: #aaff85; color: #000; color: #000;
  1480. 2025-2-24 15:50:18-debug: asset-db:reimport-assetf2ef5fd4-2fbc-4385-b044-63d4ab42cfca (32ms)
  1481. 2025-2-24 15:50:18-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Tips\Tips.prefab background: #aaff85; color: #000; color: #000;
  1482. 2025-2-24 15:50:18-debug: asset-db:reimport-assetf2ef5fd4-2fbc-4385-b044-63d4ab42cfca (22ms)
  1483. 2025-2-24 15:50:22-debug: refresh db internal success
  1484. 2025-2-24 15:50:23-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Settings\UI_Settings.ts background: #aaff85; color: #000; color: #000;
  1485. 2025-2-24 15:50:23-debug: refresh db assets success
  1486. 2025-2-24 15:50:23-debug: Run asset db hook engine-extends:afterRefresh ...
  1487. 2025-2-24 15:50:23-debug: Run asset db hook engine-extends:afterRefresh success!
  1488. 2025-2-24 15:50:23-debug: asset-db:refresh-all-database (300ms)
  1489. 2025-2-24 15:50:23-debug: asset-db:worker-effect-data-processing (1ms)
  1490. 2025-2-24 15:50:23-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1491. 2025-2-24 15:50:24-debug: Query all assets info in project
  1492. 2025-2-24 15:50:24-debug: init custom config: keepNodeUuid: false, useCache: true
  1493. 2025-2-24 15:50:24-debug: 查询 Asset Bundle start, progress: 0%
  1494. 2025-2-24 15:50:24-debug: // ---- build task 查询 Asset Bundle ----
  1495. 2025-2-24 15:50:24-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
  1496. 2025-2-24 15:50:24-debug: Number of all scripts: 131
  1497. 2025-2-24 15:50:24-debug: Number of other assets: 1286
  1498. 2025-2-24 15:50:24-debug: Number of all scenes: 3
  1499. 2025-2-24 15:50:24-debug: run build task 查询 Asset Bundle success in 23 ms√, progress: 5%
  1500. 2025-2-24 15:50:24-debug: [Build Memory track]: 查询 Asset Bundle start:168.33MB, end 165.87MB, increase: -2516.59KB
  1501. 2025-2-24 15:50:24-debug: 查询 Asset Bundle start, progress: 5%
  1502. 2025-2-24 15:50:24-debug: // ---- build task 查询 Asset Bundle ---- (23ms)
  1503. 2025-2-24 15:50:24-debug: // ---- build task 查询 Asset Bundle ----
  1504. 2025-2-24 15:50:24-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  1505. 2025-2-24 15:50:24-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  1506. 2025-2-24 15:50:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1507. 2025-2-24 15:50:24-debug: [Build Memory track]: 查询 Asset Bundle start:165.90MB, end 166.16MB, increase: 264.37KB
  1508. 2025-2-24 15:50:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1509. 2025-2-24 15:50:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1510. 2025-2-24 15:50:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1511. 2025-2-24 15:50:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  1512. 2025-2-24 15:50:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  1513. 2025-2-24 15:50:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.20MB, end 166.23MB, increase: 31.04KB
  1514. 2025-2-24 15:50:24-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1515. 2025-2-24 15:50:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.26MB, end 166.28MB, increase: 19.45KB
  1516. 2025-2-24 15:50:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1517. 2025-2-24 15:50:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1518. 2025-2-24 15:50:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  1519. 2025-2-24 15:50:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  1520. 2025-2-24 15:50:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.31MB, end 166.45MB, increase: 140.55KB
  1521. 2025-2-24 15:51:05-debug: refresh db internal success
  1522. 2025-2-24 15:51:05-debug: refresh db assets success
  1523. 2025-2-24 15:51:05-debug: Run asset db hook engine-extends:afterRefresh ...
  1524. 2025-2-24 15:51:05-debug: Run asset db hook engine-extends:afterRefresh success!
  1525. 2025-2-24 15:51:05-debug: asset-db:refresh-all-database (118ms)
  1526. 2025-2-24 15:51:05-debug: asset-db:worker-effect-data-processing (1ms)
  1527. 2025-2-24 15:51:05-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1528. 2025-2-24 15:51:19-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\start\start.scene background: #aaff85; color: #000; color: #000;
  1529. 2025-2-24 15:51:19-debug: asset-db:reimport-asset155e7964-9abb-4942-be64-ececa65865a5 (15ms)
  1530. 2025-2-24 15:51:19-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\start\start.scene background: #aaff85; color: #000; color: #000;
  1531. 2025-2-24 15:51:19-debug: asset-db:reimport-asset155e7964-9abb-4942-be64-ececa65865a5 (23ms)
  1532. 2025-2-24 15:53:36-debug: refresh db internal success
  1533. 2025-2-24 15:53:36-debug: refresh db assets success
  1534. 2025-2-24 15:53:36-debug: Run asset db hook engine-extends:afterRefresh ...
  1535. 2025-2-24 15:53:36-debug: Run asset db hook engine-extends:afterRefresh success!
  1536. 2025-2-24 15:53:36-debug: asset-db:refresh-all-database (253ms)
  1537. 2025-2-24 15:53:36-debug: asset-db:worker-effect-data-processing (3ms)
  1538. 2025-2-24 15:53:36-debug: asset-db-hook-engine-extends-afterRefresh (4ms)
  1539. 2025-2-24 15:53:40-debug: Start record console... {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  1540. 2025-2-24 15:53:40-debug: =================================== build Task (wechatgame-001) Start ================================
  1541. 2025-2-24 15:53:40-debug: Build with Cocos Creator 3.8.4
  1542. 2025-2-24 15:53:40-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-001","taskName":"wechatgame-001","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":"wxc0fb4a435b39ab92","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[],"__version__":"3.0.7"}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-20 15-37.log"}
  1543. 2025-2-24 15:53:40-debug: // ---- build task cocos-service:onBeforeBuild ----
  1544. 2025-2-24 15:53:40-debug: cocos-service:(onBeforeBuild) start..., progress: 0%
  1545. 2025-2-24 15:53:40-debug: // ---- build task cocos-service:onBeforeBuild ---- (187ms)
  1546. 2025-2-24 15:53:40-debug: cocos-service:(onBeforeBuild) in 187 ms ✓, progress: 2%
  1547. 2025-2-24 15:53:40-debug: scene:(onBeforeBuild) start..., progress: 2%
  1548. 2025-2-24 15:53:40-debug: // ---- build task scene:onBeforeBuild ----
  1549. 2025-2-24 15:53:40-debug: // ---- build task scene:onBeforeBuild ---- (46ms)
  1550. 2025-2-24 15:53:40-debug: scene:(onBeforeBuild) in 46 ms ✓, progress: 4%
  1551. 2025-2-24 15:53:40-debug: Start lock asset db..., progress: 4%
  1552. 2025-2-24 15:53:40-debug: Query all assets info in project
  1553. 2025-2-24 15:53:40-log: Asset DB is paused with build!
  1554. 2025-2-24 15:53:40-debug: init custom config: keepNodeUuid: false, useCache: true
  1555. 2025-2-24 15:53:40-debug: wechatgame:(onAfterInit) start..., progress: 4%
  1556. 2025-2-24 15:53:40-debug: // ---- build task wechatgame:onAfterInit ----
  1557. 2025-2-24 15:53:40-debug: // ---- build task wechatgame:onAfterInit ---- (25ms)
  1558. 2025-2-24 15:53:40-debug: cocos-service:(onAfterInit) start..., progress: 5%
  1559. 2025-2-24 15:53:40-debug: // ---- build task cocos-service:onAfterInit ----
  1560. 2025-2-24 15:53:40-debug: wechatgame:(onAfterInit) in 25 ms ✓, progress: 5%
  1561. 2025-2-24 15:53:40-debug: // ---- build task cocos-service:onAfterInit ---- (126ms)
  1562. 2025-2-24 15:53:40-debug: cocos-service:(onAfterInit) in 126 ms ✓, progress: 7%
  1563. 2025-2-24 15:53:40-debug: engine:(onAfterInit) start..., progress: 7%
  1564. 2025-2-24 15:53:40-debug: // ---- build task engine:onAfterInit ----
  1565. 2025-2-24 15:53:40-debug: // ---- build task engine:onAfterInit ---- (56ms)
  1566. 2025-2-24 15:53:40-debug: engine:(onAfterInit) in 56 ms ✓, progress: 9%
  1567. 2025-2-24 15:53:40-debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
  1568. 2025-2-24 15:53:40-debug: // ---- build task wechatgame:onBeforeBundleInit ----
  1569. 2025-2-24 15:53:41-debug: // ---- build task wechatgame:onBeforeBundleInit ---- (61ms)
  1570. 2025-2-24 15:53:41-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
  1571. 2025-2-24 15:53:41-debug: wechatgame:(onBeforeBundleInit) in 61 ms ✓, progress: 9%
  1572. 2025-2-24 15:53:41-debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
  1573. 2025-2-24 15:53:41-debug: [adsense-h5g-plugin] remove script success
  1574. 2025-2-24 15:53:41-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (62ms)
  1575. 2025-2-24 15:53:41-debug: adsense-h5g-plugin:(onBeforeBundleInit) in 62 ms ✓, progress: 9%
  1576. 2025-2-24 15:53:41-debug: Init all bundles start..., progress: 9%
  1577. 2025-2-24 15:53:41-debug: // ---- build task 查询 Asset Bundle ----
  1578. 2025-2-24 15:53:41-debug: 查询 Asset Bundle start, progress: 9%
  1579. 2025-2-24 15:53:41-debug: Init bundle root assets start..., progress: 9%
  1580. 2025-2-24 15:53:41-debug: Num of bundles: 7..., progress: 9%
  1581. 2025-2-24 15:53: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
  1582. 2025-2-24 15:53:41-debug: Number of all scenes: 3
  1583. 2025-2-24 15:53:41-debug: Number of all scripts: 131
  1584. 2025-2-24 15:53:41-debug: Init bundle root assets success..., progress: 9%
  1585. 2025-2-24 15:53:41-debug: Number of other assets: 1286
  1586. 2025-2-24 15:53:41-debug: reload all scripts.
  1587. 2025-2-24 15:53:41-debug: Set detail map pack:///resolution-detail-map.json: {}
  1588. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js is not in module cache!
  1589. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
  1590. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
  1591. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
  1592. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
  1593. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
  1594. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
  1595. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
  1596. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
  1597. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
  1598. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
  1599. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
  1600. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
  1601. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
  1602. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
  1603. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
  1604. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
  1605. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
  1606. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
  1607. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
  1608. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
  1609. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
  1610. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
  1611. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
  1612. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
  1613. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
  1614. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
  1615. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
  1616. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
  1617. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
  1618. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
  1619. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
  1620. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
  1621. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
  1622. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
  1623. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
  1624. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
  1625. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
  1626. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
  1627. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
  1628. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
  1629. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
  1630. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
  1631. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
  1632. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
  1633. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
  1634. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
  1635. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
  1636. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
  1637. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
  1638. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
  1639. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
  1640. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
  1641. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
  1642. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
  1643. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
  1644. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
  1645. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
  1646. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
  1647. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
  1648. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
  1649. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
  1650. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
  1651. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
  1652. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
  1653. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  1654. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
  1655. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
  1656. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  1657. 2025-2-24 15:53:41-debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
  1658. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
  1659. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  1660. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js is not in module cache!
  1661. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js is not in module cache!
  1662. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js is not in module cache!
  1663. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
  1664. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
  1665. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
  1666. 2025-2-24 15:53:41-debug: [[Executor]] Register BuiltinPipelineSettings
  1667. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
  1668. 2025-2-24 15:53:41-debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
  1669. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js is not in module cache!
  1670. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
  1671. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js is not in module cache!
  1672. 2025-2-24 15:53:41-debug: [[Executor]] Register DebugViewRuntimeControl
  1673. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
  1674. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6aa04b19cfb582fca0992df5e4d4e67636b30121.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6aa04b19cfb582fca0992df5e4d4e67636b30121.js is not in module cache!
  1675. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js" loaded.
  1676. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\94\945ac74f8c3c871933f6eda65eb681e3a53a4a83.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\94\945ac74f8c3c871933f6eda65eb681e3a53a4a83.js is not in module cache!
  1677. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js" loaded.
  1678. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bad28bffa646dcfff5a23f9834cca36b11873342.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bad28bffa646dcfff5a23f9834cca36b11873342.js is not in module cache!
  1679. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js" loaded.
  1680. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\0c\0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\0c\0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js is not in module cache!
  1681. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\1e\1ef5647f2944b5e522f1485cc1712d149bfa46b1.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\1e\1ef5647f2944b5e522f1485cc1712d149bfa46b1.js is not in module cache!
  1682. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6e\6ee779fa57034073575d732772a2318605961a83.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6e\6ee779fa57034073575d732772a2318605961a83.js is not in module cache!
  1683. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\0f\0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\0f\0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js is not in module cache!
  1684. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f6\f687455aedddf067eb0ca8a425c91c7904bff61a.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f6\f687455aedddf067eb0ca8a425c91c7904bff61a.js is not in module cache!
  1685. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\25\258ef086e9da490ac24335c87b1f800202f98b70.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\25\258ef086e9da490ac24335c87b1f800202f98b70.js is not in module cache!
  1686. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d2\d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d2\d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js is not in module cache!
  1687. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\9a\9abeafe9347e2a5a1b4f98c437cea60863704cf7.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\9a\9abeafe9347e2a5a1b4f98c437cea60863704cf7.js is not in module cache!
  1688. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69001950ab04bd0e0c6c8a8eb223c81a706f2092.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69001950ab04bd0e0c6c8a8eb223c81a706f2092.js is not in module cache!
  1689. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js" loaded.
  1690. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\79\792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\79\792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js is not in module cache!
  1691. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js" loaded.
  1692. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js" loaded.
  1693. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js" loaded.
  1694. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js" loaded.
  1695. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js" loaded.
  1696. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js" loaded.
  1697. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js" loaded.
  1698. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js" loaded.
  1699. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js" loaded.
  1700. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\49\4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\49\4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js is not in module cache!
  1701. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js" loaded.
  1702. 2025-2-24 15:53:41-debug: [[Executor]] Register ch_sdk_comp
  1703. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\b8\b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\b8\b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js is not in module cache!
  1704. 2025-2-24 15:53:41-debug: [[Executor]] Register ch_start_pack
  1705. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js" loaded.
  1706. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\4c\4c6088262402756eb61f5e90671b828ee8156992.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\4c\4c6088262402756eb61f5e90671b828ee8156992.js is not in module cache!
  1707. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caa4cca48cf8f38a7846504dfe5d907807f05708.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caa4cca48cf8f38a7846504dfe5d907807f05708.js is not in module cache!
  1708. 2025-2-24 15:53:41-debug: [[Executor]] Register __NodeEventAgent__
  1709. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\13\13287da69274d3aebe39f7d6d0d0afea232310d7.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\13\13287da69274d3aebe39f7d6d0d0afea232310d7.js is not in module cache!
  1710. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js" loaded.
  1711. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js" loaded.
  1712. 2025-2-24 15:53:41-debug: [[Executor]] Register ResolutionAutoFit
  1713. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js" loaded.
  1714. 2025-2-24 15:53:41-debug: [[Executor]] Register ui_updater
  1715. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js" loaded.
  1716. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\be\beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\be\beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js is not in module cache!
  1717. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ec\ec5620c2e6fee8a6f870bfbd9767f24dce459556.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ec\ec5620c2e6fee8a6f870bfbd9767f24dce459556.js is not in module cache!
  1718. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js" loaded.
  1719. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\12\12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\12\12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js is not in module cache!
  1720. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js" loaded.
  1721. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a2\a2580489bd20abaa15763b7e4a27d901f1b0d64a.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a2\a2580489bd20abaa15763b7e4a27d901f1b0d64a.js is not in module cache!
  1722. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js" loaded.
  1723. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\00\00e2a5a750cc5b4b77f93453236557ea301bb25e.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\00\00e2a5a750cc5b4b77f93453236557ea301bb25e.js is not in module cache!
  1724. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js" loaded.
  1725. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3979f88d11623919d9932640638c6b129d4eab9f.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3979f88d11623919d9932640638c6b129d4eab9f.js is not in module cache!
  1726. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js" loaded.
  1727. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\05\058b201217221d5f88e19b4d1b5b1554c93c5c59.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\05\058b201217221d5f88e19b4d1b5b1554c93c5c59.js is not in module cache!
  1728. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js" loaded.
  1729. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a4035f47bc518dcefdada34e0518c46cd0c803ce.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a4035f47bc518dcefdada34e0518c46cd0c803ce.js is not in module cache!
  1730. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js" loaded.
  1731. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ce\ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ce\ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js is not in module cache!
  1732. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js" loaded.
  1733. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\32\324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\32\324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js is not in module cache!
  1734. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js" loaded.
  1735. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d65ace0516efd2d6ff531520884b984f949558d.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d65ace0516efd2d6ff531520884b984f949558d.js is not in module cache!
  1736. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js" loaded.
  1737. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ce\ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ce\ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js is not in module cache!
  1738. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js" loaded.
  1739. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34658dd649d651f32ca65cf8f93206c3f19a5bfd.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34658dd649d651f32ca65cf8f93206c3f19a5bfd.js is not in module cache!
  1740. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js" loaded.
  1741. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\45\451509232285586c94fbb42f4ba0dfaf924d8f86.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\45\451509232285586c94fbb42f4ba0dfaf924d8f86.js is not in module cache!
  1742. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js" loaded.
  1743. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js" loaded.
  1744. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\3b\3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\3b\3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js is not in module cache!
  1745. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99003ba9e047eb187e8592862603d246772ce879.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99003ba9e047eb187e8592862603d246772ce879.js is not in module cache!
  1746. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js" loaded.
  1747. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\60\60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\60\60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js is not in module cache!
  1748. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js" loaded.
  1749. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ac\ac8f28c70764b8ffa1e14212685b9c61f3354b97.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ac\ac8f28c70764b8ffa1e14212685b9c61f3354b97.js is not in module cache!
  1750. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\7f\7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\7f\7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js is not in module cache!
  1751. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js" loaded.
  1752. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js" loaded.
  1753. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js is not in module cache!
  1754. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js" loaded.
  1755. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js" loaded.
  1756. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8a\8a70b8dc94d378ff20528ac810c7a0e513a94128.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8a\8a70b8dc94d378ff20528ac810c7a0e513a94128.js is not in module cache!
  1757. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\de\de8069ae2816547a5fbd7c10e8aa0376a192be11.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\de\de8069ae2816547a5fbd7c10e8aa0376a192be11.js is not in module cache!
  1758. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js" loaded.
  1759. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js is not in module cache!
  1760. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js" loaded.
  1761. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a44b01c154a34812e44007dd63a213a4b1a20db4.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a44b01c154a34812e44007dd63a213a4b1a20db4.js is not in module cache!
  1762. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js" loaded.
  1763. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09150aabc12199b9096239af328644e4d61e7aba.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09150aabc12199b9096239af328644e4d61e7aba.js is not in module cache!
  1764. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js" loaded.
  1765. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ad\ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ad\ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js is not in module cache!
  1766. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js" loaded.
  1767. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ea\eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ea\eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js is not in module cache!
  1768. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js" loaded.
  1769. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\43\43279b533a6131255cceabc61de6a306ee602b05.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\43\43279b533a6131255cceabc61de6a306ee602b05.js is not in module cache!
  1770. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js" loaded.
  1771. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js is not in module cache!
  1772. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js" loaded.
  1773. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\89\898f718398f0e219bbe6d3fd146705a353eb6e98.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\89\898f718398f0e219bbe6d3fd146705a353eb6e98.js is not in module cache!
  1774. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js" loaded.
  1775. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js" loaded.
  1776. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js is not in module cache!
  1777. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\00\00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\00\00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js is not in module cache!
  1778. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js" loaded.
  1779. 2025-2-24 15:53:41-debug: [[Executor]] Register ClickPenetrate
  1780. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\3d\3dae6925eca2466088361501ca86cf5431069ed6.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\3d\3dae6925eca2466088361501ca86cf5431069ed6.js is not in module cache!
  1781. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js" loaded.
  1782. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d9\d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d9\d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js is not in module cache!
  1783. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e4\e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e4\e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js is not in module cache!
  1784. 2025-2-24 15:53:41-debug: [[Executor]] Register List
  1785. 2025-2-24 15:53:41-debug: [[Executor]] Register ListItem
  1786. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js" loaded.
  1787. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js" loaded.
  1788. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\62\62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\62\62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js is not in module cache!
  1789. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js" loaded.
  1790. 2025-2-24 15:53:41-debug: [[Executor]] Register MotionTrail
  1791. 2025-2-24 15:53:41-warn: 'MotionTrail.color' hides inherited property 'cc.UIRenderer.color'. To make the current property override that implementation, add the `override: true` attribute please.
  1792. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9ddc04c9c420894f158794323a6833f57121072e.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9ddc04c9c420894f158794323a6833f57121072e.js is not in module cache!
  1793. 2025-2-24 15:53:41-debug: [[Executor]] Register MovieClip
  1794. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js" loaded.
  1795. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\10\10529c2f40445bf2a3b9cf468590ba156c9b7a93.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\10\10529c2f40445bf2a3b9cf468590ba156c9b7a93.js is not in module cache!
  1796. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js" loaded.
  1797. 2025-2-24 15:53:41-debug: [[Executor]] Register RewardFly
  1798. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\16\16a9dbede69fd464f71a4628d82eeac748bc51d9.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\16\16a9dbede69fd464f71a4628d82eeac748bc51d9.js is not in module cache!
  1799. 2025-2-24 15:53:41-debug: [[Executor]] Register SpineView
  1800. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js" loaded.
  1801. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js is not in module cache!
  1802. 2025-2-24 15:53:41-debug: [[Executor]] Register UISpineMovie
  1803. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js" loaded.
  1804. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\be\be5e2d51a3bde22471f973be93e8d7565094f751.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\be\be5e2d51a3bde22471f973be93e8d7565094f751.js is not in module cache!
  1805. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js" loaded.
  1806. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_UIAlert
  1807. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js is not in module cache!
  1808. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\55\55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\55\55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js is not in module cache!
  1809. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js" loaded.
  1810. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js" loaded.
  1811. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a9\a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a9\a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js is not in module cache!
  1812. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_UI_Notify
  1813. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js" loaded.
  1814. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js is not in module cache!
  1815. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js" loaded.
  1816. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\71\710e82289bbe47b3b16f400464aad1a3e9d10b0e.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\71\710e82289bbe47b3b16f400464aad1a3e9d10b0e.js is not in module cache!
  1817. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_UIWaiting
  1818. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js" loaded.
  1819. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\12\126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\12\126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js is not in module cache!
  1820. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js" loaded.
  1821. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\42\425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\42\425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js is not in module cache!
  1822. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js" loaded.
  1823. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\1f\1f8bc3a5637acade0f9735232188cc7061cfd18c.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\1f\1f8bc3a5637acade0f9735232188cc7061cfd18c.js is not in module cache!
  1824. 2025-2-24 15:53:41-debug: [[Executor]] Register table_idiom
  1825. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js" loaded.
  1826. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8db0dd8734183da6e9cc660f88adabcf8bca08c.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8db0dd8734183da6e9cc660f88adabcf8bca08c.js is not in module cache!
  1827. 2025-2-24 15:53:41-debug: [[Executor]] Register table_idiom_order
  1828. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js" loaded.
  1829. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\b4\b49755f027b6a9079d5f532bba0e15354186e63d.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\b4\b49755f027b6a9079d5f532bba0e15354186e63d.js is not in module cache!
  1830. 2025-2-24 15:53:41-debug: [[Executor]] Register table_idiom_unorder_1_3
  1831. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js" loaded.
  1832. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e065000bff4262cff90bb92546f33d8bfd44a98f.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e065000bff4262cff90bb92546f33d8bfd44a98f.js is not in module cache!
  1833. 2025-2-24 15:53:41-debug: [[Executor]] Register table_idiom_unorder_2_2
  1834. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js" loaded.
  1835. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f7292ba665b406fbb5398fcd7c012af306a5471.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f7292ba665b406fbb5398fcd7c012af306a5471.js is not in module cache!
  1836. 2025-2-24 15:53:41-debug: [[Executor]] Register table_idiom_unorder_3_1
  1837. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js" loaded.
  1838. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47107438bc38650a6044647825cac4881f33830d.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47107438bc38650a6044647825cac4881f33830d.js is not in module cache!
  1839. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js" loaded.
  1840. 2025-2-24 15:53:41-debug: [[Executor]] Register table_level
  1841. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\02\02ff8df67649859da6460432a3a96e35e4c84e48.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\02\02ff8df67649859da6460432a3a96e35e4c84e48.js is not in module cache!
  1842. 2025-2-24 15:53:41-debug: [[Executor]] Register table_level_2
  1843. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js" loaded.
  1844. 2025-2-24 15:53:41-debug: [[Executor]] Register table_store
  1845. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ce\ce08a2c145ce490b39657c4e3413a36cab82fd0d.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ce\ce08a2c145ce490b39657c4e3413a36cab82fd0d.js is not in module cache!
  1846. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js" loaded.
  1847. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\45\4542188466ed48edaf14d9b112432a32979870a1.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\45\4542188466ed48edaf14d9b112432a32979870a1.js is not in module cache!
  1848. 2025-2-24 15:53:41-debug: [[Executor]] Register table_task
  1849. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js" loaded.
  1850. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js is not in module cache!
  1851. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8a\8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8a\8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js is not in module cache!
  1852. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e1f568134c0faddb479bb9b5626087b79114fb9.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e1f568134c0faddb479bb9b5626087b79114fb9.js is not in module cache!
  1853. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ae\ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ae\ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js is not in module cache!
  1854. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\61\6158a2d0f390f8a87809ca16670d8e228a227fb2.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\61\6158a2d0f390f8a87809ca16670d8e228a227fb2.js is not in module cache!
  1855. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ac695c448e125565ccc2f22e469cda22e7796cb.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ac695c448e125565ccc2f22e469cda22e7796cb.js is not in module cache!
  1856. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\02\02f5297fcc41071d17751cff5a19d466284385ac.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\02\02f5297fcc41071d17751cff5a19d466284385ac.js is not in module cache!
  1857. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c6\c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c6\c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js is not in module cache!
  1858. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8d\8dda8d3885eabf4ac3ab9b98d12694798a8db102.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8d\8dda8d3885eabf4ac3ab9b98d12694798a8db102.js is not in module cache!
  1859. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c8\c825815e9958ea21bfb8b896c19adfc948001103.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c8\c825815e9958ea21bfb8b896c19adfc948001103.js is not in module cache!
  1860. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f4\f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f4\f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js is not in module cache!
  1861. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9bc66ec71eb320c47f918de3696d0de59ce66b13.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9bc66ec71eb320c47f918de3696d0de59ce66b13.js is not in module cache!
  1862. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c6\c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c6\c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js is not in module cache!
  1863. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8d\8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8d\8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js is not in module cache!
  1864. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\11\11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\11\11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js is not in module cache!
  1865. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\88\887374b08ccba2db713a1f0d401bcdad80fc4ebd.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\88\887374b08ccba2db713a1f0d401bcdad80fc4ebd.js is not in module cache!
  1866. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\83\83135c5eb3a57e76937745d929319e01da0e6d42.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\83\83135c5eb3a57e76937745d929319e01da0e6d42.js is not in module cache!
  1867. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f3\f36e37712faa9def6810633ff88929eb6e7d92fd.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f3\f36e37712faa9def6810633ff88929eb6e7d92fd.js is not in module cache!
  1868. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\00\00fc3d706ca727d34035236ee1515ae342831e03.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\00\00fc3d706ca727d34035236ee1515ae342831e03.js is not in module cache!
  1869. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67e301a594accb5528d8dbfee5d8bdad010dbc8f.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67e301a594accb5528d8dbfee5d8bdad010dbc8f.js is not in module cache!
  1870. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e3\e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e3\e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js is not in module cache!
  1871. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js is not in module cache!
  1872. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72b62451398272ab27094a680c58eab464b0f7c5.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72b62451398272ab27094a680c58eab464b0f7c5.js is not in module cache!
  1873. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js is not in module cache!
  1874. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\32\32e8f686061e0af985c4e3975251d8a89b1e73a5.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\32\32e8f686061e0af985c4e3975251d8a89b1e73a5.js is not in module cache!
  1875. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\89\897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\89\897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js is not in module cache!
  1876. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\77\777503fccc6d3af32b9207402adf0d83f6410900.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\77\777503fccc6d3af32b9207402adf0d83f6410900.js is not in module cache!
  1877. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8b\8b9a9a6b5149cbd401143db67d0c2f450e728971.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8b\8b9a9a6b5149cbd401143db67d0c2f450e728971.js is not in module cache!
  1878. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38500b8b6d70ee455b2a86786491e62dd5e5af09.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38500b8b6d70ee455b2a86786491e62dd5e5af09.js is not in module cache!
  1879. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\58\58fc29196b91f1459c34b29a9ba5265f1e9917b5.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\58\58fc29196b91f1459c34b29a9ba5265f1e9917b5.js is not in module cache!
  1880. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3f183bcdbce9a44698cf3b2952e873da314efa.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3f183bcdbce9a44698cf3b2952e873da314efa.js is not in module cache!
  1881. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ad\ad3dca31db8fd4032fc0318333149c6c27563bee.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ad\ad3dca31db8fd4032fc0318333149c6c27563bee.js is not in module cache!
  1882. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\36\36557f41123735295cd2917b3e23be218d71a6f7.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\36\36557f41123735295cd2917b3e23be218d71a6f7.js is not in module cache!
  1883. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\00\005c4f73ad505c8533f47e3bf262968f544b3c29.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\00\005c4f73ad505c8533f47e3bf262968f544b3c29.js is not in module cache!
  1884. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\b8\b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\b8\b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js is not in module cache!
  1885. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\74\742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\74\742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js is not in module cache!
  1886. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\51\51a2fc9baf5dbcb91158148773a20e6ed06617ea.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\51\51a2fc9baf5dbcb91158148773a20e6ed06617ea.js is not in module cache!
  1887. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e1\e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e1\e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js is not in module cache!
  1888. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\67\677a1a0214bd517782a919e898d49c8d602eda93.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\67\677a1a0214bd517782a919e898d49c8d602eda93.js is not in module cache!
  1889. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\fc\fcebba71e3c0042b083b6e5690f4af3ef60fe029.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\fc\fcebba71e3c0042b083b6e5690f4af3ef60fe029.js is not in module cache!
  1890. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\57\577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\57\577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js is not in module cache!
  1891. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\18\188c9c90c9ccb0ddf33cf4202163212973d27824.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\18\188c9c90c9ccb0ddf33cf4202163212973d27824.js is not in module cache!
  1892. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2f\2f9b27c1c029e66af9324c3f79002703294dd6ca.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2f\2f9b27c1c029e66af9324c3f79002703294dd6ca.js is not in module cache!
  1893. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js is not in module cache!
  1894. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a2\a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\a2\a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js is not in module cache!
  1895. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d0\d02a4db18b44c0a5a905a8da4cd0296fd426a944.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\d0\d02a4db18b44c0a5a905a8da4cd0296fd426a944.js is not in module cache!
  1896. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09dcbd2748fdaf399a39a7fcf727757b78945c97.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09dcbd2748fdaf399a39a7fcf727757b78945c97.js is not in module cache!
  1897. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js is not in module cache!
  1898. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_GameRules
  1899. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js" loaded.
  1900. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_GameRules
  1901. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Idiom
  1902. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js" loaded.
  1903. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js" loaded.
  1904. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js" loaded.
  1905. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js" loaded.
  1906. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Idioms
  1907. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Idioms
  1908. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Settings
  1909. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js" loaded.
  1910. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Hall
  1911. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js" loaded.
  1912. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Tips
  1913. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js" loaded.
  1914. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js" loaded.
  1915. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Head_Icon
  1916. 2025-2-24 15:53:41-debug: [[Executor]] Register Hall
  1917. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js" loaded.
  1918. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js" loaded.
  1919. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Rank_Item
  1920. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js" loaded.
  1921. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Rank
  1922. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Rank
  1923. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js" loaded.
  1924. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js" loaded.
  1925. 2025-2-24 15:53:41-warn: The type of "Sign_Reward.num" must be CCFloat or CCInteger, not Number.
  1926. 2025-2-24 15:53:41-warn: The type of "Sign_Reward.type" must be CCFloat or CCInteger, not Number.
  1927. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Sign
  1928. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js" loaded.
  1929. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js" loaded.
  1930. 2025-2-24 15:53:41-debug: [[Executor]] Register Sign_Reward
  1931. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js" loaded.
  1932. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Invite
  1933. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Sign
  1934. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Invite
  1935. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js" loaded.
  1936. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js" loaded.
  1937. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js" loaded.
  1938. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Store
  1939. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Store
  1940. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js" loaded.
  1941. 2025-2-24 15:53:41-debug: [[Executor]] Register Start
  1942. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_SideBar
  1943. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js" loaded.
  1944. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js" loaded.
  1945. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_SideBar
  1946. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js" loaded.
  1947. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js" loaded.
  1948. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js" loaded.
  1949. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Task_Item
  1950. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Task
  1951. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Task
  1952. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js" loaded.
  1953. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Life
  1954. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js" loaded.
  1955. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js" loaded.
  1956. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js" loaded.
  1957. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Tips
  1958. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Hall
  1959. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Life
  1960. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js" loaded.
  1961. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Settings
  1962. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js" loaded.
  1963. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Win
  1964. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js" loaded.
  1965. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js" loaded.
  1966. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Main
  1967. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Win
  1968. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js" loaded.
  1969. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js" loaded.
  1970. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_TimesOver
  1971. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Fail
  1972. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js" loaded.
  1973. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_TimesOver
  1974. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js" loaded.
  1975. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Main
  1976. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js" loaded.
  1977. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js" loaded.
  1978. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Fail
  1979. 2025-2-24 15:53:41-debug: [[Executor]] Register CreateIdiom
  1980. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js" loaded.
  1981. 2025-2-24 15:53:41-debug: [[Executor]] Register Cube_Infor
  1982. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js" loaded.
  1983. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_LatticeFull
  1984. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js" loaded.
  1985. 2025-2-24 15:53:41-debug: [[Executor]] Register Layout_Lock
  1986. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_LatticeFull
  1987. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js" loaded.
  1988. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js" loaded.
  1989. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js" loaded.
  1990. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Lock
  1991. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js" loaded.
  1992. 2025-2-24 15:53:41-debug: [[Executor]] Register Container_Manager
  1993. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js" loaded.
  1994. 2025-2-24 15:53:41-debug: [[Executor]] Register GameCtl
  1995. 2025-2-24 15:53:41-debug: [[Executor]] Register Hall_Root
  1996. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\82\8259c3d0f118898d99cd54f5dd6755fc97e76406.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\82\8259c3d0f118898d99cd54f5dd6755fc97e76406.js is not in module cache!
  1997. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js" loaded.
  1998. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\55\553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\55\553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js is not in module cache!
  1999. 2025-2-24 15:53:41-debug: [[Executor]] Register UI_Item
  2000. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js" loaded.
  2001. 2025-2-24 15:53:41-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e55803fdad4509157e93866295c97e2478236978.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e55803fdad4509157e93866295c97e2478236978.js is not in module cache!
  2002. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js" loaded.
  2003. 2025-2-24 15:53:41-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  2004. 2025-2-24 15:53:41-debug: Init bundle share assets start..., progress: 9%
  2005. 2025-2-24 15:53:41-debug: Incremental keys: chSdk,chsdk
  2006. 2025-2-24 15:53:41-debug: Init bundle share assets success..., progress: 9%
  2007. 2025-2-24 15:53:41-debug: handle json group in bundle internal
  2008. 2025-2-24 15:53:41-debug: handle json group in bundle internal success
  2009. 2025-2-24 15:53:41-debug: handle json group in bundle start-scene
  2010. 2025-2-24 15:53:41-debug: handle json group in bundle start-scene success
  2011. 2025-2-24 15:53:41-debug: handle json group in bundle resources
  2012. 2025-2-24 15:53:41-debug: handle json group in bundle module_extra
  2013. 2025-2-24 15:53:41-debug: handle json group in bundle module_basic
  2014. 2025-2-24 15:53:41-debug: handle json group in bundle main
  2015. 2025-2-24 15:53:41-debug: handle json group in bundle main success
  2016. 2025-2-24 15:53:41-debug: init image compress task 0 in bundle start-scene
  2017. 2025-2-24 15:53:41-debug: init image compress task 0 in bundle internal
  2018. 2025-2-24 15:53:41-debug: handle json group in bundle resources success
  2019. 2025-2-24 15:53:41-debug: handle json group in bundle module_game
  2020. 2025-2-24 15:53:41-debug: init image compress task 0 in bundle main
  2021. 2025-2-24 15:53:41-debug: init image compress task 0 in bundle resources
  2022. 2025-2-24 15:53:41-debug: handle json group in bundle module_extra success
  2023. 2025-2-24 15:53:41-debug: init image compress task 0 in bundle module_basic
  2024. 2025-2-24 15:53:41-debug: handle json group in bundle module_game success
  2025. 2025-2-24 15:53:41-debug: init image compress task 0 in bundle module_extra
  2026. 2025-2-24 15:53:41-debug: init image compress task 0 in bundle module_game
  2027. 2025-2-24 15:53:41-debug: handle json group in bundle module_basic success
  2028. 2025-2-24 15:53:41-debug: // ---- build task 查询 Asset Bundle ---- (649ms)
  2029. 2025-2-24 15:53:41-debug: run build task 查询 Asset Bundle success in 649 ms√, progress: 14%
  2030. 2025-2-24 15:53:41-debug: [Build Memory track]: 查询 Asset Bundle start:173.79MB, end 201.69MB, increase: 27.90MB
  2031. 2025-2-24 15:53:41-debug: 查询 Asset Bundle start, progress: 14%
  2032. 2025-2-24 15:53:41-debug: // ---- build task 查询 Asset Bundle ----
  2033. 2025-2-24 15:53:41-debug: // ---- build task 查询 Asset Bundle ---- (96ms)
  2034. 2025-2-24 15:53:41-debug: run build task 查询 Asset Bundle success in 96 ms√, progress: 19%
  2035. 2025-2-24 15:53:41-debug: [Build Memory track]: 查询 Asset Bundle start:201.73MB, end 202.08MB, increase: 356.99KB
  2036. 2025-2-24 15:53:41-debug: 打包脚本 start, progress: 19%
  2037. 2025-2-24 15:53:41-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  2038. 2025-2-24 15:53:41-debug: // ---- build task 打包脚本 ----
  2039. 2025-2-24 15:53:42-log: [build-script]enter sub process 21148, 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
  2040. 2025-2-24 15:53:45-debug: excute-script over with build-script 3517ms
  2041. 2025-2-24 15:53:45-debug: Generate systemJs..., progress: 19%
  2042. 2025-2-24 15:53:45-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  2043. 2025-2-24 15:53:47-debug: excute-script over with build-script 2333ms
  2044. 2025-2-24 15:53:47-debug: 构建项目脚本 start..., progress: 19%
  2045. 2025-2-24 15:53:47-debug: Build script in bundle start, progress: 19%
  2046. 2025-2-24 15:53:47-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  2047. 2025-2-24 15:53:52-log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
  2048. 2025-2-24 15:53:52-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts
  2049. 2025-2-24 15:53:52-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts
  2050. 2025-2-24 15:53:54-debug: Query all assets info in project
  2051. 2025-2-24 15:53:54-debug: init custom config: keepNodeUuid: false, useCache: true
  2052. 2025-2-24 15:53:54-debug: 查询 Asset Bundle start, progress: 0%
  2053. 2025-2-24 15:53:54-debug: // ---- build task 查询 Asset Bundle ----
  2054. 2025-2-24 15:53:54-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
  2055. 2025-2-24 15:53:54-debug: Number of all scenes: 3
  2056. 2025-2-24 15:53:54-debug: Number of all scripts: 131
  2057. 2025-2-24 15:53:54-debug: Number of other assets: 1286
  2058. 2025-2-24 15:53:54-debug: [Build Memory track]: 查询 Asset Bundle start:196.94MB, end 197.57MB, increase: 643.04KB
  2059. 2025-2-24 15:53:54-debug: run build task 查询 Asset Bundle success in 52 ms√, progress: 5%
  2060. 2025-2-24 15:53:54-debug: // ---- build task 查询 Asset Bundle ---- (52ms)
  2061. 2025-2-24 15:53:54-debug: 查询 Asset Bundle start, progress: 5%
  2062. 2025-2-24 15:53:54-debug: // ---- build task 查询 Asset Bundle ----
  2063. 2025-2-24 15:53:54-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  2064. 2025-2-24 15:53:54-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 10%
  2065. 2025-2-24 15:53:54-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2066. 2025-2-24 15:53:54-debug: [Build Memory track]: 查询 Asset Bundle start:197.60MB, end 197.87MB, increase: 269.75KB
  2067. 2025-2-24 15:53:54-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2068. 2025-2-24 15:53:54-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2069. 2025-2-24 15:53:54-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2070. 2025-2-24 15:53:54-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:197.90MB, end 197.93MB, increase: 33.02KB
  2071. 2025-2-24 15:53:54-debug: // ---- build task 填充脚本数据到 settings.json ----
  2072. 2025-2-24 15:53:54-debug: 填充脚本数据到 settings.json start, progress: 12%
  2073. 2025-2-24 15:53:54-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  2074. 2025-2-24 15:53:54-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  2075. 2025-2-24 15:53:54-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2076. 2025-2-24 15:53:54-debug: [Build Memory track]: 填充脚本数据到 settings.json start:197.97MB, end 197.11MB, increase: -876.50KB
  2077. 2025-2-24 15:53:54-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2078. 2025-2-24 15:53:54-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  2079. 2025-2-24 15:53:54-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  2080. 2025-2-24 15:53:54-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:197.15MB, end 197.29MB, increase: 141.61KB
  2081. 2025-2-24 15:53:55-debug: excute-script over with build-script 8079ms
  2082. 2025-2-24 15:53:55-debug: Copy externalScripts success!
  2083. 2025-2-24 15:53:55-debug: Build script in bundle success, progress: 19%
  2084. 2025-2-24 15:53:55-debug: 构建项目脚本 in (8182 ms) √, progress: 19%
  2085. 2025-2-24 15:53:55-debug: 构建引擎脚本 start..., progress: 19%
  2086. 2025-2-24 15:53:55-warn: Engine cache directory({link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}) exists but has empty content. It's abnormal.
  2087. 2025-2-24 15:53:55-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"}
  2088. 2025-2-24 15:53:55-log: Run build task(build-engine) in child, see: chrome://inspect/#devices
  2089. 2025-2-24 15:53:56-log: [build-engine]enter sub process 18584, 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
  2090. 2025-2-24 15:53: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"}
  2091. 2025-2-24 15:53: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;
  2092. 2025-2-24 15:53: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';
  2093. 2025-2-24 15:53: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
  2094. 2025-2-24 15:53: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
  2095. 2025-2-24 15:53: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
  2096. 2025-2-24 15:53: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
  2097. 2025-2-24 15:53: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
  2098. 2025-2-24 15:54:01-log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
  2099. 2025-2-24 15:54: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
  2100. 2025-2-24 15:54: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
  2101. 2025-2-24 15:54: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
  2102. 2025-2-24 15:54: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
  2103. 2025-2-24 15:54: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
  2104. 2025-2-24 15:54:10-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
  2105. 2025-2-24 15:54:11-log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
  2106. 2025-2-24 15:54:18-log: [build-engine]==== Performance ==== {"# BUILD":[20712.20660018921,368457752,426438892],"## generate module graph":[18717.46950006485,297068052,355054632],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId":[7.262583255767822,1191944,551100756],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId (async)":[26.8817138671875,5330500,551102416],"- plugin 1 (@cocos/ccbuild|module-overrides) - resolveId":[7.1400861740112305,698464,551106484],"- plugin 2 (virtual) - resolveId":[28.651504516601562,-10967200,551121728],"load modules":[72235.2608165741,-3485519060,551211672],"- plugin 0 (@cocos/ccbuild|external-loader) - load":[2.4417967796325684,288224,551215876],"- plugin 0 (@cocos/ccbuild|external-loader) - load (async)":[5.028000831604004,1175128,551216512],"- plugin 1 (@cocos/ccbuild|module-overrides) - load":[6.106001377105713,340292,551220236],"- plugin 2 (virtual) - load":[1.4662013053894043,89824,551247468],"- plugin 6 (json) - transform":[3.565011501312256,827664,551216376],"- plugin 7 (commonjs) - transform":[12.38639783859253,631524,551219556],"- plugin 8 (babel) - transform":[174.45859575271606,2483504,551247016],"generate ast":[468.5782985687256,17635832,550755312],"analyse ast":[894.1956915855408,35575388,551072472],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId":[8.628500938415527,2811168,551132856],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId (async)":[53.59809589385986,7938172,551134648],"- plugin 4 (ts-paths) - resolveId":[4.615792274475098,476780,551138944],"- plugin 5 (node-resolve) - resolveId":[37.84361171722412,3936360,551161524],"- plugin 5 (node-resolve) - resolveId (async)":[78116.74826002121,990449396,551187068],"- plugin 5 (node-resolve) - load":[1.4872026443481445,93960,551266944],"- plugin 7 (commonjs) - load":[4.815792560577393,716864,551303592],"- plugin 8 (babel) - load":[256.46880197525024,10378124,551337404],"- plugin 8 (babel) - transform (async)":[14410.49700307846,357962788,550672024],"- plugin 7 (commonjs) - resolveId":[1.8613977432250977,72960,551188612],"- plugin 8 (babel) - resolveId":[0.885897159576416,55344,551189040],"## sort modules":[158.11630010604858,9174928,364229864],"## mark included statements":[1836.4871001243591,62207216,426437324],"treeshaking pass 1":[788.8315000534058,49038836,413641964],"treeshaking pass 2":[243.19899988174438,-723572,412918636],"treeshaking pass 3":[124.98070001602173,5557536,418476416],"treeshaking pass 4":[101.34070014953613,-137712,418338948],"treeshaking pass 5":[80.24370002746582,3661664,422000856],"treeshaking pass 6":[65.90420007705688,3817164,425818264],"treeshaking pass 7":[60.87650012969971,177208,425995716],"treeshaking pass 8":[58.93460035324097,-2076972,423918988],"treeshaking pass 9":[53.15820026397705,-3508284,420410948],"treeshaking pass 10":[52.22760009765625,4464276,424875468],"treeshaking pass 11":[52.86009979248047,-3766720,421108992],"treeshaking pass 12":[50.35379981994629,4893348,426002584],"treeshaking pass 13":[52.191100120544434,-3731452,422271376],"treeshaking pass 14":[50.34759998321533,4150088,426421708]} ==== ====
  2107. 2025-2-24 15:54:32-debug: excute-script over with build-engine 36673ms
  2108. 2025-2-24 15:54:32-debug: 构建引擎脚本 in (36760 ms) √, progress: 19%
  2109. 2025-2-24 15:54:32-debug: Copy plugin script ..., progress: 19%
  2110. 2025-2-24 15:54:32-debug: Generate import-map..., progress: 19%
  2111. 2025-2-24 15:54:32-debug: // ---- build task 打包脚本 ---- (50969ms)
  2112. 2025-2-24 15:54:32-debug: run build task 打包脚本 success in 50 s√, progress: 24%
  2113. 2025-2-24 15:54:32-debug: [Build Memory track]: 打包脚本 start:202.37MB, end 199.96MB, increase: -2467.08KB
  2114. 2025-2-24 15:54:32-debug: Build Assets start, progress: 24%
  2115. 2025-2-24 15:54:32-debug: // ---- build task Build Assets ----
  2116. 2025-2-24 15:54:32-debug: Build bundles..., progress: 24%
  2117. 2025-2-24 15:54:32-debug: Pack Images start, progress: 24%
  2118. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2119. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2120. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2121. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2122. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2123. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2124. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2125. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2126. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2127. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2128. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2129. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2130. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2131. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2132. 2025-2-24 15:54:33-debug: Start trim sprite image ...
  2133. 2025-2-24 15:54:33-debug: determine atlas size...
  2134. 2025-2-24 15:54:33-debug: Start generate atlas image...
  2135. 2025-2-24 15:54:33-debug: determine atlas size...
  2136. 2025-2-24 15:54:33-debug: Start generate atlas image...
  2137. 2025-2-24 15:54:33-debug: determine atlas size...
  2138. 2025-2-24 15:54:33-debug: Start generate atlas image...
  2139. 2025-2-24 15:54:33-debug: determine atlas size...
  2140. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2141. 2025-2-24 15:54:34-debug: determine atlas size...
  2142. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2143. 2025-2-24 15:54:34-debug: determine atlas size...
  2144. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2145. 2025-2-24 15:54:34-debug: determine atlas size...
  2146. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2147. 2025-2-24 15:54:34-debug: determine atlas size...
  2148. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2149. 2025-2-24 15:54:34-debug: determine atlas size...
  2150. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2151. 2025-2-24 15:54:34-debug: determine atlas size...
  2152. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2153. 2025-2-24 15:54:34-debug: determine atlas size...
  2154. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2155. 2025-2-24 15:54:34-debug: determine atlas size...
  2156. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2157. 2025-2-24 15:54:34-debug: determine atlas size...
  2158. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2159. 2025-2-24 15:54:34-debug: determine atlas size...
  2160. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2161. 2025-2-24 15:54:34-debug: determine atlas size...
  2162. 2025-2-24 15:54:34-debug: Start generate atlas image...
  2163. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  2164. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  2165. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  2166. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  2167. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  2168. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  2169. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  2170. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  2171. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  2172. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  2173. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  2174. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  2175. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  2176. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  2177. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  2178. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  2179. 2025-2-24 15:54:34-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  2180. 2025-2-24 15:54:34-debug: builder:pack-auto-atlas-image (2151ms)
  2181. 2025-2-24 15:54:34-debug: Pack Images success, progress: 24%
  2182. 2025-2-24 15:54:35-debug: Compress image start..., progress: 24%
  2183. 2025-2-24 15:54:35-debug: Num of all image compress task 0, really: 0, configTasks: 0
  2184. 2025-2-24 15:54:35-debug: No image need to compress
  2185. 2025-2-24 15:54:35-debug: Compress image success..., progress: 24%
  2186. 2025-2-24 15:54:35-debug: Output asset in bundles start, progress: 24%
  2187. 2025-2-24 15:54:35-debug: Handle all json groups in bundle internal
  2188. 2025-2-24 15:54:35-debug: handle json group
  2189. 2025-2-24 15:54:35-debug: sort compress task {}
  2190. 2025-2-24 15:54:35-debug: Handle all json groups in bundle start-scene
  2191. 2025-2-24 15:54:35-debug: handle json group
  2192. 2025-2-24 15:54:35-debug: handle json group
  2193. 2025-2-24 15:54:35-debug: Handle all json groups in bundle resources
  2194. 2025-2-24 15:54:35-debug: Handle all json groups in bundle main
  2195. 2025-2-24 15:54:35-debug: handle json group
  2196. 2025-2-24 15:54:35-debug: handle single json
  2197. 2025-2-24 15:54:35-debug: Handle all json groups in bundle module_extra
  2198. 2025-2-24 15:54:35-debug: handle json group
  2199. 2025-2-24 15:54:35-debug: handle single json
  2200. 2025-2-24 15:54:35-debug: Handle all json groups in bundle module_basic
  2201. 2025-2-24 15:54:35-debug: handle json group
  2202. 2025-2-24 15:54:35-debug: Handle all json groups in bundle module_game
  2203. 2025-2-24 15:54:35-debug: handle json group
  2204. 2025-2-24 15:54:35-debug: Json group(03ccd410a) compile success,json number: 6
  2205. 2025-2-24 15:54:35-debug: handle single json
  2206. 2025-2-24 15:54:35-debug: Json group(07325bfaa) compile success,json number: 6
  2207. 2025-2-24 15:54:35-debug: Json group(0ba471961) compile success,json number: 6
  2208. 2025-2-24 15:54:35-debug: handle single json
  2209. 2025-2-24 15:54:35-debug: Json group(045b519c1) compile success,json number: 6
  2210. 2025-2-24 15:54:35-debug: handle single json
  2211. 2025-2-24 15:54:35-debug: Json group(0524f237b) compile success,json number: 6
  2212. 2025-2-24 15:54:35-debug: Json group(0a54f6860) compile success,json number: 6
  2213. 2025-2-24 15:54:35-debug: handle single json
  2214. 2025-2-24 15:54:35-debug: Json group(027fa8751) compile success,json number: 6
  2215. 2025-2-24 15:54:35-debug: Json group(08d4f0835) compile success,json number: 6
  2216. 2025-2-24 15:54:35-debug: Json group(08f30b54e) compile success,json number: 6
  2217. 2025-2-24 15:54:35-debug: Json group(093f10e90) compile success,json number: 6
  2218. 2025-2-24 15:54:35-debug: Json group(02c882590) compile success,json number: 6
  2219. 2025-2-24 15:54:35-debug: Json group(0e48af9fb) compile success,json number: 6
  2220. 2025-2-24 15:54:35-debug: Json group(0787c84da) compile success,json number: 6
  2221. 2025-2-24 15:54:35-debug: Json group(03c9cd961) compile success,json number: 6
  2222. 2025-2-24 15:54:35-debug: Json group(041ac2e1c) compile success,json number: 6
  2223. 2025-2-24 15:54:35-debug: Json group(0471cee9c) compile success,json number: 6
  2224. 2025-2-24 15:54:35-debug: Json group(04a6d010d) compile success,json number: 6
  2225. 2025-2-24 15:54:35-debug: Json group(070166e93) compile success,json number: 6
  2226. 2025-2-24 15:54:35-debug: Json group(02b639d30) compile success,json number: 6
  2227. 2025-2-24 15:54:35-debug: Json group(06db2e96b) compile success,json number: 6
  2228. 2025-2-24 15:54:35-debug: Json group(097e5daf7) compile success,json number: 6
  2229. 2025-2-24 15:54:35-debug: Json group(0c5a2fc7e) compile success,json number: 6
  2230. 2025-2-24 15:54:35-debug: Json group(091e713ef) compile success,json number: 6
  2231. 2025-2-24 15:54:35-debug: Json group(01236a39b) compile success,json number: 6
  2232. 2025-2-24 15:54:35-debug: Json group(0a46ee258) compile success,json number: 6
  2233. 2025-2-24 15:54:35-debug: Json group(033a6699b) compile success,json number: 6
  2234. 2025-2-24 15:54:35-debug: Json group(02d36d139) compile success,json number: 6
  2235. 2025-2-24 15:54:35-debug: Json group(0d54cf783) compile success,json number: 6
  2236. 2025-2-24 15:54:35-debug: handle single json
  2237. 2025-2-24 15:54:35-debug: Output asset in bundles success, progress: 24%
  2238. 2025-2-24 15:54:35-debug: Output asset in bundles start, progress: 24%
  2239. 2025-2-24 15:54:35-debug: compress config of bundle internal...
  2240. 2025-2-24 15:54:35-debug: compress config of bundle start-scene success
  2241. 2025-2-24 15:54:35-debug: compress config of bundle resources...
  2242. 2025-2-24 15:54:35-debug: compress config of bundle resources success
  2243. 2025-2-24 15:54:35-debug: compress config of bundle main...
  2244. 2025-2-24 15:54:35-debug: compress config of bundle main success
  2245. 2025-2-24 15:54:35-debug: compress config of bundle module_extra...
  2246. 2025-2-24 15:54:35-debug: compress config of bundle module_extra success
  2247. 2025-2-24 15:54:35-debug: compress config of bundle module_basic...
  2248. 2025-2-24 15:54:35-debug: compress config of bundle module_basic success
  2249. 2025-2-24 15:54:35-debug: compress config of bundle module_game...
  2250. 2025-2-24 15:54:35-debug: compress config of bundle module_game success
  2251. 2025-2-24 15:54:35-debug: output config of bundle internal
  2252. 2025-2-24 15:54:35-debug: output config of bundle internal success
  2253. 2025-2-24 15:54:35-debug: output config of bundle start-scene
  2254. 2025-2-24 15:54:35-debug: output config of bundle start-scene success
  2255. 2025-2-24 15:54:35-debug: compress config of bundle start-scene...
  2256. 2025-2-24 15:54:35-debug: output config of bundle resources success
  2257. 2025-2-24 15:54:35-debug: output config of bundle main
  2258. 2025-2-24 15:54:35-debug: output config of bundle main success
  2259. 2025-2-24 15:54:35-debug: output config of bundle module_extra
  2260. 2025-2-24 15:54:35-debug: output config of bundle module_extra success
  2261. 2025-2-24 15:54:35-debug: output config of bundle module_basic
  2262. 2025-2-24 15:54:35-debug: output config of bundle module_basic success
  2263. 2025-2-24 15:54:35-debug: compress config of bundle internal success
  2264. 2025-2-24 15:54:35-debug: Output asset in bundles success, progress: 24%
  2265. 2025-2-24 15:54:35-debug: output config of bundle module_game
  2266. 2025-2-24 15:54:35-debug: output config of bundle module_game success
  2267. 2025-2-24 15:54:35-debug: output config of bundle resources
  2268. 2025-2-24 15:54:35-debug: // ---- build task Build Assets ---- (3008ms)
  2269. 2025-2-24 15:54:35-debug: run build task Build Assets success in 3 s√, progress: 29%
  2270. 2025-2-24 15:54:35-debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
  2271. 2025-2-24 15:54:35-debug: [Build Memory track]: Build Assets start:200.00MB, end 212.88MB, increase: 12.89MB
  2272. 2025-2-24 15:54:35-debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
  2273. 2025-2-24 15:54:35-debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (62ms)
  2274. 2025-2-24 15:54:35-debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
  2275. 2025-2-24 15:54:35-debug: wechatgame:(onAfterBundleBuildTask) in 62 ms ✓, progress: 29%
  2276. 2025-2-24 15:54:35-debug: // ---- build task wechatgame:onAfterBuildAssets ----
  2277. 2025-2-24 15:54:35-debug: // ---- build task wechatgame:onAfterBuildAssets ---- (79ms)
  2278. 2025-2-24 15:54:35-debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
  2279. 2025-2-24 15:54:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2280. 2025-2-24 15:54:35-debug: wechatgame:(onAfterBuildAssets) in 79 ms ✓, progress: 31%
  2281. 2025-2-24 15:54:36-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (55ms)
  2282. 2025-2-24 15:54:36-debug: run build task 整理部分构建选项内数据到 settings.json success in 55 ms√, progress: 33%
  2283. 2025-2-24 15:54:36-debug: // ---- build task 填充脚本数据到 settings.json ----
  2284. 2025-2-24 15:54:36-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:213.36MB, end 213.49MB, increase: 133.06KB
  2285. 2025-2-24 15:54:36-debug: 填充脚本数据到 settings.json start, progress: 33%
  2286. 2025-2-24 15:54:36-debug: // ---- build task 填充脚本数据到 settings.json ---- (57ms)
  2287. 2025-2-24 15:54:36-debug: run build task 填充脚本数据到 settings.json success in 57 ms√, progress: 34%
  2288. 2025-2-24 15:54:36-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2289. 2025-2-24 15:54:36-debug: [Build Memory track]: 填充脚本数据到 settings.json start:213.53MB, end 213.66MB, increase: 133.18KB
  2290. 2025-2-24 15:54:36-debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
  2291. 2025-2-24 15:54:36-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (56ms)
  2292. 2025-2-24 15:54:36-debug: run build task 整理部分构建选项内数据到 settings.json success in 56 ms√, progress: 36%
  2293. 2025-2-24 15:54:36-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:213.70MB, end 213.93MB, increase: 238.61KB
  2294. 2025-2-24 15:54:36-debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
  2295. 2025-2-24 15:54:36-debug: // ---- build task wechatgame:onBeforeCompressSettings ----
  2296. 2025-2-24 15:54:36-debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (57ms)
  2297. 2025-2-24 15:54:36-debug: wechatgame:(onBeforeCompressSettings) in 57 ms ✓, progress: 38%
  2298. 2025-2-24 15:54:36-debug: // ---- build task cocos-service:onBeforeCompressSettings ----
  2299. 2025-2-24 15:54:36-debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
  2300. 2025-2-24 15:54:36-debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (294ms)
  2301. 2025-2-24 15:54:36-debug: 整理静态模板文件 start, progress: 40%
  2302. 2025-2-24 15:54:36-debug: cocos-service:(onBeforeCompressSettings) in 294 ms ✓, progress: 40%
  2303. 2025-2-24 15:54:36-debug: // ---- build task 整理静态模板文件 ----
  2304. 2025-2-24 15:54:36-debug: // ---- build task 整理静态模板文件 ---- (141ms)
  2305. 2025-2-24 15:54:36-debug: run build task 整理静态模板文件 success in 141 ms√, progress: 45%
  2306. 2025-2-24 15:54:36-debug: [Build Memory track]: 整理静态模板文件 start:214.37MB, end 209.22MB, increase: -5281.41KB
  2307. 2025-2-24 15:54:36-debug: // ---- build task cocos-service:onAfterCompressSettings ----
  2308. 2025-2-24 15:54:36-debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
  2309. 2025-2-24 15:54:36-debug: // ---- build task cocos-service:onAfterCompressSettings ---- (89ms)
  2310. 2025-2-24 15:54:36-debug: cocos-service:(onAfterCompressSettings) in 89 ms ✓, progress: 46%
  2311. 2025-2-24 15:54:36-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
  2312. 2025-2-24 15:54:36-debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
  2313. 2025-2-24 15:54:36-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (51ms)
  2314. 2025-2-24 15:54:36-debug: wechatgame:(onBeforeCopyBuildTemplate) in 51 ms ✓, progress: 48%
  2315. 2025-2-24 15:54:36-debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
  2316. 2025-2-24 15:54:36-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
  2317. 2025-2-24 15:54:36-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (68ms)
  2318. 2025-2-24 15:54:36-debug: wechatgame:(onAfterCopyBuildTemplate) in 68 ms ✓, progress: 50%
  2319. 2025-2-24 15:54:36-debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
  2320. 2025-2-24 15:54:36-debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
  2321. 2025-2-24 15:54:36-debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (58ms)
  2322. 2025-2-24 15:54:36-debug: run build task 给所有的资源加上 MD5 后缀 success in 58 ms√, progress: 60%
  2323. 2025-2-24 15:54:36-debug: wechatgame:(onAfterBuild) start..., progress: 60%
  2324. 2025-2-24 15:54:36-debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:210.01MB, end 210.14MB, increase: 132.50KB
  2325. 2025-2-24 15:54:36-debug: // ---- build task wechatgame:onAfterBuild ----
  2326. 2025-2-24 15:54:37-debug: // ---- build task wechatgame:onAfterBuild ---- (357ms)
  2327. 2025-2-24 15:54:37-debug: // ---- build task cocos-service:onAfterBuild ----
  2328. 2025-2-24 15:54:37-debug: wechatgame:(onAfterBuild) in 357 ms ✓, progress: 62%
  2329. 2025-2-24 15:54:37-debug: cocos-service:(onAfterBuild) start..., progress: 62%
  2330. 2025-2-24 15:54:37-debug: // ---- build task cocos-service:onAfterBuild ---- (87ms)
  2331. 2025-2-24 15:54:37-debug: cocos-service:(onAfterBuild) in 87 ms ✓, progress: 64%
  2332. 2025-2-24 15:54:37-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
  2333. 2025-2-24 15:54:37-debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
  2334. 2025-2-24 15:54:37-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (51ms)
  2335. 2025-2-24 15:54:37-debug: adsense-h5g-plugin:(onAfterBuild) in 51 ms ✓, progress: 65%
  2336. 2025-2-24 15:54:37-log: Asset DB is resume!
  2337. 2025-2-24 15:54:37-debug: builder:build-project-total (57151ms)
  2338. 2025-2-24 15:54:37-debug: build success in 57151!
  2339. 2025-2-24 15:54:37-debug: [Build Memory track]: builder:build-project-total start:173.01MB, end 214.05MB, increase: 41.03MB
  2340. 2025-2-24 15:54:37-debug: ================================ build Task (wechatgame-001) Finished in (57 s)ms ================================
  2341. 2025-2-24 15:54:37-debug: Stop record console. {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  2342. 2025-2-24 15:54:37-debug: refresh db internal success
  2343. 2025-2-24 15:54:37-debug: refresh db assets success
  2344. 2025-2-24 15:54:37-debug: Run asset db hook engine-extends:afterRefresh ...
  2345. 2025-2-24 15:54:37-debug: Run asset db hook engine-extends:afterRefresh success!
  2346. 2025-2-24 15:54:37-debug: asset-db:refresh-all-database (355ms)
  2347. 2025-2-24 15:54:37-debug: asset-db:worker-effect-data-processing (2ms)
  2348. 2025-2-24 15:54:37-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  2349. 2025-2-24 15:55:46-debug: refresh db internal success
  2350. 2025-2-24 15:55:47-debug: refresh db assets success
  2351. 2025-2-24 15:55:47-debug: Run asset db hook engine-extends:afterRefresh success!
  2352. 2025-2-24 15:55:47-debug: Run asset db hook engine-extends:afterRefresh ...
  2353. 2025-2-24 15:55:47-debug: asset-db:refresh-all-database (163ms)
  2354. 2025-2-24 15:55:47-debug: asset-db:worker-effect-data-processing (1ms)
  2355. 2025-2-24 15:55:47-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2356. 2025-2-24 15:56:42-debug: refresh db internal success
  2357. 2025-2-24 15:56:42-debug: refresh db assets success
  2358. 2025-2-24 15:56:42-debug: Run asset db hook engine-extends:afterRefresh success!
  2359. 2025-2-24 15:56:42-debug: Run asset db hook engine-extends:afterRefresh ...
  2360. 2025-2-24 15:56:42-debug: asset-db:worker-effect-data-processing (1ms)
  2361. 2025-2-24 15:56:42-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2362. 2025-2-24 15:56:42-debug: asset-db:refresh-all-database (185ms)
  2363. 2025-2-24 15:56:43-debug: Query all assets info in project
  2364. 2025-2-24 15:56:43-debug: init custom config: keepNodeUuid: false, useCache: true
  2365. 2025-2-24 15:56:43-debug: 查询 Asset Bundle start, progress: 0%
  2366. 2025-2-24 15:56:43-debug: // ---- build task 查询 Asset Bundle ----
  2367. 2025-2-24 15:56:43-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
  2368. 2025-2-24 15:56:43-debug: Number of all scenes: 3
  2369. 2025-2-24 15:56:43-debug: Number of all scripts: 131
  2370. 2025-2-24 15:56:43-debug: Number of other assets: 1286
  2371. 2025-2-24 15:56:43-debug: // ---- build task 查询 Asset Bundle ---- (20ms)
  2372. 2025-2-24 15:56:43-debug: run build task 查询 Asset Bundle success in 20 ms√, progress: 5%
  2373. 2025-2-24 15:56:43-debug: [Build Memory track]: 查询 Asset Bundle start:214.13MB, end 214.63MB, increase: 512.74KB
  2374. 2025-2-24 15:56:43-debug: 查询 Asset Bundle start, progress: 5%
  2375. 2025-2-24 15:56:43-debug: // ---- build task 查询 Asset Bundle ----
  2376. 2025-2-24 15:56:43-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2377. 2025-2-24 15:56:43-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  2378. 2025-2-24 15:56:43-debug: [Build Memory track]: 查询 Asset Bundle start:214.67MB, end 214.93MB, increase: 266.11KB
  2379. 2025-2-24 15:56:43-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2380. 2025-2-24 15:56:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2381. 2025-2-24 15:56:43-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2382. 2025-2-24 15:56:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2383. 2025-2-24 15:56:43-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.96MB, end 214.99MB, increase: 28.26KB
  2384. 2025-2-24 15:56:43-debug: // ---- build task 填充脚本数据到 settings.json ----
  2385. 2025-2-24 15:56:43-debug: 填充脚本数据到 settings.json start, progress: 12%
  2386. 2025-2-24 15:56:43-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2387. 2025-2-24 15:56:43-debug: [Build Memory track]: 填充脚本数据到 settings.json start:215.03MB, end 215.04MB, increase: 17.27KB
  2388. 2025-2-24 15:56:43-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2389. 2025-2-24 15:56:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2390. 2025-2-24 15:56:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  2391. 2025-2-24 15:56:43-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  2392. 2025-2-24 15:56:43-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.08MB, end 215.23MB, increase: 153.37KB
  2393. 2025-2-24 15:57:14-debug: Query all assets info in project
  2394. 2025-2-24 15:57:14-debug: init custom config: keepNodeUuid: false, useCache: true
  2395. 2025-2-24 15:57:14-debug: 查询 Asset Bundle start, progress: 0%
  2396. 2025-2-24 15:57:14-debug: // ---- build task 查询 Asset Bundle ----
  2397. 2025-2-24 15:57: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
  2398. 2025-2-24 15:57:14-debug: Number of all scenes: 3
  2399. 2025-2-24 15:57:14-debug: Number of other assets: 1286
  2400. 2025-2-24 15:57:14-debug: Number of all scripts: 131
  2401. 2025-2-24 15:57:14-debug: // ---- build task 查询 Asset Bundle ---- (13ms)
  2402. 2025-2-24 15:57:14-debug: run build task 查询 Asset Bundle success in 13 ms√, progress: 5%
  2403. 2025-2-24 15:57:14-debug: [Build Memory track]: 查询 Asset Bundle start:215.38MB, end 214.39MB, increase: -1015.25KB
  2404. 2025-2-24 15:57:14-debug: 查询 Asset Bundle start, progress: 5%
  2405. 2025-2-24 15:57:14-debug: // ---- build task 查询 Asset Bundle ----
  2406. 2025-2-24 15:57:14-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  2407. 2025-2-24 15:57:14-debug: [Build Memory track]: 查询 Asset Bundle start:214.43MB, end 214.68MB, increase: 263.30KB
  2408. 2025-2-24 15:57:14-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2409. 2025-2-24 15:57:14-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 10%
  2410. 2025-2-24 15:57:14-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2411. 2025-2-24 15:57:14-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2412. 2025-2-24 15:57:14-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  2413. 2025-2-24 15:57:14-debug: // ---- build task 填充脚本数据到 settings.json ----
  2414. 2025-2-24 15:57:14-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.72MB, end 214.75MB, increase: 30.91KB
  2415. 2025-2-24 15:57:14-debug: 填充脚本数据到 settings.json start, progress: 12%
  2416. 2025-2-24 15:57:14-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  2417. 2025-2-24 15:57:14-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  2418. 2025-2-24 15:57:14-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2419. 2025-2-24 15:57:14-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2420. 2025-2-24 15:57:14-debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.78MB, end 214.81MB, increase: 29.73KB
  2421. 2025-2-24 15:57:14-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (10ms)
  2422. 2025-2-24 15:57:14-debug: run build task 整理部分构建选项内数据到 settings.json success in 10 ms√, progress: 15%
  2423. 2025-2-24 15:57:14-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.84MB, end 214.08MB, increase: -779.82KB
  2424. 2025-2-24 15:59:10-debug: refresh db internal success
  2425. 2025-2-24 15:59:10-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Hall\UI_Hall.ts background: #aaff85; color: #000; color: #000;
  2426. 2025-2-24 15:59:10-debug: refresh db assets success
  2427. 2025-2-24 15:59:10-debug: Run asset db hook engine-extends:afterRefresh ...
  2428. 2025-2-24 15:59:10-debug: Run asset db hook engine-extends:afterRefresh success!
  2429. 2025-2-24 15:59:10-debug: asset-db:refresh-all-database (125ms)
  2430. 2025-2-24 15:59:11-debug: Query all assets info in project
  2431. 2025-2-24 15:59:11-debug: init custom config: keepNodeUuid: false, useCache: true
  2432. 2025-2-24 15:59:11-debug: 查询 Asset Bundle start, progress: 0%
  2433. 2025-2-24 15:59:11-debug: // ---- build task 查询 Asset Bundle ----
  2434. 2025-2-24 15:59:11-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
  2435. 2025-2-24 15:59:11-debug: Number of all scenes: 3
  2436. 2025-2-24 15:59:11-debug: Number of all scripts: 131
  2437. 2025-2-24 15:59:11-debug: Number of other assets: 1286
  2438. 2025-2-24 15:59:11-debug: // ---- build task 查询 Asset Bundle ---- (30ms)
  2439. 2025-2-24 15:59:11-debug: [Build Memory track]: 查询 Asset Bundle start:219.87MB, end 217.42MB, increase: -2505.04KB
  2440. 2025-2-24 15:59:11-debug: 查询 Asset Bundle start, progress: 5%
  2441. 2025-2-24 15:59:11-debug: // ---- build task 查询 Asset Bundle ----
  2442. 2025-2-24 15:59:11-debug: run build task 查询 Asset Bundle success in 30 ms√, progress: 5%
  2443. 2025-2-24 15:59:11-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2444. 2025-2-24 15:59:11-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2445. 2025-2-24 15:59:11-debug: [Build Memory track]: 查询 Asset Bundle start:217.45MB, end 217.71MB, increase: 264.12KB
  2446. 2025-2-24 15:59:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2447. 2025-2-24 15:59:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2448. 2025-2-24 15:59:11-debug: 填充脚本数据到 settings.json start, progress: 12%
  2449. 2025-2-24 15:59:11-debug: // ---- build task 填充脚本数据到 settings.json ----
  2450. 2025-2-24 15:59:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:217.74MB, end 217.76MB, increase: 17.32KB
  2451. 2025-2-24 15:59:11-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2452. 2025-2-24 15:59:11-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2453. 2025-2-24 15:59:11-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2454. 2025-2-24 15:59:11-debug: [Build Memory track]: 填充脚本数据到 settings.json start:217.79MB, end 217.82MB, increase: 27.95KB
  2455. 2025-2-24 15:59:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2456. 2025-2-24 15:59:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2457. 2025-2-24 15:59:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (128ms)
  2458. 2025-2-24 15:59:11-debug: run build task 整理部分构建选项内数据到 settings.json success in 128 ms√, progress: 15%
  2459. 2025-2-24 15:59:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:217.85MB, end 218.28MB, increase: 435.11KB
  2460. 2025-2-24 15:59:22-debug: refresh db internal success
  2461. 2025-2-24 15:59:22-debug: refresh db assets success
  2462. 2025-2-24 15:59:22-debug: Run asset db hook engine-extends:afterRefresh ...
  2463. 2025-2-24 15:59:22-debug: Run asset db hook engine-extends:afterRefresh success!
  2464. 2025-2-24 15:59:22-debug: asset-db:refresh-all-database (121ms)
  2465. 2025-2-24 15:59:22-debug: asset-db:worker-effect-data-processing (1ms)
  2466. 2025-2-24 15:59:22-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2467. 2025-2-24 15:59:23-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\start\start.scene background: #aaff85; color: #000; color: #000;
  2468. 2025-2-24 15:59:23-debug: asset-db:reimport-asset155e7964-9abb-4942-be64-ececa65865a5 (23ms)
  2469. 2025-2-24 15:59:24-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\start\start.scene background: #aaff85; color: #000; color: #000;
  2470. 2025-2-24 15:59:24-debug: asset-db:reimport-asset155e7964-9abb-4942-be64-ececa65865a5 (20ms)
  2471. 2025-2-24 15:59:24-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\start\start.scene background: #aaff85; color: #000; color: #000;
  2472. 2025-2-24 15:59:24-debug: asset-db:reimport-asset155e7964-9abb-4942-be64-ececa65865a5 (21ms)
  2473. 2025-2-24 15:59:36-debug: refresh db internal success
  2474. 2025-2-24 15:59:36-debug: refresh db assets success
  2475. 2025-2-24 15:59:36-debug: Run asset db hook engine-extends:afterRefresh ...
  2476. 2025-2-24 15:59:36-debug: Run asset db hook engine-extends:afterRefresh success!
  2477. 2025-2-24 15:59:36-debug: asset-db:refresh-all-database (116ms)
  2478. 2025-2-24 15:59:37-debug: refresh db internal success
  2479. 2025-2-24 15:59:37-debug: refresh db assets success
  2480. 2025-2-24 15:59:37-debug: Run asset db hook engine-extends:afterRefresh ...
  2481. 2025-2-24 15:59:37-debug: Run asset db hook engine-extends:afterRefresh success!
  2482. 2025-2-24 15:59:37-debug: asset-db:refresh-all-database (108ms)
  2483. 2025-2-24 15:59:37-debug: asset-db:worker-effect-data-processing (1ms)
  2484. 2025-2-24 15:59:37-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2485. 2025-2-24 15:59:39-debug: Start record console... {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  2486. 2025-2-24 15:59:39-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-001","taskName":"wechatgame-001","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":"wxc0fb4a435b39ab92","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[],"__version__":"3.0.7"}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-20 15-37.log"}
  2487. 2025-2-24 15:59:39-debug: Build with Cocos Creator 3.8.4
  2488. 2025-2-24 15:59:39-debug: =================================== build Task (wechatgame-001) Start ================================
  2489. 2025-2-24 15:59:39-debug: cocos-service:(onBeforeBuild) start..., progress: 0%
  2490. 2025-2-24 15:59:39-debug: // ---- build task cocos-service:onBeforeBuild ----
  2491. 2025-2-24 15:59:39-debug: // ---- build task cocos-service:onBeforeBuild ---- (205ms)
  2492. 2025-2-24 15:59:39-debug: cocos-service:(onBeforeBuild) in 205 ms ✓, progress: 2%
  2493. 2025-2-24 15:59:39-debug: // ---- build task scene:onBeforeBuild ----
  2494. 2025-2-24 15:59:39-debug: scene:(onBeforeBuild) start..., progress: 2%
  2495. 2025-2-24 15:59:39-debug: // ---- build task scene:onBeforeBuild ---- (43ms)
  2496. 2025-2-24 15:59:39-debug: scene:(onBeforeBuild) in 43 ms ✓, progress: 4%
  2497. 2025-2-24 15:59:39-debug: Start lock asset db..., progress: 4%
  2498. 2025-2-24 15:59:39-log: Asset DB is paused with build!
  2499. 2025-2-24 15:59:39-debug: Query all assets info in project
  2500. 2025-2-24 15:59:40-debug: init custom config: keepNodeUuid: false, useCache: true
  2501. 2025-2-24 15:59:40-debug: wechatgame:(onAfterInit) start..., progress: 4%
  2502. 2025-2-24 15:59:40-debug: // ---- build task wechatgame:onAfterInit ----
  2503. 2025-2-24 15:59:40-debug: // ---- build task wechatgame:onAfterInit ---- (26ms)
  2504. 2025-2-24 15:59:40-debug: wechatgame:(onAfterInit) in 26 ms ✓, progress: 5%
  2505. 2025-2-24 15:59:40-debug: cocos-service:(onAfterInit) start..., progress: 5%
  2506. 2025-2-24 15:59:40-debug: // ---- build task cocos-service:onAfterInit ----
  2507. 2025-2-24 15:59:40-debug: // ---- build task cocos-service:onAfterInit ---- (98ms)
  2508. 2025-2-24 15:59:40-debug: cocos-service:(onAfterInit) in 98 ms ✓, progress: 7%
  2509. 2025-2-24 15:59:40-debug: // ---- build task engine:onAfterInit ----
  2510. 2025-2-24 15:59:40-debug: engine:(onAfterInit) start..., progress: 7%
  2511. 2025-2-24 15:59:40-debug: // ---- build task engine:onAfterInit ---- (65ms)
  2512. 2025-2-24 15:59:40-debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
  2513. 2025-2-24 15:59:40-debug: // ---- build task wechatgame:onBeforeBundleInit ----
  2514. 2025-2-24 15:59:40-debug: engine:(onAfterInit) in 65 ms ✓, progress: 9%
  2515. 2025-2-24 15:59:40-debug: // ---- build task wechatgame:onBeforeBundleInit ---- (58ms)
  2516. 2025-2-24 15:59:40-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
  2517. 2025-2-24 15:59:40-debug: [adsense-h5g-plugin] remove script success
  2518. 2025-2-24 15:59:40-debug: wechatgame:(onBeforeBundleInit) in 58 ms ✓, progress: 9%
  2519. 2025-2-24 15:59:40-debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
  2520. 2025-2-24 15:59:40-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (42ms)
  2521. 2025-2-24 15:59:40-debug: adsense-h5g-plugin:(onBeforeBundleInit) in 42 ms ✓, progress: 9%
  2522. 2025-2-24 15:59:40-debug: Init all bundles start..., progress: 9%
  2523. 2025-2-24 15:59:40-debug: // ---- build task 查询 Asset Bundle ----
  2524. 2025-2-24 15:59:40-debug: Init bundle root assets start..., progress: 9%
  2525. 2025-2-24 15:59:40-debug: 查询 Asset Bundle start, progress: 9%
  2526. 2025-2-24 15:59:40-debug: Num of bundles: 7..., progress: 9%
  2527. 2025-2-24 15:59:40-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2528. 2025-2-24 15:59:40-debug: Number of all scripts: 131
  2529. 2025-2-24 15:59:40-debug: Number of other assets: 1286
  2530. 2025-2-24 15:59:40-debug: Init bundle root assets success..., progress: 9%
  2531. 2025-2-24 15:59:40-debug: Number of all scenes: 3
  2532. 2025-2-24 15:59:40-debug: reload all scripts.
  2533. 2025-2-24 15:59:40-debug: Set detail map pack:///resolution-detail-map.json: {}
  2534. 2025-2-24 15:59:40-debug: Unregister BuiltinPipelineSettings
  2535. 2025-2-24 15:59:40-debug: Unregister ch_sdk_comp
  2536. 2025-2-24 15:59:40-debug: Unregister DebugViewRuntimeControl
  2537. 2025-2-24 15:59:40-debug: Unregister ResolutionAutoFit
  2538. 2025-2-24 15:59:40-debug: Unregister __NodeEventAgent__
  2539. 2025-2-24 15:59:40-debug: Unregister ClickPenetrate
  2540. 2025-2-24 15:59:40-debug: Unregister ui_updater
  2541. 2025-2-24 15:59:40-debug: Unregister ch_start_pack
  2542. 2025-2-24 15:59:40-debug: Unregister ListItem
  2543. 2025-2-24 15:59:40-debug: Unregister MotionTrail
  2544. 2025-2-24 15:59:40-debug: Unregister RewardFly
  2545. 2025-2-24 15:59:40-debug: Unregister List
  2546. 2025-2-24 15:59:40-debug: Unregister MovieClip
  2547. 2025-2-24 15:59:40-debug: Unregister UISpineMovie
  2548. 2025-2-24 15:59:40-debug: Unregister Layout_UIAlert
  2549. 2025-2-24 15:59:40-debug: Unregister Layout_UI_Notify
  2550. 2025-2-24 15:59:40-debug: Unregister Layout_UIWaiting
  2551. 2025-2-24 15:59:40-debug: Unregister table_idiom_order
  2552. 2025-2-24 15:59:40-debug: Unregister table_idiom_unorder_1_3
  2553. 2025-2-24 15:59:40-debug: Unregister table_idiom
  2554. 2025-2-24 15:59:40-debug: Unregister table_idiom_unorder_2_2
  2555. 2025-2-24 15:59:40-debug: Unregister table_idiom_unorder_3_1
  2556. 2025-2-24 15:59:40-debug: Unregister table_level_2
  2557. 2025-2-24 15:59:40-debug: Unregister SpineView
  2558. 2025-2-24 15:59:40-debug: Unregister table_level
  2559. 2025-2-24 15:59:40-debug: Unregister Layout_GameRules
  2560. 2025-2-24 15:59:40-debug: Unregister UI_GameRules
  2561. 2025-2-24 15:59:40-debug: Unregister UI_Idiom
  2562. 2025-2-24 15:59:40-debug: Unregister table_store
  2563. 2025-2-24 15:59:40-debug: Unregister Layout_Idioms
  2564. 2025-2-24 15:59:40-debug: Unregister Layout_Settings
  2565. 2025-2-24 15:59:40-debug: Unregister Layout_Tips
  2566. 2025-2-24 15:59:40-debug: Unregister Layout_Hall
  2567. 2025-2-24 15:59:40-debug: Unregister UI_Idioms
  2568. 2025-2-24 15:59:40-debug: Unregister table_task
  2569. 2025-2-24 15:59:40-debug: Unregister UI_Head_Icon
  2570. 2025-2-24 15:59:40-debug: Unregister UI_Rank_Item
  2571. 2025-2-24 15:59:40-debug: Unregister Layout_Rank
  2572. 2025-2-24 15:59:40-debug: Unregister Hall
  2573. 2025-2-24 15:59:40-debug: Unregister Sign_Reward
  2574. 2025-2-24 15:59:40-debug: Unregister UI_Sign
  2575. 2025-2-24 15:59:40-debug: Unregister UI_Rank
  2576. 2025-2-24 15:59:40-debug: Unregister Layout_Sign
  2577. 2025-2-24 15:59:40-debug: Unregister Layout_Invite
  2578. 2025-2-24 15:59:40-debug: Unregister Layout_Store
  2579. 2025-2-24 15:59:40-debug: Unregister Layout_SideBar
  2580. 2025-2-24 15:59:40-debug: Unregister UI_Store
  2581. 2025-2-24 15:59:40-debug: Unregister UI_SideBar
  2582. 2025-2-24 15:59:40-debug: Unregister UI_Task_Item
  2583. 2025-2-24 15:59:40-debug: Unregister Layout_Task
  2584. 2025-2-24 15:59:40-debug: Unregister Start
  2585. 2025-2-24 15:59:40-debug: Unregister UI_Task
  2586. 2025-2-24 15:59:40-debug: Unregister Layout_Life
  2587. 2025-2-24 15:59:40-debug: Unregister UI_Hall
  2588. 2025-2-24 15:59:40-debug: Unregister UI_Invite
  2589. 2025-2-24 15:59:40-debug: Unregister UI_Settings
  2590. 2025-2-24 15:59:40-debug: Unregister UI_Tips
  2591. 2025-2-24 15:59:40-debug: Unregister Layout_Win
  2592. 2025-2-24 15:59:40-debug: Unregister Layout_Main
  2593. 2025-2-24 15:59:40-debug: Unregister Layout_TimesOver
  2594. 2025-2-24 15:59:40-debug: Unregister UI_Win
  2595. 2025-2-24 15:59:40-debug: Unregister UI_Life
  2596. 2025-2-24 15:59:40-debug: Unregister Layout_Fail
  2597. 2025-2-24 15:59:40-debug: Unregister UI_TimesOver
  2598. 2025-2-24 15:59:40-debug: Unregister Cube_Infor
  2599. 2025-2-24 15:59:40-debug: Unregister UI_Main
  2600. 2025-2-24 15:59:40-debug: Unregister CreateIdiom
  2601. 2025-2-24 15:59:40-debug: Unregister UI_LatticeFull
  2602. 2025-2-24 15:59:40-debug: Unregister Layout_LatticeFull
  2603. 2025-2-24 15:59:40-debug: Unregister Layout_Lock
  2604. 2025-2-24 15:59:40-debug: Unregister UI_Lock
  2605. 2025-2-24 15:59:40-debug: Unregister Container_Manager
  2606. 2025-2-24 15:59:40-debug: Unregister UI_Fail
  2607. 2025-2-24 15:59:40-debug: Unregister Hall_Root
  2608. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
  2609. 2025-2-24 15:59:40-debug: Unregister UI_Item
  2610. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
  2611. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
  2612. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
  2613. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
  2614. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
  2615. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js'
  2616. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
  2617. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js'
  2618. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js'
  2619. 2025-2-24 15:59:40-debug: Unregister GameCtl
  2620. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js'
  2621. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js'
  2622. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js'
  2623. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js'
  2624. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js'
  2625. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js'
  2626. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js'
  2627. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js'
  2628. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js'
  2629. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js'
  2630. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js'
  2631. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js'
  2632. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js'
  2633. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js'
  2634. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js'
  2635. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js'
  2636. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js'
  2637. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js'
  2638. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js'
  2639. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js'
  2640. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js'
  2641. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js'
  2642. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js'
  2643. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js'
  2644. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js'
  2645. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js'
  2646. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js'
  2647. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js'
  2648. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js'
  2649. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js'
  2650. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js'
  2651. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js'
  2652. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js'
  2653. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js'
  2654. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js'
  2655. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js'
  2656. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js'
  2657. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js'
  2658. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js'
  2659. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js'
  2660. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js'
  2661. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js'
  2662. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js'
  2663. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js'
  2664. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js'
  2665. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js'
  2666. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js'
  2667. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js'
  2668. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js'
  2669. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js'
  2670. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js'
  2671. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js'
  2672. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js'
  2673. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js'
  2674. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js'
  2675. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js'
  2676. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js'
  2677. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js'
  2678. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js'
  2679. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js'
  2680. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js'
  2681. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js'
  2682. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js'
  2683. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js'
  2684. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js'
  2685. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js'
  2686. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js'
  2687. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js'
  2688. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js'
  2689. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js'
  2690. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js'
  2691. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js'
  2692. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js'
  2693. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js'
  2694. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js'
  2695. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js'
  2696. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js'
  2697. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js'
  2698. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js'
  2699. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js'
  2700. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js'
  2701. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js'
  2702. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js'
  2703. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js'
  2704. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js'
  2705. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js'
  2706. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js'
  2707. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js'
  2708. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js'
  2709. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js'
  2710. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js'
  2711. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js'
  2712. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js'
  2713. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js'
  2714. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js'
  2715. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js'
  2716. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js'
  2717. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js'
  2718. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js'
  2719. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js'
  2720. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js'
  2721. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js'
  2722. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js'
  2723. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js'
  2724. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js'
  2725. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js'
  2726. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js'
  2727. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js'
  2728. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js'
  2729. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js'
  2730. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js'
  2731. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js'
  2732. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js'
  2733. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js'
  2734. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js'
  2735. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js'
  2736. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js'
  2737. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js'
  2738. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js'
  2739. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js'
  2740. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js'
  2741. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  2742. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js'
  2743. 2025-2-24 15:59:40-debug: Invalidating 'pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js'
  2744. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  2745. 2025-2-24 15:59:40-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
  2746. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
  2747. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
  2748. 2025-2-24 15:59:40-debug: [[Executor]] Register BuiltinPipelineSettings
  2749. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
  2750. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
  2751. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
  2752. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js" loaded.
  2753. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js" loaded.
  2754. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js" loaded.
  2755. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js" loaded.
  2756. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js" loaded.
  2757. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js" loaded.
  2758. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js" loaded.
  2759. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js" loaded.
  2760. 2025-2-24 15:59:40-debug: [[Executor]] Register DebugViewRuntimeControl
  2761. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js" loaded.
  2762. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js" loaded.
  2763. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js" loaded.
  2764. 2025-2-24 15:59:40-debug: [[Executor]] Register ch_sdk_comp
  2765. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js" loaded.
  2766. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js" loaded.
  2767. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js" loaded.
  2768. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js" loaded.
  2769. 2025-2-24 15:59:40-debug: [[Executor]] Register __NodeEventAgent__
  2770. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js" loaded.
  2771. 2025-2-24 15:59:40-debug: [[Executor]] Register ch_start_pack
  2772. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js" loaded.
  2773. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js" loaded.
  2774. 2025-2-24 15:59:40-debug: [[Executor]] Register ResolutionAutoFit
  2775. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js" loaded.
  2776. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js" loaded.
  2777. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js" loaded.
  2778. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js" loaded.
  2779. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js" loaded.
  2780. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js" loaded.
  2781. 2025-2-24 15:59:40-debug: [[Executor]] Register ui_updater
  2782. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js" loaded.
  2783. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js" loaded.
  2784. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js" loaded.
  2785. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js" loaded.
  2786. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js" loaded.
  2787. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js" loaded.
  2788. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js" loaded.
  2789. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js" loaded.
  2790. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js" loaded.
  2791. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js" loaded.
  2792. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js" loaded.
  2793. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js" loaded.
  2794. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js" loaded.
  2795. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js" loaded.
  2796. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js" loaded.
  2797. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js" loaded.
  2798. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js" loaded.
  2799. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js" loaded.
  2800. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js" loaded.
  2801. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js" loaded.
  2802. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js" loaded.
  2803. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js" loaded.
  2804. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js" loaded.
  2805. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js" loaded.
  2806. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js" loaded.
  2807. 2025-2-24 15:59:40-debug: [[Executor]] Register ClickPenetrate
  2808. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js" loaded.
  2809. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js" loaded.
  2810. 2025-2-24 15:59:40-debug: [[Executor]] Register List
  2811. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js" loaded.
  2812. 2025-2-24 15:59:40-debug: [[Executor]] Register ListItem
  2813. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js" loaded.
  2814. 2025-2-24 15:59:40-warn: 'MotionTrail.color' hides inherited property 'cc.UIRenderer.color'. To make the current property override that implementation, add the `override: true` attribute please.
  2815. 2025-2-24 15:59:40-debug: [[Executor]] Register MovieClip
  2816. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js" loaded.
  2817. 2025-2-24 15:59:40-debug: [[Executor]] Register MotionTrail
  2818. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js" loaded.
  2819. 2025-2-24 15:59:40-debug: [[Executor]] Register SpineView
  2820. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js" loaded.
  2821. 2025-2-24 15:59:40-debug: [[Executor]] Register UISpineMovie
  2822. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js" loaded.
  2823. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js" loaded.
  2824. 2025-2-24 15:59:40-debug: [[Executor]] Register RewardFly
  2825. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js" loaded.
  2826. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js" loaded.
  2827. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_UI_Notify
  2828. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_UIAlert
  2829. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js" loaded.
  2830. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js" loaded.
  2831. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js" loaded.
  2832. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js" loaded.
  2833. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js" loaded.
  2834. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_UIWaiting
  2835. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js" loaded.
  2836. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js" loaded.
  2837. 2025-2-24 15:59:40-debug: [[Executor]] Register table_idiom_order
  2838. 2025-2-24 15:59:40-debug: [[Executor]] Register table_idiom_unorder_1_3
  2839. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js" loaded.
  2840. 2025-2-24 15:59:40-debug: [[Executor]] Register table_idiom_unorder_2_2
  2841. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js" loaded.
  2842. 2025-2-24 15:59:40-debug: [[Executor]] Register table_idiom_unorder_3_1
  2843. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js" loaded.
  2844. 2025-2-24 15:59:40-debug: [[Executor]] Register table_level
  2845. 2025-2-24 15:59:40-debug: [[Executor]] Register table_idiom
  2846. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js" loaded.
  2847. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js" loaded.
  2848. 2025-2-24 15:59:40-debug: [[Executor]] Register table_store
  2849. 2025-2-24 15:59:40-debug: [[Executor]] Register table_level_2
  2850. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js" loaded.
  2851. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js" loaded.
  2852. 2025-2-24 15:59:40-debug: [[Executor]] Register table_task
  2853. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js" loaded.
  2854. 2025-2-24 15:59:40-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\11\11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\11\11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js is not in module cache!
  2855. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_GameRules
  2856. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js" loaded.
  2857. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_GameRules
  2858. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js" loaded.
  2859. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js" loaded.
  2860. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Idioms
  2861. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js" loaded.
  2862. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Idioms
  2863. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Settings
  2864. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js" loaded.
  2865. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Tips
  2866. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js" loaded.
  2867. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js" loaded.
  2868. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Hall
  2869. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js" loaded.
  2870. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js" loaded.
  2871. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js" loaded.
  2872. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Idiom
  2873. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Head_Icon
  2874. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js" loaded.
  2875. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Rank_Item
  2876. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js" loaded.
  2877. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Rank
  2878. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js" loaded.
  2879. 2025-2-24 15:59:40-debug: [[Executor]] Register Hall
  2880. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js" loaded.
  2881. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Rank
  2882. 2025-2-24 15:59:40-warn: The type of "Sign_Reward.type" must be CCFloat or CCInteger, not Number.
  2883. 2025-2-24 15:59:40-debug: [[Executor]] Register Sign_Reward
  2884. 2025-2-24 15:59:40-warn: The type of "Sign_Reward.num" must be CCFloat or CCInteger, not Number.
  2885. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js" loaded.
  2886. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js" loaded.
  2887. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js" loaded.
  2888. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Sign
  2889. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Invite
  2890. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js" loaded.
  2891. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Sign
  2892. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js" loaded.
  2893. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js" loaded.
  2894. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Invite
  2895. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Store
  2896. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js" loaded.
  2897. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_SideBar
  2898. 2025-2-24 15:59:40-debug: [[Executor]] Register Start
  2899. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Store
  2900. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js" loaded.
  2901. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_SideBar
  2902. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js" loaded.
  2903. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js" loaded.
  2904. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Task_Item
  2905. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js" loaded.
  2906. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Task
  2907. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js" loaded.
  2908. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Task
  2909. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js" loaded.
  2910. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js" loaded.
  2911. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Life
  2912. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Life
  2913. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js" loaded.
  2914. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Hall
  2915. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js" loaded.
  2916. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Settings
  2917. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js" loaded.
  2918. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js" loaded.
  2919. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Win
  2920. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Win
  2921. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Tips
  2922. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js" loaded.
  2923. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js" loaded.
  2924. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Main
  2925. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js" loaded.
  2926. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js" loaded.
  2927. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_TimesOver
  2928. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js" loaded.
  2929. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js" loaded.
  2930. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Fail
  2931. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_TimesOver
  2932. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Main
  2933. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js" loaded.
  2934. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Fail
  2935. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js" loaded.
  2936. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js" loaded.
  2937. 2025-2-24 15:59:40-debug: [[Executor]] Register Cube_Infor
  2938. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js" loaded.
  2939. 2025-2-24 15:59:40-debug: [[Executor]] Register CreateIdiom
  2940. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_LatticeFull
  2941. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js" loaded.
  2942. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js" loaded.
  2943. 2025-2-24 15:59:40-debug: [[Executor]] Register Layout_Lock
  2944. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js" loaded.
  2945. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js" loaded.
  2946. 2025-2-24 15:59:40-debug: [[Executor]] Register GameCtl
  2947. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_LatticeFull
  2948. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js" loaded.
  2949. 2025-2-24 15:59:40-debug: [[Executor]] Register Container_Manager
  2950. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js" loaded.
  2951. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Lock
  2952. 2025-2-24 15:59:40-debug: [[Executor]] Register Hall_Root
  2953. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js" loaded.
  2954. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js" loaded.
  2955. 2025-2-24 15:59:40-debug: [[Executor]] Register UI_Item
  2956. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  2957. 2025-2-24 15:59:40-debug: [[Executor]] Module "pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js" loaded.
  2958. 2025-2-24 15:59:40-debug: Incremental keys: chSdk,chsdk
  2959. 2025-2-24 15:59:40-debug: Init bundle share assets start..., progress: 9%
  2960. 2025-2-24 15:59:40-debug: Init bundle share assets success..., progress: 9%
  2961. 2025-2-24 15:59:40-debug: handle json group in bundle internal
  2962. 2025-2-24 15:59:40-debug: handle json group in bundle internal success
  2963. 2025-2-24 15:59:40-debug: handle json group in bundle start-scene success
  2964. 2025-2-24 15:59:40-debug: handle json group in bundle resources
  2965. 2025-2-24 15:59:40-debug: handle json group in bundle start-scene
  2966. 2025-2-24 15:59:40-debug: handle json group in bundle main success
  2967. 2025-2-24 15:59:40-debug: handle json group in bundle module_extra
  2968. 2025-2-24 15:59:40-debug: handle json group in bundle module_game
  2969. 2025-2-24 15:59:40-debug: handle json group in bundle module_basic
  2970. 2025-2-24 15:59:40-debug: init image compress task 0 in bundle internal
  2971. 2025-2-24 15:59:40-debug: init image compress task 0 in bundle start-scene
  2972. 2025-2-24 15:59:40-debug: handle json group in bundle main
  2973. 2025-2-24 15:59:40-debug: handle json group in bundle resources success
  2974. 2025-2-24 15:59:40-debug: init image compress task 0 in bundle resources
  2975. 2025-2-24 15:59:40-debug: handle json group in bundle module_basic success
  2976. 2025-2-24 15:59:40-debug: init image compress task 0 in bundle module_basic
  2977. 2025-2-24 15:59:40-debug: handle json group in bundle module_extra success
  2978. 2025-2-24 15:59:40-debug: init image compress task 0 in bundle module_extra
  2979. 2025-2-24 15:59:40-debug: init image compress task 0 in bundle main
  2980. 2025-2-24 15:59:40-debug: handle json group in bundle module_game success
  2981. 2025-2-24 15:59:40-debug: init image compress task 0 in bundle module_game
  2982. 2025-2-24 15:59:40-debug: // ---- build task 查询 Asset Bundle ---- (378ms)
  2983. 2025-2-24 15:59:40-debug: run build task 查询 Asset Bundle success in 378 ms√, progress: 14%
  2984. 2025-2-24 15:59:40-debug: // ---- build task 查询 Asset Bundle ----
  2985. 2025-2-24 15:59:40-debug: [Build Memory track]: 查询 Asset Bundle start:203.71MB, end 208.48MB, increase: 4.77MB
  2986. 2025-2-24 15:59:40-debug: 查询 Asset Bundle start, progress: 14%
  2987. 2025-2-24 15:59:40-debug: // ---- build task 查询 Asset Bundle ---- (56ms)
  2988. 2025-2-24 15:59:40-debug: run build task 查询 Asset Bundle success in 56 ms√, progress: 19%
  2989. 2025-2-24 15:59:40-debug: [Build Memory track]: 查询 Asset Bundle start:208.51MB, end 208.87MB, increase: 367.02KB
  2990. 2025-2-24 15:59:40-debug: 打包脚本 start, progress: 19%
  2991. 2025-2-24 15:59:40-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  2992. 2025-2-24 15:59:40-debug: // ---- build task 打包脚本 ----
  2993. 2025-2-24 15:59:41-log: [build-script]enter sub process 31284, 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
  2994. 2025-2-24 15:59:44-debug: excute-script over with build-script 3449ms
  2995. 2025-2-24 15:59:44-debug: Generate systemJs..., progress: 19%
  2996. 2025-2-24 15:59:44-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  2997. 2025-2-24 15:59:46-debug: excute-script over with build-script 2459ms
  2998. 2025-2-24 15:59:46-debug: 构建项目脚本 start..., progress: 19%
  2999. 2025-2-24 15:59:46-debug: Build script in bundle start, progress: 19%
  3000. 2025-2-24 15:59:46-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  3001. 2025-2-24 15:59:51-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
  3002. 2025-2-24 15:59:51-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts
  3003. 2025-2-24 15:59:55-debug: excute-script over with build-script 8206ms
  3004. 2025-2-24 15:59:55-debug: Copy externalScripts success!
  3005. 2025-2-24 15:59:55-debug: Build script in bundle success, progress: 19%
  3006. 2025-2-24 15:59:55-debug: 构建项目脚本 in (8318 ms) √, progress: 19%
  3007. 2025-2-24 15:59:55-debug: 构建引擎脚本 start..., progress: 19%
  3008. 2025-2-24 15:59:55-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\\idiom\\idiom\\build\\wechatgame-001\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
  3009. 2025-2-24 15:59:55-debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}
  3010. 2025-2-24 15:59:55-debug: 构建引擎脚本 in (124 ms) √, progress: 19%
  3011. 2025-2-24 15:59:55-debug: Copy plugin script ..., progress: 19%
  3012. 2025-2-24 15:59:55-debug: Generate import-map..., progress: 19%
  3013. 2025-2-24 15:59:55-debug: // ---- build task 打包脚本 ---- (14482ms)
  3014. 2025-2-24 15:59:55-debug: run build task 打包脚本 success in 14 s√, progress: 24%
  3015. 2025-2-24 15:59:55-debug: [Build Memory track]: 打包脚本 start:209.07MB, end 207.88MB, increase: -1211.98KB
  3016. 2025-2-24 15:59:55-debug: Build Assets start, progress: 24%
  3017. 2025-2-24 15:59:55-debug: // ---- build task Build Assets ----
  3018. 2025-2-24 15:59:55-debug: Build bundles..., progress: 24%
  3019. 2025-2-24 15:59:55-debug: Pack Images start, progress: 24%
  3020. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  3021. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  3022. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  3023. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  3024. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  3025. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  3026. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  3027. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  3028. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  3029. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  3030. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  3031. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  3032. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  3033. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  3034. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  3035. 2025-2-24 15:59:55-debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  3036. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  3037. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  3038. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  3039. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  3040. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  3041. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  3042. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  3043. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  3044. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  3045. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  3046. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  3047. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  3048. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  3049. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  3050. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  3051. 2025-2-24 15:59:56-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  3052. 2025-2-24 15:59:56-debug: builder:pack-auto-atlas-image (897ms)
  3053. 2025-2-24 15:59:56-debug: Pack Images success, progress: 24%
  3054. 2025-2-24 15:59:56-debug: Compress image start..., progress: 24%
  3055. 2025-2-24 15:59:56-debug: Num of all image compress task 0, really: 0, configTasks: 0
  3056. 2025-2-24 15:59:56-debug: sort compress task {}
  3057. 2025-2-24 15:59:56-debug: No image need to compress
  3058. 2025-2-24 15:59:56-debug: Compress image success..., progress: 24%
  3059. 2025-2-24 15:59:56-debug: Output asset in bundles start, progress: 24%
  3060. 2025-2-24 15:59:56-debug: Handle all json groups in bundle internal
  3061. 2025-2-24 15:59:56-debug: Handle all json groups in bundle start-scene
  3062. 2025-2-24 15:59:56-debug: handle json group
  3063. 2025-2-24 15:59:56-debug: Handle all json groups in bundle resources
  3064. 2025-2-24 15:59:56-debug: handle json group
  3065. 2025-2-24 15:59:56-debug: Handle all json groups in bundle main
  3066. 2025-2-24 15:59:56-debug: handle json group
  3067. 2025-2-24 15:59:56-debug: handle single json
  3068. 2025-2-24 15:59:56-debug: Handle all json groups in bundle module_extra
  3069. 2025-2-24 15:59:56-debug: handle single json
  3070. 2025-2-24 15:59:56-debug: handle json group
  3071. 2025-2-24 15:59:56-debug: Handle all json groups in bundle module_basic
  3072. 2025-2-24 15:59:56-debug: handle json group
  3073. 2025-2-24 15:59:56-debug: handle json group
  3074. 2025-2-24 15:59:56-debug: Handle all json groups in bundle module_game
  3075. 2025-2-24 15:59:56-debug: handle json group
  3076. 2025-2-24 15:59:56-debug: Json group(03ccd410a) compile success,json number: 6
  3077. 2025-2-24 15:59:56-debug: handle single json
  3078. 2025-2-24 15:59:56-debug: Json group(07325bfaa) compile success,json number: 6
  3079. 2025-2-24 15:59:56-debug: Json group(0ba471961) compile success,json number: 6
  3080. 2025-2-24 15:59:56-debug: handle single json
  3081. 2025-2-24 15:59:56-debug: Json group(0524f237b) compile success,json number: 6
  3082. 2025-2-24 15:59:56-debug: Json group(045b519c1) compile success,json number: 6
  3083. 2025-2-24 15:59:56-debug: handle single json
  3084. 2025-2-24 15:59:56-debug: Json group(0a54f6860) compile success,json number: 6
  3085. 2025-2-24 15:59:56-debug: handle single json
  3086. 2025-2-24 15:59:56-debug: Json group(027fa8751) compile success,json number: 6
  3087. 2025-2-24 15:59:56-debug: Json group(08d4f0835) compile success,json number: 6
  3088. 2025-2-24 15:59:56-debug: Json group(08f30b54e) compile success,json number: 6
  3089. 2025-2-24 15:59:56-debug: Json group(093f10e90) compile success,json number: 6
  3090. 2025-2-24 15:59:56-debug: Json group(02c882590) compile success,json number: 6
  3091. 2025-2-24 15:59:56-debug: Json group(0e48af9fb) compile success,json number: 6
  3092. 2025-2-24 15:59:56-debug: Json group(0787c84da) compile success,json number: 6
  3093. 2025-2-24 15:59:56-debug: Json group(03c9cd961) compile success,json number: 6
  3094. 2025-2-24 15:59:56-debug: Json group(041ac2e1c) compile success,json number: 6
  3095. 2025-2-24 15:59:56-debug: Json group(0471cee9c) compile success,json number: 6
  3096. 2025-2-24 15:59:56-debug: Json group(04a6d010d) compile success,json number: 6
  3097. 2025-2-24 15:59:56-debug: Json group(070166e93) compile success,json number: 6
  3098. 2025-2-24 15:59:56-debug: Json group(02b639d30) compile success,json number: 6
  3099. 2025-2-24 15:59:56-debug: Json group(06db2e96b) compile success,json number: 6
  3100. 2025-2-24 15:59:56-debug: Json group(097e5daf7) compile success,json number: 6
  3101. 2025-2-24 15:59:56-debug: Json group(0c5a2fc7e) compile success,json number: 6
  3102. 2025-2-24 15:59:56-debug: Json group(091e713ef) compile success,json number: 6
  3103. 2025-2-24 15:59:56-debug: Json group(01236a39b) compile success,json number: 6
  3104. 2025-2-24 15:59:56-debug: Json group(0a46ee258) compile success,json number: 6
  3105. 2025-2-24 15:59:56-debug: Json group(033a6699b) compile success,json number: 6
  3106. 2025-2-24 15:59:56-debug: Json group(02d36d139) compile success,json number: 6
  3107. 2025-2-24 15:59:56-debug: Json group(0d54cf783) compile success,json number: 6
  3108. 2025-2-24 15:59:56-debug: handle single json
  3109. 2025-2-24 15:59:56-debug: Output asset in bundles success, progress: 24%
  3110. 2025-2-24 15:59:56-debug: Output asset in bundles start, progress: 24%
  3111. 2025-2-24 15:59:56-debug: compress config of bundle internal...
  3112. 2025-2-24 15:59:56-debug: compress config of bundle internal success
  3113. 2025-2-24 15:59:56-debug: compress config of bundle start-scene success
  3114. 2025-2-24 15:59:56-debug: compress config of bundle resources success
  3115. 2025-2-24 15:59:56-debug: compress config of bundle main...
  3116. 2025-2-24 15:59:56-debug: compress config of bundle resources...
  3117. 2025-2-24 15:59:56-debug: compress config of bundle start-scene...
  3118. 2025-2-24 15:59:56-debug: compress config of bundle module_extra success
  3119. 2025-2-24 15:59:56-debug: compress config of bundle module_extra...
  3120. 2025-2-24 15:59:56-debug: compress config of bundle module_basic...
  3121. 2025-2-24 15:59:56-debug: compress config of bundle module_basic success
  3122. 2025-2-24 15:59:56-debug: compress config of bundle main success
  3123. 2025-2-24 15:59:56-debug: compress config of bundle module_game...
  3124. 2025-2-24 15:59:56-debug: compress config of bundle module_game success
  3125. 2025-2-24 15:59:56-debug: output config of bundle start-scene
  3126. 2025-2-24 15:59:56-debug: output config of bundle internal success
  3127. 2025-2-24 15:59:56-debug: output config of bundle start-scene success
  3128. 2025-2-24 15:59:56-debug: output config of bundle resources success
  3129. 2025-2-24 15:59:56-debug: output config of bundle resources
  3130. 2025-2-24 15:59:56-debug: output config of bundle main
  3131. 2025-2-24 15:59:56-debug: output config of bundle main success
  3132. 2025-2-24 15:59:56-debug: output config of bundle module_extra success
  3133. 2025-2-24 15:59:56-debug: output config of bundle internal
  3134. 2025-2-24 15:59:56-debug: output config of bundle module_extra
  3135. 2025-2-24 15:59:56-debug: output config of bundle module_basic success
  3136. 2025-2-24 15:59:56-debug: output config of bundle module_game
  3137. 2025-2-24 15:59:56-debug: output config of bundle module_basic
  3138. 2025-2-24 15:59:56-debug: Output asset in bundles success, progress: 24%
  3139. 2025-2-24 15:59:56-debug: output config of bundle module_game success
  3140. 2025-2-24 15:59:56-debug: // ---- build task Build Assets ---- (1441ms)
  3141. 2025-2-24 15:59:56-debug: run build task Build Assets success in 1 s√, progress: 29%
  3142. 2025-2-24 15:59:56-debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
  3143. 2025-2-24 15:59:56-debug: [Build Memory track]: Build Assets start:207.92MB, end 210.10MB, increase: 2.18MB
  3144. 2025-2-24 15:59:56-debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
  3145. 2025-2-24 15:59:56-debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (73ms)
  3146. 2025-2-24 15:59:56-debug: wechatgame:(onAfterBundleBuildTask) in 73 ms ✓, progress: 29%
  3147. 2025-2-24 15:59:56-debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
  3148. 2025-2-24 15:59:56-debug: // ---- build task wechatgame:onAfterBuildAssets ----
  3149. 2025-2-24 15:59:56-debug: // ---- build task wechatgame:onAfterBuildAssets ---- (48ms)
  3150. 2025-2-24 15:59:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3151. 2025-2-24 15:59:56-debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
  3152. 2025-2-24 15:59:56-debug: wechatgame:(onAfterBuildAssets) in 48 ms ✓, progress: 31%
  3153. 2025-2-24 15:59:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (49ms)
  3154. 2025-2-24 15:59:56-debug: run build task 整理部分构建选项内数据到 settings.json success in 49 ms√, progress: 33%
  3155. 2025-2-24 15:59:56-debug: // ---- build task 填充脚本数据到 settings.json ----
  3156. 2025-2-24 15:59:56-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.55MB, end 210.68MB, increase: 132.14KB
  3157. 2025-2-24 15:59:56-debug: 填充脚本数据到 settings.json start, progress: 33%
  3158. 2025-2-24 15:59:56-debug: // ---- build task 填充脚本数据到 settings.json ---- (49ms)
  3159. 2025-2-24 15:59:56-debug: run build task 填充脚本数据到 settings.json success in 49 ms√, progress: 34%
  3160. 2025-2-24 15:59:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3161. 2025-2-24 15:59:56-debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.72MB, end 210.85MB, increase: 135.27KB
  3162. 2025-2-24 15:59:56-debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
  3163. 2025-2-24 15:59:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (48ms)
  3164. 2025-2-24 15:59:57-debug: run build task 整理部分构建选项内数据到 settings.json success in 48 ms√, progress: 36%
  3165. 2025-2-24 15:59:57-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.88MB, end 211.14MB, increase: 261.53KB
  3166. 2025-2-24 15:59:57-debug: // ---- build task wechatgame:onBeforeCompressSettings ----
  3167. 2025-2-24 15:59:57-debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
  3168. 2025-2-24 15:59:57-debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (48ms)
  3169. 2025-2-24 15:59:57-debug: wechatgame:(onBeforeCompressSettings) in 48 ms ✓, progress: 38%
  3170. 2025-2-24 15:59:57-debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
  3171. 2025-2-24 15:59:57-debug: // ---- build task cocos-service:onBeforeCompressSettings ----
  3172. 2025-2-24 15:59:57-debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (267ms)
  3173. 2025-2-24 15:59:57-debug: cocos-service:(onBeforeCompressSettings) in 267 ms ✓, progress: 40%
  3174. 2025-2-24 15:59:57-debug: 整理静态模板文件 start, progress: 40%
  3175. 2025-2-24 15:59:57-debug: // ---- build task 整理静态模板文件 ----
  3176. 2025-2-24 15:59:57-debug: // ---- build task 整理静态模板文件 ---- (88ms)
  3177. 2025-2-24 15:59:57-debug: run build task 整理静态模板文件 success in 88 ms√, progress: 45%
  3178. 2025-2-24 15:59:57-debug: // ---- build task cocos-service:onAfterCompressSettings ----
  3179. 2025-2-24 15:59:57-debug: [Build Memory track]: 整理静态模板文件 start:211.57MB, end 209.39MB, increase: -2225.39KB
  3180. 2025-2-24 15:59:57-debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
  3181. 2025-2-24 15:59:57-debug: // ---- build task cocos-service:onAfterCompressSettings ---- (86ms)
  3182. 2025-2-24 15:59:57-debug: cocos-service:(onAfterCompressSettings) in 86 ms ✓, progress: 46%
  3183. 2025-2-24 15:59:57-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
  3184. 2025-2-24 15:59:57-debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
  3185. 2025-2-24 15:59:57-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (53ms)
  3186. 2025-2-24 15:59:57-debug: wechatgame:(onBeforeCopyBuildTemplate) in 53 ms ✓, progress: 48%
  3187. 2025-2-24 15:59:57-debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
  3188. 2025-2-24 15:59:57-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
  3189. 2025-2-24 15:59:57-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (56ms)
  3190. 2025-2-24 15:59:57-debug: wechatgame:(onAfterCopyBuildTemplate) in 56 ms ✓, progress: 50%
  3191. 2025-2-24 15:59:57-debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
  3192. 2025-2-24 15:59:57-debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
  3193. 2025-2-24 15:59:57-debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (46ms)
  3194. 2025-2-24 15:59:57-debug: run build task 给所有的资源加上 MD5 后缀 success in 46 ms√, progress: 60%
  3195. 2025-2-24 15:59:57-debug: // ---- build task wechatgame:onAfterBuild ----
  3196. 2025-2-24 15:59:57-debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:210.18MB, end 210.31MB, increase: 130.65KB
  3197. 2025-2-24 15:59:57-debug: wechatgame:(onAfterBuild) start..., progress: 60%
  3198. 2025-2-24 15:59:58-debug: // ---- build task wechatgame:onAfterBuild ---- (680ms)
  3199. 2025-2-24 15:59:58-debug: // ---- build task cocos-service:onAfterBuild ----
  3200. 2025-2-24 15:59:58-debug: wechatgame:(onAfterBuild) in 680 ms ✓, progress: 62%
  3201. 2025-2-24 15:59:58-debug: cocos-service:(onAfterBuild) start..., progress: 62%
  3202. 2025-2-24 15:59:58-debug: // ---- build task cocos-service:onAfterBuild ---- (88ms)
  3203. 2025-2-24 15:59:58-debug: cocos-service:(onAfterBuild) in 88 ms ✓, progress: 64%
  3204. 2025-2-24 15:59:58-debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
  3205. 2025-2-24 15:59:58-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
  3206. 2025-2-24 15:59:58-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (40ms)
  3207. 2025-2-24 15:59:58-debug: adsense-h5g-plugin:(onAfterBuild) in 40 ms ✓, progress: 65%
  3208. 2025-2-24 15:59:58-log: Asset DB is resume!
  3209. 2025-2-24 15:59:58-debug: builder:build-project-total (18804ms)
  3210. 2025-2-24 15:59:58-debug: build success in 18804!
  3211. 2025-2-24 15:59:58-debug: [Build Memory track]: builder:build-project-total start:203.87MB, end 213.75MB, increase: 9.88MB
  3212. 2025-2-24 15:59:58-debug: ================================ build Task (wechatgame-001) Finished in (18 s)ms ================================
  3213. 2025-2-24 15:59:58-debug: Stop record console. {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  3214. 2025-2-24 16:00:20-debug: refresh db internal success
  3215. 2025-2-24 16:00:20-debug: refresh db assets success
  3216. 2025-2-24 16:00:20-debug: Run asset db hook engine-extends:afterRefresh ...
  3217. 2025-2-24 16:00:20-debug: Run asset db hook engine-extends:afterRefresh success!
  3218. 2025-2-24 16:00:20-debug: asset-db:refresh-all-database (133ms)
  3219. 2025-2-24 16:00:20-debug: asset-db:worker-effect-data-processing (1ms)
  3220. 2025-2-24 16:00:20-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3221. 2025-2-24 16:07:00-debug: refresh db internal success
  3222. 2025-2-24 16:07:00-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\hall\Hall.ts background: #aaff85; color: #000; color: #000;
  3223. 2025-2-24 16:07:00-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Main\UI_Main.ts background: #aaff85; color: #000; color: #000;
  3224. 2025-2-24 16:07:00-debug: refresh db assets success
  3225. 2025-2-24 16:07:00-debug: Run asset db hook engine-extends:afterRefresh ...
  3226. 2025-2-24 16:07:00-debug: Run asset db hook engine-extends:afterRefresh success!
  3227. 2025-2-24 16:07:00-debug: asset-db:refresh-all-database (254ms)
  3228. 2025-2-24 16:07:00-debug: asset-db:worker-effect-data-processing (3ms)
  3229. 2025-2-24 16:07:00-debug: asset-db-hook-engine-extends-afterRefresh (4ms)
  3230. 2025-2-24 16:07:01-debug: refresh db internal success
  3231. 2025-2-24 16:07:01-debug: refresh db assets success
  3232. 2025-2-24 16:07:01-debug: Run asset db hook engine-extends:afterRefresh ...
  3233. 2025-2-24 16:07:01-debug: Run asset db hook engine-extends:afterRefresh success!
  3234. 2025-2-24 16:07:01-debug: asset-db:refresh-all-database (225ms)
  3235. 2025-2-24 16:07:01-debug: asset-db:worker-effect-data-processing (1ms)
  3236. 2025-2-24 16:07:01-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3237. 2025-2-24 16:07:02-debug: Start record console... {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  3238. 2025-2-24 16:07:02-debug: =================================== build Task (wechatgame-001) Start ================================
  3239. 2025-2-24 16:07:02-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-001","taskName":"wechatgame-001","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":"wxc0fb4a435b39ab92","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[],"__version__":"3.0.7"}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-20 15-37.log"}
  3240. 2025-2-24 16:07:02-debug: Build with Cocos Creator 3.8.4
  3241. 2025-2-24 16:07:02-debug: cocos-service:(onBeforeBuild) start..., progress: 0%
  3242. 2025-2-24 16:07:02-debug: // ---- build task cocos-service:onBeforeBuild ----
  3243. 2025-2-24 16:07:03-debug: // ---- build task cocos-service:onBeforeBuild ---- (332ms)
  3244. 2025-2-24 16:07:03-debug: cocos-service:(onBeforeBuild) in 332 ms ✓, progress: 2%
  3245. 2025-2-24 16:07:03-debug: scene:(onBeforeBuild) start..., progress: 2%
  3246. 2025-2-24 16:07:03-debug: // ---- build task scene:onBeforeBuild ----
  3247. 2025-2-24 16:07:03-debug: // ---- build task scene:onBeforeBuild ---- (66ms)
  3248. 2025-2-24 16:07:03-log: Asset DB is paused with build!
  3249. 2025-2-24 16:07:03-debug: Start lock asset db..., progress: 4%
  3250. 2025-2-24 16:07:03-debug: Query all assets info in project
  3251. 2025-2-24 16:07:03-debug: scene:(onBeforeBuild) in 66 ms ✓, progress: 4%
  3252. 2025-2-24 16:07:03-debug: init custom config: keepNodeUuid: false, useCache: true
  3253. 2025-2-24 16:07:03-debug: wechatgame:(onAfterInit) start..., progress: 4%
  3254. 2025-2-24 16:07:03-debug: // ---- build task wechatgame:onAfterInit ----
  3255. 2025-2-24 16:07:03-debug: // ---- build task wechatgame:onAfterInit ---- (29ms)
  3256. 2025-2-24 16:07:03-debug: wechatgame:(onAfterInit) in 29 ms ✓, progress: 5%
  3257. 2025-2-24 16:07:03-debug: // ---- build task cocos-service:onAfterInit ----
  3258. 2025-2-24 16:07:03-debug: cocos-service:(onAfterInit) start..., progress: 5%
  3259. 2025-2-24 16:07:04-debug: // ---- build task cocos-service:onAfterInit ---- (512ms)
  3260. 2025-2-24 16:07:04-debug: cocos-service:(onAfterInit) in 512 ms ✓, progress: 7%
  3261. 2025-2-24 16:07:04-debug: engine:(onAfterInit) start..., progress: 7%
  3262. 2025-2-24 16:07:04-debug: // ---- build task engine:onAfterInit ----
  3263. 2025-2-24 16:07:04-debug: // ---- build task engine:onAfterInit ---- (49ms)
  3264. 2025-2-24 16:07:04-debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
  3265. 2025-2-24 16:07:04-debug: // ---- build task wechatgame:onBeforeBundleInit ----
  3266. 2025-2-24 16:07:04-debug: engine:(onAfterInit) in 49 ms ✓, progress: 9%
  3267. 2025-2-24 16:07:04-debug: // ---- build task wechatgame:onBeforeBundleInit ---- (48ms)
  3268. 2025-2-24 16:07:04-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
  3269. 2025-2-24 16:07:04-debug: wechatgame:(onBeforeBundleInit) in 48 ms ✓, progress: 9%
  3270. 2025-2-24 16:07:04-debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
  3271. 2025-2-24 16:07:04-debug: [adsense-h5g-plugin] remove script success
  3272. 2025-2-24 16:07:04-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (54ms)
  3273. 2025-2-24 16:07:04-debug: adsense-h5g-plugin:(onBeforeBundleInit) in 54 ms ✓, progress: 9%
  3274. 2025-2-24 16:07:04-debug: Init all bundles start..., progress: 9%
  3275. 2025-2-24 16:07:04-debug: // ---- build task 查询 Asset Bundle ----
  3276. 2025-2-24 16:07:04-debug: Init bundle root assets start..., progress: 9%
  3277. 2025-2-24 16:07:04-debug: 查询 Asset Bundle start, progress: 9%
  3278. 2025-2-24 16:07:04-debug: Num of bundles: 7..., progress: 9%
  3279. 2025-2-24 16:07: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
  3280. 2025-2-24 16:07:04-debug: Number of all scenes: 3
  3281. 2025-2-24 16:07:04-debug: Number of other assets: 1286
  3282. 2025-2-24 16:07:04-debug: Init bundle root assets success..., progress: 9%
  3283. 2025-2-24 16:07:04-debug: Number of all scripts: 131
  3284. 2025-2-24 16:07:04-debug: reload all scripts.
  3285. 2025-2-24 16:07:04-debug: Set detail map pack:///resolution-detail-map.json: {}
  3286. 2025-2-24 16:07:04-debug: Unregister BuiltinPipelineSettings
  3287. 2025-2-24 16:07:04-debug: Unregister DebugViewRuntimeControl
  3288. 2025-2-24 16:07:04-debug: Unregister ch_start_pack
  3289. 2025-2-24 16:07:04-debug: Unregister __NodeEventAgent__
  3290. 2025-2-24 16:07:04-debug: Unregister ui_updater
  3291. 2025-2-24 16:07:04-debug: Unregister ResolutionAutoFit
  3292. 2025-2-24 16:07:04-debug: Unregister ListItem
  3293. 2025-2-24 16:07:04-debug: Unregister ch_sdk_comp
  3294. 2025-2-24 16:07:04-debug: Unregister ClickPenetrate
  3295. 2025-2-24 16:07:04-debug: Unregister MovieClip
  3296. 2025-2-24 16:07:04-debug: Unregister MotionTrail
  3297. 2025-2-24 16:07:04-debug: Unregister RewardFly
  3298. 2025-2-24 16:07:04-debug: Unregister SpineView
  3299. 2025-2-24 16:07:04-debug: Unregister UISpineMovie
  3300. 2025-2-24 16:07:04-debug: Unregister List
  3301. 2025-2-24 16:07:04-debug: Unregister Layout_UI_Notify
  3302. 2025-2-24 16:07:04-debug: Unregister Layout_UIWaiting
  3303. 2025-2-24 16:07:04-debug: Unregister table_idiom_order
  3304. 2025-2-24 16:07:04-debug: Unregister table_idiom
  3305. 2025-2-24 16:07:04-debug: Unregister Layout_UIAlert
  3306. 2025-2-24 16:07:04-debug: Unregister table_idiom_unorder_2_2
  3307. 2025-2-24 16:07:04-debug: Unregister table_level
  3308. 2025-2-24 16:07:04-debug: Unregister table_idiom_unorder_1_3
  3309. 2025-2-24 16:07:04-debug: Unregister table_level_2
  3310. 2025-2-24 16:07:04-debug: Unregister table_idiom_unorder_3_1
  3311. 2025-2-24 16:07:04-debug: Unregister table_task
  3312. 2025-2-24 16:07:04-debug: Unregister Layout_GameRules
  3313. 2025-2-24 16:07:04-debug: Unregister UI_Idiom
  3314. 2025-2-24 16:07:04-debug: Unregister Layout_Idioms
  3315. 2025-2-24 16:07:04-debug: Unregister table_store
  3316. 2025-2-24 16:07:04-debug: Unregister Layout_Settings
  3317. 2025-2-24 16:07:04-debug: Unregister Layout_Tips
  3318. 2025-2-24 16:07:04-debug: Unregister UI_GameRules
  3319. 2025-2-24 16:07:04-debug: Unregister UI_Idioms
  3320. 2025-2-24 16:07:04-debug: Unregister Layout_Hall
  3321. 2025-2-24 16:07:04-debug: Unregister UI_Rank_Item
  3322. 2025-2-24 16:07:04-debug: Unregister UI_Head_Icon
  3323. 2025-2-24 16:07:04-debug: Unregister UI_Rank
  3324. 2025-2-24 16:07:04-debug: Unregister Layout_Rank
  3325. 2025-2-24 16:07:04-debug: Unregister Hall
  3326. 2025-2-24 16:07:04-debug: Unregister Sign_Reward
  3327. 2025-2-24 16:07:04-debug: Unregister Layout_Invite
  3328. 2025-2-24 16:07:04-debug: Unregister UI_Sign
  3329. 2025-2-24 16:07:04-debug: Unregister Layout_Sign
  3330. 2025-2-24 16:07:04-debug: Unregister UI_Store
  3331. 2025-2-24 16:07:04-debug: Unregister Layout_Store
  3332. 2025-2-24 16:07:04-debug: Unregister Layout_SideBar
  3333. 2025-2-24 16:07:04-debug: Unregister UI_Invite
  3334. 2025-2-24 16:07:04-debug: Unregister UI_SideBar
  3335. 2025-2-24 16:07:04-debug: Unregister UI_Task_Item
  3336. 2025-2-24 16:07:04-debug: Unregister UI_Task
  3337. 2025-2-24 16:07:04-debug: Unregister Start
  3338. 2025-2-24 16:07:04-debug: Unregister Layout_Task
  3339. 2025-2-24 16:07:04-debug: Unregister Layout_Life
  3340. 2025-2-24 16:07:04-debug: Unregister UI_Hall
  3341. 2025-2-24 16:07:04-debug: Unregister UI_Tips
  3342. 2025-2-24 16:07:04-debug: Unregister UI_Settings
  3343. 2025-2-24 16:07:04-debug: Unregister UI_Life
  3344. 2025-2-24 16:07:04-debug: Unregister Layout_Win
  3345. 2025-2-24 16:07:04-debug: Unregister Layout_Main
  3346. 2025-2-24 16:07:04-debug: Unregister Layout_TimesOver
  3347. 2025-2-24 16:07:04-debug: Unregister Layout_Fail
  3348. 2025-2-24 16:07:04-debug: Unregister UI_TimesOver
  3349. 2025-2-24 16:07:04-debug: Unregister UI_Fail
  3350. 2025-2-24 16:07:04-debug: Unregister UI_Win
  3351. 2025-2-24 16:07:04-debug: Unregister Cube_Infor
  3352. 2025-2-24 16:07:04-debug: Unregister CreateIdiom
  3353. 2025-2-24 16:07:04-debug: Unregister Layout_LatticeFull
  3354. 2025-2-24 16:07:04-debug: Unregister Layout_Lock
  3355. 2025-2-24 16:07:04-debug: Unregister UI_Main
  3356. 2025-2-24 16:07:04-debug: Unregister UI_Lock
  3357. 2025-2-24 16:07:04-debug: Unregister UI_LatticeFull
  3358. 2025-2-24 16:07:04-debug: Unregister Container_Manager
  3359. 2025-2-24 16:07:04-debug: Unregister UI_Item
  3360. 2025-2-24 16:07:04-debug: Unregister Hall_Root
  3361. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
  3362. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
  3363. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
  3364. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
  3365. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
  3366. 2025-2-24 16:07:04-debug: Unregister GameCtl
  3367. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
  3368. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js'
  3369. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
  3370. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js'
  3371. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js'
  3372. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js'
  3373. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js'
  3374. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js'
  3375. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js'
  3376. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js'
  3377. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js'
  3378. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js'
  3379. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js'
  3380. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js'
  3381. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js'
  3382. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js'
  3383. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js'
  3384. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js'
  3385. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js'
  3386. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js'
  3387. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js'
  3388. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js'
  3389. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js'
  3390. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js'
  3391. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js'
  3392. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js'
  3393. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js'
  3394. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js'
  3395. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js'
  3396. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js'
  3397. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js'
  3398. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js'
  3399. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js'
  3400. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js'
  3401. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js'
  3402. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js'
  3403. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js'
  3404. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js'
  3405. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js'
  3406. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js'
  3407. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js'
  3408. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js'
  3409. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js'
  3410. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js'
  3411. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js'
  3412. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js'
  3413. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js'
  3414. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js'
  3415. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js'
  3416. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js'
  3417. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js'
  3418. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js'
  3419. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js'
  3420. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js'
  3421. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js'
  3422. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js'
  3423. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js'
  3424. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js'
  3425. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js'
  3426. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js'
  3427. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js'
  3428. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js'
  3429. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js'
  3430. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js'
  3431. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js'
  3432. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js'
  3433. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js'
  3434. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js'
  3435. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js'
  3436. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js'
  3437. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js'
  3438. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js'
  3439. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js'
  3440. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js'
  3441. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js'
  3442. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js'
  3443. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js'
  3444. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js'
  3445. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js'
  3446. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js'
  3447. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js'
  3448. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js'
  3449. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js'
  3450. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js'
  3451. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js'
  3452. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js'
  3453. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js'
  3454. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js'
  3455. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js'
  3456. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js'
  3457. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js'
  3458. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js'
  3459. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js'
  3460. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js'
  3461. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js'
  3462. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js'
  3463. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js'
  3464. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js'
  3465. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js'
  3466. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js'
  3467. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js'
  3468. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js'
  3469. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js'
  3470. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js'
  3471. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js'
  3472. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js'
  3473. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js'
  3474. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js'
  3475. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js'
  3476. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js'
  3477. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js'
  3478. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js'
  3479. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js'
  3480. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js'
  3481. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js'
  3482. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js'
  3483. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js'
  3484. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js'
  3485. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js'
  3486. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js'
  3487. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js'
  3488. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js'
  3489. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js'
  3490. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js'
  3491. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js'
  3492. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js'
  3493. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js'
  3494. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  3495. 2025-2-24 16:07:04-debug: Invalidating 'pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js'
  3496. 2025-2-24 16:07:04-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
  3497. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  3498. 2025-2-24 16:07:04-debug: [[Executor]] Register BuiltinPipelineSettings
  3499. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
  3500. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
  3501. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
  3502. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
  3503. 2025-2-24 16:07:04-debug: [[Executor]] Register DebugViewRuntimeControl
  3504. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js" loaded.
  3505. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js" loaded.
  3506. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
  3507. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js" loaded.
  3508. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js" loaded.
  3509. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js" loaded.
  3510. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js" loaded.
  3511. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js" loaded.
  3512. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js" loaded.
  3513. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js" loaded.
  3514. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js" loaded.
  3515. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js" loaded.
  3516. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js" loaded.
  3517. 2025-2-24 16:07:04-debug: [[Executor]] Register ch_sdk_comp
  3518. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js" loaded.
  3519. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js" loaded.
  3520. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js" loaded.
  3521. 2025-2-24 16:07:04-debug: [[Executor]] Register __NodeEventAgent__
  3522. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js" loaded.
  3523. 2025-2-24 16:07:04-debug: [[Executor]] Register ch_start_pack
  3524. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js" loaded.
  3525. 2025-2-24 16:07:04-debug: [[Executor]] Register ui_updater
  3526. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js" loaded.
  3527. 2025-2-24 16:07:04-debug: [[Executor]] Register ResolutionAutoFit
  3528. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js" loaded.
  3529. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js" loaded.
  3530. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js" loaded.
  3531. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js" loaded.
  3532. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js" loaded.
  3533. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js" loaded.
  3534. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js" loaded.
  3535. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js" loaded.
  3536. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js" loaded.
  3537. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js" loaded.
  3538. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js" loaded.
  3539. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js" loaded.
  3540. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js" loaded.
  3541. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js" loaded.
  3542. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js" loaded.
  3543. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js" loaded.
  3544. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js" loaded.
  3545. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js" loaded.
  3546. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js" loaded.
  3547. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js" loaded.
  3548. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js" loaded.
  3549. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js" loaded.
  3550. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js" loaded.
  3551. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js" loaded.
  3552. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js" loaded.
  3553. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js" loaded.
  3554. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js" loaded.
  3555. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js" loaded.
  3556. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js" loaded.
  3557. 2025-2-24 16:07:04-debug: [[Executor]] Register ClickPenetrate
  3558. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js" loaded.
  3559. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js" loaded.
  3560. 2025-2-24 16:07:04-debug: [[Executor]] Register ListItem
  3561. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js" loaded.
  3562. 2025-2-24 16:07:04-debug: [[Executor]] Register List
  3563. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js" loaded.
  3564. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js" loaded.
  3565. 2025-2-24 16:07:04-warn: 'MotionTrail.color' hides inherited property 'cc.UIRenderer.color'. To make the current property override that implementation, add the `override: true` attribute please.
  3566. 2025-2-24 16:07:04-debug: [[Executor]] Register MotionTrail
  3567. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js" loaded.
  3568. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js" loaded.
  3569. 2025-2-24 16:07:04-debug: [[Executor]] Register MovieClip
  3570. 2025-2-24 16:07:04-debug: [[Executor]] Register RewardFly
  3571. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js" loaded.
  3572. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js" loaded.
  3573. 2025-2-24 16:07:04-debug: [[Executor]] Register SpineView
  3574. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js" loaded.
  3575. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_UIAlert
  3576. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js" loaded.
  3577. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js" loaded.
  3578. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js" loaded.
  3579. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js" loaded.
  3580. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js" loaded.
  3581. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_UI_Notify
  3582. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js" loaded.
  3583. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js" loaded.
  3584. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js" loaded.
  3585. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js" loaded.
  3586. 2025-2-24 16:07:04-debug: [[Executor]] Register table_idiom
  3587. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js" loaded.
  3588. 2025-2-24 16:07:04-debug: [[Executor]] Register table_idiom_order
  3589. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js" loaded.
  3590. 2025-2-24 16:07:04-debug: [[Executor]] Register table_idiom_unorder_1_3
  3591. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js" loaded.
  3592. 2025-2-24 16:07:04-debug: [[Executor]] Register table_idiom_unorder_2_2
  3593. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js" loaded.
  3594. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_UIWaiting
  3595. 2025-2-24 16:07:04-debug: [[Executor]] Register table_idiom_unorder_3_1
  3596. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js" loaded.
  3597. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js" loaded.
  3598. 2025-2-24 16:07:04-debug: [[Executor]] Register UISpineMovie
  3599. 2025-2-24 16:07:04-debug: [[Executor]] Register table_level_2
  3600. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js" loaded.
  3601. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js" loaded.
  3602. 2025-2-24 16:07:04-debug: [[Executor]] Register table_task
  3603. 2025-2-24 16:07:04-debug: [[Executor]] Register table_level
  3604. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js" loaded.
  3605. 2025-2-24 16:07:04-debug: [[Executor]] Register table_store
  3606. 2025-2-24 16:07:04-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8a\8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\8a\8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js is not in module cache!
  3607. 2025-2-24 16:07:04-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ae\ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\ae\ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js is not in module cache!
  3608. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_GameRules
  3609. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_GameRules
  3610. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js" loaded.
  3611. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js" loaded.
  3612. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Idiom
  3613. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js" loaded.
  3614. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js" loaded.
  3615. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Idioms
  3616. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js" loaded.
  3617. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js" loaded.
  3618. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Idioms
  3619. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Settings
  3620. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js" loaded.
  3621. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js" loaded.
  3622. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Hall
  3623. 2025-2-24 16:07:04-debug: [[Executor]] Register Hall
  3624. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js" loaded.
  3625. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Tips
  3626. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Head_Icon
  3627. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Rank_Item
  3628. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js" loaded.
  3629. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Rank
  3630. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js" loaded.
  3631. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Rank
  3632. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js" loaded.
  3633. 2025-2-24 16:07:04-debug: [[Executor]] Register Sign_Reward
  3634. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js" loaded.
  3635. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js" loaded.
  3636. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js" loaded.
  3637. 2025-2-24 16:07:04-warn: The type of "Sign_Reward.type" must be CCFloat or CCInteger, not Number.
  3638. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js" loaded.
  3639. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Sign
  3640. 2025-2-24 16:07:04-warn: The type of "Sign_Reward.num" must be CCFloat or CCInteger, not Number.
  3641. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js" loaded.
  3642. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js" loaded.
  3643. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Sign
  3644. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Invite
  3645. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Store
  3646. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js" loaded.
  3647. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js" loaded.
  3648. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Store
  3649. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js" loaded.
  3650. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js" loaded.
  3651. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_SideBar
  3652. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js" loaded.
  3653. 2025-2-24 16:07:04-debug: [[Executor]] Register Start
  3654. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Invite
  3655. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_SideBar
  3656. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js" loaded.
  3657. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Task
  3658. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Task_Item
  3659. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js" loaded.
  3660. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js" loaded.
  3661. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js" loaded.
  3662. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js" loaded.
  3663. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Life
  3664. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Life
  3665. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js" loaded.
  3666. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Task
  3667. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Hall
  3668. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js" loaded.
  3669. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js" loaded.
  3670. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Settings
  3671. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js" loaded.
  3672. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js" loaded.
  3673. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Tips
  3674. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Win
  3675. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Main
  3676. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js" loaded.
  3677. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js" loaded.
  3678. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js" loaded.
  3679. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Fail
  3680. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_TimesOver
  3681. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js" loaded.
  3682. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Win
  3683. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_TimesOver
  3684. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js" loaded.
  3685. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Fail
  3686. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js" loaded.
  3687. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js" loaded.
  3688. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Main
  3689. 2025-2-24 16:07:04-debug: [[Executor]] Register CreateIdiom
  3690. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js" loaded.
  3691. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_LatticeFull
  3692. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js" loaded.
  3693. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_LatticeFull
  3694. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js" loaded.
  3695. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js" loaded.
  3696. 2025-2-24 16:07:04-debug: [[Executor]] Register Layout_Lock
  3697. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js" loaded.
  3698. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js" loaded.
  3699. 2025-2-24 16:07:04-debug: [[Executor]] Register GameCtl
  3700. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js" loaded.
  3701. 2025-2-24 16:07:04-debug: [[Executor]] Register Cube_Infor
  3702. 2025-2-24 16:07:04-debug: [[Executor]] Register Container_Manager
  3703. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Lock
  3704. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js" loaded.
  3705. 2025-2-24 16:07:04-debug: [[Executor]] Register UI_Item
  3706. 2025-2-24 16:07:04-debug: [[Executor]] Register Hall_Root
  3707. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js" loaded.
  3708. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  3709. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js" loaded.
  3710. 2025-2-24 16:07:04-debug: [[Executor]] Module "pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js" loaded.
  3711. 2025-2-24 16:07:04-debug: Incremental keys: chSdk,chsdk
  3712. 2025-2-24 16:07:04-debug: Init bundle share assets start..., progress: 9%
  3713. 2025-2-24 16:07:04-debug: Init bundle share assets success..., progress: 9%
  3714. 2025-2-24 16:07:04-debug: handle json group in bundle internal
  3715. 2025-2-24 16:07:04-debug: handle json group in bundle internal success
  3716. 2025-2-24 16:07:04-debug: handle json group in bundle start-scene success
  3717. 2025-2-24 16:07:04-debug: handle json group in bundle resources
  3718. 2025-2-24 16:07:04-debug: handle json group in bundle start-scene
  3719. 2025-2-24 16:07:04-debug: handle json group in bundle main success
  3720. 2025-2-24 16:07:04-debug: handle json group in bundle module_extra
  3721. 2025-2-24 16:07:04-debug: handle json group in bundle main
  3722. 2025-2-24 16:07:04-debug: handle json group in bundle module_basic
  3723. 2025-2-24 16:07:04-debug: init image compress task 0 in bundle internal
  3724. 2025-2-24 16:07:04-debug: init image compress task 0 in bundle start-scene
  3725. 2025-2-24 16:07:04-debug: handle json group in bundle module_game
  3726. 2025-2-24 16:07:04-debug: init image compress task 0 in bundle main
  3727. 2025-2-24 16:07:04-debug: handle json group in bundle resources success
  3728. 2025-2-24 16:07:04-debug: init image compress task 0 in bundle module_basic
  3729. 2025-2-24 16:07:04-debug: init image compress task 0 in bundle resources
  3730. 2025-2-24 16:07:04-debug: handle json group in bundle module_basic success
  3731. 2025-2-24 16:07:04-debug: init image compress task 0 in bundle module_extra
  3732. 2025-2-24 16:07:04-debug: handle json group in bundle module_extra success
  3733. 2025-2-24 16:07:04-debug: handle json group in bundle module_game success
  3734. 2025-2-24 16:07:04-debug: init image compress task 0 in bundle module_game
  3735. 2025-2-24 16:07:04-debug: // ---- build task 查询 Asset Bundle ---- (465ms)
  3736. 2025-2-24 16:07:04-debug: 查询 Asset Bundle start, progress: 14%
  3737. 2025-2-24 16:07:04-debug: [Build Memory track]: 查询 Asset Bundle start:215.47MB, end 223.05MB, increase: 7.58MB
  3738. 2025-2-24 16:07:04-debug: // ---- build task 查询 Asset Bundle ----
  3739. 2025-2-24 16:07:04-debug: run build task 查询 Asset Bundle success in 465 ms√, progress: 14%
  3740. 2025-2-24 16:07:04-debug: run build task 查询 Asset Bundle success in 110 ms√, progress: 19%
  3741. 2025-2-24 16:07:04-debug: [Build Memory track]: 查询 Asset Bundle start:223.08MB, end 223.45MB, increase: 376.39KB
  3742. 2025-2-24 16:07:04-debug: 打包脚本 start, progress: 19%
  3743. 2025-2-24 16:07:04-debug: // ---- build task 打包脚本 ----
  3744. 2025-2-24 16:07:04-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  3745. 2025-2-24 16:07:04-debug: // ---- build task 查询 Asset Bundle ---- (110ms)
  3746. 2025-2-24 16:07:05-log: [build-script]enter sub process 18396, 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
  3747. 2025-2-24 16:07:08-debug: excute-script over with build-script 3376ms
  3748. 2025-2-24 16:07:08-debug: Generate systemJs..., progress: 19%
  3749. 2025-2-24 16:07:08-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  3750. 2025-2-24 16:07:10-debug: excute-script over with build-script 2435ms
  3751. 2025-2-24 16:07:10-debug: 构建项目脚本 start..., progress: 19%
  3752. 2025-2-24 16:07:10-debug: Build script in bundle start, progress: 19%
  3753. 2025-2-24 16:07:10-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  3754. 2025-2-24 16:07:15-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts
  3755. 2025-2-24 16:07:15-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts
  3756. 2025-2-24 16:07:18-debug: excute-script over with build-script 7948ms
  3757. 2025-2-24 16:07:18-debug: Build script in bundle success, progress: 19%
  3758. 2025-2-24 16:07:18-debug: Copy externalScripts success!
  3759. 2025-2-24 16:07:18-debug: 构建项目脚本 in (8066 ms) √, progress: 19%
  3760. 2025-2-24 16:07:18-debug: 构建引擎脚本 start..., progress: 19%
  3761. 2025-2-24 16:07:18-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\\idiom\\idiom\\build\\wechatgame-001\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
  3762. 2025-2-24 16:07:18-debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}
  3763. 2025-2-24 16:07:18-debug: Generate import-map..., progress: 19%
  3764. 2025-2-24 16:07:18-debug: 构建引擎脚本 in (125 ms) √, progress: 19%
  3765. 2025-2-24 16:07:18-debug: Copy plugin script ..., progress: 19%
  3766. 2025-2-24 16:07:18-debug: // ---- build task 打包脚本 ---- (14122ms)
  3767. 2025-2-24 16:07:18-debug: run build task 打包脚本 success in 14 s√, progress: 24%
  3768. 2025-2-24 16:07:18-debug: [Build Memory track]: 打包脚本 start:223.63MB, end 219.43MB, increase: -4299.70KB
  3769. 2025-2-24 16:07:18-debug: Build bundles..., progress: 24%
  3770. 2025-2-24 16:07:18-debug: // ---- build task Build Assets ----
  3771. 2025-2-24 16:07:18-debug: Build Assets start, progress: 24%
  3772. 2025-2-24 16:07:18-debug: Pack Images start, progress: 24%
  3773. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  3774. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  3775. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  3776. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  3777. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  3778. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  3779. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  3780. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  3781. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  3782. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  3783. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  3784. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  3785. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  3786. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  3787. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  3788. 2025-2-24 16:07:19-debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  3789. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  3790. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  3791. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  3792. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  3793. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  3794. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  3795. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  3796. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  3797. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  3798. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  3799. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  3800. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  3801. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  3802. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  3803. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  3804. 2025-2-24 16:07:19-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  3805. 2025-2-24 16:07:19-debug: builder:pack-auto-atlas-image (899ms)
  3806. 2025-2-24 16:07:19-debug: Pack Images success, progress: 24%
  3807. 2025-2-24 16:07:19-debug: Compress image start..., progress: 24%
  3808. 2025-2-24 16:07:19-debug: Num of all image compress task 0, really: 0, configTasks: 0
  3809. 2025-2-24 16:07:19-debug: sort compress task {}
  3810. 2025-2-24 16:07:19-debug: Compress image success..., progress: 24%
  3811. 2025-2-24 16:07:19-debug: Output asset in bundles start, progress: 24%
  3812. 2025-2-24 16:07:19-debug: Handle all json groups in bundle internal
  3813. 2025-2-24 16:07:19-debug: handle json group
  3814. 2025-2-24 16:07:19-debug: No image need to compress
  3815. 2025-2-24 16:07:19-debug: handle json group
  3816. 2025-2-24 16:07:19-debug: Handle all json groups in bundle resources
  3817. 2025-2-24 16:07:19-debug: handle json group
  3818. 2025-2-24 16:07:19-debug: Handle all json groups in bundle main
  3819. 2025-2-24 16:07:19-debug: handle json group
  3820. 2025-2-24 16:07:19-debug: handle single json
  3821. 2025-2-24 16:07:19-debug: Handle all json groups in bundle module_extra
  3822. 2025-2-24 16:07:19-debug: Handle all json groups in bundle start-scene
  3823. 2025-2-24 16:07:19-debug: Handle all json groups in bundle module_basic
  3824. 2025-2-24 16:07:19-debug: handle json group
  3825. 2025-2-24 16:07:19-debug: handle single json
  3826. 2025-2-24 16:07:19-debug: handle json group
  3827. 2025-2-24 16:07:19-debug: handle json group
  3828. 2025-2-24 16:07:19-debug: Handle all json groups in bundle module_game
  3829. 2025-2-24 16:07:19-debug: handle single json
  3830. 2025-2-24 16:07:19-debug: Json group(03ccd410a) compile success,json number: 6
  3831. 2025-2-24 16:07:19-debug: Json group(07325bfaa) compile success,json number: 6
  3832. 2025-2-24 16:07:19-debug: handle single json
  3833. 2025-2-24 16:07:19-debug: Json group(0ba471961) compile success,json number: 6
  3834. 2025-2-24 16:07:20-debug: Json group(0524f237b) compile success,json number: 6
  3835. 2025-2-24 16:07:20-debug: Json group(045b519c1) compile success,json number: 6
  3836. 2025-2-24 16:07:20-debug: handle single json
  3837. 2025-2-24 16:07:20-debug: Json group(0a54f6860) compile success,json number: 6
  3838. 2025-2-24 16:07:20-debug: handle single json
  3839. 2025-2-24 16:07:20-debug: Json group(027fa8751) compile success,json number: 6
  3840. 2025-2-24 16:07:20-debug: Json group(08d4f0835) compile success,json number: 6
  3841. 2025-2-24 16:07:20-debug: Json group(08f30b54e) compile success,json number: 6
  3842. 2025-2-24 16:07:20-debug: Json group(093f10e90) compile success,json number: 6
  3843. 2025-2-24 16:07:20-debug: Json group(02c882590) compile success,json number: 6
  3844. 2025-2-24 16:07:20-debug: Json group(0e48af9fb) compile success,json number: 6
  3845. 2025-2-24 16:07:20-debug: Json group(0787c84da) compile success,json number: 6
  3846. 2025-2-24 16:07:20-debug: Json group(03c9cd961) compile success,json number: 6
  3847. 2025-2-24 16:07:20-debug: Json group(041ac2e1c) compile success,json number: 6
  3848. 2025-2-24 16:07:20-debug: Json group(0471cee9c) compile success,json number: 6
  3849. 2025-2-24 16:07:20-debug: Json group(04a6d010d) compile success,json number: 6
  3850. 2025-2-24 16:07:20-debug: Json group(070166e93) compile success,json number: 6
  3851. 2025-2-24 16:07:20-debug: Json group(02b639d30) compile success,json number: 6
  3852. 2025-2-24 16:07:20-debug: Json group(06db2e96b) compile success,json number: 6
  3853. 2025-2-24 16:07:20-debug: Json group(097e5daf7) compile success,json number: 6
  3854. 2025-2-24 16:07:20-debug: Json group(0c5a2fc7e) compile success,json number: 6
  3855. 2025-2-24 16:07:20-debug: Json group(091e713ef) compile success,json number: 6
  3856. 2025-2-24 16:07:20-debug: Json group(01236a39b) compile success,json number: 6
  3857. 2025-2-24 16:07:20-debug: Json group(0a46ee258) compile success,json number: 6
  3858. 2025-2-24 16:07:20-debug: Json group(033a6699b) compile success,json number: 6
  3859. 2025-2-24 16:07:20-debug: Json group(02d36d139) compile success,json number: 6
  3860. 2025-2-24 16:07:20-debug: Json group(0d54cf783) compile success,json number: 6
  3861. 2025-2-24 16:07:20-debug: handle single json
  3862. 2025-2-24 16:07:20-debug: Output asset in bundles success, progress: 24%
  3863. 2025-2-24 16:07:20-debug: Output asset in bundles start, progress: 24%
  3864. 2025-2-24 16:07:20-debug: compress config of bundle internal success
  3865. 2025-2-24 16:07:20-debug: compress config of bundle internal...
  3866. 2025-2-24 16:07:20-debug: compress config of bundle start-scene...
  3867. 2025-2-24 16:07:20-debug: compress config of bundle resources success
  3868. 2025-2-24 16:07:20-debug: compress config of bundle start-scene success
  3869. 2025-2-24 16:07:20-debug: compress config of bundle main success
  3870. 2025-2-24 16:07:20-debug: compress config of bundle main...
  3871. 2025-2-24 16:07:20-debug: compress config of bundle resources...
  3872. 2025-2-24 16:07:20-debug: compress config of bundle module_extra success
  3873. 2025-2-24 16:07:20-debug: compress config of bundle module_extra...
  3874. 2025-2-24 16:07:20-debug: compress config of bundle module_game...
  3875. 2025-2-24 16:07:20-debug: compress config of bundle module_basic success
  3876. 2025-2-24 16:07:20-debug: compress config of bundle module_basic...
  3877. 2025-2-24 16:07:20-debug: output config of bundle internal
  3878. 2025-2-24 16:07:20-debug: compress config of bundle module_game success
  3879. 2025-2-24 16:07:20-debug: output config of bundle start-scene success
  3880. 2025-2-24 16:07:20-debug: output config of bundle internal success
  3881. 2025-2-24 16:07:20-debug: output config of bundle resources success
  3882. 2025-2-24 16:07:20-debug: output config of bundle main
  3883. 2025-2-24 16:07:20-debug: output config of bundle start-scene
  3884. 2025-2-24 16:07:20-debug: output config of bundle resources
  3885. 2025-2-24 16:07:20-debug: output config of bundle main success
  3886. 2025-2-24 16:07:20-debug: output config of bundle module_extra success
  3887. 2025-2-24 16:07:20-debug: output config of bundle module_basic success
  3888. 2025-2-24 16:07:20-debug: output config of bundle module_basic
  3889. 2025-2-24 16:07:20-debug: output config of bundle module_game
  3890. 2025-2-24 16:07:20-debug: output config of bundle module_extra
  3891. 2025-2-24 16:07:20-debug: Output asset in bundles success, progress: 24%
  3892. 2025-2-24 16:07:20-debug: output config of bundle module_game success
  3893. 2025-2-24 16:07:20-debug: // ---- build task Build Assets ---- (1454ms)
  3894. 2025-2-24 16:07:20-debug: run build task Build Assets success in 1 s√, progress: 29%
  3895. 2025-2-24 16:07:20-debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
  3896. 2025-2-24 16:07:20-debug: [Build Memory track]: Build Assets start:219.46MB, end 217.60MB, increase: -1907.45KB
  3897. 2025-2-24 16:07:20-debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
  3898. 2025-2-24 16:07:20-debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (50ms)
  3899. 2025-2-24 16:07:20-debug: wechatgame:(onAfterBundleBuildTask) in 50 ms ✓, progress: 29%
  3900. 2025-2-24 16:07:20-debug: // ---- build task wechatgame:onAfterBuildAssets ----
  3901. 2025-2-24 16:07:20-debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
  3902. 2025-2-24 16:07:20-debug: // ---- build task wechatgame:onAfterBuildAssets ---- (79ms)
  3903. 2025-2-24 16:07:20-debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
  3904. 2025-2-24 16:07:20-debug: wechatgame:(onAfterBuildAssets) in 79 ms ✓, progress: 31%
  3905. 2025-2-24 16:07:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3906. 2025-2-24 16:07:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (49ms)
  3907. 2025-2-24 16:07:20-debug: run build task 整理部分构建选项内数据到 settings.json success in 49 ms√, progress: 33%
  3908. 2025-2-24 16:07:20-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.05MB, end 218.18MB, increase: 131.12KB
  3909. 2025-2-24 16:07:20-debug: // ---- build task 填充脚本数据到 settings.json ----
  3910. 2025-2-24 16:07:20-debug: 填充脚本数据到 settings.json start, progress: 33%
  3911. 2025-2-24 16:07:20-debug: // ---- build task 填充脚本数据到 settings.json ---- (57ms)
  3912. 2025-2-24 16:07:20-debug: run build task 填充脚本数据到 settings.json success in 57 ms√, progress: 34%
  3913. 2025-2-24 16:07:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3914. 2025-2-24 16:07:20-debug: [Build Memory track]: 填充脚本数据到 settings.json start:218.22MB, end 218.35MB, increase: 131.09KB
  3915. 2025-2-24 16:07:20-debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
  3916. 2025-2-24 16:07:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (56ms)
  3917. 2025-2-24 16:07:20-debug: run build task 整理部分构建选项内数据到 settings.json success in 56 ms√, progress: 36%
  3918. 2025-2-24 16:07:20-debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
  3919. 2025-2-24 16:07:20-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.38MB, end 209.40MB, increase: -9196.63KB
  3920. 2025-2-24 16:07:20-debug: // ---- build task wechatgame:onBeforeCompressSettings ----
  3921. 2025-2-24 16:07:20-debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (49ms)
  3922. 2025-2-24 16:07:20-debug: wechatgame:(onBeforeCompressSettings) in 49 ms ✓, progress: 38%
  3923. 2025-2-24 16:07:20-debug: // ---- build task cocos-service:onBeforeCompressSettings ----
  3924. 2025-2-24 16:07:20-debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
  3925. 2025-2-24 16:07:20-debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (214ms)
  3926. 2025-2-24 16:07:20-debug: // ---- build task 整理静态模板文件 ----
  3927. 2025-2-24 16:07:20-debug: cocos-service:(onBeforeCompressSettings) in 214 ms ✓, progress: 40%
  3928. 2025-2-24 16:07:20-debug: 整理静态模板文件 start, progress: 40%
  3929. 2025-2-24 16:07:21-debug: // ---- build task 整理静态模板文件 ---- (74ms)
  3930. 2025-2-24 16:07:21-debug: run build task 整理静态模板文件 success in 74 ms√, progress: 45%
  3931. 2025-2-24 16:07:21-debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
  3932. 2025-2-24 16:07:21-debug: [Build Memory track]: 整理静态模板文件 start:209.82MB, end 213.46MB, increase: 3.63MB
  3933. 2025-2-24 16:07:21-debug: // ---- build task cocos-service:onAfterCompressSettings ----
  3934. 2025-2-24 16:07:21-debug: // ---- build task cocos-service:onAfterCompressSettings ---- (214ms)
  3935. 2025-2-24 16:07:21-debug: cocos-service:(onAfterCompressSettings) in 214 ms ✓, progress: 46%
  3936. 2025-2-24 16:07:21-debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
  3937. 2025-2-24 16:07:21-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
  3938. 2025-2-24 16:07:21-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (46ms)
  3939. 2025-2-24 16:07:21-debug: wechatgame:(onBeforeCopyBuildTemplate) in 46 ms ✓, progress: 48%
  3940. 2025-2-24 16:07:21-debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
  3941. 2025-2-24 16:07:21-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
  3942. 2025-2-24 16:07:21-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (50ms)
  3943. 2025-2-24 16:07:21-debug: wechatgame:(onAfterCopyBuildTemplate) in 50 ms ✓, progress: 50%
  3944. 2025-2-24 16:07:21-debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
  3945. 2025-2-24 16:07:21-debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
  3946. 2025-2-24 16:07:21-debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (63ms)
  3947. 2025-2-24 16:07:21-debug: run build task 给所有的资源加上 MD5 后缀 success in 63 ms√, progress: 60%
  3948. 2025-2-24 16:07:21-debug: wechatgame:(onAfterBuild) start..., progress: 60%
  3949. 2025-2-24 16:07:21-debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:214.23MB, end 214.35MB, increase: 130.84KB
  3950. 2025-2-24 16:07:21-debug: // ---- build task wechatgame:onAfterBuild ----
  3951. 2025-2-24 16:07:22-debug: // ---- build task wechatgame:onAfterBuild ---- (918ms)
  3952. 2025-2-24 16:07:22-debug: wechatgame:(onAfterBuild) in 918 ms ✓, progress: 62%
  3953. 2025-2-24 16:07:22-debug: // ---- build task cocos-service:onAfterBuild ----
  3954. 2025-2-24 16:07:22-debug: cocos-service:(onAfterBuild) start..., progress: 62%
  3955. 2025-2-24 16:07:22-debug: // ---- build task cocos-service:onAfterBuild ---- (152ms)
  3956. 2025-2-24 16:07:22-debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
  3957. 2025-2-24 16:07:22-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
  3958. 2025-2-24 16:07:22-debug: cocos-service:(onAfterBuild) in 152 ms ✓, progress: 64%
  3959. 2025-2-24 16:07:22-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (42ms)
  3960. 2025-2-24 16:07:22-debug: adsense-h5g-plugin:(onAfterBuild) in 42 ms ✓, progress: 65%
  3961. 2025-2-24 16:07:22-log: Asset DB is resume!
  3962. 2025-2-24 16:07:22-debug: builder:build-project-total (19642ms)
  3963. 2025-2-24 16:07:22-debug: build success in 19642!
  3964. 2025-2-24 16:07:22-debug: [Build Memory track]: builder:build-project-total start:217.26MB, end 212.38MB, increase: -4997.09KB
  3965. 2025-2-24 16:07:22-debug: ================================ build Task (wechatgame-001) Finished in (19 s)ms ================================
  3966. 2025-2-24 16:07:22-debug: Stop record console. {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  3967. 2025-2-24 16:07:27-debug: refresh db internal success
  3968. 2025-2-24 16:07:27-debug: refresh db assets success
  3969. 2025-2-24 16:07:27-debug: Run asset db hook engine-extends:afterRefresh ...
  3970. 2025-2-24 16:07:27-debug: Run asset db hook engine-extends:afterRefresh success!
  3971. 2025-2-24 16:07:27-debug: asset-db:refresh-all-database (110ms)
  3972. 2025-2-24 16:07:27-debug: asset-db:worker-effect-data-processing (1ms)
  3973. 2025-2-24 16:07:27-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3974. 2025-2-24 16:10:39-debug: refresh db internal success
  3975. 2025-2-24 16:10:39-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\ui\UI_Life\UI_Life.ts background: #aaff85; color: #000; color: #000;
  3976. 2025-2-24 16:10:39-debug: Run asset db hook engine-extends:afterRefresh ...
  3977. 2025-2-24 16:10:39-debug: refresh db assets success
  3978. 2025-2-24 16:10:39-debug: Run asset db hook engine-extends:afterRefresh success!
  3979. 2025-2-24 16:10:39-debug: asset-db:refresh-all-database (309ms)
  3980. 2025-2-24 16:10:39-debug: asset-db:worker-effect-data-processing (2ms)
  3981. 2025-2-24 16:10:39-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3982. 2025-2-24 16:10:40-debug: refresh db internal success
  3983. 2025-2-24 16:10:40-debug: refresh db assets success
  3984. 2025-2-24 16:10:40-debug: Run asset db hook engine-extends:afterRefresh ...
  3985. 2025-2-24 16:10:40-debug: Run asset db hook engine-extends:afterRefresh success!
  3986. 2025-2-24 16:10:40-debug: asset-db:refresh-all-database (195ms)
  3987. 2025-2-24 16:10:40-debug: asset-db:worker-effect-data-processing (1ms)
  3988. 2025-2-24 16:10:40-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3989. 2025-2-24 16:10:42-debug: Start record console... {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  3990. 2025-2-24 16:10:42-debug: =================================== build Task (wechatgame-001) Start ================================
  3991. 2025-2-24 16:10:42-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-001","taskName":"wechatgame-001","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":"wxc0fb4a435b39ab92","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[],"__version__":"3.0.7"}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-20 15-37.log"}
  3992. 2025-2-24 16:10:42-debug: Build with Cocos Creator 3.8.4
  3993. 2025-2-24 16:10:42-debug: cocos-service:(onBeforeBuild) start..., progress: 0%
  3994. 2025-2-24 16:10:42-debug: // ---- build task cocos-service:onBeforeBuild ----
  3995. 2025-2-24 16:10:42-debug: // ---- build task cocos-service:onBeforeBuild ---- (159ms)
  3996. 2025-2-24 16:10:42-debug: cocos-service:(onBeforeBuild) in 159 ms ✓, progress: 2%
  3997. 2025-2-24 16:10:42-debug: // ---- build task scene:onBeforeBuild ----
  3998. 2025-2-24 16:10:42-debug: scene:(onBeforeBuild) start..., progress: 2%
  3999. 2025-2-24 16:10:42-debug: scene:(onBeforeBuild) in 43 ms ✓, progress: 4%
  4000. 2025-2-24 16:10:42-debug: // ---- build task scene:onBeforeBuild ---- (43ms)
  4001. 2025-2-24 16:10:42-log: Asset DB is paused with build!
  4002. 2025-2-24 16:10:42-debug: Start lock asset db..., progress: 4%
  4003. 2025-2-24 16:10:42-debug: Query all assets info in project
  4004. 2025-2-24 16:10:42-debug: init custom config: keepNodeUuid: false, useCache: true
  4005. 2025-2-24 16:10:42-debug: wechatgame:(onAfterInit) start..., progress: 4%
  4006. 2025-2-24 16:10:42-debug: // ---- build task wechatgame:onAfterInit ----
  4007. 2025-2-24 16:10:42-debug: // ---- build task wechatgame:onAfterInit ---- (27ms)
  4008. 2025-2-24 16:10:42-debug: wechatgame:(onAfterInit) in 27 ms ✓, progress: 5%
  4009. 2025-2-24 16:10:42-debug: // ---- build task cocos-service:onAfterInit ----
  4010. 2025-2-24 16:10:42-debug: cocos-service:(onAfterInit) start..., progress: 5%
  4011. 2025-2-24 16:10:43-debug: // ---- build task cocos-service:onAfterInit ---- (88ms)
  4012. 2025-2-24 16:10:43-debug: cocos-service:(onAfterInit) in 88 ms ✓, progress: 7%
  4013. 2025-2-24 16:10:43-debug: engine:(onAfterInit) start..., progress: 7%
  4014. 2025-2-24 16:10:43-debug: // ---- build task engine:onAfterInit ----
  4015. 2025-2-24 16:10:43-debug: // ---- build task engine:onAfterInit ---- (100ms)
  4016. 2025-2-24 16:10:43-debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
  4017. 2025-2-24 16:10:43-debug: // ---- build task wechatgame:onBeforeBundleInit ----
  4018. 2025-2-24 16:10:43-debug: engine:(onAfterInit) in 100 ms ✓, progress: 9%
  4019. 2025-2-24 16:10:43-debug: // ---- build task wechatgame:onBeforeBundleInit ---- (61ms)
  4020. 2025-2-24 16:10:43-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
  4021. 2025-2-24 16:10:43-debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
  4022. 2025-2-24 16:10:43-debug: [adsense-h5g-plugin] remove script success
  4023. 2025-2-24 16:10:43-debug: wechatgame:(onBeforeBundleInit) in 61 ms ✓, progress: 9%
  4024. 2025-2-24 16:10:43-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (72ms)
  4025. 2025-2-24 16:10:43-debug: adsense-h5g-plugin:(onBeforeBundleInit) in 72 ms ✓, progress: 9%
  4026. 2025-2-24 16:10:43-debug: Init all bundles start..., progress: 9%
  4027. 2025-2-24 16:10:43-debug: // ---- build task 查询 Asset Bundle ----
  4028. 2025-2-24 16:10:43-debug: Init bundle root assets start..., progress: 9%
  4029. 2025-2-24 16:10:43-debug: Num of bundles: 7..., progress: 9%
  4030. 2025-2-24 16:10:43-debug: 查询 Asset Bundle start, progress: 9%
  4031. 2025-2-24 16:10:43-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
  4032. 2025-2-24 16:10:43-debug: Number of all scripts: 131
  4033. 2025-2-24 16:10:43-debug: Number of other assets: 1286
  4034. 2025-2-24 16:10:43-debug: Init bundle root assets success..., progress: 9%
  4035. 2025-2-24 16:10:43-debug: Number of all scenes: 3
  4036. 2025-2-24 16:10:43-debug: reload all scripts.
  4037. 2025-2-24 16:10:43-debug: Set detail map pack:///resolution-detail-map.json: {}
  4038. 2025-2-24 16:10:43-debug: Unregister BuiltinPipelineSettings
  4039. 2025-2-24 16:10:43-debug: Unregister ch_sdk_comp
  4040. 2025-2-24 16:10:43-debug: Unregister __NodeEventAgent__
  4041. 2025-2-24 16:10:43-debug: Unregister DebugViewRuntimeControl
  4042. 2025-2-24 16:10:43-debug: Unregister ch_start_pack
  4043. 2025-2-24 16:10:43-debug: Unregister ResolutionAutoFit
  4044. 2025-2-24 16:10:43-debug: Unregister ClickPenetrate
  4045. 2025-2-24 16:10:43-debug: Unregister ui_updater
  4046. 2025-2-24 16:10:43-debug: Unregister MotionTrail
  4047. 2025-2-24 16:10:43-debug: Unregister List
  4048. 2025-2-24 16:10:43-debug: Unregister ListItem
  4049. 2025-2-24 16:10:43-debug: Unregister MovieClip
  4050. 2025-2-24 16:10:43-debug: Unregister RewardFly
  4051. 2025-2-24 16:10:43-debug: Unregister SpineView
  4052. 2025-2-24 16:10:43-debug: Unregister Layout_UI_Notify
  4053. 2025-2-24 16:10:43-debug: Unregister UISpineMovie
  4054. 2025-2-24 16:10:43-debug: Unregister Layout_UIAlert
  4055. 2025-2-24 16:10:43-debug: Unregister Layout_UIWaiting
  4056. 2025-2-24 16:10:43-debug: Unregister table_idiom_order
  4057. 2025-2-24 16:10:43-debug: Unregister table_idiom_unorder_1_3
  4058. 2025-2-24 16:10:43-debug: Unregister table_idiom_unorder_3_1
  4059. 2025-2-24 16:10:43-debug: Unregister table_idiom
  4060. 2025-2-24 16:10:43-debug: Unregister table_idiom_unorder_2_2
  4061. 2025-2-24 16:10:43-debug: Unregister table_store
  4062. 2025-2-24 16:10:43-debug: Unregister table_level
  4063. 2025-2-24 16:10:43-debug: Unregister table_level_2
  4064. 2025-2-24 16:10:43-debug: Unregister Layout_GameRules
  4065. 2025-2-24 16:10:43-debug: Unregister table_task
  4066. 2025-2-24 16:10:43-debug: Unregister UI_GameRules
  4067. 2025-2-24 16:10:43-debug: Unregister Layout_Idioms
  4068. 2025-2-24 16:10:43-debug: Unregister Layout_Settings
  4069. 2025-2-24 16:10:43-debug: Unregister Layout_Tips
  4070. 2025-2-24 16:10:43-debug: Unregister UI_Idiom
  4071. 2025-2-24 16:10:43-debug: Unregister UI_Idioms
  4072. 2025-2-24 16:10:43-debug: Unregister Layout_Hall
  4073. 2025-2-24 16:10:43-debug: Unregister UI_Rank_Item
  4074. 2025-2-24 16:10:43-debug: Unregister Hall
  4075. 2025-2-24 16:10:43-debug: Unregister UI_Head_Icon
  4076. 2025-2-24 16:10:43-debug: Unregister Sign_Reward
  4077. 2025-2-24 16:10:43-debug: Unregister UI_Rank
  4078. 2025-2-24 16:10:43-debug: Unregister Layout_Rank
  4079. 2025-2-24 16:10:43-debug: Unregister Layout_Invite
  4080. 2025-2-24 16:10:43-debug: Unregister UI_Sign
  4081. 2025-2-24 16:10:43-debug: Unregister Layout_Sign
  4082. 2025-2-24 16:10:43-debug: Unregister Layout_Store
  4083. 2025-2-24 16:10:43-debug: Unregister Layout_SideBar
  4084. 2025-2-24 16:10:43-debug: Unregister Start
  4085. 2025-2-24 16:10:43-debug: Unregister UI_Store
  4086. 2025-2-24 16:10:43-debug: Unregister UI_SideBar
  4087. 2025-2-24 16:10:43-debug: Unregister UI_Task_Item
  4088. 2025-2-24 16:10:43-debug: Unregister UI_Invite
  4089. 2025-2-24 16:10:43-debug: Unregister Layout_Task
  4090. 2025-2-24 16:10:43-debug: Unregister UI_Task
  4091. 2025-2-24 16:10:43-debug: Unregister Layout_Life
  4092. 2025-2-24 16:10:43-debug: Unregister UI_Tips
  4093. 2025-2-24 16:10:43-debug: Unregister UI_Life
  4094. 2025-2-24 16:10:43-debug: Unregister UI_Settings
  4095. 2025-2-24 16:10:43-debug: Unregister UI_Win
  4096. 2025-2-24 16:10:43-debug: Unregister Layout_Win
  4097. 2025-2-24 16:10:43-debug: Unregister Layout_TimesOver
  4098. 2025-2-24 16:10:43-debug: Unregister UI_Hall
  4099. 2025-2-24 16:10:43-debug: Unregister Layout_Main
  4100. 2025-2-24 16:10:43-debug: Unregister UI_TimesOver
  4101. 2025-2-24 16:10:43-debug: Unregister UI_Main
  4102. 2025-2-24 16:10:43-debug: Unregister Layout_Fail
  4103. 2025-2-24 16:10:43-debug: Unregister CreateIdiom
  4104. 2025-2-24 16:10:43-debug: Unregister Layout_LatticeFull
  4105. 2025-2-24 16:10:43-debug: Unregister UI_Fail
  4106. 2025-2-24 16:10:43-debug: Unregister UI_LatticeFull
  4107. 2025-2-24 16:10:43-debug: Unregister UI_Lock
  4108. 2025-2-24 16:10:43-debug: Unregister Cube_Infor
  4109. 2025-2-24 16:10:43-debug: Unregister GameCtl
  4110. 2025-2-24 16:10:43-debug: Unregister Layout_Lock
  4111. 2025-2-24 16:10:43-debug: Unregister UI_Item
  4112. 2025-2-24 16:10:43-debug: Unregister Container_Manager
  4113. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
  4114. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
  4115. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
  4116. 2025-2-24 16:10:43-debug: Unregister Hall_Root
  4117. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
  4118. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
  4119. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
  4120. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
  4121. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js'
  4122. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js'
  4123. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js'
  4124. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js'
  4125. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js'
  4126. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js'
  4127. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js'
  4128. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js'
  4129. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js'
  4130. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js'
  4131. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js'
  4132. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js'
  4133. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js'
  4134. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js'
  4135. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js'
  4136. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js'
  4137. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js'
  4138. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js'
  4139. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js'
  4140. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js'
  4141. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js'
  4142. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js'
  4143. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js'
  4144. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js'
  4145. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js'
  4146. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js'
  4147. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js'
  4148. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js'
  4149. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js'
  4150. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js'
  4151. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js'
  4152. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js'
  4153. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js'
  4154. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js'
  4155. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js'
  4156. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js'
  4157. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js'
  4158. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js'
  4159. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js'
  4160. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js'
  4161. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js'
  4162. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js'
  4163. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js'
  4164. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js'
  4165. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js'
  4166. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js'
  4167. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js'
  4168. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js'
  4169. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js'
  4170. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js'
  4171. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js'
  4172. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js'
  4173. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js'
  4174. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js'
  4175. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js'
  4176. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js'
  4177. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js'
  4178. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js'
  4179. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js'
  4180. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js'
  4181. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js'
  4182. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js'
  4183. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js'
  4184. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js'
  4185. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js'
  4186. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js'
  4187. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js'
  4188. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js'
  4189. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js'
  4190. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js'
  4191. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js'
  4192. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js'
  4193. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js'
  4194. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js'
  4195. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js'
  4196. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js'
  4197. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js'
  4198. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js'
  4199. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js'
  4200. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js'
  4201. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js'
  4202. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js'
  4203. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js'
  4204. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js'
  4205. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js'
  4206. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js'
  4207. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js'
  4208. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js'
  4209. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js'
  4210. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js'
  4211. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js'
  4212. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js'
  4213. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js'
  4214. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js'
  4215. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js'
  4216. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js'
  4217. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js'
  4218. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js'
  4219. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js'
  4220. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js'
  4221. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js'
  4222. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js'
  4223. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js'
  4224. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js'
  4225. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js'
  4226. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js'
  4227. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js'
  4228. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js'
  4229. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js'
  4230. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js'
  4231. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js'
  4232. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js'
  4233. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js'
  4234. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js'
  4235. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js'
  4236. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js'
  4237. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js'
  4238. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js'
  4239. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js'
  4240. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js'
  4241. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js'
  4242. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js'
  4243. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js'
  4244. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js'
  4245. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  4246. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js'
  4247. 2025-2-24 16:10:43-debug: Invalidating 'pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js'
  4248. 2025-2-24 16:10:43-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
  4249. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  4250. 2025-2-24 16:10:43-debug: [[Executor]] Register BuiltinPipelineSettings
  4251. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
  4252. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
  4253. 2025-2-24 16:10:43-debug: [[Executor]] Register DebugViewRuntimeControl
  4254. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
  4255. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js" loaded.
  4256. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js" loaded.
  4257. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js" loaded.
  4258. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js" loaded.
  4259. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
  4260. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
  4261. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js" loaded.
  4262. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js" loaded.
  4263. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js" loaded.
  4264. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js" loaded.
  4265. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js" loaded.
  4266. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js" loaded.
  4267. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js" loaded.
  4268. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js" loaded.
  4269. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js" loaded.
  4270. 2025-2-24 16:10:43-debug: [[Executor]] Register ch_start_pack
  4271. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js" loaded.
  4272. 2025-2-24 16:10:43-debug: [[Executor]] Register ch_sdk_comp
  4273. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js" loaded.
  4274. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js" loaded.
  4275. 2025-2-24 16:10:43-debug: [[Executor]] Register ui_updater
  4276. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js" loaded.
  4277. 2025-2-24 16:10:43-debug: [[Executor]] Register __NodeEventAgent__
  4278. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js" loaded.
  4279. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js" loaded.
  4280. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js" loaded.
  4281. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js" loaded.
  4282. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js" loaded.
  4283. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js" loaded.
  4284. 2025-2-24 16:10:43-debug: [[Executor]] Register ResolutionAutoFit
  4285. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js" loaded.
  4286. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js" loaded.
  4287. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js" loaded.
  4288. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js" loaded.
  4289. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js" loaded.
  4290. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js" loaded.
  4291. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js" loaded.
  4292. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js" loaded.
  4293. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js" loaded.
  4294. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js" loaded.
  4295. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js" loaded.
  4296. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js" loaded.
  4297. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js" loaded.
  4298. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js" loaded.
  4299. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js" loaded.
  4300. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js" loaded.
  4301. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js" loaded.
  4302. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js" loaded.
  4303. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js" loaded.
  4304. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js" loaded.
  4305. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js" loaded.
  4306. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js" loaded.
  4307. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js" loaded.
  4308. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js" loaded.
  4309. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js" loaded.
  4310. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js" loaded.
  4311. 2025-2-24 16:10:43-debug: [[Executor]] Register ClickPenetrate
  4312. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js" loaded.
  4313. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js" loaded.
  4314. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js" loaded.
  4315. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js" loaded.
  4316. 2025-2-24 16:10:43-debug: [[Executor]] Register MotionTrail
  4317. 2025-2-24 16:10:43-warn: 'MotionTrail.color' hides inherited property 'cc.UIRenderer.color'. To make the current property override that implementation, add the `override: true` attribute please.
  4318. 2025-2-24 16:10:43-debug: [[Executor]] Register ListItem
  4319. 2025-2-24 16:10:43-debug: [[Executor]] Register MovieClip
  4320. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js" loaded.
  4321. 2025-2-24 16:10:43-debug: [[Executor]] Register List
  4322. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js" loaded.
  4323. 2025-2-24 16:10:43-debug: [[Executor]] Register SpineView
  4324. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js" loaded.
  4325. 2025-2-24 16:10:43-debug: [[Executor]] Register UISpineMovie
  4326. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js" loaded.
  4327. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_UIAlert
  4328. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js" loaded.
  4329. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js" loaded.
  4330. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js" loaded.
  4331. 2025-2-24 16:10:43-debug: [[Executor]] Register RewardFly
  4332. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js" loaded.
  4333. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_UI_Notify
  4334. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js" loaded.
  4335. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js" loaded.
  4336. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js" loaded.
  4337. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js" loaded.
  4338. 2025-2-24 16:10:43-debug: [[Executor]] Register table_idiom
  4339. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_UIWaiting
  4340. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js" loaded.
  4341. 2025-2-24 16:10:43-debug: [[Executor]] Register table_idiom_order
  4342. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js" loaded.
  4343. 2025-2-24 16:10:43-debug: [[Executor]] Register table_idiom_unorder_1_3
  4344. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js" loaded.
  4345. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js" loaded.
  4346. 2025-2-24 16:10:43-debug: [[Executor]] Register table_idiom_unorder_3_1
  4347. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js" loaded.
  4348. 2025-2-24 16:10:43-debug: [[Executor]] Register table_level
  4349. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js" loaded.
  4350. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js" loaded.
  4351. 2025-2-24 16:10:43-debug: [[Executor]] Register table_level_2
  4352. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js" loaded.
  4353. 2025-2-24 16:10:43-debug: [[Executor]] Register table_store
  4354. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js" loaded.
  4355. 2025-2-24 16:10:43-debug: [[Executor]] Register table_idiom_unorder_2_2
  4356. 2025-2-24 16:10:43-debug: [[Executor]] Register table_task
  4357. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js" loaded.
  4358. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_GameRules
  4359. 2025-2-24 16:10:43-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\58\58fc29196b91f1459c34b29a9ba5265f1e9917b5.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\58\58fc29196b91f1459c34b29a9ba5265f1e9917b5.js is not in module cache!
  4360. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js" loaded.
  4361. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Idiom
  4362. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Idioms
  4363. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js" loaded.
  4364. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js" loaded.
  4365. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_GameRules
  4366. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js" loaded.
  4367. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Idioms
  4368. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Tips
  4369. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js" loaded.
  4370. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Settings
  4371. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Hall
  4372. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js" loaded.
  4373. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js" loaded.
  4374. 2025-2-24 16:10:43-debug: [[Executor]] Register Hall
  4375. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js" loaded.
  4376. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js" loaded.
  4377. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js" loaded.
  4378. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Rank_Item
  4379. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Rank
  4380. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Head_Icon
  4381. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js" loaded.
  4382. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Rank
  4383. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js" loaded.
  4384. 2025-2-24 16:10:43-debug: [[Executor]] Register Sign_Reward
  4385. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js" loaded.
  4386. 2025-2-24 16:10:43-warn: The type of "Sign_Reward.type" must be CCFloat or CCInteger, not Number.
  4387. 2025-2-24 16:10:43-warn: The type of "Sign_Reward.num" must be CCFloat or CCInteger, not Number.
  4388. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js" loaded.
  4389. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js" loaded.
  4390. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Sign
  4391. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Sign
  4392. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js" loaded.
  4393. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js" loaded.
  4394. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Invite
  4395. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Invite
  4396. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js" loaded.
  4397. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js" loaded.
  4398. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Store
  4399. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js" loaded.
  4400. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Store
  4401. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js" loaded.
  4402. 2025-2-24 16:10:43-debug: [[Executor]] Register Start
  4403. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js" loaded.
  4404. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_SideBar
  4405. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js" loaded.
  4406. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Task_Item
  4407. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js" loaded.
  4408. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Task
  4409. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js" loaded.
  4410. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_SideBar
  4411. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js" loaded.
  4412. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Life
  4413. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Life
  4414. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js" loaded.
  4415. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js" loaded.
  4416. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Hall
  4417. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Tips
  4418. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js" loaded.
  4419. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js" loaded.
  4420. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Settings
  4421. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Win
  4422. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js" loaded.
  4423. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js" loaded.
  4424. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Task
  4425. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Win
  4426. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js" loaded.
  4427. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Main
  4428. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js" loaded.
  4429. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js" loaded.
  4430. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js" loaded.
  4431. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js" loaded.
  4432. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Fail
  4433. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_TimesOver
  4434. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js" loaded.
  4435. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js" loaded.
  4436. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Fail
  4437. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_TimesOver
  4438. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js" loaded.
  4439. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js" loaded.
  4440. 2025-2-24 16:10:43-debug: [[Executor]] Register CreateIdiom
  4441. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js" loaded.
  4442. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Main
  4443. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_LatticeFull
  4444. 2025-2-24 16:10:43-debug: [[Executor]] Register Cube_Infor
  4445. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js" loaded.
  4446. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js" loaded.
  4447. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_LatticeFull
  4448. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js" loaded.
  4449. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Lock
  4450. 2025-2-24 16:10:43-debug: [[Executor]] Register Layout_Lock
  4451. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js" loaded.
  4452. 2025-2-24 16:10:43-debug: [[Executor]] Register Container_Manager
  4453. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js" loaded.
  4454. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js" loaded.
  4455. 2025-2-24 16:10:43-debug: [[Executor]] Register GameCtl
  4456. 2025-2-24 16:10:43-debug: [[Executor]] Register Hall_Root
  4457. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js" loaded.
  4458. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js" loaded.
  4459. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js" loaded.
  4460. 2025-2-24 16:10:43-debug: Incremental keys: chSdk,chsdk
  4461. 2025-2-24 16:10:43-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  4462. 2025-2-24 16:10:43-debug: Init bundle share assets start..., progress: 9%
  4463. 2025-2-24 16:10:43-debug: [[Executor]] Register UI_Item
  4464. 2025-2-24 16:10:43-debug: Init bundle share assets success..., progress: 9%
  4465. 2025-2-24 16:10:43-debug: handle json group in bundle internal
  4466. 2025-2-24 16:10:43-debug: handle json group in bundle internal success
  4467. 2025-2-24 16:10:43-debug: handle json group in bundle start-scene
  4468. 2025-2-24 16:10:43-debug: handle json group in bundle resources
  4469. 2025-2-24 16:10:43-debug: handle json group in bundle start-scene success
  4470. 2025-2-24 16:10:43-debug: handle json group in bundle module_extra
  4471. 2025-2-24 16:10:43-debug: handle json group in bundle main success
  4472. 2025-2-24 16:10:43-debug: handle json group in bundle module_basic
  4473. 2025-2-24 16:10:43-debug: handle json group in bundle module_game
  4474. 2025-2-24 16:10:43-debug: init image compress task 0 in bundle start-scene
  4475. 2025-2-24 16:10:43-debug: init image compress task 0 in bundle internal
  4476. 2025-2-24 16:10:43-debug: handle json group in bundle main
  4477. 2025-2-24 16:10:43-debug: init image compress task 0 in bundle main
  4478. 2025-2-24 16:10:43-debug: handle json group in bundle resources success
  4479. 2025-2-24 16:10:43-debug: handle json group in bundle module_basic success
  4480. 2025-2-24 16:10:43-debug: init image compress task 0 in bundle module_basic
  4481. 2025-2-24 16:10:43-debug: init image compress task 0 in bundle module_extra
  4482. 2025-2-24 16:10:43-debug: handle json group in bundle module_extra success
  4483. 2025-2-24 16:10:43-debug: init image compress task 0 in bundle module_game
  4484. 2025-2-24 16:10:43-debug: init image compress task 0 in bundle resources
  4485. 2025-2-24 16:10:43-debug: handle json group in bundle module_game success
  4486. 2025-2-24 16:10:43-debug: // ---- build task 查询 Asset Bundle ---- (564ms)
  4487. 2025-2-24 16:10:43-debug: run build task 查询 Asset Bundle success in 564 ms√, progress: 14%
  4488. 2025-2-24 16:10:43-debug: [Build Memory track]: 查询 Asset Bundle start:215.37MB, end 218.79MB, increase: 3.42MB
  4489. 2025-2-24 16:10:43-debug: // ---- build task 查询 Asset Bundle ----
  4490. 2025-2-24 16:10:43-debug: 查询 Asset Bundle start, progress: 14%
  4491. 2025-2-24 16:10:43-debug: // ---- build task 查询 Asset Bundle ---- (55ms)
  4492. 2025-2-24 16:10:43-debug: run build task 查询 Asset Bundle success in 55 ms√, progress: 19%
  4493. 2025-2-24 16:10:43-debug: [Build Memory track]: 查询 Asset Bundle start:218.83MB, end 219.19MB, increase: 373.33KB
  4494. 2025-2-24 16:10:43-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  4495. 2025-2-24 16:10:43-debug: // ---- build task 打包脚本 ----
  4496. 2025-2-24 16:10:43-debug: 打包脚本 start, progress: 19%
  4497. 2025-2-24 16:10:44-log: [build-script]enter sub process 22552, 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
  4498. 2025-2-24 16:10:47-debug: excute-script over with build-script 3459ms
  4499. 2025-2-24 16:10:47-debug: Generate systemJs..., progress: 19%
  4500. 2025-2-24 16:10:47-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  4501. 2025-2-24 16:10:49-debug: excute-script over with build-script 2403ms
  4502. 2025-2-24 16:10:49-debug: 构建项目脚本 start..., progress: 19%
  4503. 2025-2-24 16:10:49-debug: Build script in bundle start, progress: 19%
  4504. 2025-2-24 16:10:49-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  4505. 2025-2-24 16:10:54-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts
  4506. 2025-2-24 16:10:54-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts
  4507. 2025-2-24 16:10:57-debug: excute-script over with build-script 7727ms
  4508. 2025-2-24 16:10:57-debug: Copy externalScripts success!
  4509. 2025-2-24 16:10:57-debug: Build script in bundle success, progress: 19%
  4510. 2025-2-24 16:10:57-debug: 构建项目脚本 in (7835 ms) √, progress: 19%
  4511. 2025-2-24 16:10:57-debug: 构建引擎脚本 start..., progress: 19%
  4512. 2025-2-24 16:10:57-debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}
  4513. 2025-2-24 16:10:57-debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","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\\idiom\\idiom\\build\\wechatgame-001\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
  4514. 2025-2-24 16:10:57-debug: 构建引擎脚本 in (114 ms) √, progress: 19%
  4515. 2025-2-24 16:10:57-debug: Generate import-map..., progress: 19%
  4516. 2025-2-24 16:10:57-debug: Copy plugin script ..., progress: 19%
  4517. 2025-2-24 16:10:57-debug: // ---- build task 打包脚本 ---- (13911ms)
  4518. 2025-2-24 16:10:57-debug: run build task 打包脚本 success in 13 s√, progress: 24%
  4519. 2025-2-24 16:10:57-debug: [Build Memory track]: 打包脚本 start:219.38MB, end 218.63MB, increase: -767.62KB
  4520. 2025-2-24 16:10:57-debug: Build bundles..., progress: 24%
  4521. 2025-2-24 16:10:57-debug: Build Assets start, progress: 24%
  4522. 2025-2-24 16:10:57-debug: // ---- build task Build Assets ----
  4523. 2025-2-24 16:10:57-debug: Pack Images start, progress: 24%
  4524. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  4525. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  4526. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  4527. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  4528. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  4529. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  4530. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  4531. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  4532. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  4533. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  4534. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  4535. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  4536. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  4537. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  4538. 2025-2-24 16:10:58-debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  4539. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  4540. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  4541. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  4542. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  4543. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  4544. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  4545. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  4546. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  4547. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  4548. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  4549. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  4550. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  4551. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  4552. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  4553. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  4554. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  4555. 2025-2-24 16:10:58-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  4556. 2025-2-24 16:10:58-debug: builder:pack-auto-atlas-image (821ms)
  4557. 2025-2-24 16:10:58-debug: Compress image start..., progress: 24%
  4558. 2025-2-24 16:10:58-debug: sort compress task {}
  4559. 2025-2-24 16:10:58-debug: Num of all image compress task 0, really: 0, configTasks: 0
  4560. 2025-2-24 16:10:58-debug: Compress image success..., progress: 24%
  4561. 2025-2-24 16:10:58-debug: Output asset in bundles start, progress: 24%
  4562. 2025-2-24 16:10:58-debug: Pack Images success, progress: 24%
  4563. 2025-2-24 16:10:58-debug: Handle all json groups in bundle internal
  4564. 2025-2-24 16:10:58-debug: handle json group
  4565. 2025-2-24 16:10:58-debug: Handle all json groups in bundle start-scene
  4566. 2025-2-24 16:10:58-debug: handle json group
  4567. 2025-2-24 16:10:58-debug: No image need to compress
  4568. 2025-2-24 16:10:58-debug: Handle all json groups in bundle resources
  4569. 2025-2-24 16:10:58-debug: handle json group
  4570. 2025-2-24 16:10:58-debug: handle json group
  4571. 2025-2-24 16:10:58-debug: handle single json
  4572. 2025-2-24 16:10:58-debug: Handle all json groups in bundle main
  4573. 2025-2-24 16:10:58-debug: handle single json
  4574. 2025-2-24 16:10:58-debug: Handle all json groups in bundle module_extra
  4575. 2025-2-24 16:10:58-debug: Handle all json groups in bundle module_basic
  4576. 2025-2-24 16:10:58-debug: handle json group
  4577. 2025-2-24 16:10:58-debug: Handle all json groups in bundle module_game
  4578. 2025-2-24 16:10:58-debug: handle json group
  4579. 2025-2-24 16:10:58-debug: handle json group
  4580. 2025-2-24 16:10:58-debug: Json group(03ccd410a) compile success,json number: 6
  4581. 2025-2-24 16:10:58-debug: handle single json
  4582. 2025-2-24 16:10:58-debug: Json group(07325bfaa) compile success,json number: 6
  4583. 2025-2-24 16:10:58-debug: Json group(0ba471961) compile success,json number: 6
  4584. 2025-2-24 16:10:58-debug: handle single json
  4585. 2025-2-24 16:10:58-debug: Json group(0524f237b) compile success,json number: 6
  4586. 2025-2-24 16:10:58-debug: handle single json
  4587. 2025-2-24 16:10:58-debug: Json group(045b519c1) compile success,json number: 6
  4588. 2025-2-24 16:10:58-debug: Json group(0a54f6860) compile success,json number: 6
  4589. 2025-2-24 16:10:58-debug: handle single json
  4590. 2025-2-24 16:10:58-debug: Json group(027fa8751) compile success,json number: 6
  4591. 2025-2-24 16:10:58-debug: Json group(08d4f0835) compile success,json number: 6
  4592. 2025-2-24 16:10:58-debug: Json group(08f30b54e) compile success,json number: 6
  4593. 2025-2-24 16:10:58-debug: Json group(093f10e90) compile success,json number: 6
  4594. 2025-2-24 16:10:58-debug: Json group(02c882590) compile success,json number: 6
  4595. 2025-2-24 16:10:58-debug: Json group(0e48af9fb) compile success,json number: 6
  4596. 2025-2-24 16:10:58-debug: Json group(0787c84da) compile success,json number: 6
  4597. 2025-2-24 16:10:58-debug: Json group(03c9cd961) compile success,json number: 6
  4598. 2025-2-24 16:10:58-debug: Json group(041ac2e1c) compile success,json number: 6
  4599. 2025-2-24 16:10:58-debug: Json group(0471cee9c) compile success,json number: 6
  4600. 2025-2-24 16:10:58-debug: Json group(04a6d010d) compile success,json number: 6
  4601. 2025-2-24 16:10:58-debug: Json group(070166e93) compile success,json number: 6
  4602. 2025-2-24 16:10:58-debug: Json group(02b639d30) compile success,json number: 6
  4603. 2025-2-24 16:10:58-debug: Json group(06db2e96b) compile success,json number: 6
  4604. 2025-2-24 16:10:58-debug: Json group(097e5daf7) compile success,json number: 6
  4605. 2025-2-24 16:10:58-debug: Json group(0c5a2fc7e) compile success,json number: 6
  4606. 2025-2-24 16:10:58-debug: Json group(091e713ef) compile success,json number: 6
  4607. 2025-2-24 16:10:58-debug: Json group(01236a39b) compile success,json number: 6
  4608. 2025-2-24 16:10:58-debug: Json group(0a46ee258) compile success,json number: 6
  4609. 2025-2-24 16:10:58-debug: Json group(033a6699b) compile success,json number: 6
  4610. 2025-2-24 16:10:58-debug: Json group(02d36d139) compile success,json number: 6
  4611. 2025-2-24 16:10:58-debug: Json group(0d54cf783) compile success,json number: 6
  4612. 2025-2-24 16:10:58-debug: handle single json
  4613. 2025-2-24 16:10:59-debug: Output asset in bundles success, progress: 24%
  4614. 2025-2-24 16:10:59-debug: Output asset in bundles start, progress: 24%
  4615. 2025-2-24 16:10:59-debug: compress config of bundle internal...
  4616. 2025-2-24 16:10:59-debug: compress config of bundle internal success
  4617. 2025-2-24 16:10:59-debug: compress config of bundle start-scene success
  4618. 2025-2-24 16:10:59-debug: compress config of bundle resources success
  4619. 2025-2-24 16:10:59-debug: compress config of bundle main...
  4620. 2025-2-24 16:10:59-debug: compress config of bundle start-scene...
  4621. 2025-2-24 16:10:59-debug: compress config of bundle module_extra...
  4622. 2025-2-24 16:10:59-debug: compress config of bundle resources...
  4623. 2025-2-24 16:10:59-debug: compress config of bundle module_basic...
  4624. 2025-2-24 16:10:59-debug: compress config of bundle module_extra success
  4625. 2025-2-24 16:10:59-debug: compress config of bundle module_game...
  4626. 2025-2-24 16:10:59-debug: compress config of bundle module_basic success
  4627. 2025-2-24 16:10:59-debug: compress config of bundle module_game success
  4628. 2025-2-24 16:10:59-debug: compress config of bundle main success
  4629. 2025-2-24 16:10:59-debug: output config of bundle internal success
  4630. 2025-2-24 16:10:59-debug: output config of bundle start-scene
  4631. 2025-2-24 16:10:59-debug: output config of bundle start-scene success
  4632. 2025-2-24 16:10:59-debug: output config of bundle resources success
  4633. 2025-2-24 16:10:59-debug: output config of bundle internal
  4634. 2025-2-24 16:10:59-debug: output config of bundle resources
  4635. 2025-2-24 16:10:59-debug: output config of bundle main success
  4636. 2025-2-24 16:10:59-debug: output config of bundle main
  4637. 2025-2-24 16:10:59-debug: output config of bundle module_extra success
  4638. 2025-2-24 16:10:59-debug: output config of bundle module_basic success
  4639. 2025-2-24 16:10:59-debug: output config of bundle module_basic
  4640. 2025-2-24 16:10:59-debug: output config of bundle module_game success
  4641. 2025-2-24 16:10:59-debug: Output asset in bundles success, progress: 24%
  4642. 2025-2-24 16:10:59-debug: output config of bundle module_extra
  4643. 2025-2-24 16:10:59-debug: output config of bundle module_game
  4644. 2025-2-24 16:10:59-debug: // ---- build task Build Assets ---- (1373ms)
  4645. 2025-2-24 16:10:59-debug: run build task Build Assets success in 1 s√, progress: 29%
  4646. 2025-2-24 16:10:59-debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
  4647. 2025-2-24 16:10:59-debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
  4648. 2025-2-24 16:10:59-debug: [Build Memory track]: Build Assets start:218.67MB, end 214.86MB, increase: -3901.17KB
  4649. 2025-2-24 16:10:59-debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (60ms)
  4650. 2025-2-24 16:10:59-debug: wechatgame:(onAfterBundleBuildTask) in 60 ms ✓, progress: 29%
  4651. 2025-2-24 16:10:59-debug: // ---- build task wechatgame:onAfterBuildAssets ----
  4652. 2025-2-24 16:10:59-debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
  4653. 2025-2-24 16:10:59-debug: // ---- build task wechatgame:onAfterBuildAssets ---- (59ms)
  4654. 2025-2-24 16:10:59-debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
  4655. 2025-2-24 16:10:59-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4656. 2025-2-24 16:10:59-debug: wechatgame:(onAfterBuildAssets) in 59 ms ✓, progress: 31%
  4657. 2025-2-24 16:10:59-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (62ms)
  4658. 2025-2-24 16:10:59-debug: run build task 整理部分构建选项内数据到 settings.json success in 62 ms√, progress: 33%
  4659. 2025-2-24 16:10:59-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.26MB, end 215.38MB, increase: 128.87KB
  4660. 2025-2-24 16:10:59-debug: // ---- build task 填充脚本数据到 settings.json ----
  4661. 2025-2-24 16:10:59-debug: 填充脚本数据到 settings.json start, progress: 33%
  4662. 2025-2-24 16:10:59-debug: // ---- build task 填充脚本数据到 settings.json ---- (67ms)
  4663. 2025-2-24 16:10:59-debug: run build task 填充脚本数据到 settings.json success in 67 ms√, progress: 34%
  4664. 2025-2-24 16:10:59-debug: [Build Memory track]: 填充脚本数据到 settings.json start:215.42MB, end 215.54MB, increase: 129.09KB
  4665. 2025-2-24 16:10:59-debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
  4666. 2025-2-24 16:10:59-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4667. 2025-2-24 16:10:59-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (57ms)
  4668. 2025-2-24 16:10:59-debug: run build task 整理部分构建选项内数据到 settings.json success in 57 ms√, progress: 36%
  4669. 2025-2-24 16:10:59-debug: // ---- build task wechatgame:onBeforeCompressSettings ----
  4670. 2025-2-24 16:10:59-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.58MB, end 215.84MB, increase: 271.32KB
  4671. 2025-2-24 16:10:59-debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
  4672. 2025-2-24 16:10:59-debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (46ms)
  4673. 2025-2-24 16:10:59-debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
  4674. 2025-2-24 16:10:59-debug: wechatgame:(onBeforeCompressSettings) in 46 ms ✓, progress: 38%
  4675. 2025-2-24 16:10:59-debug: // ---- build task cocos-service:onBeforeCompressSettings ----
  4676. 2025-2-24 16:10:59-debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (221ms)
  4677. 2025-2-24 16:10:59-debug: // ---- build task 整理静态模板文件 ----
  4678. 2025-2-24 16:10:59-debug: cocos-service:(onBeforeCompressSettings) in 221 ms ✓, progress: 40%
  4679. 2025-2-24 16:10:59-debug: 整理静态模板文件 start, progress: 40%
  4680. 2025-2-24 16:10:59-debug: // ---- build task 整理静态模板文件 ---- (74ms)
  4681. 2025-2-24 16:10:59-debug: run build task 整理静态模板文件 success in 74 ms√, progress: 45%
  4682. 2025-2-24 16:10:59-debug: // ---- build task cocos-service:onAfterCompressSettings ----
  4683. 2025-2-24 16:10:59-debug: [Build Memory track]: 整理静态模板文件 start:216.26MB, end 210.44MB, increase: -5961.29KB
  4684. 2025-2-24 16:10:59-debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
  4685. 2025-2-24 16:11:00-debug: // ---- build task cocos-service:onAfterCompressSettings ---- (158ms)
  4686. 2025-2-24 16:11:00-debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
  4687. 2025-2-24 16:11:00-debug: cocos-service:(onAfterCompressSettings) in 158 ms ✓, progress: 46%
  4688. 2025-2-24 16:11:00-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
  4689. 2025-2-24 16:11:00-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (44ms)
  4690. 2025-2-24 16:11:00-debug: wechatgame:(onBeforeCopyBuildTemplate) in 44 ms ✓, progress: 48%
  4691. 2025-2-24 16:11:00-debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
  4692. 2025-2-24 16:11:00-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
  4693. 2025-2-24 16:11:00-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (77ms)
  4694. 2025-2-24 16:11:00-debug: wechatgame:(onAfterCopyBuildTemplate) in 77 ms ✓, progress: 50%
  4695. 2025-2-24 16:11:00-debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
  4696. 2025-2-24 16:11:00-debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
  4697. 2025-2-24 16:11:00-debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (63ms)
  4698. 2025-2-24 16:11:00-debug: run build task 给所有的资源加上 MD5 后缀 success in 63 ms√, progress: 60%
  4699. 2025-2-24 16:11:00-debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:211.26MB, end 211.38MB, increase: 127.68KB
  4700. 2025-2-24 16:11:00-debug: // ---- build task wechatgame:onAfterBuild ----
  4701. 2025-2-24 16:11:00-debug: wechatgame:(onAfterBuild) start..., progress: 60%
  4702. 2025-2-24 16:11:00-debug: // ---- build task wechatgame:onAfterBuild ---- (312ms)
  4703. 2025-2-24 16:11:00-debug: wechatgame:(onAfterBuild) in 312 ms ✓, progress: 62%
  4704. 2025-2-24 16:11:00-debug: cocos-service:(onAfterBuild) start..., progress: 62%
  4705. 2025-2-24 16:11:00-debug: // ---- build task cocos-service:onAfterBuild ----
  4706. 2025-2-24 16:11:00-debug: // ---- build task cocos-service:onAfterBuild ---- (96ms)
  4707. 2025-2-24 16:11:00-debug: cocos-service:(onAfterBuild) in 96 ms ✓, progress: 64%
  4708. 2025-2-24 16:11:00-debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
  4709. 2025-2-24 16:11:00-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
  4710. 2025-2-24 16:11:00-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (42ms)
  4711. 2025-2-24 16:11:00-debug: adsense-h5g-plugin:(onAfterBuild) in 42 ms ✓, progress: 65%
  4712. 2025-2-24 16:11:00-log: Asset DB is resume!
  4713. 2025-2-24 16:11:00-debug: builder:build-project-total (18152ms)
  4714. 2025-2-24 16:11:00-debug: build success in 18152!
  4715. 2025-2-24 16:11:00-debug: [Build Memory track]: builder:build-project-total start:214.73MB, end 210.39MB, increase: -4444.80KB
  4716. 2025-2-24 16:11:00-debug: ================================ build Task (wechatgame-001) Finished in (18 s)ms ================================
  4717. 2025-2-24 16:11:00-debug: Stop record console. {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  4718. 2025-2-24 16:11:03-debug: refresh db internal success
  4719. 2025-2-24 16:11:03-debug: refresh db assets success
  4720. 2025-2-24 16:11:03-debug: Run asset db hook engine-extends:afterRefresh success!
  4721. 2025-2-24 16:11:03-debug: Run asset db hook engine-extends:afterRefresh ...
  4722. 2025-2-24 16:11:03-debug: asset-db:refresh-all-database (106ms)
  4723. 2025-2-24 16:11:03-debug: asset-db:worker-effect-data-processing (1ms)
  4724. 2025-2-24 16:11:03-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4725. 2025-2-24 16:12:41-debug: refresh db internal success
  4726. 2025-2-24 16:12:41-debug: refresh db assets success
  4727. 2025-2-24 16:12:41-debug: Run asset db hook engine-extends:afterRefresh success!
  4728. 2025-2-24 16:12:41-debug: Run asset db hook engine-extends:afterRefresh ...
  4729. 2025-2-24 16:12:41-debug: asset-db:refresh-all-database (160ms)
  4730. 2025-2-24 16:12:41-debug: asset-db:worker-effect-data-processing (1ms)
  4731. 2025-2-24 16:12:41-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4732. 2025-2-24 16:12:41-debug: Query all assets info in project
  4733. 2025-2-24 16:12:41-debug: init custom config: keepNodeUuid: false, useCache: true
  4734. 2025-2-24 16:12:41-debug: 查询 Asset Bundle start, progress: 0%
  4735. 2025-2-24 16:12:41-debug: // ---- build task 查询 Asset Bundle ----
  4736. 2025-2-24 16:12: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
  4737. 2025-2-24 16:12:41-debug: Number of other assets: 1286
  4738. 2025-2-24 16:12:41-debug: Number of all scenes: 3
  4739. 2025-2-24 16:12:41-debug: Number of all scripts: 131
  4740. 2025-2-24 16:12:41-debug: run build task 查询 Asset Bundle success in 25 ms√, progress: 5%
  4741. 2025-2-24 16:12:41-debug: [Build Memory track]: 查询 Asset Bundle start:205.65MB, end 204.59MB, increase: -1082.43KB
  4742. 2025-2-24 16:12:41-debug: // ---- build task 查询 Asset Bundle ----
  4743. 2025-2-24 16:12:41-debug: // ---- build task 查询 Asset Bundle ---- (25ms)
  4744. 2025-2-24 16:12:41-debug: 查询 Asset Bundle start, progress: 5%
  4745. 2025-2-24 16:12:41-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  4746. 2025-2-24 16:12:41-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  4747. 2025-2-24 16:12:41-debug: [Build Memory track]: 查询 Asset Bundle start:204.63MB, end 204.88MB, increase: 265.54KB
  4748. 2025-2-24 16:12:41-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4749. 2025-2-24 16:12:41-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4750. 2025-2-24 16:12:41-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4751. 2025-2-24 16:12:41-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4752. 2025-2-24 16:12:41-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.92MB, end 204.94MB, increase: 28.32KB
  4753. 2025-2-24 16:12:41-debug: 填充脚本数据到 settings.json start, progress: 12%
  4754. 2025-2-24 16:12:41-debug: // ---- build task 填充脚本数据到 settings.json ----
  4755. 2025-2-24 16:12:41-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4756. 2025-2-24 16:12:41-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4757. 2025-2-24 16:12:41-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4758. 2025-2-24 16:12:41-debug: [Build Memory track]: 填充脚本数据到 settings.json start:204.98MB, end 205.00MB, increase: 28.47KB
  4759. 2025-2-24 16:12:41-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4760. 2025-2-24 16:12:41-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  4761. 2025-2-24 16:12:41-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  4762. 2025-2-24 16:12:41-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.03MB, end 205.17MB, increase: 134.71KB
  4763. 2025-2-24 16:13:12-debug: Query all assets info in project
  4764. 2025-2-24 16:13:12-debug: init custom config: keepNodeUuid: false, useCache: true
  4765. 2025-2-24 16:13:12-debug: 查询 Asset Bundle start, progress: 0%
  4766. 2025-2-24 16:13:12-debug: // ---- build task 查询 Asset Bundle ----
  4767. 2025-2-24 16:13:12-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
  4768. 2025-2-24 16:13:12-debug: Number of all scripts: 131
  4769. 2025-2-24 16:13:12-debug: Number of other assets: 1286
  4770. 2025-2-24 16:13:12-debug: Number of all scenes: 3
  4771. 2025-2-24 16:13:12-debug: // ---- build task 查询 Asset Bundle ---- (15ms)
  4772. 2025-2-24 16:13:12-debug: run build task 查询 Asset Bundle success in 15 ms√, progress: 5%
  4773. 2025-2-24 16:13:12-debug: 查询 Asset Bundle start, progress: 5%
  4774. 2025-2-24 16:13:12-debug: [Build Memory track]: 查询 Asset Bundle start:204.97MB, end 205.46MB, increase: 509.55KB
  4775. 2025-2-24 16:13:12-debug: // ---- build task 查询 Asset Bundle ----
  4776. 2025-2-24 16:13:12-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  4777. 2025-2-24 16:13:12-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  4778. 2025-2-24 16:13:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4779. 2025-2-24 16:13:12-debug: [Build Memory track]: 查询 Asset Bundle start:205.50MB, end 204.86MB, increase: -652.17KB
  4780. 2025-2-24 16:13:12-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4781. 2025-2-24 16:13:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4782. 2025-2-24 16:13:12-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4783. 2025-2-24 16:13:12-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.89MB, end 204.92MB, increase: 28.18KB
  4784. 2025-2-24 16:13:12-debug: 填充脚本数据到 settings.json start, progress: 12%
  4785. 2025-2-24 16:13:12-debug: // ---- build task 填充脚本数据到 settings.json ----
  4786. 2025-2-24 16:13:12-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4787. 2025-2-24 16:13:12-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4788. 2025-2-24 16:13:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4789. 2025-2-24 16:13:12-debug: [Build Memory track]: 填充脚本数据到 settings.json start:204.95MB, end 204.98MB, increase: 32.49KB
  4790. 2025-2-24 16:13:12-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4791. 2025-2-24 16:13:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4792. 2025-2-24 16:13:12-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4793. 2025-2-24 16:13:12-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.01MB, end 205.14MB, increase: 130.41KB
  4794. 2025-2-24 16:13:17-debug: refresh db internal success
  4795. 2025-2-24 16:13:17-debug: Run asset db hook engine-extends:afterRefresh ...
  4796. 2025-2-24 16:13:17-debug: Run asset db hook engine-extends:afterRefresh success!
  4797. 2025-2-24 16:13:17-debug: refresh db assets success
  4798. 2025-2-24 16:13:17-debug: asset-db:refresh-all-database (140ms)
  4799. 2025-2-24 16:13:17-debug: asset-db:worker-effect-data-processing (1ms)
  4800. 2025-2-24 16:13:17-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4801. 2025-2-24 16:17:04-debug: refresh db internal success
  4802. 2025-2-24 16:17:04-debug: %cImport%c: D:\CocosCreatorProject\idiom\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  4803. 2025-2-24 16:17:04-debug: refresh db assets success
  4804. 2025-2-24 16:17:04-debug: Run asset db hook engine-extends:afterRefresh ...
  4805. 2025-2-24 16:17:04-debug: Run asset db hook engine-extends:afterRefresh success!
  4806. 2025-2-24 16:17:04-debug: asset-db:refresh-all-database (132ms)
  4807. 2025-2-24 16:17:04-debug: asset-db:worker-effect-data-processing (2ms)
  4808. 2025-2-24 16:17:04-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4809. 2025-2-24 16:17:06-debug: refresh db internal success
  4810. 2025-2-24 16:17:06-debug: refresh db assets success
  4811. 2025-2-24 16:17:06-debug: Run asset db hook engine-extends:afterRefresh success!
  4812. 2025-2-24 16:17:06-debug: Run asset db hook engine-extends:afterRefresh ...
  4813. 2025-2-24 16:17:06-debug: asset-db:refresh-all-database (110ms)
  4814. 2025-2-24 16:17:09-debug: =================================== build Task (wechatgame-001) Start ================================
  4815. 2025-2-24 16:17:09-debug: Start record console... {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}
  4816. 2025-2-24 16:17:09-debug: Build with Cocos Creator 3.8.4
  4817. 2025-2-24 16:17:09-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-001","taskName":"wechatgame-001","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":"wxc0fb4a435b39ab92","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[],"__version__":"3.0.7"}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-20 15-37.log"}
  4818. 2025-2-24 16:17:09-debug: cocos-service:(onBeforeBuild) start..., progress: 0%
  4819. 2025-2-24 16:17:09-debug: // ---- build task cocos-service:onBeforeBuild ----
  4820. 2025-2-24 16:17:09-debug: // ---- build task cocos-service:onBeforeBuild ---- (161ms)
  4821. 2025-2-24 16:17:09-debug: cocos-service:(onBeforeBuild) in 161 ms ✓, progress: 2%
  4822. 2025-2-24 16:17:09-debug: // ---- build task scene:onBeforeBuild ----
  4823. 2025-2-24 16:17:09-debug: scene:(onBeforeBuild) start..., progress: 2%
  4824. 2025-2-24 16:17:09-debug: // ---- build task scene:onBeforeBuild ---- (40ms)
  4825. 2025-2-24 16:17:09-debug: scene:(onBeforeBuild) in 40 ms ✓, progress: 4%
  4826. 2025-2-24 16:17:09-debug: Query all assets info in project
  4827. 2025-2-24 16:17:09-log: Asset DB is paused with build!
  4828. 2025-2-24 16:17:09-debug: Start lock asset db..., progress: 4%
  4829. 2025-2-24 16:17:09-debug: init custom config: keepNodeUuid: false, useCache: true
  4830. 2025-2-24 16:17:09-debug: // ---- build task wechatgame:onAfterInit ----
  4831. 2025-2-24 16:17:09-debug: wechatgame:(onAfterInit) start..., progress: 4%
  4832. 2025-2-24 16:17:09-debug: // ---- build task wechatgame:onAfterInit ---- (24ms)
  4833. 2025-2-24 16:17:09-debug: wechatgame:(onAfterInit) in 24 ms ✓, progress: 5%
  4834. 2025-2-24 16:17:09-debug: cocos-service:(onAfterInit) start..., progress: 5%
  4835. 2025-2-24 16:17:09-debug: // ---- build task cocos-service:onAfterInit ----
  4836. 2025-2-24 16:17:09-debug: // ---- build task cocos-service:onAfterInit ---- (148ms)
  4837. 2025-2-24 16:17:09-debug: cocos-service:(onAfterInit) in 148 ms ✓, progress: 7%
  4838. 2025-2-24 16:17:09-debug: engine:(onAfterInit) start..., progress: 7%
  4839. 2025-2-24 16:17:09-debug: // ---- build task engine:onAfterInit ----
  4840. 2025-2-24 16:17:10-debug: // ---- build task engine:onAfterInit ---- (62ms)
  4841. 2025-2-24 16:17:10-debug: // ---- build task wechatgame:onBeforeBundleInit ----
  4842. 2025-2-24 16:17:10-debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
  4843. 2025-2-24 16:17:10-debug: engine:(onAfterInit) in 62 ms ✓, progress: 9%
  4844. 2025-2-24 16:17:10-debug: // ---- build task wechatgame:onBeforeBundleInit ---- (45ms)
  4845. 2025-2-24 16:17:10-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
  4846. 2025-2-24 16:17:10-debug: [adsense-h5g-plugin] remove script success
  4847. 2025-2-24 16:17:10-debug: wechatgame:(onBeforeBundleInit) in 45 ms ✓, progress: 9%
  4848. 2025-2-24 16:17:10-debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
  4849. 2025-2-24 16:17:10-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (41ms)
  4850. 2025-2-24 16:17:10-debug: adsense-h5g-plugin:(onBeforeBundleInit) in 41 ms ✓, progress: 9%
  4851. 2025-2-24 16:17:10-debug: Init all bundles start..., progress: 9%
  4852. 2025-2-24 16:17:10-debug: // ---- build task 查询 Asset Bundle ----
  4853. 2025-2-24 16:17:10-debug: 查询 Asset Bundle start, progress: 9%
  4854. 2025-2-24 16:17:10-debug: Num of bundles: 7..., progress: 9%
  4855. 2025-2-24 16:17:10-debug: Init bundle root assets start..., progress: 9%
  4856. 2025-2-24 16:17:10-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
  4857. 2025-2-24 16:17:10-debug: Number of all scenes: 3
  4858. 2025-2-24 16:17:10-debug: Number of other assets: 1286
  4859. 2025-2-24 16:17:10-debug: Init bundle root assets success..., progress: 9%
  4860. 2025-2-24 16:17:10-debug: reload all scripts.
  4861. 2025-2-24 16:17:10-debug: Number of all scripts: 131
  4862. 2025-2-24 16:17:10-debug: Unregister BuiltinPipelineSettings
  4863. 2025-2-24 16:17:10-debug: Unregister DebugViewRuntimeControl
  4864. 2025-2-24 16:17:10-debug: Set detail map pack:///resolution-detail-map.json: {}
  4865. 2025-2-24 16:17:10-debug: Unregister ch_start_pack
  4866. 2025-2-24 16:17:10-debug: Unregister ui_updater
  4867. 2025-2-24 16:17:10-debug: Unregister ch_sdk_comp
  4868. 2025-2-24 16:17:10-debug: Unregister __NodeEventAgent__
  4869. 2025-2-24 16:17:10-debug: Unregister ClickPenetrate
  4870. 2025-2-24 16:17:10-debug: Unregister ResolutionAutoFit
  4871. 2025-2-24 16:17:10-debug: Unregister MotionTrail
  4872. 2025-2-24 16:17:10-debug: Unregister ListItem
  4873. 2025-2-24 16:17:10-debug: Unregister MovieClip
  4874. 2025-2-24 16:17:10-debug: Unregister SpineView
  4875. 2025-2-24 16:17:10-debug: Unregister RewardFly
  4876. 2025-2-24 16:17:10-debug: Unregister UISpineMovie
  4877. 2025-2-24 16:17:10-debug: Unregister Layout_UIAlert
  4878. 2025-2-24 16:17:10-debug: Unregister Layout_UI_Notify
  4879. 2025-2-24 16:17:10-debug: Unregister table_idiom
  4880. 2025-2-24 16:17:10-debug: Unregister Layout_UIWaiting
  4881. 2025-2-24 16:17:10-debug: Unregister table_idiom_order
  4882. 2025-2-24 16:17:10-debug: Unregister table_idiom_unorder_2_2
  4883. 2025-2-24 16:17:10-debug: Unregister table_idiom_unorder_1_3
  4884. 2025-2-24 16:17:10-debug: Unregister table_level
  4885. 2025-2-24 16:17:10-debug: Unregister List
  4886. 2025-2-24 16:17:10-debug: Unregister table_idiom_unorder_3_1
  4887. 2025-2-24 16:17:10-debug: Unregister table_level_2
  4888. 2025-2-24 16:17:10-debug: Unregister table_store
  4889. 2025-2-24 16:17:10-debug: Unregister table_task
  4890. 2025-2-24 16:17:10-debug: Unregister Layout_GameRules
  4891. 2025-2-24 16:17:10-debug: Unregister UI_GameRules
  4892. 2025-2-24 16:17:10-debug: Unregister Layout_Idioms
  4893. 2025-2-24 16:17:10-debug: Unregister UI_Idiom
  4894. 2025-2-24 16:17:10-debug: Unregister UI_Idioms
  4895. 2025-2-24 16:17:10-debug: Unregister Layout_Settings
  4896. 2025-2-24 16:17:10-debug: Unregister Hall
  4897. 2025-2-24 16:17:10-debug: Unregister Layout_Hall
  4898. 2025-2-24 16:17:10-debug: Unregister UI_Rank_Item
  4899. 2025-2-24 16:17:10-debug: Unregister Layout_Tips
  4900. 2025-2-24 16:17:10-debug: Unregister UI_Head_Icon
  4901. 2025-2-24 16:17:10-debug: Unregister Sign_Reward
  4902. 2025-2-24 16:17:10-debug: Unregister Layout_Sign
  4903. 2025-2-24 16:17:10-debug: Unregister UI_Rank
  4904. 2025-2-24 16:17:10-debug: Unregister Layout_Rank
  4905. 2025-2-24 16:17:10-debug: Unregister Layout_Invite
  4906. 2025-2-24 16:17:10-debug: Unregister UI_Sign
  4907. 2025-2-24 16:17:10-debug: Unregister Layout_Store
  4908. 2025-2-24 16:17:10-debug: Unregister Layout_SideBar
  4909. 2025-2-24 16:17:10-debug: Unregister UI_Store
  4910. 2025-2-24 16:17:10-debug: Unregister UI_Invite
  4911. 2025-2-24 16:17:10-debug: Unregister UI_SideBar
  4912. 2025-2-24 16:17:10-debug: Unregister UI_Task_Item
  4913. 2025-2-24 16:17:10-debug: Unregister UI_Task
  4914. 2025-2-24 16:17:10-debug: Unregister Start
  4915. 2025-2-24 16:17:10-debug: Unregister Layout_Task
  4916. 2025-2-24 16:17:10-debug: Unregister Layout_Life
  4917. 2025-2-24 16:17:10-debug: Unregister UI_Life
  4918. 2025-2-24 16:17:10-debug: Unregister UI_Settings
  4919. 2025-2-24 16:17:10-debug: Unregister UI_Tips
  4920. 2025-2-24 16:17:10-debug: Unregister Layout_Win
  4921. 2025-2-24 16:17:10-debug: Unregister Layout_Main
  4922. 2025-2-24 16:17:10-debug: Unregister UI_Win
  4923. 2025-2-24 16:17:10-debug: Unregister Layout_TimesOver
  4924. 2025-2-24 16:17:10-debug: Unregister UI_Hall
  4925. 2025-2-24 16:17:10-debug: Unregister Layout_Fail
  4926. 2025-2-24 16:17:10-debug: Unregister UI_TimesOver
  4927. 2025-2-24 16:17:10-debug: Unregister Cube_Infor
  4928. 2025-2-24 16:17:10-debug: Unregister CreateIdiom
  4929. 2025-2-24 16:17:10-debug: Unregister UI_Fail
  4930. 2025-2-24 16:17:10-debug: Unregister Layout_LatticeFull
  4931. 2025-2-24 16:17:10-debug: Unregister UI_LatticeFull
  4932. 2025-2-24 16:17:10-debug: Unregister UI_Main
  4933. 2025-2-24 16:17:10-debug: Unregister Layout_Lock
  4934. 2025-2-24 16:17:10-debug: Unregister Container_Manager
  4935. 2025-2-24 16:17:10-debug: Unregister GameCtl
  4936. 2025-2-24 16:17:10-debug: Unregister Hall_Root
  4937. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
  4938. 2025-2-24 16:17:10-debug: Unregister UI_Item
  4939. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
  4940. 2025-2-24 16:17:10-debug: Unregister UI_Lock
  4941. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
  4942. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
  4943. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
  4944. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js'
  4945. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js'
  4946. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
  4947. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
  4948. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js'
  4949. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js'
  4950. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js'
  4951. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js'
  4952. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js'
  4953. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js'
  4954. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js'
  4955. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js'
  4956. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js'
  4957. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js'
  4958. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js'
  4959. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js'
  4960. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js'
  4961. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js'
  4962. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js'
  4963. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js'
  4964. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js'
  4965. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js'
  4966. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js'
  4967. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js'
  4968. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js'
  4969. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js'
  4970. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js'
  4971. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js'
  4972. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js'
  4973. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js'
  4974. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js'
  4975. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js'
  4976. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js'
  4977. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js'
  4978. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js'
  4979. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js'
  4980. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js'
  4981. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js'
  4982. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js'
  4983. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js'
  4984. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js'
  4985. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js'
  4986. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js'
  4987. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js'
  4988. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js'
  4989. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js'
  4990. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js'
  4991. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js'
  4992. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js'
  4993. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js'
  4994. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js'
  4995. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js'
  4996. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js'
  4997. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js'
  4998. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js'
  4999. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js'
  5000. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js'
  5001. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js'
  5002. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js'
  5003. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js'
  5004. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js'
  5005. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js'
  5006. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js'
  5007. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js'
  5008. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js'
  5009. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js'
  5010. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js'
  5011. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js'
  5012. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js'
  5013. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js'
  5014. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js'
  5015. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js'
  5016. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js'
  5017. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js'
  5018. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js'
  5019. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js'
  5020. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js'
  5021. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js'
  5022. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js'
  5023. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js'
  5024. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js'
  5025. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js'
  5026. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js'
  5027. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js'
  5028. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js'
  5029. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js'
  5030. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js'
  5031. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js'
  5032. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js'
  5033. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js'
  5034. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js'
  5035. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js'
  5036. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js'
  5037. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js'
  5038. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js'
  5039. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js'
  5040. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js'
  5041. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js'
  5042. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js'
  5043. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js'
  5044. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js'
  5045. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js'
  5046. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js'
  5047. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js'
  5048. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js'
  5049. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js'
  5050. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js'
  5051. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js'
  5052. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js'
  5053. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js'
  5054. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js'
  5055. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js'
  5056. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js'
  5057. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js'
  5058. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js'
  5059. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js'
  5060. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js'
  5061. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js'
  5062. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js'
  5063. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js'
  5064. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js'
  5065. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js'
  5066. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js'
  5067. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js'
  5068. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js'
  5069. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js'
  5070. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js'
  5071. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  5072. 2025-2-24 16:17:10-debug: Invalidating 'pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js'
  5073. 2025-2-24 16:17:10-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
  5074. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  5075. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
  5076. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
  5077. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
  5078. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
  5079. 2025-2-24 16:17:10-debug: [[Executor]] Register DebugViewRuntimeControl
  5080. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
  5081. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/94/945ac74f8c3c871933f6eda65eb681e3a53a4a83.js" loaded.
  5082. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/6a/6aa04b19cfb582fca0992df5e4d4e67636b30121.js" loaded.
  5083. 2025-2-24 16:17:10-debug: [[Executor]] Register BuiltinPipelineSettings
  5084. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ba/bad28bffa646dcfff5a23f9834cca36b11873342.js" loaded.
  5085. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/6e/6ee779fa57034073575d732772a2318605961a83.js" loaded.
  5086. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/9a/9abeafe9347e2a5a1b4f98c437cea60863704cf7.js" loaded.
  5087. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/1e/1ef5647f2944b5e522f1485cc1712d149bfa46b1.js" loaded.
  5088. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/f6/f687455aedddf067eb0ca8a425c91c7904bff61a.js" loaded.
  5089. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/69/69001950ab04bd0e0c6c8a8eb223c81a706f2092.js" loaded.
  5090. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/0f/0f0b5177042a0e65ab12bb1ae6b3e4d6cb732c1b.js" loaded.
  5091. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/d2/d209f7a01be42bfaeaf66aa2f2e43bd4a94ea1de.js" loaded.
  5092. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/0c/0cd8bdf79fde829c03ff32dc92f823459bc2eef7.js" loaded.
  5093. 2025-2-24 16:17:10-debug: [[Executor]] Register ch_sdk_comp
  5094. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/79/792b5e4ac8f11883c23668d3a7a8b44d601cd3d0.js" loaded.
  5095. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/25/258ef086e9da490ac24335c87b1f800202f98b70.js" loaded.
  5096. 2025-2-24 16:17:10-debug: [[Executor]] Register ch_start_pack
  5097. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/b8/b8724456d7ae01d66c3b7f2d82eaef6a4c13c365.js" loaded.
  5098. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/49/4925cb58379ef71aa7fd6899f9dcc6154b70e48c.js" loaded.
  5099. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/13/13287da69274d3aebe39f7d6d0d0afea232310d7.js" loaded.
  5100. 2025-2-24 16:17:10-debug: [[Executor]] Register __NodeEventAgent__
  5101. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ca/caa4cca48cf8f38a7846504dfe5d907807f05708.js" loaded.
  5102. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/4c/4c6088262402756eb61f5e90671b828ee8156992.js" loaded.
  5103. 2025-2-24 16:17:10-debug: [[Executor]] Register ResolutionAutoFit
  5104. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/be/beac6c998ab6f9e58b4b8eec74e6a02573711aaa.js" loaded.
  5105. 2025-2-24 16:17:10-debug: [[Executor]] Register ui_updater
  5106. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/12/12a0e34e3bb22b035d62aa5221ec3ae2dd5ff48c.js" loaded.
  5107. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/00/00e2a5a750cc5b4b77f93453236557ea301bb25e.js" loaded.
  5108. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/a2/a2580489bd20abaa15763b7e4a27d901f1b0d64a.js" loaded.
  5109. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/05/058b201217221d5f88e19b4d1b5b1554c93c5c59.js" loaded.
  5110. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ec/ec5620c2e6fee8a6f870bfbd9767f24dce459556.js" loaded.
  5111. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/a4/a4035f47bc518dcefdada34e0518c46cd0c803ce.js" loaded.
  5112. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/39/3979f88d11623919d9932640638c6b129d4eab9f.js" loaded.
  5113. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/32/324a3b7baf1be35222e6fe2c2f406c3daa7ed633.js" loaded.
  5114. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ce/ce2f283ae68d3f2c067f86ddbe66b3d496f1cd5e.js" loaded.
  5115. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/34/34658dd649d651f32ca65cf8f93206c3f19a5bfd.js" loaded.
  5116. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/2d/2d65ace0516efd2d6ff531520884b984f949558d.js" loaded.
  5117. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/45/451509232285586c94fbb42f4ba0dfaf924d8f86.js" loaded.
  5118. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ce/ceeb3152ac4e7ec1cbbfe167a34c441034286a77.js" loaded.
  5119. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/60/60b06ae900f4cd994af68bc3e1b2e92c44cd1dae.js" loaded.
  5120. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/7f/7fe3975b5b0a9baadc008a3c988c3961b05c76c3.js" loaded.
  5121. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/99/99003ba9e047eb187e8592862603d246772ce879.js" loaded.
  5122. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ac/ac8f28c70764b8ffa1e14212685b9c61f3354b97.js" loaded.
  5123. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/3b/3bdf94f80cc7c4e432a1b8a5268e57b2c305372c.js" loaded.
  5124. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/c0/c05af6cea72a3f829cb1b9fbab4b99727dbc57a4.js" loaded.
  5125. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/de/de8069ae2816547a5fbd7c10e8aa0376a192be11.js" loaded.
  5126. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/a4/a44b01c154a34812e44007dd63a213a4b1a20db4.js" loaded.
  5127. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/5d/5dbe1fbbb02789c7e89942056300c5f6e6675ef9.js" loaded.
  5128. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ad/ad64ab55ef68b0e0b1655d625f240b65c0c8851d.js" loaded.
  5129. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/8a/8a70b8dc94d378ff20528ac810c7a0e513a94128.js" loaded.
  5130. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ea/eaf2fac5477cace5e46a8b542941f5d4aa4fee8f.js" loaded.
  5131. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/2d/2d88cd09787c5deb93ff6b3c4eb1c7adc8dd6555.js" loaded.
  5132. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/09/09150aabc12199b9096239af328644e4d61e7aba.js" loaded.
  5133. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/43/43279b533a6131255cceabc61de6a306ee602b05.js" loaded.
  5134. 2025-2-24 16:17:10-debug: [[Executor]] Register ClickPenetrate
  5135. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/89/898f718398f0e219bbe6d3fd146705a353eb6e98.js" loaded.
  5136. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/aa/aa29ecc9ea062cfe3cea0dfc234bc2f84985737c.js" loaded.
  5137. 2025-2-24 16:17:10-debug: [[Executor]] Register ListItem
  5138. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/00/00bc06e1ef9ef9a537acb68ddb8ba0d00efcfee1.js" loaded.
  5139. 2025-2-24 16:17:10-debug: [[Executor]] Register List
  5140. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/3d/3dae6925eca2466088361501ca86cf5431069ed6.js" loaded.
  5141. 2025-2-24 16:17:10-debug: [[Executor]] Register MotionTrail
  5142. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/d9/d9ffd842e0d1c5a0c6b29396f172e2772497d53b.js" loaded.
  5143. 2025-2-24 16:17:10-warn: 'MotionTrail.color' hides inherited property 'cc.UIRenderer.color'. To make the current property override that implementation, add the `override: true` attribute please.
  5144. 2025-2-24 16:17:10-debug: [[Executor]] Register MovieClip
  5145. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/62/62d7b5485c46d3f386cb0852cf226e3d8ffe69fa.js" loaded.
  5146. 2025-2-24 16:17:10-debug: [[Executor]] Register RewardFly
  5147. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/9d/9ddc04c9c420894f158794323a6833f57121072e.js" loaded.
  5148. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/e4/e48542f878d1c96c30e1d5c88ec4f4ea5b70b0b5.js" loaded.
  5149. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/16/16a9dbede69fd464f71a4628d82eeac748bc51d9.js" loaded.
  5150. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/10/10529c2f40445bf2a3b9cf468590ba156c9b7a93.js" loaded.
  5151. 2025-2-24 16:17:10-debug: [[Executor]] Register UISpineMovie
  5152. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/1d/1db06cc6f669a183f51e6e6afe3dbc802ac1d1fc.js" loaded.
  5153. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/be/be5e2d51a3bde22471f973be93e8d7565094f751.js" loaded.
  5154. 2025-2-24 16:17:10-debug: [[Executor]] Register SpineView
  5155. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_UIAlert
  5156. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/55/55abe83b8befdcc4d5a1197fb357dcc2e6c8251f.js" loaded.
  5157. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/31/31e5989e7bb7227ffc020669a187b4ba9d1e8ddb.js" loaded.
  5158. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_UI_Notify
  5159. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/a9/a939ef135ae6d7cf1f1a54e2248bf06f1b2d32e3.js" loaded.
  5160. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/71/710e82289bbe47b3b16f400464aad1a3e9d10b0e.js" loaded.
  5161. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/12/126c47bd00c0a1a4888e06a3e3cd0ad8f42c79c2.js" loaded.
  5162. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_UIWaiting
  5163. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/42/425c8fc9ec5b93e7fc4d8726c8d9fe93c7c0b750.js" loaded.
  5164. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/1f/1f8bc3a5637acade0f9735232188cc7061cfd18c.js" loaded.
  5165. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/f7/f7fbf5f4a52d289ff3c42149934c58d9a34154ea.js" loaded.
  5166. 2025-2-24 16:17:10-debug: [[Executor]] Register table_idiom_order
  5167. 2025-2-24 16:17:10-debug: [[Executor]] Register table_idiom_unorder_1_3
  5168. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/d8/d8db0dd8734183da6e9cc660f88adabcf8bca08c.js" loaded.
  5169. 2025-2-24 16:17:10-debug: [[Executor]] Register table_idiom_unorder_2_2
  5170. 2025-2-24 16:17:10-debug: [[Executor]] Register table_idiom
  5171. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/b4/b49755f027b6a9079d5f532bba0e15354186e63d.js" loaded.
  5172. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/e0/e065000bff4262cff90bb92546f33d8bfd44a98f.js" loaded.
  5173. 2025-2-24 16:17:10-debug: [[Executor]] Register table_idiom_unorder_3_1
  5174. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/3f/3f7292ba665b406fbb5398fcd7c012af306a5471.js" loaded.
  5175. 2025-2-24 16:17:10-debug: [[Executor]] Register table_level
  5176. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/47/47107438bc38650a6044647825cac4881f33830d.js" loaded.
  5177. 2025-2-24 16:17:10-debug: [[Executor]] Register table_store
  5178. 2025-2-24 16:17:10-debug: [[Executor]] Register table_level_2
  5179. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/02/02ff8df67649859da6460432a3a96e35e4c84e48.js" loaded.
  5180. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/45/4542188466ed48edaf14d9b112432a32979870a1.js" loaded.
  5181. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ce/ce08a2c145ce490b39657c4e3413a36cab82fd0d.js" loaded.
  5182. 2025-2-24 16:17:10-debug: [[Executor]] Register table_task
  5183. 2025-2-24 16:17:10-debug: D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js resolved to D:\CocosCreatorProject\idiom\idiom\temp\programming\packer-driver\targets\editor\chunks\2e\2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js is not in module cache!
  5184. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_GameRules
  5185. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/e3/e31f79dec9a283ae823a602b5f2c8f39d9e50b6d.js" loaded.
  5186. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Idiom
  5187. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/c6/c6e84e86bfe7037d46f8a14c4eb5a798732f3926.js" loaded.
  5188. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_GameRules
  5189. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Idioms
  5190. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Idioms
  5191. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/f3/f36e37712faa9def6810633ff88929eb6e7d92fd.js" loaded.
  5192. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/02/02f5297fcc41071d17751cff5a19d466284385ac.js" loaded.
  5193. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Settings
  5194. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/83/83135c5eb3a57e76937745d929319e01da0e6d42.js" loaded.
  5195. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/b8/b8d1966a7e57aa028f3bf88c38dd037e97ff4f0e.js" loaded.
  5196. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/00/00fc3d706ca727d34035236ee1515ae342831e03.js" loaded.
  5197. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Hall
  5198. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/77/777503fccc6d3af32b9207402adf0d83f6410900.js" loaded.
  5199. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Tips
  5200. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/f4/f4d2caaedb68c7cfbc7404fad5d909315a34b1a0.js" loaded.
  5201. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Head_Icon
  5202. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ae/ae09e1dc27462fa243348fea3c76bfbe0bbcfc5f.js" loaded.
  5203. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/d0/d02a4db18b44c0a5a905a8da4cd0296fd426a944.js" loaded.
  5204. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/e1/e1147a79464be3722bfd2a8f7d71b0aa13cfba5c.js" loaded.
  5205. 2025-2-24 16:17:10-debug: [[Executor]] Register Hall
  5206. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Rank_Item
  5207. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/74/742bad2f2bb84c05fa5e0007c797f136d4dc9db0.js" loaded.
  5208. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/72/72b62451398272ab27094a680c58eab464b0f7c5.js" loaded.
  5209. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Rank
  5210. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Rank
  5211. 2025-2-24 16:17:10-warn: The type of "Sign_Reward.type" must be CCFloat or CCInteger, not Number.
  5212. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/09/09dcbd2748fdaf399a39a7fcf727757b78945c97.js" loaded.
  5213. 2025-2-24 16:17:10-warn: The type of "Sign_Reward.num" must be CCFloat or CCInteger, not Number.
  5214. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Sign
  5215. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/fc/fcebba71e3c0042b083b6e5690f4af3ef60fe029.js" loaded.
  5216. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Sign
  5217. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/89/897bcc5c9c7b08cce7fe09859b67da3a15a39a0c.js" loaded.
  5218. 2025-2-24 16:17:10-debug: [[Executor]] Register Sign_Reward
  5219. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Invite
  5220. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/51/51a2fc9baf5dbcb91158148773a20e6ed06617ea.js" loaded.
  5221. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Store
  5222. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/c3/c38fbddfe94ce6f62f8c9b7bbd95c6d93ecdc741.js" loaded.
  5223. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/18/188c9c90c9ccb0ddf33cf4202163212973d27824.js" loaded.
  5224. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Invite
  5225. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/38/38500b8b6d70ee455b2a86786491e62dd5e5af09.js" loaded.
  5226. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/a2/a25e53b7f82aca512d5c0f43fc4565f30fd9cf7b.js" loaded.
  5227. 2025-2-24 16:17:10-debug: [[Executor]] Register Start
  5228. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_SideBar
  5229. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/67/677a1a0214bd517782a919e898d49c8d602eda93.js" loaded.
  5230. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_SideBar
  5231. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/32/32e8f686061e0af985c4e3975251d8a89b1e73a5.js" loaded.
  5232. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/f7/f7be4fd7cfa22f59c28b2d16bfa7be3c73bf4023.js" loaded.
  5233. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Store
  5234. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Task_Item
  5235. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/c2/c21106b2b90e69800ca920b3ffc9524b9a2db7ca.js" loaded.
  5236. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/1c/1c3f183bcdbce9a44698cf3b2952e873da314efa.js" loaded.
  5237. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Task
  5238. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/57/577ce3e2458a113c1718d4d0a48c8ec3acf6e4f9.js" loaded.
  5239. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Task
  5240. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Life
  5241. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/58/58fc29196b91f1459c34b29a9ba5265f1e9917b5.js" loaded.
  5242. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Hall
  5243. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/11/11bdb6039a4b35cbc3d63df1ecb6dc24fb68aab9.js" loaded.
  5244. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Tips
  5245. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Life
  5246. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/9d/9d3f6ecd6a09e2e721e9f8050f124c0dcff639c2.js" loaded.
  5247. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Win
  5248. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/9b/9bc66ec71eb320c47f918de3696d0de59ce66b13.js" loaded.
  5249. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Win
  5250. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Settings
  5251. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/67/67e301a594accb5528d8dbfee5d8bdad010dbc8f.js" loaded.
  5252. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/8d/8dda8d3885eabf4ac3ab9b98d12694798a8db102.js" loaded.
  5253. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/c8/c825815e9958ea21bfb8b896c19adfc948001103.js" loaded.
  5254. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/8b/8b9a9a6b5149cbd401143db67d0c2f450e728971.js" loaded.
  5255. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_TimesOver
  5256. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Main
  5257. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/2f/2f9b27c1c029e66af9324c3f79002703294dd6ca.js" loaded.
  5258. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Fail
  5259. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/36/36557f41123735295cd2917b3e23be218d71a6f7.js" loaded.
  5260. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_TimesOver
  5261. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/8d/8d3d22f59bd6c497dcec20b4e5c10da28017adf0.js" loaded.
  5262. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Main
  5263. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/8a/8a77f196a5b9d563dd1cd74d54e35f045f21c35a.js" loaded.
  5264. 2025-2-24 16:17:10-debug: [[Executor]] Register Cube_Infor
  5265. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Fail
  5266. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/8e/8e1f568134c0faddb479bb9b5626087b79114fb9.js" loaded.
  5267. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/5a/5ac695c448e125565ccc2f22e469cda22e7796cb.js" loaded.
  5268. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/ad/ad3dca31db8fd4032fc0318333149c6c27563bee.js" loaded.
  5269. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_LatticeFull
  5270. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/c6/c64df2e3efb6ad404a034dbf9da0adc2e8042e7a.js" loaded.
  5271. 2025-2-24 16:17:10-debug: [[Executor]] Register CreateIdiom
  5272. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_LatticeFull
  5273. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/00/005c4f73ad505c8533f47e3bf262968f544b3c29.js" loaded.
  5274. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/88/887374b08ccba2db713a1f0d401bcdad80fc4ebd.js" loaded.
  5275. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Lock
  5276. 2025-2-24 16:17:10-debug: [[Executor]] Register Layout_Lock
  5277. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/61/6158a2d0f390f8a87809ca16670d8e228a227fb2.js" loaded.
  5278. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/2e/2e039fa4b8022b796ea0e92974ad9f4b5f4ac4f5.js" loaded.
  5279. 2025-2-24 16:17:10-debug: [[Executor]] Register Container_Manager
  5280. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/82/8259c3d0f118898d99cd54f5dd6755fc97e76406.js" loaded.
  5281. 2025-2-24 16:17:10-debug: [[Executor]] Register GameCtl
  5282. 2025-2-24 16:17:10-debug: [[Executor]] Register Hall_Root
  5283. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/55/553ff8402c55347a3bdd08d9e8853cb57c4c73c7.js" loaded.
  5284. 2025-2-24 16:17:10-debug: [[Executor]] Register UI_Item
  5285. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/e5/e55803fdad4509157e93866295c97e2478236978.js" loaded.
  5286. 2025-2-24 16:17:10-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  5287. 2025-2-24 16:17:10-debug: Init bundle share assets start..., progress: 9%
  5288. 2025-2-24 16:17:10-debug: Incremental keys: chSdk,chsdk
  5289. 2025-2-24 16:17:10-debug: Init bundle share assets success..., progress: 9%
  5290. 2025-2-24 16:17:10-debug: handle json group in bundle internal
  5291. 2025-2-24 16:17:10-debug: handle json group in bundle internal success
  5292. 2025-2-24 16:17:10-debug: handle json group in bundle resources
  5293. 2025-2-24 16:17:10-debug: handle json group in bundle start-scene
  5294. 2025-2-24 16:17:10-debug: handle json group in bundle start-scene success
  5295. 2025-2-24 16:17:10-debug: handle json group in bundle main success
  5296. 2025-2-24 16:17:10-debug: handle json group in bundle module_extra
  5297. 2025-2-24 16:17:10-debug: handle json group in bundle main
  5298. 2025-2-24 16:17:10-debug: handle json group in bundle module_game
  5299. 2025-2-24 16:17:10-debug: init image compress task 0 in bundle internal
  5300. 2025-2-24 16:17:10-debug: init image compress task 0 in bundle start-scene
  5301. 2025-2-24 16:17:10-debug: init image compress task 0 in bundle main
  5302. 2025-2-24 16:17:10-debug: handle json group in bundle resources success
  5303. 2025-2-24 16:17:10-debug: handle json group in bundle module_basic success
  5304. 2025-2-24 16:17:10-debug: init image compress task 0 in bundle module_basic
  5305. 2025-2-24 16:17:10-debug: init image compress task 0 in bundle resources
  5306. 2025-2-24 16:17:10-debug: init image compress task 0 in bundle module_extra
  5307. 2025-2-24 16:17:10-debug: handle json group in bundle module_basic
  5308. 2025-2-24 16:17:10-debug: handle json group in bundle module_extra success
  5309. 2025-2-24 16:17:10-debug: handle json group in bundle module_game success
  5310. 2025-2-24 16:17:10-debug: init image compress task 0 in bundle module_game
  5311. 2025-2-24 16:17:10-debug: // ---- build task 查询 Asset Bundle ---- (364ms)
  5312. 2025-2-24 16:17:10-debug: run build task 查询 Asset Bundle success in 364 ms√, progress: 14%
  5313. 2025-2-24 16:17:10-debug: [Build Memory track]: 查询 Asset Bundle start:212.58MB, end 214.75MB, increase: 2.17MB
  5314. 2025-2-24 16:17:10-debug: 查询 Asset Bundle start, progress: 14%
  5315. 2025-2-24 16:17:10-debug: // ---- build task 查询 Asset Bundle ----
  5316. 2025-2-24 16:17:10-debug: // ---- build task 查询 Asset Bundle ---- (87ms)
  5317. 2025-2-24 16:17:10-debug: run build task 查询 Asset Bundle success in 87 ms√, progress: 19%
  5318. 2025-2-24 16:17:10-debug: // ---- build task 打包脚本 ----
  5319. 2025-2-24 16:17:10-debug: [Build Memory track]: 查询 Asset Bundle start:214.78MB, end 215.36MB, increase: 592.84KB
  5320. 2025-2-24 16:17:10-debug: 打包脚本 start, progress: 19%
  5321. 2025-2-24 16:17:10-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  5322. 2025-2-24 16:17:11-log: [build-script]enter sub process 6944, 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
  5323. 2025-2-24 16:17:13-debug: excute-script over with build-script 3364ms
  5324. 2025-2-24 16:17:13-debug: Generate systemJs..., progress: 19%
  5325. 2025-2-24 16:17:13-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  5326. 2025-2-24 16:17:16-debug: excute-script over with build-script 2375ms
  5327. 2025-2-24 16:17:16-debug: 构建项目脚本 start..., progress: 19%
  5328. 2025-2-24 16:17:16-debug: Build script in bundle start, progress: 19%
  5329. 2025-2-24 16:17:16-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  5330. 2025-2-24 16:17:19-log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
  5331. 2025-2-24 16:17:21-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
  5332. 2025-2-24 16:17:21-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Life/UI_Life.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Tips/UI_Tips.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/idiom/idiom/assets/module_game/game/Container_Manager.ts
  5333. 2025-2-24 16:17:24-debug: excute-script over with build-script 8321ms
  5334. 2025-2-24 16:17:24-debug: Copy externalScripts success!
  5335. 2025-2-24 16:17:24-debug: Build script in bundle success, progress: 19%
  5336. 2025-2-24 16:17:24-debug: 构建引擎脚本 start..., progress: 19%
  5337. 2025-2-24 16:17:24-debug: 构建项目脚本 in (8442 ms) √, progress: 19%
  5338. 2025-2-24 16:17:24-debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}
  5339. 2025-2-24 16:17:24-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\\idiom\\idiom\\build\\wechatgame-001\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
  5340. 2025-2-24 16:17:24-debug: 构建引擎脚本 in (124 ms) √, progress: 19%
  5341. 2025-2-24 16:17:24-debug: Generate import-map..., progress: 19%
  5342. 2025-2-24 16:17:24-debug: Copy plugin script ..., progress: 19%
  5343. 2025-2-24 16:17:25-debug: // ---- build task 打包脚本 ---- (14410ms)
  5344. 2025-2-24 16:17:25-debug: Build Assets start, progress: 24%
  5345. 2025-2-24 16:17:25-debug: run build task 打包脚本 success in 14 s√, progress: 24%
  5346. 2025-2-24 16:17:25-debug: [Build Memory track]: 打包脚本 start:215.54MB, end 214.93MB, increase: -621.64KB
  5347. 2025-2-24 16:17:25-debug: Pack Images start, progress: 24%
  5348. 2025-2-24 16:17:25-debug: // ---- build task Build Assets ----
  5349. 2025-2-24 16:17:25-debug: Build bundles..., progress: 24%
  5350. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  5351. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  5352. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  5353. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  5354. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  5355. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  5356. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  5357. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  5358. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  5359. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  5360. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  5361. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  5362. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  5363. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(cc51e6d0-1169-4a90-ac7e-bf7e32fb67eb)}
  5364. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  5365. 2025-2-24 16:17:25-debug: Get Cache info of pac success {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  5366. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(04167dc6-0fb2-4c4e-bed4-0e4bbaba9e79)}
  5367. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(02c07f34-5fa1-43ad-9f31-c240900ea56b)}
  5368. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(2595642e-3080-4908-8e5d-2cb2b3afdbda)}
  5369. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(27a58909-b974-4453-b5bc-be1d7c6f3690)}
  5370. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(a8e23b86-e98d-4aa9-b768-da33a0307826)}
  5371. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(30dbbff5-d129-4f03-8590-1968b1473854)}
  5372. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(d81e27a9-6056-4a48-90f5-e066ac006983)}
  5373. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(0a4aa5f1-63fb-48b2-a794-bc4b56ce52a4)}
  5374. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(20bb0257-a46b-4ce5-91d6-401467650680)}
  5375. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(21ecc62f-97e1-48c9-81b7-f622fa7a37c5)}
  5376. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(367ce5e1-f665-411e-82d4-46159a5afd01)}
  5377. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(d7f7b419-7181-4b77-989c-8ff4fd76df26)}
  5378. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  5379. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  5380. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(981ac9aa-0b0d-4e08-887e-1dfc137160ed)}
  5381. 2025-2-24 16:17:25-debug: remove spriteAtlas._uuid : {asset(a8ccf1a0-d4c5-44a5-96c4-5be54d7b3178)}
  5382. 2025-2-24 16:17:25-debug: builder:pack-auto-atlas-image (872ms)
  5383. 2025-2-24 16:17:25-debug: sort compress task {}
  5384. 2025-2-24 16:17:25-debug: Pack Images success, progress: 24%
  5385. 2025-2-24 16:17:25-debug: Compress image start..., progress: 24%
  5386. 2025-2-24 16:17:25-debug: Num of all image compress task 0, really: 0, configTasks: 0
  5387. 2025-2-24 16:17:25-debug: Output asset in bundles start, progress: 24%
  5388. 2025-2-24 16:17:25-debug: Compress image success..., progress: 24%
  5389. 2025-2-24 16:17:25-debug: Handle all json groups in bundle internal
  5390. 2025-2-24 16:17:25-debug: handle json group
  5391. 2025-2-24 16:17:25-debug: Handle all json groups in bundle start-scene
  5392. 2025-2-24 16:17:25-debug: handle json group
  5393. 2025-2-24 16:17:25-debug: No image need to compress
  5394. 2025-2-24 16:17:25-debug: Handle all json groups in bundle resources
  5395. 2025-2-24 16:17:25-debug: handle json group
  5396. 2025-2-24 16:17:25-debug: Handle all json groups in bundle main
  5397. 2025-2-24 16:17:25-debug: handle single json
  5398. 2025-2-24 16:17:25-debug: Handle all json groups in bundle module_extra
  5399. 2025-2-24 16:17:25-debug: handle json group
  5400. 2025-2-24 16:17:25-debug: handle single json
  5401. 2025-2-24 16:17:25-debug: Handle all json groups in bundle module_basic
  5402. 2025-2-24 16:17:25-debug: handle json group
  5403. 2025-2-24 16:17:25-debug: handle json group
  5404. 2025-2-24 16:17:25-debug: Handle all json groups in bundle module_game
  5405. 2025-2-24 16:17:25-debug: handle json group
  5406. 2025-2-24 16:17:25-debug: Json group(03ccd410a) compile success,json number: 6
  5407. 2025-2-24 16:17:25-debug: handle single json
  5408. 2025-2-24 16:17:25-debug: Json group(07325bfaa) compile success,json number: 6
  5409. 2025-2-24 16:17:26-debug: Json group(0ba471961) compile success,json number: 6
  5410. 2025-2-24 16:17:26-debug: handle single json
  5411. 2025-2-24 16:17:26-debug: Json group(0524f237b) compile success,json number: 6
  5412. 2025-2-24 16:17:26-debug: Json group(045b519c1) compile success,json number: 6
  5413. 2025-2-24 16:17:26-debug: handle single json
  5414. 2025-2-24 16:17:26-debug: Json group(0a54f6860) compile success,json number: 6
  5415. 2025-2-24 16:17:26-debug: handle single json
  5416. 2025-2-24 16:17:26-debug: Json group(027fa8751) compile success,json number: 6
  5417. 2025-2-24 16:17:26-debug: Json group(08d4f0835) compile success,json number: 6
  5418. 2025-2-24 16:17:26-debug: Json group(08f30b54e) compile success,json number: 6
  5419. 2025-2-24 16:17:26-debug: Json group(093f10e90) compile success,json number: 6
  5420. 2025-2-24 16:17:26-debug: Json group(02c882590) compile success,json number: 6
  5421. 2025-2-24 16:17:26-debug: Json group(0e48af9fb) compile success,json number: 6
  5422. 2025-2-24 16:17:26-debug: Json group(0787c84da) compile success,json number: 6
  5423. 2025-2-24 16:17:26-debug: Json group(03c9cd961) compile success,json number: 6
  5424. 2025-2-24 16:17:26-debug: Json group(041ac2e1c) compile success,json number: 6
  5425. 2025-2-24 16:17:26-debug: Json group(0471cee9c) compile success,json number: 6
  5426. 2025-2-24 16:17:26-debug: Json group(04a6d010d) compile success,json number: 6
  5427. 2025-2-24 16:17:26-debug: Json group(070166e93) compile success,json number: 6
  5428. 2025-2-24 16:17:26-debug: Json group(02b639d30) compile success,json number: 6
  5429. 2025-2-24 16:17:26-debug: Json group(06db2e96b) compile success,json number: 6
  5430. 2025-2-24 16:17:26-debug: Json group(097e5daf7) compile success,json number: 6
  5431. 2025-2-24 16:17:26-debug: Json group(0c5a2fc7e) compile success,json number: 6
  5432. 2025-2-24 16:17:26-debug: Json group(091e713ef) compile success,json number: 6
  5433. 2025-2-24 16:17:26-debug: Json group(01236a39b) compile success,json number: 6
  5434. 2025-2-24 16:17:26-debug: Json group(0a46ee258) compile success,json number: 6
  5435. 2025-2-24 16:17:26-debug: Json group(033a6699b) compile success,json number: 6
  5436. 2025-2-24 16:17:26-debug: Json group(02d36d139) compile success,json number: 6
  5437. 2025-2-24 16:17:26-debug: Json group(0d54cf783) compile success,json number: 6
  5438. 2025-2-24 16:17:26-debug: handle single json
  5439. 2025-2-24 16:17:26-debug: Output asset in bundles success, progress: 24%
  5440. 2025-2-24 16:17:26-debug: Output asset in bundles start, progress: 24%
  5441. 2025-2-24 16:17:26-debug: compress config of bundle start-scene...
  5442. 2025-2-24 16:17:26-debug: compress config of bundle internal success
  5443. 2025-2-24 16:17:26-debug: compress config of bundle start-scene success
  5444. 2025-2-24 16:17:26-debug: compress config of bundle resources...
  5445. 2025-2-24 16:17:26-debug: compress config of bundle resources success
  5446. 2025-2-24 16:17:26-debug: compress config of bundle main...
  5447. 2025-2-24 16:17:26-debug: compress config of bundle module_extra...
  5448. 2025-2-24 16:17:26-debug: compress config of bundle module_extra success
  5449. 2025-2-24 16:17:26-debug: compress config of bundle module_basic...
  5450. 2025-2-24 16:17:26-debug: compress config of bundle internal...
  5451. 2025-2-24 16:17:26-debug: compress config of bundle main success
  5452. 2025-2-24 16:17:26-debug: compress config of bundle module_game success
  5453. 2025-2-24 16:17:26-debug: compress config of bundle module_basic success
  5454. 2025-2-24 16:17:26-debug: compress config of bundle module_game...
  5455. 2025-2-24 16:17:26-debug: output config of bundle start-scene
  5456. 2025-2-24 16:17:26-debug: output config of bundle internal
  5457. 2025-2-24 16:17:26-debug: output config of bundle internal success
  5458. 2025-2-24 16:17:26-debug: output config of bundle start-scene success
  5459. 2025-2-24 16:17:26-debug: output config of bundle main
  5460. 2025-2-24 16:17:26-debug: output config of bundle resources
  5461. 2025-2-24 16:17:26-debug: output config of bundle main success
  5462. 2025-2-24 16:17:26-debug: output config of bundle resources success
  5463. 2025-2-24 16:17:26-debug: output config of bundle module_extra success
  5464. 2025-2-24 16:17:26-debug: output config of bundle module_extra
  5465. 2025-2-24 16:17:26-debug: output config of bundle module_game
  5466. 2025-2-24 16:17:26-debug: output config of bundle module_basic
  5467. 2025-2-24 16:17:26-debug: output config of bundle module_basic success
  5468. 2025-2-24 16:17:26-debug: Output asset in bundles success, progress: 24%
  5469. 2025-2-24 16:17:26-debug: output config of bundle module_game success
  5470. 2025-2-24 16:17:26-debug: // ---- build task Build Assets ---- (1459ms)
  5471. 2025-2-24 16:17:26-debug: run build task Build Assets success in 1 s√, progress: 29%
  5472. 2025-2-24 16:17:26-debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
  5473. 2025-2-24 16:17:26-debug: [Build Memory track]: Build Assets start:214.97MB, end 213.59MB, increase: -1406.22KB
  5474. 2025-2-24 16:17:26-log: 资源数据库已锁定,资源操作(refresh)将会延迟响应,请稍侯
  5475. 2025-2-24 16:17:26-debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
  5476. 2025-2-24 16:17:26-debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (56ms)
  5477. 2025-2-24 16:17:26-debug: wechatgame:(onAfterBundleBuildTask) in 56 ms ✓, progress: 29%
  5478. 2025-2-24 16:17:26-debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
  5479. 2025-2-24 16:17:26-debug: // ---- build task wechatgame:onAfterBuildAssets ----
  5480. 2025-2-24 16:17:26-debug: // ---- build task wechatgame:onAfterBuildAssets ---- (71ms)
  5481. 2025-2-24 16:17:26-debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
  5482. 2025-2-24 16:17:26-debug: wechatgame:(onAfterBuildAssets) in 71 ms ✓, progress: 31%
  5483. 2025-2-24 16:17:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5484. 2025-2-24 16:17:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (57ms)
  5485. 2025-2-24 16:17:26-debug: run build task 整理部分构建选项内数据到 settings.json success in 57 ms√, progress: 33%
  5486. 2025-2-24 16:17:26-debug: // ---- build task 填充脚本数据到 settings.json ----
  5487. 2025-2-24 16:17:26-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.06MB, end 214.19MB, increase: 136.12KB
  5488. 2025-2-24 16:17:26-debug: 填充脚本数据到 settings.json start, progress: 33%
  5489. 2025-2-24 16:17:26-debug: // ---- build task 填充脚本数据到 settings.json ---- (67ms)
  5490. 2025-2-24 16:17:26-debug: run build task 填充脚本数据到 settings.json success in 67 ms√, progress: 34%
  5491. 2025-2-24 16:17:26-debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
  5492. 2025-2-24 16:17:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5493. 2025-2-24 16:17:26-debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.22MB, end 214.37MB, increase: 148.09KB
  5494. 2025-2-24 16:17:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (67ms)
  5495. 2025-2-24 16:17:26-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.40MB, end 214.63MB, increase: 238.86KB
  5496. 2025-2-24 16:17:26-debug: run build task 整理部分构建选项内数据到 settings.json success in 67 ms√, progress: 36%
  5497. 2025-2-24 16:17:26-debug: // ---- build task wechatgame:onBeforeCompressSettings ----
  5498. 2025-2-24 16:17:26-debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
  5499. 2025-2-24 16:17:26-debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (59ms)
  5500. 2025-2-24 16:17:26-debug: // ---- build task cocos-service:onBeforeCompressSettings ----
  5501. 2025-2-24 16:17:26-debug: wechatgame:(onBeforeCompressSettings) in 59 ms ✓, progress: 38%
  5502. 2025-2-24 16:17:26-debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
  5503. 2025-2-24 16:17:27-debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (208ms)
  5504. 2025-2-24 16:17:27-debug: cocos-service:(onBeforeCompressSettings) in 208 ms ✓, progress: 40%
  5505. 2025-2-24 16:17:27-debug: // ---- build task 整理静态模板文件 ----
  5506. 2025-2-24 16:17:27-debug: 整理静态模板文件 start, progress: 40%
  5507. 2025-2-24 16:17:27-debug: // ---- build task 整理静态模板文件 ---- (90ms)
  5508. 2025-2-24 16:17:27-debug: [Build Memory track]: 整理静态模板文件 start:215.06MB, end 212.94MB, increase: -2171.41KB
  5509. 2025-2-24 16:17:27-debug: // ---- build task cocos-service:onAfterCompressSettings ----
  5510. 2025-2-24 16:17:27-debug: run build task 整理静态模板文件 success in 90 ms√, progress: 45%
  5511. 2025-2-24 16:17:27-debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
  5512. 2025-2-24 16:17:27-debug: // ---- build task cocos-service:onAfterCompressSettings ---- (591ms)
  5513. 2025-2-24 16:17:27-debug: cocos-service:(onAfterCompressSettings) in 591 ms ✓, progress: 46%
  5514. 2025-2-24 16:17:27-debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
  5515. 2025-2-24 16:17:27-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
  5516. 2025-2-24 16:17:27-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (41ms)
  5517. 2025-2-24 16:17:27-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
  5518. 2025-2-24 16:17:27-debug: wechatgame:(onBeforeCopyBuildTemplate) in 41 ms ✓, progress: 48%
  5519. 2025-2-24 16:17:27-debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
  5520. 2025-2-24 16:17:27-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (54ms)
  5521. 2025-2-24 16:17:27-debug: wechatgame:(onAfterCopyBuildTemplate) in 54 ms ✓, progress: 50%
  5522. 2025-2-24 16:17:27-debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
  5523. 2025-2-24 16:17:27-debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
  5524. 2025-2-24 16:17:27-debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (44ms)
  5525. 2025-2-24 16:17:27-debug: run build task 给所有的资源加上 MD5 后缀 success in 44 ms√, progress: 60%
  5526. 2025-2-24 16:17:27-debug: // ---- build task wechatgame:onAfterBuild ----
  5527. 2025-2-24 16:17:27-debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:213.96MB, end 214.09MB, increase: 128.41KB
  5528. 2025-2-24 16:17:27-debug: wechatgame:(onAfterBuild) start..., progress: 60%
  5529. 2025-2-24 16:17:28-debug: // ---- build task wechatgame:onAfterBuild ---- (303ms)
  5530. 2025-2-24 16:17:28-debug: wechatgame:(onAfterBuild) in 303 ms ✓, progress: 62%
  5531. 2025-2-24 16:17:28-debug: cocos-service:(onAfterBuild) start..., progress: 62%
  5532. 2025-2-24 16:17:28-debug: // ---- build task cocos-service:onAfterBuild ----
  5533. 2025-2-24 16:17:28-debug: cocos-service:(onAfterBuild) in 169 ms ✓, progress: 64%
  5534. 2025-2-24 16:17:28-debug: // ---- build task cocos-service:onAfterBuild ---- (169ms)
  5535. 2025-2-24 16:17:28-debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
  5536. 2025-2-24 16:17:28-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
  5537. 2025-2-24 16:17:28-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (40ms)
  5538. 2025-2-24 16:17:28-log: Asset DB is resume!
  5539. 2025-2-24 16:17:28-debug: adsense-h5g-plugin:(onAfterBuild) in 40 ms ✓, progress: 65%
  5540. 2025-2-24 16:17:28-debug: refresh db internal success
  5541. 2025-2-24 16:17:28-debug: builder:build-project-total (18967ms)
  5542. 2025-2-24 16:17:28-debug: refresh db assets success
  5543. 2025-2-24 16:17:28-debug: Run asset db hook engine-extends:afterRefresh ...
  5544. 2025-2-24 16:17:28-debug: Run asset db hook engine-extends:afterRefresh success!
  5545. 2025-2-24 16:17:28-debug: asset-db:worker-effect-data-processing (17ms)
  5546. 2025-2-24 16:17:28-debug: asset-db-hook-engine-extends-afterRefresh (17ms)
  5547. 2025-2-24 16:17:28-debug: asset-db:refresh-all-database (176ms)
  5548. 2025-2-24 16:17:28-debug: build success in 18967!
  5549. 2025-2-24 16:17:28-debug: [Build Memory track]: builder:build-project-total start:212.79MB, end 221.26MB, increase: 8.48MB
  5550. 2025-2-24 16:17:28-debug: ================================ build Task (wechatgame-001) Finished in (19 s)ms ================================
  5551. 2025-2-24 16:17:28-debug: Stop record console. {file(D:\CocosCreatorProject\idiom\idiom\temp\builder\log\wechatgame2025-1-20 15-37.log)}