2025-1-18 12-20.log 772 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604
  1. 2025-1-18 12:20:26-debug: start **** info
  2. 2025-1-18 12:20:26-log: Cannot access game frame or container.
  3. 2025-1-18 12:20:27-debug: asset-db:require-engine-code (1030ms)
  4. 2025-1-18 12:20:27-log: meshopt wasm decoder initialized
  5. 2025-1-18 12:20:27-log: [box2d]:box2d wasm lib loaded.
  6. 2025-1-18 12:20:28-log: [bullet]:bullet wasm lib loaded.
  7. 2025-1-18 12:20:28-log: Cocos Creator v3.8.4
  8. 2025-1-18 12:20:28-log: Using legacy pipeline
  9. 2025-1-18 12:20:28-log: Forward render pipeline initialized.
  10. 2025-1-18 12:20:28-debug: [Assets Memory track]: asset-db-plugin-register: programming start:82.46MB, end 85.76MB, increase: 3.31MB
  11. 2025-1-18 12:20:28-debug: [Assets Memory track]: asset-db:worker-init: initEngine start:28.96MB, end 81.65MB, increase: 52.69MB
  12. 2025-1-18 12:20:29-debug: [Assets Memory track]: asset-db-plugin-register: builder start:85.79MB, end 170.94MB, increase: 85.14MB
  13. 2025-1-18 12:20:29-debug: [Assets Memory track]: asset-db-plugin-register: engine-extends start:171.17MB, end 174.23MB, increase: 3.06MB
  14. 2025-1-18 12:20:29-debug: [Assets Memory track]: asset-db:worker-init: initPlugin start:81.67MB, end 174.33MB, increase: 92.66MB
  15. 2025-1-18 12:20:29-debug: [Assets Memory track]: asset-db-plugin-register: project start:82.33MB, end 174.30MB, increase: 91.98MB
  16. 2025-1-18 12:20:29-debug: asset-db:worker-init: initPlugin (1592ms)
  17. 2025-1-18 12:20:29-debug: [Assets Memory track]: asset-db:worker-init start:28.96MB, end 174.42MB, increase: 145.47MB
  18. 2025-1-18 12:20:29-debug: Run asset db hook programming:beforePreStart success!
  19. 2025-1-18 12:20:29-debug: Run asset db hook engine-extends:beforePreStart success!
  20. 2025-1-18 12:20:29-debug: Run asset db hook engine-extends:beforePreStart ...
  21. 2025-1-18 12:20:29-debug: Run asset db hook programming:beforePreStart ...
  22. 2025-1-18 12:20:29-debug: asset-db-hook-programming-beforePreStart (107ms)
  23. 2025-1-18 12:20:29-debug: asset-db:worker-init (3594ms)
  24. 2025-1-18 12:20:29-debug: asset-db-hook-engine-extends-beforePreStart (107ms)
  25. 2025-1-18 12:20:29-debug: Preimport db internal success
  26. 2025-1-18 12:20:29-debug: Preimport db assets success
  27. 2025-1-18 12:20:29-debug: Run asset db hook programming:afterPreStart ...
  28. 2025-1-18 12:20:29-debug: starting packer-driver...
  29. 2025-1-18 12:20:30-debug: initialize scripting environment...
  30. 2025-1-18 12:20:30-debug: Set detail map pack:///resolution-detail-map.json: {}
  31. 2025-1-18 12:20:30-debug: Run asset db hook engine-extends:afterPreStart success!
  32. 2025-1-18 12:20:30-debug: Start up the 'internal' database...
  33. 2025-1-18 12:20:30-debug: Run asset db hook programming:afterPreStart success!
  34. 2025-1-18 12:20:30-debug: Run asset db hook engine-extends:afterPreStart ...
  35. 2025-1-18 12:20:31-debug: asset-db-hook-programming-afterPreStart (1307ms)
  36. 2025-1-18 12:20:31-debug: asset-db:worker-effect-data-processing (312ms)
  37. 2025-1-18 12:20:31-debug: asset-db-hook-engine-extends-afterPreStart (312ms)
  38. 2025-1-18 12:20:31-debug: [Assets Memory track]: asset-db:worker-startup-database[internal] start:174.53MB, end 187.82MB, increase: 13.30MB
  39. 2025-1-18 12:20:31-debug: Start up the 'assets' database...
  40. 2025-1-18 12:20:31-debug: asset-db:worker-startup-database[internal] (1614ms)
  41. 2025-1-18 12:20:31-debug: [Assets Memory track]: asset-db:worker-startup-database[assets] start:173.80MB, end 188.03MB, increase: 14.23MB
  42. 2025-1-18 12:20:31-debug: [Assets Memory track]: asset-db:worker-init: startup start:174.98MB, end 188.05MB, increase: 13.07MB
  43. 2025-1-18 12:20:31-debug: lazy register asset handler text
  44. 2025-1-18 12:20:31-debug: lazy register asset handler *
  45. 2025-1-18 12:20:31-debug: lazy register asset handler directory
  46. 2025-1-18 12:20:31-debug: lazy register asset handler json
  47. 2025-1-18 12:20:31-debug: lazy register asset handler spine-data
  48. 2025-1-18 12:20:31-debug: lazy register asset handler dragonbones-atlas
  49. 2025-1-18 12:20:31-debug: lazy register asset handler dragonbones
  50. 2025-1-18 12:20:31-debug: lazy register asset handler terrain
  51. 2025-1-18 12:20:31-debug: lazy register asset handler javascript
  52. 2025-1-18 12:20:31-debug: lazy register asset handler scene
  53. 2025-1-18 12:20:31-debug: lazy register asset handler typescript
  54. 2025-1-18 12:20:31-debug: lazy register asset handler sprite-frame
  55. 2025-1-18 12:20:31-debug: lazy register asset handler buffer
  56. 2025-1-18 12:20:31-debug: lazy register asset handler prefab
  57. 2025-1-18 12:20:31-debug: lazy register asset handler tiled-map
  58. 2025-1-18 12:20:31-debug: lazy register asset handler sign-image
  59. 2025-1-18 12:20:31-debug: lazy register asset handler alpha-image
  60. 2025-1-18 12:20:31-debug: lazy register asset handler texture-cube
  61. 2025-1-18 12:20:31-debug: lazy register asset handler image
  62. 2025-1-18 12:20:31-debug: lazy register asset handler texture
  63. 2025-1-18 12:20:31-debug: lazy register asset handler erp-texture-cube
  64. 2025-1-18 12:20:31-debug: lazy register asset handler rt-sprite-frame
  65. 2025-1-18 12:20:31-debug: lazy register asset handler texture-cube-face
  66. 2025-1-18 12:20:31-debug: lazy register asset handler gltf
  67. 2025-1-18 12:20:31-debug: lazy register asset handler gltf-mesh
  68. 2025-1-18 12:20:31-debug: lazy register asset handler gltf-animation
  69. 2025-1-18 12:20:31-debug: lazy register asset handler gltf-skeleton
  70. 2025-1-18 12:20:31-debug: lazy register asset handler render-texture
  71. 2025-1-18 12:20:31-debug: lazy register asset handler gltf-embeded-image
  72. 2025-1-18 12:20:31-debug: lazy register asset handler fbx
  73. 2025-1-18 12:20:31-debug: lazy register asset handler gltf-material
  74. 2025-1-18 12:20:31-debug: lazy register asset handler material
  75. 2025-1-18 12:20:31-debug: lazy register asset handler physics-material
  76. 2025-1-18 12:20:31-debug: lazy register asset handler gltf-scene
  77. 2025-1-18 12:20:31-debug: lazy register asset handler effect-header
  78. 2025-1-18 12:20:31-debug: lazy register asset handler animation-clip
  79. 2025-1-18 12:20:31-debug: lazy register asset handler audio-clip
  80. 2025-1-18 12:20:31-debug: lazy register asset handler animation-graph
  81. 2025-1-18 12:20:31-debug: lazy register asset handler effect
  82. 2025-1-18 12:20:31-debug: lazy register asset handler animation-graph-variant
  83. 2025-1-18 12:20:31-debug: lazy register asset handler bitmap-font
  84. 2025-1-18 12:20:31-debug: lazy register asset handler animation-mask
  85. 2025-1-18 12:20:31-debug: lazy register asset handler particle
  86. 2025-1-18 12:20:31-debug: lazy register asset handler sprite-atlas
  87. 2025-1-18 12:20:31-debug: lazy register asset handler auto-atlas
  88. 2025-1-18 12:20:31-debug: lazy register asset handler render-pipeline
  89. 2025-1-18 12:20:31-debug: lazy register asset handler render-stage
  90. 2025-1-18 12:20:31-debug: lazy register asset handler label-atlas
  91. 2025-1-18 12:20:31-debug: lazy register asset handler instantiation-material
  92. 2025-1-18 12:20:31-debug: lazy register asset handler instantiation-mesh
  93. 2025-1-18 12:20:31-debug: lazy register asset handler render-flow
  94. 2025-1-18 12:20:31-debug: lazy register asset handler instantiation-skeleton
  95. 2025-1-18 12:20:31-debug: lazy register asset handler instantiation-animation
  96. 2025-1-18 12:20:31-debug: lazy register asset handler ttf-font
  97. 2025-1-18 12:20:31-debug: lazy register asset handler video-clip
  98. 2025-1-18 12:20:31-debug: asset-db:worker-startup-database[assets] (1558ms)
  99. 2025-1-18 12:20:31-debug: asset-db:start-database (1704ms)
  100. 2025-1-18 12:20:31-debug: asset-db:ready (8149ms)
  101. 2025-1-18 12:20:31-debug: init worker message success
  102. 2025-1-18 12:20:31-debug: [Build Memory track]: builder:worker-init start:187.58MB, end 201.41MB, increase: 13.83MB
  103. 2025-1-18 12:20:31-debug: programming:execute-script (7ms)
  104. 2025-1-18 12:20:32-debug: builder:worker-init (497ms)
  105. 2025-1-18 12:20:41-debug: Start record console... {file(D:\CocosCreatorProject\Idioms\idiom\temp\builder\log\wechatgame2025-1-18 10-29.log)}
  106. 2025-1-18 12:20:41-debug: =================================== build Task (wechatgame) Start ================================
  107. 2025-1-18 12:20:41-debug: Start build task, options: {"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":"brotli","packages":{"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
  108. 2025-1-18 12:20:41-debug: Build with Cocos Creator 3.8.4
  109. 2025-1-18 12:20:41-debug: // ---- build task cocos-service:onBeforeBuild ----
  110. 2025-1-18 12:20:41-debug: cocos-service:(onBeforeBuild) start..., progress: 0%
  111. 2025-1-18 12:20:41-debug: // ---- build task cocos-service:onBeforeBuild ---- (160ms)
  112. 2025-1-18 12:20:41-debug: cocos-service:(onBeforeBuild) in 160 ms ✓, progress: 2%
  113. 2025-1-18 12:20:41-debug: scene:(onBeforeBuild) start..., progress: 2%
  114. 2025-1-18 12:20:41-debug: // ---- build task scene:onBeforeBuild ----
  115. 2025-1-18 12:20:41-debug: // ---- build task scene:onBeforeBuild ---- (35ms)
  116. 2025-1-18 12:20:41-debug: scene:(onBeforeBuild) in 35 ms ✓, progress: 4%
  117. 2025-1-18 12:20:41-debug: Start lock asset db..., progress: 4%
  118. 2025-1-18 12:20:41-debug: Query all assets info in project
  119. 2025-1-18 12:20:41-log: Asset DB is paused with build!
  120. 2025-1-18 12:20:41-debug: init custom config: keepNodeUuid: false, useCache: true
  121. 2025-1-18 12:20:41-debug: wechatgame:(onAfterInit) start..., progress: 4%
  122. 2025-1-18 12:20:41-debug: // ---- build task wechatgame:onAfterInit ----
  123. 2025-1-18 12:20:41-debug: // ---- build task wechatgame:onAfterInit ---- (17ms)
  124. 2025-1-18 12:20:41-debug: wechatgame:(onAfterInit) in 17 ms ✓, progress: 5%
  125. 2025-1-18 12:20:41-debug: // ---- build task cocos-service:onAfterInit ----
  126. 2025-1-18 12:20:41-debug: cocos-service:(onAfterInit) start..., progress: 5%
  127. 2025-1-18 12:20:41-debug: // ---- build task cocos-service:onAfterInit ---- (82ms)
  128. 2025-1-18 12:20:41-debug: cocos-service:(onAfterInit) in 82 ms ✓, progress: 7%
  129. 2025-1-18 12:20:41-debug: // ---- build task engine:onAfterInit ----
  130. 2025-1-18 12:20:41-debug: engine:(onAfterInit) start..., progress: 7%
  131. 2025-1-18 12:20:41-debug: // ---- build task engine:onAfterInit ---- (32ms)
  132. 2025-1-18 12:20:41-debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
  133. 2025-1-18 12:20:41-debug: // ---- build task wechatgame:onBeforeBundleInit ----
  134. 2025-1-18 12:20:41-debug: engine:(onAfterInit) in 32 ms ✓, progress: 9%
  135. 2025-1-18 12:20:41-debug: // ---- build task wechatgame:onBeforeBundleInit ---- (37ms)
  136. 2025-1-18 12:20:41-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
  137. 2025-1-18 12:20:41-debug: wechatgame:(onBeforeBundleInit) in 37 ms ✓, progress: 9%
  138. 2025-1-18 12:20:41-debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
  139. 2025-1-18 12:20:41-debug: [adsense-h5g-plugin] remove script success
  140. 2025-1-18 12:20:41-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (39ms)
  141. 2025-1-18 12:20:41-debug: adsense-h5g-plugin:(onBeforeBundleInit) in 39 ms ✓, progress: 9%
  142. 2025-1-18 12:20:41-debug: Init all bundles start..., progress: 9%
  143. 2025-1-18 12:20:41-debug: // ---- build task 查询 Asset Bundle ----
  144. 2025-1-18 12:20:41-debug: Init bundle root assets start..., progress: 9%
  145. 2025-1-18 12:20:41-debug: 查询 Asset Bundle start, progress: 9%
  146. 2025-1-18 12:20:41-debug: Num of bundles: 6..., progress: 9%
  147. 2025-1-18 12:20:41-debug: Number of all scenes: 3
  148. 2025-1-18 12:20:41-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  149. 2025-1-18 12:20:41-debug: Init bundle root assets success..., progress: 9%
  150. 2025-1-18 12:20:41-debug: Number of all scripts: 118
  151. 2025-1-18 12:20:41-debug: Number of other assets: 1135
  152. 2025-1-18 12:20:41-debug: reload all scripts.
  153. 2025-1-18 12:20:41-debug: Set detail map pack:///resolution-detail-map.json: {}
  154. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\93\93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js is not in module cache!
  155. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
  156. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
  157. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
  158. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
  159. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
  160. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
  161. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
  162. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
  163. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
  164. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
  165. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
  166. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
  167. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
  168. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
  169. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
  170. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
  171. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
  172. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
  173. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
  174. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
  175. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
  176. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
  177. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
  178. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
  179. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
  180. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
  181. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
  182. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
  183. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
  184. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
  185. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
  186. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/base" loaded.
  187. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
  188. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
  189. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-empty" loaded.
  190. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl2" loaded.
  191. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/3d" loaded.
  192. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgl" loaded.
  193. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/gfx-webgpu" loaded.
  194. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/skeletal-animation" loaded.
  195. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/sorting" loaded.
  196. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/2d" loaded.
  197. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/animation" loaded.
  198. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle-2d" loaded.
  199. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-framework" loaded.
  200. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/particle" loaded.
  201. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-framework" loaded.
  202. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/intersection-2d" loaded.
  203. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/physics-2d-box2d-wasm" loaded.
  204. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/primitive" loaded.
  205. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/ui" loaded.
  206. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/geometry-renderer" loaded.
  207. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/profiler" loaded.
  208. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/xr" loaded.
  209. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/audio" loaded.
  210. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/video" loaded.
  211. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/light-probe" loaded.
  212. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/terrain" loaded.
  213. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/tween" loaded.
  214. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/tiled-map" loaded.
  215. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/spine" loaded.
  216. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/webview" loaded.
  217. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/dragon-bones" loaded.
  218. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline-post-process" loaded.
  219. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/legacy-pipeline" loaded.
  220. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  221. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/cc-fu/custom-pipeline" loaded.
  222. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  223. 2025-1-18 12:20:41-debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
  224. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
  225. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  226. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d6\d6137fe08bf966a053351bb405928e5a6390befd.js is not in module cache!
  227. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a5019a719a9014c047e67aa1cf34453ab8392ce.js is not in module cache!
  228. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b349769b96cc4c1dff92d5d6f941366e27a02c6b.js is not in module cache!
  229. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
  230. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
  231. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
  232. 2025-1-18 12:20:41-debug: [[Executor]] Module "cce:/internal/x/engine-export-to-editor/cc/editor/populate-internal-constants" loaded.
  233. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
  234. 2025-1-18 12:20:41-debug: [[Executor]] Register BuiltinPipelineSettings
  235. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\59b7958b47eec6168615a6469581f8f48e26cb00.js is not in module cache!
  236. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
  237. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\9758c8bdbb4fd247ebce274d105abb8265561b82.js is not in module cache!
  238. 2025-1-18 12:20:41-debug: [[Executor]] Register DebugViewRuntimeControl
  239. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
  240. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ba\bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js is not in module cache!
  241. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
  242. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3c\3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3c\3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js is not in module cache!
  243. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
  244. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e9\e908646c1435d653de6447e2ae846c959ac29b33.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e9\e908646c1435d653de6447e2ae846c959ac29b33.js is not in module cache!
  245. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
  246. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e6\e671bb16456ad253c126408d753c04295ea07129.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e6\e671bb16456ad253c126408d753c04295ea07129.js is not in module cache!
  247. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js is not in module cache!
  248. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ad9214371678a1d97027b6cf28752dcbab25e0f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5a\5ad9214371678a1d97027b6cf28752dcbab25e0f.js is not in module cache!
  249. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41d16e1f8113566bf1c111c20aceca9e4a6626d6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41d16e1f8113566bf1c111c20aceca9e4a6626d6.js is not in module cache!
  250. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f8dff31feda7b51e2d0428361dac48e18834ed8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3f\3f8dff31feda7b51e2d0428361dac48e18834ed8.js is not in module cache!
  251. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js is not in module cache!
  252. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a62597dd07a24c3714ad095eedbfc8f76f2d165c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a62597dd07a24c3714ad095eedbfc8f76f2d165c.js is not in module cache!
  253. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\87\879eb4b2cb07a55807079158fde54421bac04056.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\87\879eb4b2cb07a55807079158fde54421bac04056.js is not in module cache!
  254. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\72\72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js is not in module cache!
  255. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
  256. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3975fe5ce64c51324369e49e8afd9c685ef1036d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\3975fe5ce64c51324369e49e8afd9c685ef1036d.js is not in module cache!
  257. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
  258. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
  259. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
  260. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
  261. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
  262. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
  263. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
  264. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
  265. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
  266. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d72ce35042ce99e7f64ae289f73e61427ebc5661.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d72ce35042ce99e7f64ae289f73e61427ebc5661.js is not in module cache!
  267. 2025-1-18 12:20:41-debug: [[Executor]] Register ch_sdk_comp
  268. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
  269. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31f21e9610b2e754c9705fb8b4947b7629eba3ec.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\31f21e9610b2e754c9705fb8b4947b7629eba3ec.js is not in module cache!
  270. 2025-1-18 12:20:41-debug: [[Executor]] Register ch_start_pack
  271. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
  272. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e2\e2c07fd606d93eb79afeed6ef4de521f2be03414.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e2\e2c07fd606d93eb79afeed6ef4de521f2be03414.js is not in module cache!
  273. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\33\33d6d868e05219070a908e953bde210e54f92e26.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\33\33d6d868e05219070a908e953bde210e54f92e26.js is not in module cache!
  274. 2025-1-18 12:20:41-debug: [[Executor]] Register __NodeEventAgent__
  275. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c6623815813aae756c57cca6f89a3182c222719.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1c\1c6623815813aae756c57cca6f89a3182c222719.js is not in module cache!
  276. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
  277. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
  278. 2025-1-18 12:20:41-debug: [[Executor]] Register ResolutionAutoFit
  279. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
  280. 2025-1-18 12:20:41-debug: [[Executor]] Register ui_updater
  281. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6b\6b45817391fda8032e9c3052f72099ae80b977e5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6b\6b45817391fda8032e9c3052f72099ae80b977e5.js is not in module cache!
  282. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
  283. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9b4abce15a8c07b4b00096caaa35df726664c0eb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9b\9b4abce15a8c07b4b00096caaa35df726664c0eb.js is not in module cache!
  284. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
  285. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\51\518c777b9b184349470f0a8548bfc02a3ac13b12.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\51\518c777b9b184349470f0a8548bfc02a3ac13b12.js is not in module cache!
  286. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
  287. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73c6533bf475cf801676942513edca165a6ed07f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73c6533bf475cf801676942513edca165a6ed07f.js is not in module cache!
  288. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
  289. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\79\79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\79\79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js is not in module cache!
  290. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
  291. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js is not in module cache!
  292. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
  293. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\bd\bd8a015d9f05319ae091f7383c093a5f26a12133.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\bd\bd8a015d9f05319ae091f7383c093a5f26a12133.js is not in module cache!
  294. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
  295. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js is not in module cache!
  296. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
  297. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c9\c969313d23703c6a3fcc53d5e71bae664ed7849e.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c9\c969313d23703c6a3fcc53d5e71bae664ed7849e.js is not in module cache!
  298. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
  299. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\53\5355f477731c1aa517e29e27c45ac35bf99fe727.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\53\5355f477731c1aa517e29e27c45ac35bf99fe727.js is not in module cache!
  300. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
  301. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js is not in module cache!
  302. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
  303. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e5\e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js is not in module cache!
  304. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
  305. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
  306. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8ea009be5644c7164c4b5ae51cd349e5525e465.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d8\d8ea009be5644c7164c4b5ae51cd349e5525e465.js is not in module cache!
  307. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4e\4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4e\4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js is not in module cache!
  308. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
  309. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\17\1787d8e2147a43214097b7b6fea81022fa7297b5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\17\1787d8e2147a43214097b7b6fea81022fa7297b5.js is not in module cache!
  310. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
  311. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f780142056b451af1186d982a8e16130bfd276a2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f7\f780142056b451af1186d982a8e16130bfd276a2.js is not in module cache!
  312. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
  313. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b6\b601769373047d5119da5c4cb4b3a4bba6a651af.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b6\b601769373047d5119da5c4cb4b3a4bba6a651af.js is not in module cache!
  314. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
  315. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69708f163aeb7f1d3d93c5d9454dca6576ef2581.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69708f163aeb7f1d3d93c5d9454dca6576ef2581.js is not in module cache!
  316. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c0\c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js is not in module cache!
  317. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
  318. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
  319. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\81\815a8e3b66559b0d1265c7b789166062c8861bd5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\81\815a8e3b66559b0d1265c7b789166062c8861bd5.js is not in module cache!
  320. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
  321. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cf\cf9c45e29398b29856527964dd8d734c5d4fdec4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cf\cf9c45e29398b29856527964dd8d734c5d4fdec4.js is not in module cache!
  322. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
  323. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e81d067c8870d70331d8b9656a976c1f558e5de.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\8e\8e81d067c8870d70331d8b9656a976c1f558e5de.js is not in module cache!
  324. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
  325. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\df\df48ec67964f126550b0d5d71bec2b4cfc027d50.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\df\df48ec67964f126550b0d5d71bec2b4cfc027d50.js is not in module cache!
  326. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
  327. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
  328. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e08485787ba9b2ad7c98e435102c966d3f5c64ae.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\e0\e08485787ba9b2ad7c98e435102c966d3f5c64ae.js is not in module cache!
  329. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1d\1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js is not in module cache!
  330. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
  331. 2025-1-18 12:20:41-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\74\7404a8ee135932a387eac99bfb33951576fe8b67.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\74\7404a8ee135932a387eac99bfb33951576fe8b67.js is not in module cache!
  332. 2025-1-18 12:20:41-debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
  333. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f91b0c989c2a479c1da04fdb508bd586eba443c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5f\5f91b0c989c2a479c1da04fdb508bd586eba443c.js is not in module cache!
  334. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
  335. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34df8999c17a8450e101699bd789ccbd57ce24ce.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\34\34df8999c17a8450e101699bd789ccbd57ce24ce.js is not in module cache!
  336. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
  337. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d5\d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d5\d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js is not in module cache!
  338. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
  339. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js is not in module cache!
  340. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
  341. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\3166d186d5cd2eca604e02fdebeb727752294da4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\31\3166d186d5cd2eca604e02fdebeb727752294da4.js is not in module cache!
  342. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
  343. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a8\a89b293907eed8bf35922b74df584b59608173f2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a8\a89b293907eed8bf35922b74df584b59608173f2.js is not in module cache!
  344. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
  345. 2025-1-18 12:20:42-debug: [[Executor]] Register ClickPenetrate
  346. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\5908d1524fdbf33b63c9c924078b09b63cc7fc89.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\59\5908d1524fdbf33b63c9c924078b09b63cc7fc89.js is not in module cache!
  347. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
  348. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\12\122ae41024fa99aa4949a176919256851ded60b7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\12\122ae41024fa99aa4949a176919256851ded60b7.js is not in module cache!
  349. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\38\38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js is not in module cache!
  350. 2025-1-18 12:20:42-debug: [[Executor]] Register ListItem
  351. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
  352. 2025-1-18 12:20:42-debug: [[Executor]] Register List
  353. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
  354. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\71\71b930d6142312f684efd1718dfcd7bfd1e95eaa.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\71\71b930d6142312f684efd1718dfcd7bfd1e95eaa.js is not in module cache!
  355. 2025-1-18 12:20:42-debug: [[Executor]] Register MotionTrail
  356. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
  357. 2025-1-18 12:20:42-warn: 'MotionTrail.color' hides inherited property 'cc.UIRenderer.color'. To make the current property override that implementation, add the `override: true` attribute please.
  358. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a4\a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js is not in module cache!
  359. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
  360. 2025-1-18 12:20:42-debug: [[Executor]] Register MovieClip
  361. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb13e961bcd8d7069545036fc45d02908c0eee94.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb13e961bcd8d7069545036fc45d02908c0eee94.js is not in module cache!
  362. 2025-1-18 12:20:42-debug: [[Executor]] Register RewardFly
  363. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
  364. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\20\20712297188dd3bbe9fb3acc1799edea45dda86b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\20\20712297188dd3bbe9fb3acc1799edea45dda86b.js is not in module cache!
  365. 2025-1-18 12:20:42-debug: [[Executor]] Register SpineView
  366. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
  367. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b3\b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js is not in module cache!
  368. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
  369. 2025-1-18 12:20:42-debug: [[Executor]] Register UISpineMovie
  370. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js is not in module cache!
  371. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_UIAlert
  372. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
  373. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\974d5e18287f52413bf4aef79e6b1b43e2db1119.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\97\974d5e18287f52413bf4aef79e6b1b43e2db1119.js is not in module cache!
  374. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b7\b71ec6998eef381fede6b5fd1614855829fc2f22.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b7\b71ec6998eef381fede6b5fd1614855829fc2f22.js is not in module cache!
  375. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
  376. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
  377. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\13\137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\13\137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js is not in module cache!
  378. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_UI_Notify
  379. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
  380. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7a\7a060cba1d5a032475d6578a562fb8df8171eb0b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7a\7a060cba1d5a032475d6578a562fb8df8171eb0b.js is not in module cache!
  381. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
  382. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c307a58b694cc824581802a8099e6d62860adb91.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c3\c307a58b694cc824581802a8099e6d62860adb91.js is not in module cache!
  383. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_UIWaiting
  384. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
  385. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d6b2307e211bf7d71fb96955f3a221662b8b975.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9d\9d6b2307e211bf7d71fb96955f3a221662b8b975.js is not in module cache!
  386. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
  387. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09a6fd4930dfcb5968a1b01550a6275640cfa703.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\09\09a6fd4930dfcb5968a1b01550a6275640cfa703.js is not in module cache!
  388. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
  389. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\82\82914e241315735457587bc37563ed7db8183cd0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\82\82914e241315735457587bc37563ed7db8183cd0.js is not in module cache!
  390. 2025-1-18 12:20:42-debug: [[Executor]] Register table_idiom
  391. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
  392. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js is not in module cache!
  393. 2025-1-18 12:20:42-debug: [[Executor]] Register table_level
  394. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
  395. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js is not in module cache!
  396. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c28f184f0d05e5d5976de9f0de294b88d5de4347.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c2\c28f184f0d05e5d5976de9f0de294b88d5de4347.js is not in module cache!
  397. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a4102a464059398e43bc26dd3fe1faf79989cb3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0a\0a4102a464059398e43bc26dd3fe1faf79989cb3.js is not in module cache!
  398. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\07\07873864f2752ebebcdaae9cbb27e5477e565642.js is not in module cache!
  399. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js is not in module cache!
  400. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\78\789715a9ff1e6669695bc6f37f849347673e7936.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\78\789715a9ff1e6669695bc6f37f849347673e7936.js is not in module cache!
  401. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js is not in module cache!
  402. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js is not in module cache!
  403. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2c\2cb4568cc17fc880801c649b7e09213445038932.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2c\2cb4568cc17fc880801c649b7e09213445038932.js is not in module cache!
  404. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a163e5eb12e84fcff92e09679473d95caa7ce42.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a163e5eb12e84fcff92e09679473d95caa7ce42.js is not in module cache!
  405. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js is not in module cache!
  406. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d4\d4808bb291a6c1906241b46a992fa068602b87c7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d4\d4808bb291a6c1906241b46a992fa068602b87c7.js is not in module cache!
  407. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js is not in module cache!
  408. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ef\ef2d221df54a2db9265b17ea24ca2a0b327d2619.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ef\ef2d221df54a2db9265b17ea24ca2a0b327d2619.js is not in module cache!
  409. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f0\f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\f0\f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js is not in module cache!
  410. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\46\4669e191907a2a708fa7ba923dc04da98435f165.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\46\4669e191907a2a708fa7ba923dc04da98435f165.js is not in module cache!
  411. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js is not in module cache!
  412. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\92\9223b50b0b25e34c00abbd1136311e176203d399.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\92\9223b50b0b25e34c00abbd1136311e176203d399.js is not in module cache!
  413. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d7e3424c179d135dc59489a147ede15a8748562.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\2d\2d7e3424c179d135dc59489a147ede15a8748562.js is not in module cache!
  414. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4f\4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4f\4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js is not in module cache!
  415. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js is not in module cache!
  416. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js is not in module cache!
  417. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b62ba828bd2568fd07a8c27879bd9e102538148.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b62ba828bd2568fd07a8c27879bd9e102538148.js is not in module cache!
  418. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73e6dc2a8fc59081071dcebb82927640ef5a7f21.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\73\73e6dc2a8fc59081071dcebb82927640ef5a7f21.js is not in module cache!
  419. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js is not in module cache!
  420. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\69\69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js is not in module cache!
  421. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b9\b968f7f08649c00a45a730a74c55b98d374e1ea3.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b9\b968f7f08649c00a45a730a74c55b98d374e1ea3.js is not in module cache!
  422. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c1\c10bd777343c22d44996eae3d1e908c1e444e54c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c1\c10bd777343c22d44996eae3d1e908c1e444e54c.js is not in module cache!
  423. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a0\a0c4f651e5297607ee62681e54a78e7903383828.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a0\a0c4f651e5297607ee62681e54a78e7903383828.js is not in module cache!
  424. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\fd\fd567b6cff2bda101ea5067e96a8431f92b55a12.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\fd\fd567b6cff2bda101ea5067e96a8431f92b55a12.js is not in module cache!
  425. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3a\3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\3a\3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js is not in module cache!
  426. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caf1f57c4e93834ff6792756f81ca4dda67117d5.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\ca\caf1f57c4e93834ff6792756f81ca4dda67117d5.js is not in module cache!
  427. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\30\30148fb61fef14f86e2cda463a167887dbf8cde4.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\30\30148fb61fef14f86e2cda463a167887dbf8cde4.js is not in module cache!
  428. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa522899127047b80d0893406f275d7a7aa74d2c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\aa\aa522899127047b80d0893406f275d7a7aa74d2c.js is not in module cache!
  429. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js is not in module cache!
  430. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a5\a59d8099545685d191f1183a0f3bc7f3602b80cf.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a5\a59d8099545685d191f1183a0f3bc7f3602b80cf.js is not in module cache!
  431. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41297756668c0510f828032e1d12f96a4d1a9194.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\41\41297756668c0510f828032e1d12f96a4d1a9194.js is not in module cache!
  432. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\64\648fcac29cbf9485ceab7e7d1359724ae2b1b196.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\64\648fcac29cbf9485ceab7e7d1359724ae2b1b196.js is not in module cache!
  433. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\96\96e2fcee174623dab28594a5fc60dc89148d32de.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\96\96e2fcee174623dab28594a5fc60dc89148d32de.js is not in module cache!
  434. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7e\7e7ab0c417629d8b4decc7970b158f69484ca3a0.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\7e\7e7ab0c417629d8b4decc7970b158f69484ca3a0.js is not in module cache!
  435. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4a\4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4a\4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js is not in module cache!
  436. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47c8e77781a159f10d589db5916314688580bc33.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\47\47c8e77781a159f10d589db5916314688580bc33.js is not in module cache!
  437. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js is not in module cache!
  438. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
  439. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js is not in module cache!
  440. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_GameRules
  441. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_GameRules
  442. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
  443. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Idiom
  444. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Idioms
  445. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
  446. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
  447. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
  448. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Settings
  449. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
  450. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
  451. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Idioms
  452. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Hall
  453. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
  454. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
  455. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Rank_Item
  456. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
  457. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Rank
  458. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Rank
  459. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
  460. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Head_Icon
  461. 2025-1-18 12:20:42-warn: The type of "Sign_Reward.type" must be CCFloat or CCInteger, not Number.
  462. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
  463. 2025-1-18 12:20:42-warn: The type of "Sign_Reward.num" must be CCFloat or CCInteger, not Number.
  464. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Sign
  465. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
  466. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
  467. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Sign
  468. 2025-1-18 12:20:42-debug: [[Executor]] Register Sign_Reward
  469. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
  470. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
  471. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Invite
  472. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Store
  473. 2025-1-18 12:20:42-warn: The type of "Layout_Store.Value" must be CCFloat or CCInteger, not Number.
  474. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
  475. 2025-1-18 12:20:42-warn: The type of "Layout_Store.Type" must be CCFloat or CCInteger, not Number.
  476. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
  477. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_SideBar
  478. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
  479. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Invite
  480. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
  481. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Store
  482. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_SideBar
  483. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
  484. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
  485. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Task_Item
  486. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
  487. 2025-1-18 12:20:42-debug: [[Executor]] Register Start
  488. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Task
  489. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
  490. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
  491. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Hall
  492. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Settings
  493. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
  494. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Task
  495. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
  496. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Win
  497. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
  498. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
  499. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Win
  500. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Main
  501. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_TimesOver
  502. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
  503. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Fail
  504. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
  505. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Fail
  506. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_TimesOver
  507. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
  508. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
  509. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Main
  510. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
  511. 2025-1-18 12:20:42-debug: [[Executor]] Register Hall
  512. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
  513. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
  514. 2025-1-18 12:20:42-debug: [[Executor]] Register CreateIdiom
  515. 2025-1-18 12:20:42-debug: [[Executor]] Register Cube_Infor
  516. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
  517. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_LatticeFull
  518. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
  519. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
  520. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
  521. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_LatticeFull
  522. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
  523. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
  524. 2025-1-18 12:20:42-debug: [[Executor]] Register Layout_Lock
  525. 2025-1-18 12:20:42-debug: [[Executor]] Register GameCtl
  526. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
  527. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
  528. 2025-1-18 12:20:42-debug: [[Executor]] Register Container_Manager
  529. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Lock
  530. 2025-1-18 12:20:42-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js is not in module cache!
  531. 2025-1-18 12:20:42-debug: [[Executor]] Register UI_Item
  532. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  533. 2025-1-18 12:20:42-debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
  534. 2025-1-18 12:20:42-debug: Incremental keys: chSdk,chsdk
  535. 2025-1-18 12:20:42-debug: Init bundle share assets start..., progress: 9%
  536. 2025-1-18 12:20:42-debug: Init bundle share assets success..., progress: 9%
  537. 2025-1-18 12:20:42-debug: handle json group in bundle internal
  538. 2025-1-18 12:20:42-debug: handle json group in bundle start-scene
  539. 2025-1-18 12:20:42-debug: handle json group in bundle internal success
  540. 2025-1-18 12:20:42-debug: handle json group in bundle start-scene success
  541. 2025-1-18 12:20:42-debug: handle json group in bundle main
  542. 2025-1-18 12:20:42-debug: handle json group in bundle module_extra
  543. 2025-1-18 12:20:42-debug: handle json group in bundle module_basic
  544. 2025-1-18 12:20:42-debug: handle json group in bundle module_game
  545. 2025-1-18 12:20:42-debug: init image compress task 0 in bundle internal
  546. 2025-1-18 12:20:42-debug: handle json group in bundle main success
  547. 2025-1-18 12:20:42-debug: init image compress task 0 in bundle start-scene
  548. 2025-1-18 12:20:42-debug: handle json group in bundle module_extra success
  549. 2025-1-18 12:20:42-debug: init image compress task 0 in bundle module_extra
  550. 2025-1-18 12:20:42-debug: init image compress task 0 in bundle main
  551. 2025-1-18 12:20:42-debug: handle json group in bundle module_basic success
  552. 2025-1-18 12:20:42-debug: init image compress task 0 in bundle module_basic
  553. 2025-1-18 12:20:42-debug: init image compress task 0 in bundle module_game
  554. 2025-1-18 12:20:42-debug: handle json group in bundle module_game success
  555. 2025-1-18 12:20:42-debug: // ---- build task 查询 Asset Bundle ---- (682ms)
  556. 2025-1-18 12:20:42-debug: run build task 查询 Asset Bundle success in 682 ms√, progress: 14%
  557. 2025-1-18 12:20:42-debug: [Build Memory track]: 查询 Asset Bundle start:162.95MB, end 199.50MB, increase: 36.55MB
  558. 2025-1-18 12:20:42-debug: 查询 Asset Bundle start, progress: 14%
  559. 2025-1-18 12:20:42-debug: // ---- build task 查询 Asset Bundle ----
  560. 2025-1-18 12:20:42-debug: // ---- build task 查询 Asset Bundle ---- (50ms)
  561. 2025-1-18 12:20:42-debug: run build task 查询 Asset Bundle success in 50 ms√, progress: 19%
  562. 2025-1-18 12:20:42-debug: [Build Memory track]: 查询 Asset Bundle start:199.53MB, end 199.82MB, increase: 292.99KB
  563. 2025-1-18 12:20:42-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  564. 2025-1-18 12:20:42-debug: 打包脚本 start, progress: 19%
  565. 2025-1-18 12:20:42-debug: // ---- build task 打包脚本 ----
  566. 2025-1-18 12:20:43-log: [build-script]enter sub process 15816, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
  567. 2025-1-18 12:20:46-debug: excute-script over with build-script 3530ms
  568. 2025-1-18 12:20:46-debug: Generate systemJs..., progress: 19%
  569. 2025-1-18 12:20:46-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  570. 2025-1-18 12:20:48-debug: excute-script over with build-script 2517ms
  571. 2025-1-18 12:20:48-debug: 构建项目脚本 start..., progress: 19%
  572. 2025-1-18 12:20:48-debug: Build script in bundle start, progress: 19%
  573. 2025-1-18 12:20:48-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  574. 2025-1-18 12:20:52-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
  575. 2025-1-18 12:20:52-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
  576. 2025-1-18 12:20:56-debug: excute-script over with build-script 7443ms
  577. 2025-1-18 12:20:56-debug: Copy externalScripts success!
  578. 2025-1-18 12:20:56-debug: Build script in bundle success, progress: 19%
  579. 2025-1-18 12:20:56-debug: 构建项目脚本 in (7528 ms) √, progress: 19%
  580. 2025-1-18 12:20:56-debug: 构建引擎脚本 start..., progress: 19%
  581. 2025-1-18 12:20:56-debug: Engine cache ({link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}) does not exist.
  582. 2025-1-18 12:20:56-debug: start build engine with options: {"incremental":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454.watch-files.json","engine":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine","out":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454","moduleFormat":"system","compress":true,"split":false,"nativeCodeBundleMode":"wasm","assetURLFormat":"relative-from-out","sourceMap":false,"loose":true,"features":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"platform":"WECHAT","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"mode":"BUILD","metaFile":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454.meta\\meta.json","wasmCompressionMode":"brotli"}
  583. 2025-1-18 12:20:56-log: Run build task(build-engine) in child, see: chrome://inspect/#devices
  584. 2025-1-18 12:20:56-log: [build-engine]enter sub process 14912, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
  585. 2025-1-18 12:20:57-log: [build-engine]start build engine with options: {"engine":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine","out":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454","platform":"WECHAT","moduleFormat":"system","compress":true,"split":false,"nativeCodeBundleMode":"wasm","assetURLFormat":"relative-from-out","noDeprecatedFeatures":false,"sourceMap":false,"features":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"loose":true,"mode":"BUILD","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"metaFile":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454.meta\\meta.json","incremental":"C:\\Users\\NINGMEI\\AppData\\Local\\Temp\\CocosCreator\\3.8.4\\builder\\engine\\28e650b030519d2cf0f243f53f248454.watch-files.json","wasmCompressionMode":"brotli"}
  586. 2025-1-18 12:20:57-log: [build-engine]Module source "internal-constants": function tryDefineGlobal (name, value) { const _global = typeof window === 'undefined' ? global : window; if (typeof _global[name] === 'undefined') { return (_global[name] = value); } else { // eslint-disable-next-line @typescript-eslint/no-unsafe-return return _global[name]; } } export const HTML5 = false; export const NATIVE = false; export const ANDROID = false; export const IOS = false; export const MAC = false; export const WINDOWS = false; export const LINUX = false; export const OHOS = false; export const OPEN_HARMONY = false; export const WECHAT = true; tryDefineGlobal('CC_WECHAT', true); export const WECHAT_MINI_PROGRAM = false; export const BAIDU = false; tryDefineGlobal('CC_BAIDU', false); export const XIAOMI = false; tryDefineGlobal('CC_XIAOMI', false); export const ALIPAY = false; tryDefineGlobal('CC_ALIPAY', false); export const TAOBAO = false; export const TAOBAO_MINIGAME = false; export const BYTEDANCE = false; tryDefineGlobal('CC_BYTEDANCE', false); export const OPPO = false; tryDefineGlobal('CC_OPPO', false); export const VIVO = false; tryDefineGlobal('CC_VIVO', false); export const HUAWEI = false; tryDefineGlobal('CC_HUAWEI', false); export const COCOSPLAY = false; tryDefineGlobal('CC_COCOSPLAY', false); export const QTT = false; tryDefineGlobal('CC_QTT', false); export const LINKSURE = false; tryDefineGlobal('CC_LINKSURE', false); export const EDITOR = false; tryDefineGlobal('CC_EDITOR', false); export const EDITOR_NOT_IN_PREVIEW = false; export const PREVIEW = false; tryDefineGlobal('CC_PREVIEW', false); export const BUILD = true; tryDefineGlobal('CC_BUILD', true); export const TEST = false; tryDefineGlobal('CC_TEST', false); export const DEBUG = false; tryDefineGlobal('CC_DEBUG', false); export const SERVER_MODE = false; export const DEV = false; tryDefineGlobal('CC_DEV', false); export const MINIGAME = true; tryDefineGlobal('CC_MINIGAME', true); export const RUNTIME_BASED = false; tryDefineGlobal('CC_RUNTIME_BASED', false); export const SUPPORT_JIT = false; tryDefineGlobal('CC_SUPPORT_JIT', false); export const JSB = false; tryDefineGlobal('CC_JSB', false); export const NOT_PACK_PHYSX_LIBS = false; export const NET_MODE = 0; export const WEBGPU = false; export const NATIVE_CODE_BUNDLE_MODE = 1; export const WASM_SUBPACKAGE = true; export const CULL_MESHOPT = true;
  587. 2025-1-18 12:20:57-log: [build-engine]Module source "cc": export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\2d.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\sorting.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\3d.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\animation.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\audio.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\base.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\custom-pipeline.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\gfx-webgl.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\physics-ammo.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\physics-framework.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\wait-for-ammo-instantiation.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\primitive.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\profiler.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\spine.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\tween.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\ui.ts'; export * from 'C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine\\exports\\webview.ts';
  588. 2025-1-18 12:20:58-log: [build-engine]Redirect module internal:native to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\native-binding\impl.ts
  589. 2025-1-18 12:20:58-log: [build-engine]Redirect module pal/wasm to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\wasm\wasm-minigame.ts
  590. 2025-1-18 12:20:59-log: [build-engine]Redirect module pal/screen-adapter to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\screen-adapter\minigame\screen-adapter.ts
  591. 2025-1-18 12:20:59-log: [build-engine]Redirect module pal/minigame to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\minigame\wechat.ts
  592. 2025-1-18 12:20:59-log: [build-engine]Redirect module pal/system-info to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\system-info\minigame\system-info.ts
  593. 2025-1-18 12:21:03-log: [build-engine]Redirect module pal/input to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\input\minigame\index.ts
  594. 2025-1-18 12:21:03-log: [build-engine]Redirect module pal/audio to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\audio\minigame\player.ts
  595. 2025-1-18 12:21:04-log: [build-engine]Redirect module pal/env to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\env\minigame\env.ts
  596. 2025-1-18 12:21:04-log: [build-engine]Redirect module pal/pacer to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\pal\pacer\pacer-minigame.ts
  597. 2025-1-18 12:21:08-log: [build-engine]Redirect module C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\animation\marionette\runtime-exports.ts to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\animation\marionette\index-empty.ts
  598. 2025-1-18 12:21:09-log: [build-engine]Redirect module C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\2d\renderer\native-2d.ts to C:\ProgramData\cocos\editors\Creator\3.8.4\resources\resources\3d\engine\cocos\2d\renderer\native-2d-empty.ts
  599. 2025-1-18 12:21:17-log: [build-engine]==== Performance ==== {"# BUILD":[20151.528200030327,457611192,515624204],"## generate module graph":[18213.91100001335,393474692,451493148],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId":[7.56490421295166,1191592,699885596],"- plugin 0 (@cocos/ccbuild|external-loader) - resolveId (async)":[26.897005081176758,5073336,699888656],"- plugin 1 (@cocos/ccbuild|module-overrides) - resolveId":[6.516701936721802,686984,699897244],"- plugin 2 (virtual) - resolveId":[21.297600030899048,5084992,699932924],"load modules":[63929.12220060825,3132303200,685637672],"- plugin 0 (@cocos/ccbuild|external-loader) - load":[2.542500853538513,287788,701800664],"- plugin 0 (@cocos/ccbuild|external-loader) - load (async)":[4.981099963188171,1200716,701801128],"- plugin 1 (@cocos/ccbuild|module-overrides) - load":[6.076698422431946,285440,701801792],"- plugin 2 (virtual) - load":[1.5041992664337158,89516,701802188],"- plugin 6 (json) - transform":[3.5056004524230957,832400,685641388],"- plugin 7 (commonjs) - transform":[12.17870008945465,599192,685644516],"- plugin 8 (babel) - transform":[164.36370146274567,13701112,685671676],"generate ast":[466.4596997499466,5162536,694784368],"analyse ast":[820.9321006536484,79640688,699828528],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId":[10.24489676952362,-3419604,699957460],"- plugin 3 (@cocos/ccbuild|module-query-plugin) - resolveId (async)":[64.39640200138092,7884896,699961056],"- plugin 4 (ts-paths) - resolveId":[4.852902293205261,467244,699968860],"- plugin 5 (node-resolve) - resolveId":[36.69290113449097,117840,700032216],"- plugin 5 (node-resolve) - resolveId (async)":[74870.77188742161,-11851221852,702776380],"- plugin 5 (node-resolve) - load":[1.4836050271987915,93636,701802592],"- plugin 7 (commonjs) - load":[7.450700163841248,-4465628,701803848],"- plugin 8 (babel) - load":[247.75040233135223,10557304,701804244],"- plugin 8 (babel) - transform (async)":[13284.960799455643,641485316,698458704],"- plugin 7 (commonjs) - resolveId":[1.8147001266479492,73088,700121020],"- plugin 8 (babel) - resolveId":[0.9782993793487549,55472,700121424],"## sort modules":[151.46460008621216,3515128,455008580],"## mark included statements":[1785.8983000516891,60613812,515622636],"treeshaking pass 1":[778.0303000211716,47516536,502898304],"treeshaking pass 2":[230.68470001220703,7204776,510103324],"treeshaking pass 3":[122.98860001564026,5520128,515623696],"treeshaking pass 4":[100.74380004405975,-181760,515442180],"treeshaking pass 5":[77.52090001106262,4020076,519462500],"treeshaking pass 6":[65.94679999351501,-4093024,515369720],"treeshaking pass 7":[56.14959990978241,134380,515504344],"treeshaking pass 8":[53.644099950790405,5811896,521316484],"treeshaking pass 9":[52.17289996147156,-3551560,517765168],"treeshaking pass 10":[49.44599997997284,-3610784,514154628],"treeshaking pass 11":[49.805399894714355,4275756,518430628],"treeshaking pass 12":[50.636500000953674,-3130368,515300504],"treeshaking pass 13":[48.43470001220703,4284636,519585384],"treeshaking pass 14":[48.6742000579834,-3965444,515620184]}
  600. 2025-1-18 12:21:17-log: [build-engine]==== ====
  601. 2025-1-18 12:21:31-debug: excute-script over with build-engine 35564ms
  602. 2025-1-18 12:21:31-debug: 构建引擎脚本 in (35643 ms) √, progress: 19%
  603. 2025-1-18 12:21:31-debug: Copy plugin script ..., progress: 19%
  604. 2025-1-18 12:21:31-debug: Generate import-map..., progress: 19%
  605. 2025-1-18 12:21:31-debug: // ---- build task 打包脚本 ---- (49347ms)
  606. 2025-1-18 12:21:31-debug: run build task 打包脚本 success in 49 s√, progress: 24%
  607. 2025-1-18 12:21:31-debug: // ---- build task Build Assets ----
  608. 2025-1-18 12:21:31-debug: [Build Memory track]: 打包脚本 start:199.99MB, end 196.44MB, increase: -3639.51KB
  609. 2025-1-18 12:21:31-debug: Build bundles..., progress: 24%
  610. 2025-1-18 12:21:31-debug: Build Assets start, progress: 24%
  611. 2025-1-18 12:21:31-debug: Pack Images start, progress: 24%
  612. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
  613. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  614. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
  615. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
  616. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
  617. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
  618. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  619. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
  620. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
  621. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
  622. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
  623. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
  624. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
  625. 2025-1-18 12:21:32-debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
  626. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
  627. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
  628. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
  629. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
  630. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
  631. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
  632. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  633. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
  634. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
  635. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
  636. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  637. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  638. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
  639. 2025-1-18 12:21:32-debug: remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  640. 2025-1-18 12:21:32-debug: Pack Images success, progress: 24%
  641. 2025-1-18 12:21:32-debug: builder:pack-auto-atlas-image (766ms)
  642. 2025-1-18 12:21:32-debug: Num of all image compress task 0, really: 0, configTasks: 0
  643. 2025-1-18 12:21:32-debug: sort compress task {}
  644. 2025-1-18 12:21:32-debug: No image need to compress
  645. 2025-1-18 12:21:32-debug: Compress image success..., progress: 24%
  646. 2025-1-18 12:21:32-debug: Output asset in bundles start, progress: 24%
  647. 2025-1-18 12:21:32-debug: Handle all json groups in bundle internal
  648. 2025-1-18 12:21:32-debug: Compress image start..., progress: 24%
  649. 2025-1-18 12:21:32-debug: Handle all json groups in bundle start-scene
  650. 2025-1-18 12:21:32-debug: handle json group
  651. 2025-1-18 12:21:32-debug: handle json group
  652. 2025-1-18 12:21:32-debug: Handle all json groups in bundle main
  653. 2025-1-18 12:21:32-debug: handle json group
  654. 2025-1-18 12:21:32-debug: handle single json
  655. 2025-1-18 12:21:32-debug: Handle all json groups in bundle module_extra
  656. 2025-1-18 12:21:32-debug: handle json group
  657. 2025-1-18 12:21:32-debug: handle single json
  658. 2025-1-18 12:21:32-debug: Handle all json groups in bundle module_basic
  659. 2025-1-18 12:21:32-debug: handle json group
  660. 2025-1-18 12:21:32-debug: Handle all json groups in bundle module_game
  661. 2025-1-18 12:21:32-debug: handle json group
  662. 2025-1-18 12:21:32-debug: Json group(07325bfaa) compile success,json number: 6
  663. 2025-1-18 12:21:32-debug: Json group(0a66f4293) compile success,json number: 6
  664. 2025-1-18 12:21:32-debug: Json group(0ba471961) compile success,json number: 6
  665. 2025-1-18 12:21:32-debug: handle single json
  666. 2025-1-18 12:21:32-debug: Json group(04ade8c9e) compile success,json number: 6
  667. 2025-1-18 12:21:32-debug: handle single json
  668. 2025-1-18 12:21:32-debug: Json group(09d6a42a2) compile success,json number: 6
  669. 2025-1-18 12:21:32-debug: Json group(0a54f6860) compile success,json number: 6
  670. 2025-1-18 12:21:32-debug: handle single json
  671. 2025-1-18 12:21:32-debug: Json group(08d4f0835) compile success,json number: 6
  672. 2025-1-18 12:21:32-debug: Json group(0a1731415) compile success,json number: 6
  673. 2025-1-18 12:21:32-debug: Json group(093f10e90) compile success,json number: 6
  674. 2025-1-18 12:21:32-debug: Json group(02c882590) compile success,json number: 6
  675. 2025-1-18 12:21:32-debug: Json group(0db065665) compile success,json number: 6
  676. 2025-1-18 12:21:32-debug: Json group(0787c84da) compile success,json number: 6
  677. 2025-1-18 12:21:32-debug: Json group(03c9cd961) compile success,json number: 6
  678. 2025-1-18 12:21:32-debug: Json group(0471cee9c) compile success,json number: 6
  679. 2025-1-18 12:21:32-debug: Json group(0403d1262) compile success,json number: 6
  680. 2025-1-18 12:21:32-debug: Json group(070166e93) compile success,json number: 6
  681. 2025-1-18 12:21:32-debug: Json group(0329651a2) compile success,json number: 6
  682. 2025-1-18 12:21:32-debug: Json group(02b639d30) compile success,json number: 6
  683. 2025-1-18 12:21:32-debug: Json group(06db2e96b) compile success,json number: 6
  684. 2025-1-18 12:21:32-debug: Json group(0c5a2fc7e) compile success,json number: 6
  685. 2025-1-18 12:21:32-debug: Json group(0332e55a0) compile success,json number: 6
  686. 2025-1-18 12:21:32-debug: Json group(01236a39b) compile success,json number: 6
  687. 2025-1-18 12:21:32-debug: Json group(022fd81fe) compile success,json number: 6
  688. 2025-1-18 12:21:32-debug: Json group(02d36d139) compile success,json number: 6
  689. 2025-1-18 12:21:32-debug: Json group(0d54cf783) compile success,json number: 6
  690. 2025-1-18 12:21:32-debug: handle single json
  691. 2025-1-18 12:21:33-debug: Output asset in bundles success, progress: 24%
  692. 2025-1-18 12:21:33-debug: Output asset in bundles start, progress: 24%
  693. 2025-1-18 12:21:33-debug: compress config of bundle internal...
  694. 2025-1-18 12:21:33-debug: compress config of bundle internal success
  695. 2025-1-18 12:21:33-debug: compress config of bundle start-scene success
  696. 2025-1-18 12:21:33-debug: compress config of bundle main success
  697. 2025-1-18 12:21:33-debug: compress config of bundle module_extra...
  698. 2025-1-18 12:21:33-debug: compress config of bundle module_extra success
  699. 2025-1-18 12:21:33-debug: compress config of bundle module_basic...
  700. 2025-1-18 12:21:33-debug: compress config of bundle module_basic success
  701. 2025-1-18 12:21:33-debug: compress config of bundle module_game...
  702. 2025-1-18 12:21:33-debug: compress config of bundle module_game success
  703. 2025-1-18 12:21:33-debug: output config of bundle internal
  704. 2025-1-18 12:21:33-debug: output config of bundle internal success
  705. 2025-1-18 12:21:33-debug: output config of bundle start-scene
  706. 2025-1-18 12:21:33-debug: compress config of bundle main...
  707. 2025-1-18 12:21:33-debug: output config of bundle main
  708. 2025-1-18 12:21:33-debug: output config of bundle main success
  709. 2025-1-18 12:21:33-debug: output config of bundle module_extra
  710. 2025-1-18 12:21:33-debug: output config of bundle module_extra success
  711. 2025-1-18 12:21:33-debug: output config of bundle module_basic
  712. 2025-1-18 12:21:33-debug: output config of bundle module_basic success
  713. 2025-1-18 12:21:33-debug: output config of bundle module_game
  714. 2025-1-18 12:21:33-debug: compress config of bundle start-scene...
  715. 2025-1-18 12:21:33-debug: output config of bundle module_game success
  716. 2025-1-18 12:21:33-debug: Output asset in bundles success, progress: 24%
  717. 2025-1-18 12:21:33-debug: output config of bundle start-scene success
  718. 2025-1-18 12:21:33-debug: // ---- build task Build Assets ---- (1248ms)
  719. 2025-1-18 12:21:33-debug: run build task Build Assets success in 1 s√, progress: 29%
  720. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
  721. 2025-1-18 12:21:33-debug: [Build Memory track]: Build Assets start:196.48MB, end 202.87MB, increase: 6.39MB
  722. 2025-1-18 12:21:33-debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
  723. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (30ms)
  724. 2025-1-18 12:21:33-debug: wechatgame:(onAfterBundleBuildTask) in 30 ms ✓, progress: 29%
  725. 2025-1-18 12:21:33-debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
  726. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onAfterBuildAssets ----
  727. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onAfterBuildAssets ---- (32ms)
  728. 2025-1-18 12:21:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
  729. 2025-1-18 12:21:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  730. 2025-1-18 12:21:33-debug: wechatgame:(onAfterBuildAssets) in 32 ms ✓, progress: 31%
  731. 2025-1-18 12:21:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (27ms)
  732. 2025-1-18 12:21:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 27 ms√, progress: 33%
  733. 2025-1-18 12:21:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:203.16MB, end 203.23MB, increase: 70.27KB
  734. 2025-1-18 12:21:33-debug: // ---- build task 填充脚本数据到 settings.json ----
  735. 2025-1-18 12:21:33-debug: 填充脚本数据到 settings.json start, progress: 33%
  736. 2025-1-18 12:21:33-debug: // ---- build task 填充脚本数据到 settings.json ---- (33ms)
  737. 2025-1-18 12:21:33-debug: run build task 填充脚本数据到 settings.json success in 33 ms√, progress: 34%
  738. 2025-1-18 12:21:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  739. 2025-1-18 12:21:33-debug: [Build Memory track]: 填充脚本数据到 settings.json start:203.26MB, end 203.33MB, increase: 71.25KB
  740. 2025-1-18 12:21:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
  741. 2025-1-18 12:21:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (71ms)
  742. 2025-1-18 12:21:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 71 ms√, progress: 36%
  743. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onBeforeCompressSettings ----
  744. 2025-1-18 12:21:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:203.37MB, end 203.60MB, increase: 238.02KB
  745. 2025-1-18 12:21:33-debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
  746. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (35ms)
  747. 2025-1-18 12:21:33-debug: wechatgame:(onBeforeCompressSettings) in 35 ms ✓, progress: 38%
  748. 2025-1-18 12:21:33-debug: // ---- build task cocos-service:onBeforeCompressSettings ----
  749. 2025-1-18 12:21:33-debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
  750. 2025-1-18 12:21:33-debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (173ms)
  751. 2025-1-18 12:21:33-debug: cocos-service:(onBeforeCompressSettings) in 173 ms ✓, progress: 40%
  752. 2025-1-18 12:21:33-debug: 整理静态模板文件 start, progress: 40%
  753. 2025-1-18 12:21:33-debug: // ---- build task 整理静态模板文件 ----
  754. 2025-1-18 12:21:33-debug: // ---- build task 整理静态模板文件 ---- (96ms)
  755. 2025-1-18 12:21:33-debug: run build task 整理静态模板文件 success in 96 ms√, progress: 45%
  756. 2025-1-18 12:21:33-debug: [Build Memory track]: 整理静态模板文件 start:203.86MB, end 202.72MB, increase: -1172.17KB
  757. 2025-1-18 12:21:33-debug: // ---- build task cocos-service:onAfterCompressSettings ----
  758. 2025-1-18 12:21:33-debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
  759. 2025-1-18 12:21:33-debug: // ---- build task cocos-service:onAfterCompressSettings ---- (81ms)
  760. 2025-1-18 12:21:33-debug: cocos-service:(onAfterCompressSettings) in 81 ms ✓, progress: 46%
  761. 2025-1-18 12:21:33-debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
  762. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
  763. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (35ms)
  764. 2025-1-18 12:21:33-debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
  765. 2025-1-18 12:21:33-debug: wechatgame:(onBeforeCopyBuildTemplate) in 35 ms ✓, progress: 48%
  766. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
  767. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (53ms)
  768. 2025-1-18 12:21:33-debug: wechatgame:(onAfterCopyBuildTemplate) in 53 ms ✓, progress: 50%
  769. 2025-1-18 12:21:33-debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
  770. 2025-1-18 12:21:33-debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
  771. 2025-1-18 12:21:33-debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (43ms)
  772. 2025-1-18 12:21:33-debug: run build task 给所有的资源加上 MD5 后缀 success in 43 ms√, progress: 60%
  773. 2025-1-18 12:21:33-debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:203.35MB, end 203.41MB, increase: 69.09KB
  774. 2025-1-18 12:21:33-debug: wechatgame:(onAfterBuild) start..., progress: 60%
  775. 2025-1-18 12:21:33-debug: // ---- build task wechatgame:onAfterBuild ----
  776. 2025-1-18 12:21:34-debug: // ---- build task wechatgame:onAfterBuild ---- (348ms)
  777. 2025-1-18 12:21:34-debug: cocos-service:(onAfterBuild) start..., progress: 62%
  778. 2025-1-18 12:21:34-debug: wechatgame:(onAfterBuild) in 348 ms ✓, progress: 62%
  779. 2025-1-18 12:21:34-debug: // ---- build task cocos-service:onAfterBuild ----
  780. 2025-1-18 12:21:34-debug: // ---- build task cocos-service:onAfterBuild ---- (77ms)
  781. 2025-1-18 12:21:34-debug: cocos-service:(onAfterBuild) in 77 ms ✓, progress: 64%
  782. 2025-1-18 12:21:34-debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
  783. 2025-1-18 12:21:34-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
  784. 2025-1-18 12:21:34-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (38ms)
  785. 2025-1-18 12:21:34-log: Asset DB is resume!
  786. 2025-1-18 12:21:34-debug: adsense-h5g-plugin:(onAfterBuild) in 38 ms ✓, progress: 65%
  787. 2025-1-18 12:21:34-debug: builder:build-project-total (53099ms)
  788. 2025-1-18 12:21:34-debug: build success in 53099!
  789. 2025-1-18 12:21:34-debug: [Build Memory track]: builder:build-project-total start:161.92MB, end 205.14MB, increase: 43.22MB
  790. 2025-1-18 12:21:34-debug: ================================ build Task (wechatgame) Finished in (53 s)ms ================================
  791. 2025-1-18 12:21:34-debug: Stop record console. {file(D:\CocosCreatorProject\Idioms\idiom\temp\builder\log\wechatgame2025-1-18 10-29.log)}
  792. 2025-1-18 12:22:23-debug: refresh db internal success
  793. 2025-1-18 12:22:23-debug: refresh db assets success
  794. 2025-1-18 12:22:23-debug: Run asset db hook engine-extends:afterRefresh success!
  795. 2025-1-18 12:22:23-debug: Run asset db hook engine-extends:afterRefresh ...
  796. 2025-1-18 12:22:23-debug: asset-db:refresh-all-database (153ms)
  797. 2025-1-18 12:22:30-debug: refresh db internal success
  798. 2025-1-18 12:22:30-debug: refresh db assets success
  799. 2025-1-18 12:22:30-debug: Run asset db hook engine-extends:afterRefresh ...
  800. 2025-1-18 12:22:30-debug: Run asset db hook engine-extends:afterRefresh success!
  801. 2025-1-18 12:22:30-debug: asset-db:refresh-all-database (126ms)
  802. 2025-1-18 12:22:30-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  803. 2025-1-18 12:23:18-debug: refresh db internal success
  804. 2025-1-18 12:23:18-debug: refresh db assets success
  805. 2025-1-18 12:23:18-debug: Run asset db hook engine-extends:afterRefresh ...
  806. 2025-1-18 12:23:18-debug: Run asset db hook engine-extends:afterRefresh success!
  807. 2025-1-18 12:23:18-debug: asset-db:refresh-all-database (108ms)
  808. 2025-1-18 12:23:18-debug: asset-db:worker-effect-data-processing (1ms)
  809. 2025-1-18 12:23:18-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  810. 2025-1-18 12:26:42-debug: refresh db internal success
  811. 2025-1-18 12:26:42-debug: refresh db assets success
  812. 2025-1-18 12:26:42-debug: Run asset db hook engine-extends:afterRefresh ...
  813. 2025-1-18 12:26:42-debug: Run asset db hook engine-extends:afterRefresh success!
  814. 2025-1-18 12:26:42-debug: asset-db:refresh-all-database (112ms)
  815. 2025-1-18 12:26:42-debug: asset-db:worker-effect-data-processing (1ms)
  816. 2025-1-18 12:26:42-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  817. 2025-1-18 12:27:06-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  818. 2025-1-18 12:29:55-debug: refresh db internal success
  819. 2025-1-18 12:29:55-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  820. 2025-1-18 12:29:55-debug: refresh db assets success
  821. 2025-1-18 12:29:55-debug: Run asset db hook engine-extends:afterRefresh ...
  822. 2025-1-18 12:29:55-debug: Run asset db hook engine-extends:afterRefresh success!
  823. 2025-1-18 12:29:55-debug: asset-db:refresh-all-database (381ms)
  824. 2025-1-18 12:29:55-debug: asset-db:worker-effect-data-processing (11ms)
  825. 2025-1-18 12:29:55-debug: asset-db-hook-engine-extends-afterRefresh (12ms)
  826. 2025-1-18 12:29:58-debug: refresh db internal success
  827. 2025-1-18 12:29:58-debug: refresh db assets success
  828. 2025-1-18 12:29:58-debug: Run asset db hook engine-extends:afterRefresh ...
  829. 2025-1-18 12:29:58-debug: Run asset db hook engine-extends:afterRefresh success!
  830. 2025-1-18 12:29:58-debug: asset-db:refresh-all-database (367ms)
  831. 2025-1-18 12:29:58-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  832. 2025-1-18 12:29:58-debug: asset-db:worker-effect-data-processing (1ms)
  833. 2025-1-18 12:30:44-debug: refresh db internal success
  834. 2025-1-18 12:30:44-debug: refresh db assets success
  835. 2025-1-18 12:30:44-debug: Run asset db hook engine-extends:afterRefresh ...
  836. 2025-1-18 12:30:44-debug: Run asset db hook engine-extends:afterRefresh success!
  837. 2025-1-18 12:30:44-debug: asset-db:refresh-all-database (340ms)
  838. 2025-1-18 12:30:44-debug: asset-db:worker-effect-data-processing (1ms)
  839. 2025-1-18 12:30:44-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  840. 2025-1-18 12:31:02-debug: refresh db internal success
  841. 2025-1-18 12:31:02-debug: refresh db assets success
  842. 2025-1-18 12:31:02-debug: Run asset db hook engine-extends:afterRefresh ...
  843. 2025-1-18 12:31:02-debug: Run asset db hook engine-extends:afterRefresh success!
  844. 2025-1-18 12:31:02-debug: asset-db:refresh-all-database (300ms)
  845. 2025-1-18 12:31:02-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  846. 2025-1-18 12:31:02-debug: asset-db:worker-effect-data-processing (3ms)
  847. 2025-1-18 12:31:47-debug: refresh db internal success
  848. 2025-1-18 12:31:47-debug: refresh db assets success
  849. 2025-1-18 12:31:47-debug: Run asset db hook engine-extends:afterRefresh ...
  850. 2025-1-18 12:31:47-debug: Run asset db hook engine-extends:afterRefresh success!
  851. 2025-1-18 12:31:47-debug: asset-db:refresh-all-database (331ms)
  852. 2025-1-18 12:31:47-debug: asset-db:worker-effect-data-processing (3ms)
  853. 2025-1-18 12:31:47-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  854. 2025-1-18 12:33:42-debug: refresh db internal success
  855. 2025-1-18 12:33:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  856. 2025-1-18 12:33:42-debug: refresh db assets success
  857. 2025-1-18 12:33:42-debug: Run asset db hook engine-extends:afterRefresh ...
  858. 2025-1-18 12:33:42-debug: Run asset db hook engine-extends:afterRefresh success!
  859. 2025-1-18 12:33:42-debug: asset-db:refresh-all-database (393ms)
  860. 2025-1-18 12:33:42-debug: asset-db:worker-effect-data-processing (2ms)
  861. 2025-1-18 12:33:42-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  862. 2025-1-18 12:33:53-debug: Start record console... {file(D:\CocosCreatorProject\Idioms\idiom\temp\builder\log\wechatgame2025-1-18 10-29.log)}
  863. 2025-1-18 12:33:53-debug: =================================== build Task (wechatgame) Start ================================
  864. 2025-1-18 12:33:53-debug: Build with Cocos Creator 3.8.4
  865. 2025-1-18 12:33:53-debug: Start build task, options: {"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":"brotli","packages":{"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
  866. 2025-1-18 12:33:53-debug: cocos-service:(onBeforeBuild) start..., progress: 0%
  867. 2025-1-18 12:33:53-debug: // ---- build task cocos-service:onBeforeBuild ----
  868. 2025-1-18 12:33:53-debug: // ---- build task cocos-service:onBeforeBuild ---- (190ms)
  869. 2025-1-18 12:33:53-debug: cocos-service:(onBeforeBuild) in 190 ms ✓, progress: 2%
  870. 2025-1-18 12:33:53-debug: scene:(onBeforeBuild) start..., progress: 2%
  871. 2025-1-18 12:33:53-debug: // ---- build task scene:onBeforeBuild ----
  872. 2025-1-18 12:33:53-debug: // ---- build task scene:onBeforeBuild ---- (30ms)
  873. 2025-1-18 12:33:53-debug: Start lock asset db..., progress: 4%
  874. 2025-1-18 12:33:53-debug: scene:(onBeforeBuild) in 30 ms ✓, progress: 4%
  875. 2025-1-18 12:33:53-debug: Query all assets info in project
  876. 2025-1-18 12:33:53-log: Asset DB is paused with build!
  877. 2025-1-18 12:33:53-debug: init custom config: keepNodeUuid: false, useCache: true
  878. 2025-1-18 12:33:53-debug: wechatgame:(onAfterInit) start..., progress: 4%
  879. 2025-1-18 12:33:53-debug: // ---- build task wechatgame:onAfterInit ----
  880. 2025-1-18 12:33:53-debug: // ---- build task wechatgame:onAfterInit ---- (13ms)
  881. 2025-1-18 12:33:53-debug: wechatgame:(onAfterInit) in 13 ms ✓, progress: 5%
  882. 2025-1-18 12:33:53-debug: cocos-service:(onAfterInit) start..., progress: 5%
  883. 2025-1-18 12:33:53-debug: // ---- build task cocos-service:onAfterInit ----
  884. 2025-1-18 12:33:53-debug: // ---- build task cocos-service:onAfterInit ---- (92ms)
  885. 2025-1-18 12:33:53-debug: cocos-service:(onAfterInit) in 92 ms ✓, progress: 7%
  886. 2025-1-18 12:33:53-debug: engine:(onAfterInit) start..., progress: 7%
  887. 2025-1-18 12:33:53-debug: // ---- build task engine:onAfterInit ----
  888. 2025-1-18 12:33:53-debug: // ---- build task engine:onAfterInit ---- (27ms)
  889. 2025-1-18 12:33:53-debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
  890. 2025-1-18 12:33:53-debug: // ---- build task wechatgame:onBeforeBundleInit ----
  891. 2025-1-18 12:33:53-debug: engine:(onAfterInit) in 27 ms ✓, progress: 9%
  892. 2025-1-18 12:33:53-debug: // ---- build task wechatgame:onBeforeBundleInit ---- (40ms)
  893. 2025-1-18 12:33:53-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
  894. 2025-1-18 12:33:53-debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
  895. 2025-1-18 12:33:53-debug: [adsense-h5g-plugin] remove script success
  896. 2025-1-18 12:33:53-debug: wechatgame:(onBeforeBundleInit) in 40 ms ✓, progress: 9%
  897. 2025-1-18 12:33:53-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (31ms)
  898. 2025-1-18 12:33:53-debug: adsense-h5g-plugin:(onBeforeBundleInit) in 31 ms ✓, progress: 9%
  899. 2025-1-18 12:33:53-debug: Num of bundles: 6..., progress: 9%
  900. 2025-1-18 12:33:53-debug: 查询 Asset Bundle start, progress: 9%
  901. 2025-1-18 12:33:53-debug: Init all bundles start..., progress: 9%
  902. 2025-1-18 12:33:53-debug: // ---- build task 查询 Asset Bundle ----
  903. 2025-1-18 12:33:53-debug: Init bundle root assets start..., progress: 9%
  904. 2025-1-18 12:33:53-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  905. 2025-1-18 12:33:53-debug: Number of all scenes: 3
  906. 2025-1-18 12:33:53-debug: Number of all scripts: 118
  907. 2025-1-18 12:33:53-debug: Init bundle root assets success..., progress: 9%
  908. 2025-1-18 12:33:53-debug: Number of other assets: 1135
  909. 2025-1-18 12:33:53-debug: reload all scripts.
  910. 2025-1-18 12:33:53-debug: Set detail map pack:///resolution-detail-map.json: {}
  911. 2025-1-18 12:33:53-debug: Unregister BuiltinPipelineSettings
  912. 2025-1-18 12:33:53-debug: Unregister DebugViewRuntimeControl
  913. 2025-1-18 12:33:53-debug: Unregister ch_sdk_comp
  914. 2025-1-18 12:33:53-debug: Unregister ch_start_pack
  915. 2025-1-18 12:33:53-debug: Unregister ResolutionAutoFit
  916. 2025-1-18 12:33:53-debug: Unregister ClickPenetrate
  917. 2025-1-18 12:33:53-debug: Unregister __NodeEventAgent__
  918. 2025-1-18 12:33:53-debug: Unregister ListItem
  919. 2025-1-18 12:33:53-debug: Unregister ui_updater
  920. 2025-1-18 12:33:53-debug: Unregister MotionTrail
  921. 2025-1-18 12:33:53-debug: Unregister MovieClip
  922. 2025-1-18 12:33:53-debug: Unregister SpineView
  923. 2025-1-18 12:33:53-debug: Unregister RewardFly
  924. 2025-1-18 12:33:53-debug: Unregister Layout_UIAlert
  925. 2025-1-18 12:33:53-debug: Unregister UISpineMovie
  926. 2025-1-18 12:33:53-debug: Unregister List
  927. 2025-1-18 12:33:53-debug: Unregister Layout_UI_Notify
  928. 2025-1-18 12:33:53-debug: Unregister Layout_UIWaiting
  929. 2025-1-18 12:33:53-debug: Unregister Layout_GameRules
  930. 2025-1-18 12:33:53-debug: Unregister table_idiom
  931. 2025-1-18 12:33:53-debug: Unregister UI_GameRules
  932. 2025-1-18 12:33:53-debug: Unregister Layout_Idioms
  933. 2025-1-18 12:33:53-debug: Unregister table_level
  934. 2025-1-18 12:33:53-debug: Unregister UI_Idiom
  935. 2025-1-18 12:33:53-debug: Unregister Layout_Settings
  936. 2025-1-18 12:33:53-debug: Unregister UI_Idioms
  937. 2025-1-18 12:33:53-debug: Unregister Layout_Hall
  938. 2025-1-18 12:33:53-debug: Unregister UI_Head_Icon
  939. 2025-1-18 12:33:53-debug: Unregister UI_Rank
  940. 2025-1-18 12:33:53-debug: Unregister UI_Rank_Item
  941. 2025-1-18 12:33:53-debug: Unregister Layout_Rank
  942. 2025-1-18 12:33:53-debug: Unregister Sign_Reward
  943. 2025-1-18 12:33:53-debug: Unregister Layout_Invite
  944. 2025-1-18 12:33:53-debug: Unregister Layout_Sign
  945. 2025-1-18 12:33:53-debug: Unregister UI_Sign
  946. 2025-1-18 12:33:53-debug: Unregister Layout_Store
  947. 2025-1-18 12:33:53-debug: Unregister Layout_SideBar
  948. 2025-1-18 12:33:53-debug: Unregister UI_Invite
  949. 2025-1-18 12:33:53-debug: Unregister Start
  950. 2025-1-18 12:33:53-debug: Unregister UI_Store
  951. 2025-1-18 12:33:53-debug: Unregister UI_SideBar
  952. 2025-1-18 12:33:53-debug: Unregister UI_Task_Item
  953. 2025-1-18 12:33:53-debug: Unregister UI_Hall
  954. 2025-1-18 12:33:53-debug: Unregister Layout_Task
  955. 2025-1-18 12:33:53-debug: Unregister Layout_Win
  956. 2025-1-18 12:33:53-debug: Unregister UI_Settings
  957. 2025-1-18 12:33:53-debug: Unregister Layout_Main
  958. 2025-1-18 12:33:53-debug: Unregister Layout_TimesOver
  959. 2025-1-18 12:33:53-debug: Unregister Layout_Fail
  960. 2025-1-18 12:33:53-debug: Unregister UI_Win
  961. 2025-1-18 12:33:53-debug: Unregister UI_Fail
  962. 2025-1-18 12:33:53-debug: Unregister UI_TimesOver
  963. 2025-1-18 12:33:53-debug: Unregister UI_Main
  964. 2025-1-18 12:33:53-debug: Unregister Cube_Infor
  965. 2025-1-18 12:33:53-debug: Unregister CreateIdiom
  966. 2025-1-18 12:33:53-debug: Unregister UI_Task
  967. 2025-1-18 12:33:53-debug: Unregister Layout_LatticeFull
  968. 2025-1-18 12:33:53-debug: Unregister Layout_Lock
  969. 2025-1-18 12:33:53-debug: Unregister UI_LatticeFull
  970. 2025-1-18 12:33:53-debug: Unregister GameCtl
  971. 2025-1-18 12:33:53-debug: Unregister UI_Lock
  972. 2025-1-18 12:33:53-debug: Unregister Container_Manager
  973. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
  974. 2025-1-18 12:33:53-debug: Unregister UI_Item
  975. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
  976. 2025-1-18 12:33:53-debug: Unregister Hall
  977. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
  978. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
  979. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
  980. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
  981. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
  982. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
  983. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
  984. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
  985. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
  986. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
  987. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
  988. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
  989. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
  990. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
  991. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
  992. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
  993. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
  994. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
  995. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
  996. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
  997. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
  998. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
  999. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
  1000. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
  1001. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
  1002. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
  1003. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
  1004. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
  1005. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
  1006. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
  1007. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
  1008. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
  1009. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
  1010. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
  1011. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
  1012. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
  1013. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
  1014. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
  1015. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
  1016. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
  1017. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
  1018. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
  1019. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
  1020. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
  1021. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
  1022. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
  1023. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
  1024. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
  1025. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
  1026. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
  1027. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
  1028. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
  1029. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
  1030. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
  1031. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
  1032. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
  1033. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
  1034. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
  1035. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
  1036. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
  1037. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
  1038. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
  1039. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
  1040. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
  1041. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
  1042. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
  1043. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
  1044. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
  1045. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
  1046. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
  1047. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
  1048. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
  1049. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
  1050. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
  1051. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
  1052. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
  1053. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
  1054. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
  1055. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
  1056. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
  1057. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
  1058. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
  1059. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
  1060. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
  1061. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
  1062. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
  1063. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
  1064. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
  1065. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
  1066. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
  1067. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
  1068. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
  1069. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
  1070. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
  1071. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
  1072. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
  1073. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
  1074. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
  1075. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
  1076. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
  1077. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
  1078. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
  1079. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
  1080. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
  1081. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
  1082. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
  1083. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
  1084. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
  1085. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
  1086. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
  1087. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
  1088. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
  1089. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
  1090. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
  1091. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
  1092. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
  1093. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
  1094. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  1095. 2025-1-18 12:33:53-debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
  1096. 2025-1-18 12:33:53-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
  1097. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  1098. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
  1099. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
  1100. 2025-1-18 12:33:53-debug: [[Executor]] Register BuiltinPipelineSettings
  1101. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
  1102. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
  1103. 2025-1-18 12:33:53-debug: [[Executor]] Register DebugViewRuntimeControl
  1104. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
  1105. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
  1106. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
  1107. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
  1108. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
  1109. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
  1110. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
  1111. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
  1112. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
  1113. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
  1114. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
  1115. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
  1116. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
  1117. 2025-1-18 12:33:53-debug: [[Executor]] Register ch_sdk_comp
  1118. 2025-1-18 12:33:53-debug: [[Executor]] Register ch_start_pack
  1119. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
  1120. 2025-1-18 12:33:53-debug: [[Executor]] Register __NodeEventAgent__
  1121. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
  1122. 2025-1-18 12:33:53-debug: [[Executor]] Register ResolutionAutoFit
  1123. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
  1124. 2025-1-18 12:33:53-debug: [[Executor]] Register ui_updater
  1125. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
  1126. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
  1127. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
  1128. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
  1129. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
  1130. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
  1131. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
  1132. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
  1133. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
  1134. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
  1135. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
  1136. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
  1137. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
  1138. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
  1139. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
  1140. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
  1141. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
  1142. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
  1143. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
  1144. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
  1145. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
  1146. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
  1147. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
  1148. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
  1149. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
  1150. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
  1151. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
  1152. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
  1153. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
  1154. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
  1155. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
  1156. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
  1157. 2025-1-18 12:33:53-debug: [[Executor]] Register ClickPenetrate
  1158. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
  1159. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
  1160. 2025-1-18 12:33:53-debug: [[Executor]] Register ListItem
  1161. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
  1162. 2025-1-18 12:33:53-debug: [[Executor]] Register List
  1163. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
  1164. 2025-1-18 12:33:53-debug: [[Executor]] Register MotionTrail
  1165. 2025-1-18 12:33:53-warn: 'MotionTrail.color' hides inherited property 'cc.UIRenderer.color'. To make the current property override that implementation, add the `override: true` attribute please.
  1166. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
  1167. 2025-1-18 12:33:53-debug: [[Executor]] Register MovieClip
  1168. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
  1169. 2025-1-18 12:33:53-debug: [[Executor]] Register RewardFly
  1170. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
  1171. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
  1172. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
  1173. 2025-1-18 12:33:53-debug: [[Executor]] Register UISpineMovie
  1174. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
  1175. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
  1176. 2025-1-18 12:33:53-debug: [[Executor]] Register SpineView
  1177. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
  1178. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
  1179. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_UI_Notify
  1180. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
  1181. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
  1182. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_UIWaiting
  1183. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
  1184. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
  1185. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
  1186. 2025-1-18 12:33:53-debug: [[Executor]] Register table_idiom
  1187. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
  1188. 2025-1-18 12:33:53-debug: [[Executor]] Register table_level
  1189. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
  1190. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_UIAlert
  1191. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
  1192. 2025-1-18 12:33:53-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js is not in module cache!
  1193. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_GameRules
  1194. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
  1195. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Idiom
  1196. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
  1197. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Idioms
  1198. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
  1199. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Idioms
  1200. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_GameRules
  1201. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
  1202. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
  1203. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Settings
  1204. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
  1205. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
  1206. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Hall
  1207. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Head_Icon
  1208. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
  1209. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
  1210. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Rank_Item
  1211. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
  1212. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Rank
  1213. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Rank
  1214. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
  1215. 2025-1-18 12:33:53-debug: [[Executor]] Register Sign_Reward
  1216. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
  1217. 2025-1-18 12:33:53-warn: The type of "Sign_Reward.num" must be CCFloat or CCInteger, not Number.
  1218. 2025-1-18 12:33:53-warn: The type of "Sign_Reward.type" must be CCFloat or CCInteger, not Number.
  1219. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
  1220. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Sign
  1221. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Invite
  1222. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
  1223. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Sign
  1224. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
  1225. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Invite
  1226. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
  1227. 2025-1-18 12:33:53-warn: The type of "Layout_Store.Value" must be CCFloat or CCInteger, not Number.
  1228. 2025-1-18 12:33:53-warn: The type of "Layout_Store.Type" must be CCFloat or CCInteger, not Number.
  1229. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
  1230. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Store
  1231. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Store
  1232. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
  1233. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_SideBar
  1234. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
  1235. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_SideBar
  1236. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
  1237. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Task_Item
  1238. 2025-1-18 12:33:53-debug: [[Executor]] Register Start
  1239. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
  1240. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
  1241. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Task
  1242. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
  1243. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Hall
  1244. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
  1245. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
  1246. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
  1247. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Settings
  1248. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
  1249. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Win
  1250. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Task
  1251. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Win
  1252. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
  1253. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_TimesOver
  1254. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Main
  1255. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
  1256. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
  1257. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Fail
  1258. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
  1259. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
  1260. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_TimesOver
  1261. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Main
  1262. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
  1263. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Fail
  1264. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
  1265. 2025-1-18 12:33:53-debug: [[Executor]] Register Hall
  1266. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
  1267. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
  1268. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
  1269. 2025-1-18 12:33:53-debug: [[Executor]] Register Cube_Infor
  1270. 2025-1-18 12:33:53-debug: [[Executor]] Register CreateIdiom
  1271. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
  1272. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
  1273. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
  1274. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_LatticeFull
  1275. 2025-1-18 12:33:53-debug: [[Executor]] Register Layout_Lock
  1276. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
  1277. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_LatticeFull
  1278. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
  1279. 2025-1-18 12:33:53-debug: [[Executor]] Register GameCtl
  1280. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
  1281. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
  1282. 2025-1-18 12:33:53-debug: [[Executor]] Register Container_Manager
  1283. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
  1284. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Item
  1285. 2025-1-18 12:33:53-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  1286. 2025-1-18 12:33:53-debug: Incremental keys: chSdk,chsdk
  1287. 2025-1-18 12:33:53-debug: Init bundle share assets start..., progress: 9%
  1288. 2025-1-18 12:33:53-debug: [[Executor]] Register UI_Lock
  1289. 2025-1-18 12:33:53-debug: Init bundle share assets success..., progress: 9%
  1290. 2025-1-18 12:33:53-debug: handle json group in bundle internal
  1291. 2025-1-18 12:33:53-debug: handle json group in bundle internal success
  1292. 2025-1-18 12:33:53-debug: handle json group in bundle start-scene
  1293. 2025-1-18 12:33:53-debug: handle json group in bundle main success
  1294. 2025-1-18 12:33:53-debug: handle json group in bundle module_extra
  1295. 2025-1-18 12:33:53-debug: handle json group in bundle module_game
  1296. 2025-1-18 12:33:53-debug: handle json group in bundle module_basic
  1297. 2025-1-18 12:33:53-debug: init image compress task 0 in bundle internal
  1298. 2025-1-18 12:33:53-debug: init image compress task 0 in bundle start-scene
  1299. 2025-1-18 12:33:53-debug: init image compress task 0 in bundle main
  1300. 2025-1-18 12:33:53-debug: handle json group in bundle module_extra success
  1301. 2025-1-18 12:33:53-debug: init image compress task 0 in bundle module_extra
  1302. 2025-1-18 12:33:53-debug: handle json group in bundle module_basic success
  1303. 2025-1-18 12:33:53-debug: init image compress task 0 in bundle module_basic
  1304. 2025-1-18 12:33:53-debug: handle json group in bundle module_game success
  1305. 2025-1-18 12:33:53-debug: handle json group in bundle start-scene success
  1306. 2025-1-18 12:33:53-debug: handle json group in bundle main
  1307. 2025-1-18 12:33:53-debug: init image compress task 0 in bundle module_game
  1308. 2025-1-18 12:33:53-debug: // ---- build task 查询 Asset Bundle ---- (381ms)
  1309. 2025-1-18 12:33:53-debug: [Build Memory track]: 查询 Asset Bundle start:223.75MB, end 203.01MB, increase: -21228.76KB
  1310. 2025-1-18 12:33:53-debug: // ---- build task 查询 Asset Bundle ----
  1311. 2025-1-18 12:33:53-debug: run build task 查询 Asset Bundle success in 381 ms√, progress: 14%
  1312. 2025-1-18 12:33:53-debug: 查询 Asset Bundle start, progress: 14%
  1313. 2025-1-18 12:33:54-debug: // ---- build task 查询 Asset Bundle ---- (64ms)
  1314. 2025-1-18 12:33:54-debug: run build task 查询 Asset Bundle success in 64 ms√, progress: 19%
  1315. 2025-1-18 12:33:54-debug: [Build Memory track]: 查询 Asset Bundle start:203.05MB, end 200.65MB, increase: -2461.19KB
  1316. 2025-1-18 12:33:54-debug: 打包脚本 start, progress: 19%
  1317. 2025-1-18 12:33:54-debug: // ---- build task 打包脚本 ----
  1318. 2025-1-18 12:33:54-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  1319. 2025-1-18 12:33:54-log: [build-script]enter sub process 17932, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
  1320. 2025-1-18 12:33:57-debug: excute-script over with build-script 3389ms
  1321. 2025-1-18 12:33:57-debug: Generate systemJs..., progress: 19%
  1322. 2025-1-18 12:33:57-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  1323. 2025-1-18 12:33:59-debug: excute-script over with build-script 2526ms
  1324. 2025-1-18 12:33:59-debug: 构建项目脚本 start..., progress: 19%
  1325. 2025-1-18 12:33:59-debug: Build script in bundle start, progress: 19%
  1326. 2025-1-18 12:34:00-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  1327. 2025-1-18 12:34:04-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts
  1328. 2025-1-18 12:34:04-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
  1329. 2025-1-18 12:34:07-debug: excute-script over with build-script 7335ms
  1330. 2025-1-18 12:34:07-debug: Copy externalScripts success!
  1331. 2025-1-18 12:34:07-debug: Build script in bundle success, progress: 19%
  1332. 2025-1-18 12:34:07-debug: 构建项目脚本 in (7410 ms) √, progress: 19%
  1333. 2025-1-18 12:34:07-debug: 构建引擎脚本 start..., progress: 19%
  1334. 2025-1-18 12:34:07-debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}
  1335. 2025-1-18 12:34:07-debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"WECHAT","useCache":true,"nativeCodeBundleMode":"wasm","wasmCompressionMode":"brotli","split":false,"skip":false,"assetURLFormat":"relative-from-out","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\wechatgame\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
  1336. 2025-1-18 12:34:07-debug: 构建引擎脚本 in (121 ms) √, progress: 19%
  1337. 2025-1-18 12:34:07-debug: Copy plugin script ..., progress: 19%
  1338. 2025-1-18 12:34:07-debug: Generate import-map..., progress: 19%
  1339. 2025-1-18 12:34:07-debug: // ---- build task 打包脚本 ---- (13556ms)
  1340. 2025-1-18 12:34:07-debug: run build task 打包脚本 success in 13 s√, progress: 24%
  1341. 2025-1-18 12:34:07-debug: [Build Memory track]: 打包脚本 start:200.82MB, end 201.79MB, increase: 988.42KB
  1342. 2025-1-18 12:34:07-debug: Build bundles..., progress: 24%
  1343. 2025-1-18 12:34:07-debug: Pack Images start, progress: 24%
  1344. 2025-1-18 12:34:07-debug: Build Assets start, progress: 24%
  1345. 2025-1-18 12:34:07-debug: // ---- build task Build Assets ----
  1346. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
  1347. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
  1348. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
  1349. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
  1350. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  1351. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
  1352. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  1353. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
  1354. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
  1355. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
  1356. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
  1357. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
  1358. 2025-1-18 12:34:08-debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
  1359. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
  1360. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
  1361. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
  1362. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
  1363. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
  1364. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
  1365. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
  1366. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  1367. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
  1368. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
  1369. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
  1370. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
  1371. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  1372. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  1373. 2025-1-18 12:34:08-debug: remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  1374. 2025-1-18 12:34:08-debug: builder:pack-auto-atlas-image (660ms)
  1375. 2025-1-18 12:34:08-debug: Compress image start..., progress: 24%
  1376. 2025-1-18 12:34:08-debug: Pack Images success, progress: 24%
  1377. 2025-1-18 12:34:08-debug: Num of all image compress task 0, really: 0, configTasks: 0
  1378. 2025-1-18 12:34:08-debug: Compress image success..., progress: 24%
  1379. 2025-1-18 12:34:08-debug: Output asset in bundles start, progress: 24%
  1380. 2025-1-18 12:34:08-debug: Handle all json groups in bundle internal
  1381. 2025-1-18 12:34:08-debug: handle json group
  1382. 2025-1-18 12:34:08-debug: sort compress task {}
  1383. 2025-1-18 12:34:08-debug: No image need to compress
  1384. 2025-1-18 12:34:08-debug: handle json group
  1385. 2025-1-18 12:34:08-debug: Handle all json groups in bundle main
  1386. 2025-1-18 12:34:08-debug: Handle all json groups in bundle start-scene
  1387. 2025-1-18 12:34:08-debug: handle json group
  1388. 2025-1-18 12:34:08-debug: handle single json
  1389. 2025-1-18 12:34:08-debug: Handle all json groups in bundle module_extra
  1390. 2025-1-18 12:34:08-debug: handle single json
  1391. 2025-1-18 12:34:08-debug: handle json group
  1392. 2025-1-18 12:34:08-debug: Handle all json groups in bundle module_basic
  1393. 2025-1-18 12:34:08-debug: handle json group
  1394. 2025-1-18 12:34:08-debug: Handle all json groups in bundle module_game
  1395. 2025-1-18 12:34:08-debug: handle json group
  1396. 2025-1-18 12:34:08-debug: Json group(07325bfaa) compile success,json number: 6
  1397. 2025-1-18 12:34:08-debug: Json group(0a66f4293) compile success,json number: 6
  1398. 2025-1-18 12:34:08-debug: Json group(0ba471961) compile success,json number: 6
  1399. 2025-1-18 12:34:08-debug: handle single json
  1400. 2025-1-18 12:34:08-debug: Json group(04ade8c9e) compile success,json number: 6
  1401. 2025-1-18 12:34:08-debug: handle single json
  1402. 2025-1-18 12:34:08-debug: Json group(09d6a42a2) compile success,json number: 6
  1403. 2025-1-18 12:34:08-debug: Json group(0a54f6860) compile success,json number: 6
  1404. 2025-1-18 12:34:08-debug: handle single json
  1405. 2025-1-18 12:34:08-debug: Json group(08d4f0835) compile success,json number: 6
  1406. 2025-1-18 12:34:08-debug: Json group(0a1731415) compile success,json number: 6
  1407. 2025-1-18 12:34:08-debug: Json group(093f10e90) compile success,json number: 6
  1408. 2025-1-18 12:34:08-debug: Json group(02c882590) compile success,json number: 6
  1409. 2025-1-18 12:34:08-debug: Json group(0db065665) compile success,json number: 6
  1410. 2025-1-18 12:34:08-debug: Json group(0787c84da) compile success,json number: 6
  1411. 2025-1-18 12:34:08-debug: Json group(03c9cd961) compile success,json number: 6
  1412. 2025-1-18 12:34:08-debug: Json group(0471cee9c) compile success,json number: 6
  1413. 2025-1-18 12:34:08-debug: Json group(0403d1262) compile success,json number: 6
  1414. 2025-1-18 12:34:08-debug: Json group(070166e93) compile success,json number: 6
  1415. 2025-1-18 12:34:08-debug: Json group(0329651a2) compile success,json number: 6
  1416. 2025-1-18 12:34:08-debug: Json group(02b639d30) compile success,json number: 6
  1417. 2025-1-18 12:34:08-debug: Json group(06db2e96b) compile success,json number: 6
  1418. 2025-1-18 12:34:08-debug: Json group(0c5a2fc7e) compile success,json number: 6
  1419. 2025-1-18 12:34:08-debug: Json group(0332e55a0) compile success,json number: 6
  1420. 2025-1-18 12:34:08-debug: Json group(01236a39b) compile success,json number: 6
  1421. 2025-1-18 12:34:08-debug: Json group(022fd81fe) compile success,json number: 6
  1422. 2025-1-18 12:34:08-debug: Json group(02d36d139) compile success,json number: 6
  1423. 2025-1-18 12:34:08-debug: Json group(0d54cf783) compile success,json number: 6
  1424. 2025-1-18 12:34:08-debug: handle single json
  1425. 2025-1-18 12:34:08-debug: Output asset in bundles success, progress: 24%
  1426. 2025-1-18 12:34:08-debug: Output asset in bundles start, progress: 24%
  1427. 2025-1-18 12:34:08-debug: compress config of bundle internal success
  1428. 2025-1-18 12:34:08-debug: compress config of bundle start-scene...
  1429. 2025-1-18 12:34:08-debug: compress config of bundle internal...
  1430. 2025-1-18 12:34:08-debug: compress config of bundle start-scene success
  1431. 2025-1-18 12:34:08-debug: compress config of bundle main success
  1432. 2025-1-18 12:34:08-debug: compress config of bundle module_extra...
  1433. 2025-1-18 12:34:08-debug: compress config of bundle module_extra success
  1434. 2025-1-18 12:34:08-debug: compress config of bundle module_basic...
  1435. 2025-1-18 12:34:08-debug: compress config of bundle module_basic success
  1436. 2025-1-18 12:34:08-debug: compress config of bundle module_game...
  1437. 2025-1-18 12:34:08-debug: compress config of bundle module_game success
  1438. 2025-1-18 12:34:08-debug: output config of bundle internal
  1439. 2025-1-18 12:34:08-debug: output config of bundle internal success
  1440. 2025-1-18 12:34:08-debug: output config of bundle start-scene
  1441. 2025-1-18 12:34:08-debug: output config of bundle start-scene success
  1442. 2025-1-18 12:34:08-debug: output config of bundle main
  1443. 2025-1-18 12:34:08-debug: output config of bundle main success
  1444. 2025-1-18 12:34:08-debug: output config of bundle module_extra
  1445. 2025-1-18 12:34:08-debug: output config of bundle module_extra success
  1446. 2025-1-18 12:34:08-debug: output config of bundle module_basic
  1447. 2025-1-18 12:34:08-debug: output config of bundle module_basic success
  1448. 2025-1-18 12:34:08-debug: output config of bundle module_game
  1449. 2025-1-18 12:34:08-debug: output config of bundle module_game success
  1450. 2025-1-18 12:34:08-debug: Output asset in bundles success, progress: 24%
  1451. 2025-1-18 12:34:08-debug: compress config of bundle main...
  1452. 2025-1-18 12:34:08-debug: // ---- build task Build Assets ---- (1197ms)
  1453. 2025-1-18 12:34:08-debug: run build task Build Assets success in 1 s√, progress: 29%
  1454. 2025-1-18 12:34:08-debug: [Build Memory track]: Build Assets start:201.83MB, end 205.74MB, increase: 3.92MB
  1455. 2025-1-18 12:34:08-debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
  1456. 2025-1-18 12:34:08-debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
  1457. 2025-1-18 12:34:08-debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (37ms)
  1458. 2025-1-18 12:34:08-debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
  1459. 2025-1-18 12:34:08-debug: wechatgame:(onAfterBundleBuildTask) in 37 ms ✓, progress: 29%
  1460. 2025-1-18 12:34:08-debug: // ---- build task wechatgame:onAfterBuildAssets ----
  1461. 2025-1-18 12:34:08-debug: // ---- build task wechatgame:onAfterBuildAssets ---- (35ms)
  1462. 2025-1-18 12:34:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1463. 2025-1-18 12:34:08-debug: wechatgame:(onAfterBuildAssets) in 35 ms ✓, progress: 31%
  1464. 2025-1-18 12:34:08-debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
  1465. 2025-1-18 12:34:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (39ms)
  1466. 2025-1-18 12:34:08-debug: run build task 整理部分构建选项内数据到 settings.json success in 39 ms√, progress: 33%
  1467. 2025-1-18 12:34:08-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.03MB, end 206.10MB, increase: 71.23KB
  1468. 2025-1-18 12:34:08-debug: 填充脚本数据到 settings.json start, progress: 33%
  1469. 2025-1-18 12:34:08-debug: // ---- build task 填充脚本数据到 settings.json ----
  1470. 2025-1-18 12:34:08-debug: // ---- build task 填充脚本数据到 settings.json ---- (33ms)
  1471. 2025-1-18 12:34:08-debug: run build task 填充脚本数据到 settings.json success in 33 ms√, progress: 34%
  1472. 2025-1-18 12:34:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1473. 2025-1-18 12:34:08-debug: [Build Memory track]: 填充脚本数据到 settings.json start:206.14MB, end 206.21MB, increase: 75.29KB
  1474. 2025-1-18 12:34:08-debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
  1475. 2025-1-18 12:34:09-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (50ms)
  1476. 2025-1-18 12:34:09-debug: run build task 整理部分构建选项内数据到 settings.json success in 50 ms√, progress: 36%
  1477. 2025-1-18 12:34:09-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.24MB, end 206.42MB, increase: 179.31KB
  1478. 2025-1-18 12:34:09-debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
  1479. 2025-1-18 12:34:09-debug: // ---- build task wechatgame:onBeforeCompressSettings ----
  1480. 2025-1-18 12:34:09-debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (54ms)
  1481. 2025-1-18 12:34:09-debug: wechatgame:(onBeforeCompressSettings) in 54 ms ✓, progress: 38%
  1482. 2025-1-18 12:34:09-debug: // ---- build task cocos-service:onBeforeCompressSettings ----
  1483. 2025-1-18 12:34:09-debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
  1484. 2025-1-18 12:34:09-debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (503ms)
  1485. 2025-1-18 12:34:09-debug: // ---- build task 整理静态模板文件 ----
  1486. 2025-1-18 12:34:09-debug: 整理静态模板文件 start, progress: 40%
  1487. 2025-1-18 12:34:09-debug: cocos-service:(onBeforeCompressSettings) in 503 ms ✓, progress: 40%
  1488. 2025-1-18 12:34:09-debug: // ---- build task 整理静态模板文件 ---- (76ms)
  1489. 2025-1-18 12:34:09-debug: run build task 整理静态模板文件 success in 76 ms√, progress: 45%
  1490. 2025-1-18 12:34:09-debug: // ---- build task cocos-service:onAfterCompressSettings ----
  1491. 2025-1-18 12:34:09-debug: [Build Memory track]: 整理静态模板文件 start:206.72MB, end 200.83MB, increase: -6023.69KB
  1492. 2025-1-18 12:34:09-debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
  1493. 2025-1-18 12:34:09-debug: // ---- build task cocos-service:onAfterCompressSettings ---- (119ms)
  1494. 2025-1-18 12:34:09-debug: cocos-service:(onAfterCompressSettings) in 119 ms ✓, progress: 46%
  1495. 2025-1-18 12:34:09-debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
  1496. 2025-1-18 12:34:09-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
  1497. 2025-1-18 12:34:09-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (24ms)
  1498. 2025-1-18 12:34:09-debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
  1499. 2025-1-18 12:34:09-debug: wechatgame:(onBeforeCopyBuildTemplate) in 24 ms ✓, progress: 48%
  1500. 2025-1-18 12:34:09-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
  1501. 2025-1-18 12:34:09-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (43ms)
  1502. 2025-1-18 12:34:09-debug: wechatgame:(onAfterCopyBuildTemplate) in 43 ms ✓, progress: 50%
  1503. 2025-1-18 12:34:09-debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
  1504. 2025-1-18 12:34:09-debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
  1505. 2025-1-18 12:34:09-debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (32ms)
  1506. 2025-1-18 12:34:09-debug: run build task 给所有的资源加上 MD5 后缀 success in 32 ms√, progress: 60%
  1507. 2025-1-18 12:34:09-debug: wechatgame:(onAfterBuild) start..., progress: 60%
  1508. 2025-1-18 12:34:09-debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:201.43MB, end 201.50MB, increase: 71.73KB
  1509. 2025-1-18 12:34:09-debug: // ---- build task wechatgame:onAfterBuild ----
  1510. 2025-1-18 12:34:10-debug: // ---- build task wechatgame:onAfterBuild ---- (1096ms)
  1511. 2025-1-18 12:34:10-debug: wechatgame:(onAfterBuild) in 1096 ms ✓, progress: 62%
  1512. 2025-1-18 12:34:10-debug: // ---- build task cocos-service:onAfterBuild ----
  1513. 2025-1-18 12:34:10-debug: cocos-service:(onAfterBuild) start..., progress: 62%
  1514. 2025-1-18 12:34:11-debug: // ---- build task cocos-service:onAfterBuild ---- (176ms)
  1515. 2025-1-18 12:34:11-debug: cocos-service:(onAfterBuild) in 176 ms ✓, progress: 64%
  1516. 2025-1-18 12:34:11-debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
  1517. 2025-1-18 12:34:11-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
  1518. 2025-1-18 12:34:11-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (30ms)
  1519. 2025-1-18 12:34:11-debug: adsense-h5g-plugin:(onAfterBuild) in 30 ms ✓, progress: 65%
  1520. 2025-1-18 12:34:11-log: Asset DB is resume!
  1521. 2025-1-18 12:34:11-debug: builder:build-project-total (18154ms)
  1522. 2025-1-18 12:34:11-debug: build success in 18154!
  1523. 2025-1-18 12:34:11-debug: [Build Memory track]: builder:build-project-total start:223.05MB, end 202.37MB, increase: -21181.73KB
  1524. 2025-1-18 12:34:11-debug: ================================ build Task (wechatgame) Finished in (18 s)ms ================================
  1525. 2025-1-18 12:34:11-debug: Stop record console. {file(D:\CocosCreatorProject\Idioms\idiom\temp\builder\log\wechatgame2025-1-18 10-29.log)}
  1526. 2025-1-18 12:35:09-debug: refresh db internal success
  1527. 2025-1-18 12:35:09-debug: refresh db assets success
  1528. 2025-1-18 12:35:09-debug: Run asset db hook engine-extends:afterRefresh ...
  1529. 2025-1-18 12:35:09-debug: Run asset db hook engine-extends:afterRefresh success!
  1530. 2025-1-18 12:35:09-debug: asset-db:refresh-all-database (131ms)
  1531. 2025-1-18 12:35:09-debug: asset-db:worker-effect-data-processing (4ms)
  1532. 2025-1-18 12:35:09-debug: asset-db-hook-engine-extends-afterRefresh (5ms)
  1533. 2025-1-18 12:37:02-debug: refresh db internal success
  1534. 2025-1-18 12:37:02-debug: refresh db assets success
  1535. 2025-1-18 12:37:02-debug: Run asset db hook engine-extends:afterRefresh ...
  1536. 2025-1-18 12:37:02-debug: Run asset db hook engine-extends:afterRefresh success!
  1537. 2025-1-18 12:37:02-debug: asset-db:refresh-all-database (110ms)
  1538. 2025-1-18 14:06:39-debug: refresh db internal success
  1539. 2025-1-18 14:06:39-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\UI_Settings.ts background: #aaff85; color: #000; color: #000;
  1540. 2025-1-18 14:06:39-debug: refresh db assets success
  1541. 2025-1-18 14:06:39-debug: Run asset db hook engine-extends:afterRefresh success!
  1542. 2025-1-18 14:06:39-debug: Run asset db hook engine-extends:afterRefresh ...
  1543. 2025-1-18 14:06:39-debug: asset-db:refresh-all-database (241ms)
  1544. 2025-1-18 14:06:39-debug: asset-db:worker-effect-data-processing (2ms)
  1545. 2025-1-18 14:06:39-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  1546. 2025-1-18 14:06:44-debug: Query all assets info in project
  1547. 2025-1-18 14:06:44-debug: init custom config: keepNodeUuid: false, useCache: true
  1548. 2025-1-18 14:06:44-debug: 查询 Asset Bundle start, progress: 0%
  1549. 2025-1-18 14:06:44-debug: // ---- build task 查询 Asset Bundle ----
  1550. 2025-1-18 14:06:44-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1551. 2025-1-18 14:06:44-debug: Number of all scenes: 3
  1552. 2025-1-18 14:06:44-debug: Number of all scripts: 118
  1553. 2025-1-18 14:06:44-debug: Number of other assets: 1135
  1554. 2025-1-18 14:06:44-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  1555. 2025-1-18 14:06:44-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  1556. 2025-1-18 14:06:44-debug: [Build Memory track]: 查询 Asset Bundle start:207.85MB, end 207.93MB, increase: 76.35KB
  1557. 2025-1-18 14:06:44-debug: 查询 Asset Bundle start, progress: 5%
  1558. 2025-1-18 14:06:44-debug: // ---- build task 查询 Asset Bundle ----
  1559. 2025-1-18 14:06:44-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1560. 2025-1-18 14:06:44-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 10%
  1561. 2025-1-18 14:06:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1562. 2025-1-18 14:06:44-debug: [Build Memory track]: 查询 Asset Bundle start:207.96MB, end 207.40MB, increase: -571.61KB
  1563. 2025-1-18 14:06:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1564. 2025-1-18 14:06:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1565. 2025-1-18 14:06:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1566. 2025-1-18 14:06:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:207.43MB, end 207.46MB, increase: 30.61KB
  1567. 2025-1-18 14:06:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  1568. 2025-1-18 14:06:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  1569. 2025-1-18 14:06:44-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1570. 2025-1-18 14:06:44-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1571. 2025-1-18 14:06:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1572. 2025-1-18 14:06:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:207.50MB, end 207.52MB, increase: 29.82KB
  1573. 2025-1-18 14:06:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1574. 2025-1-18 14:06:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  1575. 2025-1-18 14:06:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  1576. 2025-1-18 14:06:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:207.56MB, end 207.69MB, increase: 131.57KB
  1577. 2025-1-18 14:06:55-debug: refresh db internal success
  1578. 2025-1-18 14:06:55-debug: refresh db assets success
  1579. 2025-1-18 14:06:55-debug: Run asset db hook engine-extends:afterRefresh ...
  1580. 2025-1-18 14:06:55-debug: Run asset db hook engine-extends:afterRefresh success!
  1581. 2025-1-18 14:06:55-debug: asset-db:refresh-all-database (123ms)
  1582. 2025-1-18 14:06:55-debug: asset-db:worker-effect-data-processing (1ms)
  1583. 2025-1-18 14:06:55-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1584. 2025-1-18 14:07:04-debug: Query all assets info in project
  1585. 2025-1-18 14:07:04-debug: init custom config: keepNodeUuid: false, useCache: true
  1586. 2025-1-18 14:07:04-debug: 查询 Asset Bundle start, progress: 0%
  1587. 2025-1-18 14:07:04-debug: // ---- build task 查询 Asset Bundle ----
  1588. 2025-1-18 14: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
  1589. 2025-1-18 14:07:04-debug: Number of all scripts: 118
  1590. 2025-1-18 14:07:04-debug: Number of other assets: 1135
  1591. 2025-1-18 14:07:04-debug: Number of all scenes: 3
  1592. 2025-1-18 14:07:04-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  1593. 2025-1-18 14:07:04-debug: [Build Memory track]: 查询 Asset Bundle start:208.99MB, end 209.19MB, increase: 206.24KB
  1594. 2025-1-18 14:07:04-debug: // ---- build task 查询 Asset Bundle ----
  1595. 2025-1-18 14:07:04-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  1596. 2025-1-18 14:07:04-debug: 查询 Asset Bundle start, progress: 5%
  1597. 2025-1-18 14:07:04-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1598. 2025-1-18 14:07:04-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1599. 2025-1-18 14:07:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1600. 2025-1-18 14:07:04-debug: [Build Memory track]: 查询 Asset Bundle start:209.22MB, end 209.46MB, increase: 239.88KB
  1601. 2025-1-18 14:07:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1602. 2025-1-18 14:07:04-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1603. 2025-1-18 14:07:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.49MB, end 209.51MB, increase: 18.30KB
  1604. 2025-1-18 14:07:04-debug: 填充脚本数据到 settings.json start, progress: 12%
  1605. 2025-1-18 14:07:04-debug: // ---- build task 填充脚本数据到 settings.json ----
  1606. 2025-1-18 14:07:04-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1607. 2025-1-18 14:07:04-debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.54MB, end 209.56MB, increase: 17.42KB
  1608. 2025-1-18 14:07:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1609. 2025-1-18 14:07:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1610. 2025-1-18 14:07:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1611. 2025-1-18 14:07:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  1612. 2025-1-18 14:07:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.59MB, end 209.72MB, increase: 132.07KB
  1613. 2025-1-18 14:07:13-debug: Query all assets info in project
  1614. 2025-1-18 14:07:13-debug: init custom config: keepNodeUuid: false, useCache: true
  1615. 2025-1-18 14:07:13-debug: 查询 Asset Bundle start, progress: 0%
  1616. 2025-1-18 14:07:13-debug: // ---- build task 查询 Asset Bundle ----
  1617. 2025-1-18 14:07:13-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1618. 2025-1-18 14:07:13-debug: Number of all scenes: 3
  1619. 2025-1-18 14:07:13-debug: Number of all scripts: 118
  1620. 2025-1-18 14:07:13-debug: Number of other assets: 1135
  1621. 2025-1-18 14:07:13-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  1622. 2025-1-18 14:07:13-debug: [Build Memory track]: 查询 Asset Bundle start:209.73MB, end 209.88MB, increase: 143.74KB
  1623. 2025-1-18 14:07:13-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  1624. 2025-1-18 14:07:13-debug: 查询 Asset Bundle start, progress: 5%
  1625. 2025-1-18 14:07:13-debug: // ---- build task 查询 Asset Bundle ----
  1626. 2025-1-18 14:07:13-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  1627. 2025-1-18 14:07:13-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  1628. 2025-1-18 14:07:13-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1629. 2025-1-18 14:07:13-debug: [Build Memory track]: 查询 Asset Bundle start:209.91MB, end 209.25MB, increase: -671.04KB
  1630. 2025-1-18 14:07:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1631. 2025-1-18 14:07:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  1632. 2025-1-18 14:07:13-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 12%
  1633. 2025-1-18 14:07:13-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.29MB, end 209.32MB, increase: 30.56KB
  1634. 2025-1-18 14:07:13-debug: // ---- build task 填充脚本数据到 settings.json ----
  1635. 2025-1-18 14:07:13-debug: 填充脚本数据到 settings.json start, progress: 12%
  1636. 2025-1-18 14:07:13-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  1637. 2025-1-18 14:07:13-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  1638. 2025-1-18 14:07:13-debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.35MB, end 209.38MB, increase: 26.86KB
  1639. 2025-1-18 14:07:13-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1640. 2025-1-18 14:07:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1641. 2025-1-18 14:07:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  1642. 2025-1-18 14:07:13-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  1643. 2025-1-18 14:07:13-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.41MB, end 209.79MB, increase: 390.34KB
  1644. 2025-1-18 14:07:25-debug: refresh db internal success
  1645. 2025-1-18 14:07:25-debug: refresh db assets success
  1646. 2025-1-18 14:07:25-debug: Run asset db hook engine-extends:afterRefresh ...
  1647. 2025-1-18 14:07:25-debug: Run asset db hook engine-extends:afterRefresh success!
  1648. 2025-1-18 14:07:25-debug: asset-db:refresh-all-database (355ms)
  1649. 2025-1-18 14:07:25-debug: asset-db:worker-effect-data-processing (1ms)
  1650. 2025-1-18 14:07:25-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1651. 2025-1-18 14:07:36-debug: refresh db internal success
  1652. 2025-1-18 14:07:36-debug: refresh db assets success
  1653. 2025-1-18 14:07:36-debug: Run asset db hook engine-extends:afterRefresh ...
  1654. 2025-1-18 14:07:36-debug: Run asset db hook engine-extends:afterRefresh success!
  1655. 2025-1-18 14:07:36-debug: asset-db:refresh-all-database (105ms)
  1656. 2025-1-18 14:07:37-debug: Query all assets info in project
  1657. 2025-1-18 14:07:37-debug: init custom config: keepNodeUuid: false, useCache: true
  1658. 2025-1-18 14:07:37-debug: 查询 Asset Bundle start, progress: 0%
  1659. 2025-1-18 14:07:37-debug: // ---- build task 查询 Asset Bundle ----
  1660. 2025-1-18 14:07:37-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
  1661. 2025-1-18 14:07:37-debug: Number of all scenes: 3
  1662. 2025-1-18 14:07:37-debug: Number of other assets: 1135
  1663. 2025-1-18 14:07:37-debug: Number of all scripts: 118
  1664. 2025-1-18 14:07:37-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  1665. 2025-1-18 14:07:37-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  1666. 2025-1-18 14:07:37-debug: [Build Memory track]: 查询 Asset Bundle start:213.74MB, end 213.78MB, increase: 34.79KB
  1667. 2025-1-18 14:07:37-debug: 查询 Asset Bundle start, progress: 5%
  1668. 2025-1-18 14:07:37-debug: // ---- build task 查询 Asset Bundle ----
  1669. 2025-1-18 14:07:37-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1670. 2025-1-18 14:07:37-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1671. 2025-1-18 14:07:37-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1672. 2025-1-18 14:07:37-debug: [Build Memory track]: 查询 Asset Bundle start:213.81MB, end 214.04MB, increase: 240.68KB
  1673. 2025-1-18 14:07:37-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1674. 2025-1-18 14:07:37-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1675. 2025-1-18 14:07:37-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.08MB, end 214.10MB, increase: 29.06KB
  1676. 2025-1-18 14:07:37-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1677. 2025-1-18 14:07:37-debug: 填充脚本数据到 settings.json start, progress: 12%
  1678. 2025-1-18 14:07:37-debug: // ---- build task 填充脚本数据到 settings.json ----
  1679. 2025-1-18 14:07:37-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1680. 2025-1-18 14:07:37-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1681. 2025-1-18 14:07:37-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1682. 2025-1-18 14:07:37-debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.14MB, end 214.17MB, increase: 30.92KB
  1683. 2025-1-18 14:07:37-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1684. 2025-1-18 14:07:37-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  1685. 2025-1-18 14:07:37-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  1686. 2025-1-18 14:07:37-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.20MB, end 214.33MB, increase: 130.66KB
  1687. 2025-1-18 14:07:46-debug: refresh db internal success
  1688. 2025-1-18 14:07:46-debug: refresh db assets success
  1689. 2025-1-18 14:07:46-debug: Run asset db hook engine-extends:afterRefresh success!
  1690. 2025-1-18 14:07:46-debug: Run asset db hook engine-extends:afterRefresh ...
  1691. 2025-1-18 14:07:46-debug: asset-db:refresh-all-database (101ms)
  1692. 2025-1-18 14:07:46-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1693. 2025-1-18 14:09:31-debug: refresh db internal success
  1694. 2025-1-18 14:09:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI\UI_Item.ts background: #aaff85; color: #000; color: #000;
  1695. 2025-1-18 14:09:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\UI_Settings.ts background: #aaff85; color: #000; color: #000;
  1696. 2025-1-18 14:09:31-debug: refresh db assets success
  1697. 2025-1-18 14:09:31-debug: Run asset db hook engine-extends:afterRefresh ...
  1698. 2025-1-18 14:09:31-debug: Run asset db hook engine-extends:afterRefresh success!
  1699. 2025-1-18 14:09:31-debug: asset-db:refresh-all-database (110ms)
  1700. 2025-1-18 14:09:31-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1701. 2025-1-18 14:09:31-debug: asset-db:worker-effect-data-processing (1ms)
  1702. 2025-1-18 14:09:32-debug: Query all assets info in project
  1703. 2025-1-18 14:09:32-debug: init custom config: keepNodeUuid: false, useCache: true
  1704. 2025-1-18 14:09:32-debug: 查询 Asset Bundle start, progress: 0%
  1705. 2025-1-18 14:09:32-debug: // ---- build task 查询 Asset Bundle ----
  1706. 2025-1-18 14:09:32-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
  1707. 2025-1-18 14:09:32-debug: Number of all scenes: 3
  1708. 2025-1-18 14:09:32-debug: Number of other assets: 1135
  1709. 2025-1-18 14:09:32-debug: Number of all scripts: 118
  1710. 2025-1-18 14:09:32-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  1711. 2025-1-18 14:09:32-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  1712. 2025-1-18 14:09:32-debug: // ---- build task 查询 Asset Bundle ----
  1713. 2025-1-18 14:09:32-debug: [Build Memory track]: 查询 Asset Bundle start:218.60MB, end 218.64MB, increase: 42.25KB
  1714. 2025-1-18 14:09:32-debug: 查询 Asset Bundle start, progress: 5%
  1715. 2025-1-18 14:09:32-debug: // ---- build task 查询 Asset Bundle ---- (13ms)
  1716. 2025-1-18 14:09:32-debug: run build task 查询 Asset Bundle success in 13 ms√, progress: 10%
  1717. 2025-1-18 14:09:32-debug: [Build Memory track]: 查询 Asset Bundle start:218.67MB, end 218.91MB, increase: 238.89KB
  1718. 2025-1-18 14:09:32-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1719. 2025-1-18 14:09:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1720. 2025-1-18 14:09:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1721. 2025-1-18 14:09:32-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  1722. 2025-1-18 14:09:32-debug: // ---- build task 填充脚本数据到 settings.json ----
  1723. 2025-1-18 14:09:32-debug: 填充脚本数据到 settings.json start, progress: 12%
  1724. 2025-1-18 14:09:32-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.94MB, end 218.97MB, increase: 31.54KB
  1725. 2025-1-18 14:09:32-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  1726. 2025-1-18 14:09:32-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  1727. 2025-1-18 14:09:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1728. 2025-1-18 14:09:32-debug: [Build Memory track]: 填充脚本数据到 settings.json start:219.00MB, end 219.03MB, increase: 29.47KB
  1729. 2025-1-18 14:09:32-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1730. 2025-1-18 14:09:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  1731. 2025-1-18 14:09:32-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  1732. 2025-1-18 14:09:32-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:219.06MB, end 219.19MB, increase: 130.75KB
  1733. 2025-1-18 14:10:15-debug: Query all assets info in project
  1734. 2025-1-18 14:10:15-debug: init custom config: keepNodeUuid: false, useCache: true
  1735. 2025-1-18 14:10:15-debug: 查询 Asset Bundle start, progress: 0%
  1736. 2025-1-18 14:10:15-debug: // ---- build task 查询 Asset Bundle ----
  1737. 2025-1-18 14:10:15-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
  1738. 2025-1-18 14:10:15-debug: Number of all scenes: 3
  1739. 2025-1-18 14:10:15-debug: Number of all scripts: 118
  1740. 2025-1-18 14:10:15-debug: Number of other assets: 1135
  1741. 2025-1-18 14:10:15-debug: // ---- build task 查询 Asset Bundle ---- (16ms)
  1742. 2025-1-18 14:10:15-debug: run build task 查询 Asset Bundle success in 16 ms√, progress: 5%
  1743. 2025-1-18 14:10:15-debug: // ---- build task 查询 Asset Bundle ----
  1744. 2025-1-18 14:10:15-debug: [Build Memory track]: 查询 Asset Bundle start:219.94MB, end 218.42MB, increase: -1550.88KB
  1745. 2025-1-18 14:10:15-debug: 查询 Asset Bundle start, progress: 5%
  1746. 2025-1-18 14:10:15-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1747. 2025-1-18 14:10:15-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  1748. 2025-1-18 14:10:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1749. 2025-1-18 14:10:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1750. 2025-1-18 14:10:15-debug: [Build Memory track]: 查询 Asset Bundle start:218.45MB, end 218.69MB, increase: 238.61KB
  1751. 2025-1-18 14:10:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1752. 2025-1-18 14:10:15-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1753. 2025-1-18 14:10:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.72MB, end 218.75MB, increase: 29.61KB
  1754. 2025-1-18 14:10:15-debug: // ---- build task 填充脚本数据到 settings.json ----
  1755. 2025-1-18 14:10:15-debug: 填充脚本数据到 settings.json start, progress: 12%
  1756. 2025-1-18 14:10:15-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1757. 2025-1-18 14:10:15-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1758. 2025-1-18 14:10:15-debug: [Build Memory track]: 填充脚本数据到 settings.json start:218.78MB, end 218.81MB, increase: 28.28KB
  1759. 2025-1-18 14:10:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1760. 2025-1-18 14:10:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1761. 2025-1-18 14:10:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (10ms)
  1762. 2025-1-18 14:10:15-debug: run build task 整理部分构建选项内数据到 settings.json success in 10 ms√, progress: 15%
  1763. 2025-1-18 14:10:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.84MB, end 219.18MB, increase: 341.96KB
  1764. 2025-1-18 14:10:27-debug: refresh db internal success
  1765. 2025-1-18 14:10:27-debug: refresh db assets success
  1766. 2025-1-18 14:10:27-debug: Run asset db hook engine-extends:afterRefresh ...
  1767. 2025-1-18 14:10:27-debug: Run asset db hook engine-extends:afterRefresh success!
  1768. 2025-1-18 14:10:27-debug: asset-db:refresh-all-database (140ms)
  1769. 2025-1-18 14:10:27-debug: asset-db:worker-effect-data-processing (2ms)
  1770. 2025-1-18 14:10:27-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1771. 2025-1-18 14:10:44-debug: refresh db internal success
  1772. 2025-1-18 14:10:44-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI\UI_Item.ts background: #aaff85; color: #000; color: #000;
  1773. 2025-1-18 14:10:44-debug: refresh db assets success
  1774. 2025-1-18 14:10:44-debug: Run asset db hook engine-extends:afterRefresh ...
  1775. 2025-1-18 14:10:44-debug: Run asset db hook engine-extends:afterRefresh success!
  1776. 2025-1-18 14:10:44-debug: asset-db:refresh-all-database (109ms)
  1777. 2025-1-18 14:10:44-debug: asset-db:worker-effect-data-processing (1ms)
  1778. 2025-1-18 14:10:44-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1779. 2025-1-18 14:10:45-debug: Query all assets info in project
  1780. 2025-1-18 14:10:45-debug: init custom config: keepNodeUuid: false, useCache: true
  1781. 2025-1-18 14:10:45-debug: 查询 Asset Bundle start, progress: 0%
  1782. 2025-1-18 14:10:45-debug: // ---- build task 查询 Asset Bundle ----
  1783. 2025-1-18 14:10:45-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
  1784. 2025-1-18 14:10:45-debug: Number of all scripts: 118
  1785. 2025-1-18 14:10:45-debug: Number of other assets: 1135
  1786. 2025-1-18 14:10:45-debug: Number of all scenes: 3
  1787. 2025-1-18 14:10:45-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  1788. 2025-1-18 14:10:45-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  1789. 2025-1-18 14:10:45-debug: // ---- build task 查询 Asset Bundle ----
  1790. 2025-1-18 14:10:45-debug: [Build Memory track]: 查询 Asset Bundle start:201.04MB, end 201.10MB, increase: 63.58KB
  1791. 2025-1-18 14:10:45-debug: 查询 Asset Bundle start, progress: 5%
  1792. 2025-1-18 14:10:45-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1793. 2025-1-18 14:10:45-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 10%
  1794. 2025-1-18 14:10:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1795. 2025-1-18 14:10:45-debug: [Build Memory track]: 查询 Asset Bundle start:201.13MB, end 201.37MB, increase: 243.25KB
  1796. 2025-1-18 14:10:45-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1797. 2025-1-18 14:10:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1798. 2025-1-18 14:10:45-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  1799. 2025-1-18 14:10:45-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.40MB, end 201.47MB, increase: 63.92KB
  1800. 2025-1-18 14:10:45-debug: 填充脚本数据到 settings.json start, progress: 12%
  1801. 2025-1-18 14:10:45-debug: // ---- build task 填充脚本数据到 settings.json ----
  1802. 2025-1-18 14:10:45-debug: // ---- build task 填充脚本数据到 settings.json ---- (7ms)
  1803. 2025-1-18 14:10:45-debug: [Build Memory track]: 填充脚本数据到 settings.json start:201.50MB, end 201.53MB, increase: 31.82KB
  1804. 2025-1-18 14:10:45-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1805. 2025-1-18 14:10:45-debug: run build task 填充脚本数据到 settings.json success in 7 ms√, progress: 13%
  1806. 2025-1-18 14:10:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1807. 2025-1-18 14:10:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  1808. 2025-1-18 14:10:45-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  1809. 2025-1-18 14:10:45-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.56MB, end 201.70MB, increase: 136.51KB
  1810. 2025-1-18 14:10:57-debug: refresh db internal success
  1811. 2025-1-18 14:10:57-debug: refresh db assets success
  1812. 2025-1-18 14:10:57-debug: Run asset db hook engine-extends:afterRefresh ...
  1813. 2025-1-18 14:10:57-debug: Run asset db hook engine-extends:afterRefresh success!
  1814. 2025-1-18 14:10:57-debug: asset-db:refresh-all-database (105ms)
  1815. 2025-1-18 14:10:57-debug: asset-db:worker-effect-data-processing (1ms)
  1816. 2025-1-18 14:10:57-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1817. 2025-1-18 14:12:03-debug: refresh db internal success
  1818. 2025-1-18 14:12:03-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  1819. 2025-1-18 14:12:03-debug: refresh db assets success
  1820. 2025-1-18 14:12:03-debug: Run asset db hook engine-extends:afterRefresh ...
  1821. 2025-1-18 14:12:03-debug: Run asset db hook engine-extends:afterRefresh success!
  1822. 2025-1-18 14:12:03-debug: asset-db:refresh-all-database (112ms)
  1823. 2025-1-18 14:12:03-debug: asset-db:worker-effect-data-processing (1ms)
  1824. 2025-1-18 14:12:03-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1825. 2025-1-18 14:12:03-debug: Query all assets info in project
  1826. 2025-1-18 14:12:03-debug: init custom config: keepNodeUuid: false, useCache: true
  1827. 2025-1-18 14:12:03-debug: 查询 Asset Bundle start, progress: 0%
  1828. 2025-1-18 14:12:03-debug: // ---- build task 查询 Asset Bundle ----
  1829. 2025-1-18 14:12:03-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
  1830. 2025-1-18 14:12:03-debug: Number of all scenes: 3
  1831. 2025-1-18 14:12:03-debug: Number of all scripts: 118
  1832. 2025-1-18 14:12:03-debug: Number of other assets: 1135
  1833. 2025-1-18 14:12:03-debug: // ---- build task 查询 Asset Bundle ---- (13ms)
  1834. 2025-1-18 14:12:03-debug: run build task 查询 Asset Bundle success in 13 ms√, progress: 5%
  1835. 2025-1-18 14:12:03-debug: [Build Memory track]: 查询 Asset Bundle start:205.88MB, end 205.95MB, increase: 66.65KB
  1836. 2025-1-18 14:12:03-debug: 查询 Asset Bundle start, progress: 5%
  1837. 2025-1-18 14:12:03-debug: // ---- build task 查询 Asset Bundle ----
  1838. 2025-1-18 14:12:03-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1839. 2025-1-18 14:12:03-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  1840. 2025-1-18 14:12:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1841. 2025-1-18 14:12:03-debug: [Build Memory track]: 查询 Asset Bundle start:205.98MB, end 206.21MB, increase: 239.70KB
  1842. 2025-1-18 14:12:03-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1843. 2025-1-18 14:12:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1844. 2025-1-18 14:12:03-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  1845. 2025-1-18 14:12:03-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.25MB, end 206.27MB, increase: 29.12KB
  1846. 2025-1-18 14:12:03-debug: // ---- build task 填充脚本数据到 settings.json ----
  1847. 2025-1-18 14:12:03-debug: 填充脚本数据到 settings.json start, progress: 12%
  1848. 2025-1-18 14:12:03-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1849. 2025-1-18 14:12:03-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1850. 2025-1-18 14:12:03-debug: [Build Memory track]: 填充脚本数据到 settings.json start:206.31MB, end 206.34MB, increase: 30.93KB
  1851. 2025-1-18 14:12:03-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1852. 2025-1-18 14:12:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1853. 2025-1-18 14:12:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (13ms)
  1854. 2025-1-18 14:12:03-debug: run build task 整理部分构建选项内数据到 settings.json success in 13 ms√, progress: 15%
  1855. 2025-1-18 14:12:03-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.37MB, end 206.52MB, increase: 150.81KB
  1856. 2025-1-18 14:12:27-debug: refresh db internal success
  1857. 2025-1-18 14:12:27-debug: refresh db assets success
  1858. 2025-1-18 14:12:27-debug: Run asset db hook engine-extends:afterRefresh success!
  1859. 2025-1-18 14:12:27-debug: Run asset db hook engine-extends:afterRefresh ...
  1860. 2025-1-18 14:12:27-debug: asset-db:refresh-all-database (103ms)
  1861. 2025-1-18 14:12:27-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1862. 2025-1-18 14:12:27-debug: asset-db:worker-effect-data-processing (1ms)
  1863. 2025-1-18 14:13:15-debug: refresh db internal success
  1864. 2025-1-18 14:13:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  1865. 2025-1-18 14:13:15-debug: refresh db assets success
  1866. 2025-1-18 14:13:15-debug: Run asset db hook engine-extends:afterRefresh ...
  1867. 2025-1-18 14:13:15-debug: Run asset db hook engine-extends:afterRefresh success!
  1868. 2025-1-18 14:13:15-debug: asset-db:refresh-all-database (111ms)
  1869. 2025-1-18 14:13:15-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1870. 2025-1-18 14:13:16-debug: Query all assets info in project
  1871. 2025-1-18 14:13:16-debug: init custom config: keepNodeUuid: false, useCache: true
  1872. 2025-1-18 14:13:16-debug: 查询 Asset Bundle start, progress: 0%
  1873. 2025-1-18 14:13:16-debug: // ---- build task 查询 Asset Bundle ----
  1874. 2025-1-18 14:13:16-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
  1875. 2025-1-18 14:13:16-debug: Number of all scenes: 3
  1876. 2025-1-18 14:13:16-debug: Number of all scripts: 118
  1877. 2025-1-18 14:13:16-debug: Number of other assets: 1135
  1878. 2025-1-18 14:13:16-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  1879. 2025-1-18 14:13:16-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  1880. 2025-1-18 14:13:16-debug: [Build Memory track]: 查询 Asset Bundle start:210.80MB, end 210.86MB, increase: 63.60KB
  1881. 2025-1-18 14:13:16-debug: 查询 Asset Bundle start, progress: 5%
  1882. 2025-1-18 14:13:16-debug: // ---- build task 查询 Asset Bundle ----
  1883. 2025-1-18 14:13:16-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1884. 2025-1-18 14:13:16-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  1885. 2025-1-18 14:13:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1886. 2025-1-18 14:13:16-debug: [Build Memory track]: 查询 Asset Bundle start:210.90MB, end 211.13MB, increase: 241.98KB
  1887. 2025-1-18 14:13:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1888. 2025-1-18 14:13:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (13ms)
  1889. 2025-1-18 14:13:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 13 ms√, progress: 12%
  1890. 2025-1-18 14:13:16-debug: // ---- build task 填充脚本数据到 settings.json ----
  1891. 2025-1-18 14:13:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.17MB, end 211.42MB, increase: 258.84KB
  1892. 2025-1-18 14:13:16-debug: 填充脚本数据到 settings.json start, progress: 12%
  1893. 2025-1-18 14:13:16-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1894. 2025-1-18 14:13:16-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1895. 2025-1-18 14:13:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1896. 2025-1-18 14:13:16-debug: [Build Memory track]: 填充脚本数据到 settings.json start:211.45MB, end 211.48MB, increase: 29.47KB
  1897. 2025-1-18 14:13:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1898. 2025-1-18 14:13:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1899. 2025-1-18 14:13:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1900. 2025-1-18 14:13:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.51MB, end 211.64MB, increase: 130.81KB
  1901. 2025-1-18 14:13:17-debug: Query all assets info in project
  1902. 2025-1-18 14:13:17-debug: init custom config: keepNodeUuid: false, useCache: true
  1903. 2025-1-18 14:13:17-debug: 查询 Asset Bundle start, progress: 0%
  1904. 2025-1-18 14:13:17-debug: // ---- build task 查询 Asset Bundle ----
  1905. 2025-1-18 14:13:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1906. 2025-1-18 14:13:17-debug: Number of all scenes: 3
  1907. 2025-1-18 14:13:17-debug: Number of other assets: 1135
  1908. 2025-1-18 14:13:17-debug: Number of all scripts: 118
  1909. 2025-1-18 14:13:17-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  1910. 2025-1-18 14:13:17-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  1911. 2025-1-18 14:13:17-debug: // ---- build task 查询 Asset Bundle ----
  1912. 2025-1-18 14:13:17-debug: [Build Memory track]: 查询 Asset Bundle start:212.23MB, end 212.22MB, increase: -14.42KB
  1913. 2025-1-18 14:13:17-debug: 查询 Asset Bundle start, progress: 5%
  1914. 2025-1-18 14:13:17-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1915. 2025-1-18 14:13:17-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  1916. 2025-1-18 14:13:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1917. 2025-1-18 14:13:17-debug: [Build Memory track]: 查询 Asset Bundle start:212.25MB, end 212.48MB, increase: 238.76KB
  1918. 2025-1-18 14:13:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1919. 2025-1-18 14:13:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1920. 2025-1-18 14:13:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1921. 2025-1-18 14:13:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.52MB, end 210.80MB, increase: -1756.09KB
  1922. 2025-1-18 14:13:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  1923. 2025-1-18 14:13:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  1924. 2025-1-18 14:13:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.83MB, end 210.85MB, increase: 19.88KB
  1925. 2025-1-18 14:13:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1926. 2025-1-18 14:13:17-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1927. 2025-1-18 14:13:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1928. 2025-1-18 14:13:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1929. 2025-1-18 14:13:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  1930. 2025-1-18 14:13:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.89MB, end 211.03MB, increase: 146.31KB
  1931. 2025-1-18 14:13:25-debug: refresh db internal success
  1932. 2025-1-18 14:13:25-debug: refresh db assets success
  1933. 2025-1-18 14:13:25-debug: Run asset db hook engine-extends:afterRefresh ...
  1934. 2025-1-18 14:13:25-debug: Run asset db hook engine-extends:afterRefresh success!
  1935. 2025-1-18 14:13:25-debug: asset-db:refresh-all-database (97ms)
  1936. 2025-1-18 14:13:25-debug: asset-db:worker-effect-data-processing (1ms)
  1937. 2025-1-18 14:13:25-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1938. 2025-1-18 14:13:31-debug: refresh db internal success
  1939. 2025-1-18 14:13:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  1940. 2025-1-18 14:13:32-debug: refresh db assets success
  1941. 2025-1-18 14:13:32-debug: Run asset db hook engine-extends:afterRefresh ...
  1942. 2025-1-18 14:13:32-debug: Run asset db hook engine-extends:afterRefresh success!
  1943. 2025-1-18 14:13:32-debug: asset-db:refresh-all-database (105ms)
  1944. 2025-1-18 14:13:32-debug: asset-db:worker-effect-data-processing (1ms)
  1945. 2025-1-18 14:13:32-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1946. 2025-1-18 14:13:33-debug: Query all assets info in project
  1947. 2025-1-18 14:13:33-debug: init custom config: keepNodeUuid: false, useCache: true
  1948. 2025-1-18 14:13:33-debug: 查询 Asset Bundle start, progress: 0%
  1949. 2025-1-18 14:13:33-debug: // ---- build task 查询 Asset Bundle ----
  1950. 2025-1-18 14:13:33-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1951. 2025-1-18 14:13:33-debug: Number of all scenes: 3
  1952. 2025-1-18 14:13:33-debug: Number of all scripts: 118
  1953. 2025-1-18 14:13:33-debug: Number of other assets: 1135
  1954. 2025-1-18 14:13:33-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  1955. 2025-1-18 14:13:33-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  1956. 2025-1-18 14:13:33-debug: [Build Memory track]: 查询 Asset Bundle start:216.22MB, end 215.31MB, increase: -927.71KB
  1957. 2025-1-18 14:13:33-debug: 查询 Asset Bundle start, progress: 5%
  1958. 2025-1-18 14:13:33-debug: // ---- build task 查询 Asset Bundle ----
  1959. 2025-1-18 14:13:33-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1960. 2025-1-18 14:13:33-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1961. 2025-1-18 14:13:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1962. 2025-1-18 14:13:33-debug: [Build Memory track]: 查询 Asset Bundle start:215.34MB, end 215.55MB, increase: 211.50KB
  1963. 2025-1-18 14:13:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1964. 2025-1-18 14:13:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1965. 2025-1-18 14:13:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1966. 2025-1-18 14:13:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.58MB, end 215.61MB, increase: 29.09KB
  1967. 2025-1-18 14:13:33-debug: 填充脚本数据到 settings.json start, progress: 12%
  1968. 2025-1-18 14:13:33-debug: // ---- build task 填充脚本数据到 settings.json ----
  1969. 2025-1-18 14:13:33-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1970. 2025-1-18 14:13:33-debug: [Build Memory track]: 填充脚本数据到 settings.json start:215.65MB, end 215.67MB, increase: 29.97KB
  1971. 2025-1-18 14:13:33-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1972. 2025-1-18 14:13:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1973. 2025-1-18 14:13:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1974. 2025-1-18 14:13:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  1975. 2025-1-18 14:13:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  1976. 2025-1-18 14:13:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.71MB, end 215.84MB, increase: 131.79KB
  1977. 2025-1-18 14:13:40-debug: refresh db internal success
  1978. 2025-1-18 14:13:40-debug: refresh db assets success
  1979. 2025-1-18 14:13:40-debug: Run asset db hook engine-extends:afterRefresh success!
  1980. 2025-1-18 14:13:40-debug: Run asset db hook engine-extends:afterRefresh ...
  1981. 2025-1-18 14:13:40-debug: asset-db:refresh-all-database (99ms)
  1982. 2025-1-18 14:13:40-debug: asset-db:worker-effect-data-processing (1ms)
  1983. 2025-1-18 14:13:40-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1984. 2025-1-18 14:13:47-debug: refresh db internal success
  1985. 2025-1-18 14:13:47-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  1986. 2025-1-18 14:13:47-debug: refresh db assets success
  1987. 2025-1-18 14:13:47-debug: Run asset db hook engine-extends:afterRefresh ...
  1988. 2025-1-18 14:13:47-debug: Run asset db hook engine-extends:afterRefresh success!
  1989. 2025-1-18 14:13:47-debug: asset-db:refresh-all-database (115ms)
  1990. 2025-1-18 14:13:47-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1991. 2025-1-18 14:13:47-debug: asset-db:worker-effect-data-processing (1ms)
  1992. 2025-1-18 14:13:48-debug: Query all assets info in project
  1993. 2025-1-18 14:13:48-debug: init custom config: keepNodeUuid: false, useCache: true
  1994. 2025-1-18 14:13:48-debug: 查询 Asset Bundle start, progress: 0%
  1995. 2025-1-18 14:13:48-debug: // ---- build task 查询 Asset Bundle ----
  1996. 2025-1-18 14:13:48-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
  1997. 2025-1-18 14:13:48-debug: Number of all scripts: 118
  1998. 2025-1-18 14:13:48-debug: Number of other assets: 1135
  1999. 2025-1-18 14:13:48-debug: Number of all scenes: 3
  2000. 2025-1-18 14:13:48-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  2001. 2025-1-18 14:13:48-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  2002. 2025-1-18 14:13:48-debug: // ---- build task 查询 Asset Bundle ----
  2003. 2025-1-18 14:13:48-debug: [Build Memory track]: 查询 Asset Bundle start:198.62MB, end 198.71MB, increase: 94.42KB
  2004. 2025-1-18 14:13:48-debug: 查询 Asset Bundle start, progress: 5%
  2005. 2025-1-18 14:13:48-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  2006. 2025-1-18 14:13:48-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  2007. 2025-1-18 14:13:48-debug: [Build Memory track]: 查询 Asset Bundle start:198.74MB, end 198.95MB, increase: 210.31KB
  2008. 2025-1-18 14:13:48-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2009. 2025-1-18 14:13:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2010. 2025-1-18 14:13:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2011. 2025-1-18 14:13:48-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2012. 2025-1-18 14:13:48-debug: 填充脚本数据到 settings.json start, progress: 12%
  2013. 2025-1-18 14:13:48-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:198.98MB, end 199.01MB, increase: 29.04KB
  2014. 2025-1-18 14:13:48-debug: // ---- build task 填充脚本数据到 settings.json ----
  2015. 2025-1-18 14:13:48-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2016. 2025-1-18 14:13:48-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2017. 2025-1-18 14:13:48-debug: [Build Memory track]: 填充脚本数据到 settings.json start:199.04MB, end 199.07MB, increase: 28.30KB
  2018. 2025-1-18 14:13:48-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2019. 2025-1-18 14:13:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2020. 2025-1-18 14:13:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  2021. 2025-1-18 14:13:48-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  2022. 2025-1-18 14:13:48-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.10MB, end 199.24MB, increase: 137.65KB
  2023. 2025-1-18 14:13:49-debug: Query all assets info in project
  2024. 2025-1-18 14:13:49-debug: init custom config: keepNodeUuid: false, useCache: true
  2025. 2025-1-18 14:13:49-debug: 查询 Asset Bundle start, progress: 0%
  2026. 2025-1-18 14:13:49-debug: // ---- build task 查询 Asset Bundle ----
  2027. 2025-1-18 14:13:49-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
  2028. 2025-1-18 14:13:49-debug: Number of all scenes: 3
  2029. 2025-1-18 14:13:49-debug: Number of other assets: 1135
  2030. 2025-1-18 14:13:49-debug: Number of all scripts: 118
  2031. 2025-1-18 14:13:49-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  2032. 2025-1-18 14:13:49-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  2033. 2025-1-18 14:13:49-debug: // ---- build task 查询 Asset Bundle ----
  2034. 2025-1-18 14:13:49-debug: [Build Memory track]: 查询 Asset Bundle start:199.83MB, end 199.96MB, increase: 139.68KB
  2035. 2025-1-18 14:13:49-debug: 查询 Asset Bundle start, progress: 5%
  2036. 2025-1-18 14:13:49-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2037. 2025-1-18 14:13:49-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2038. 2025-1-18 14:13:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2039. 2025-1-18 14:13:49-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2040. 2025-1-18 14:13:49-debug: [Build Memory track]: 查询 Asset Bundle start:200.00MB, end 200.20MB, increase: 212.71KB
  2041. 2025-1-18 14:13:49-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2042. 2025-1-18 14:13:49-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.24MB, end 200.26MB, increase: 19.86KB
  2043. 2025-1-18 14:13:49-debug: 填充脚本数据到 settings.json start, progress: 12%
  2044. 2025-1-18 14:13:49-debug: // ---- build task 填充脚本数据到 settings.json ----
  2045. 2025-1-18 14:13:49-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2046. 2025-1-18 14:13:49-debug: [Build Memory track]: 填充脚本数据到 settings.json start:200.29MB, end 200.32MB, increase: 27.88KB
  2047. 2025-1-18 14:13:49-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2048. 2025-1-18 14:13:49-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2049. 2025-1-18 14:13:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2050. 2025-1-18 14:13:49-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  2051. 2025-1-18 14:13:49-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.35MB, end 200.48MB, increase: 131.63KB
  2052. 2025-1-18 14:13:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  2053. 2025-1-18 14:13:58-debug: refresh db internal success
  2054. 2025-1-18 14:13:58-debug: refresh db assets success
  2055. 2025-1-18 14:13:58-debug: Run asset db hook engine-extends:afterRefresh ...
  2056. 2025-1-18 14:13:58-debug: Run asset db hook engine-extends:afterRefresh success!
  2057. 2025-1-18 14:13:58-debug: asset-db:refresh-all-database (102ms)
  2058. 2025-1-18 14:13:58-debug: asset-db:worker-effect-data-processing (1ms)
  2059. 2025-1-18 14:13:58-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2060. 2025-1-18 14:15:01-debug: refresh db internal success
  2061. 2025-1-18 14:15:01-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2062. 2025-1-18 14:15:01-debug: refresh db assets success
  2063. 2025-1-18 14:15:01-debug: Run asset db hook engine-extends:afterRefresh ...
  2064. 2025-1-18 14:15:01-debug: Run asset db hook engine-extends:afterRefresh success!
  2065. 2025-1-18 14:15:01-debug: asset-db:refresh-all-database (106ms)
  2066. 2025-1-18 14:15:02-debug: Query all assets info in project
  2067. 2025-1-18 14:15:02-debug: init custom config: keepNodeUuid: false, useCache: true
  2068. 2025-1-18 14:15:02-debug: 查询 Asset Bundle start, progress: 0%
  2069. 2025-1-18 14:15:02-debug: // ---- build task 查询 Asset Bundle ----
  2070. 2025-1-18 14:15:02-debug: Number of all scripts: 118
  2071. 2025-1-18 14:15:02-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
  2072. 2025-1-18 14:15:02-debug: Number of other assets: 1135
  2073. 2025-1-18 14:15:02-debug: Number of all scenes: 3
  2074. 2025-1-18 14:15:02-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  2075. 2025-1-18 14:15:02-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  2076. 2025-1-18 14:15:02-debug: [Build Memory track]: 查询 Asset Bundle start:203.47MB, end 203.52MB, increase: 50.90KB
  2077. 2025-1-18 14:15:02-debug: // ---- build task 查询 Asset Bundle ----
  2078. 2025-1-18 14:15:02-debug: 查询 Asset Bundle start, progress: 5%
  2079. 2025-1-18 14:15:02-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2080. 2025-1-18 14:15:02-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2081. 2025-1-18 14:15:02-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2082. 2025-1-18 14:15:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2083. 2025-1-18 14:15:02-debug: [Build Memory track]: 查询 Asset Bundle start:203.55MB, end 203.76MB, increase: 212.02KB
  2084. 2025-1-18 14:15:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2085. 2025-1-18 14:15:02-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2086. 2025-1-18 14:15:02-debug: // ---- build task 填充脚本数据到 settings.json ----
  2087. 2025-1-18 14:15:02-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:203.79MB, end 203.82MB, increase: 28.98KB
  2088. 2025-1-18 14:15:02-debug: 填充脚本数据到 settings.json start, progress: 12%
  2089. 2025-1-18 14:15:02-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2090. 2025-1-18 14:15:02-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2091. 2025-1-18 14:15:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2092. 2025-1-18 14:15:02-debug: [Build Memory track]: 填充脚本数据到 settings.json start:203.85MB, end 203.88MB, increase: 32.86KB
  2093. 2025-1-18 14:15:02-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2094. 2025-1-18 14:15:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  2095. 2025-1-18 14:15:02-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  2096. 2025-1-18 14:15:02-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:203.92MB, end 204.06MB, increase: 145.66KB
  2097. 2025-1-18 14:15:02-debug: Query all assets info in project
  2098. 2025-1-18 14:15:02-debug: init custom config: keepNodeUuid: false, useCache: true
  2099. 2025-1-18 14:15:02-debug: 查询 Asset Bundle start, progress: 0%
  2100. 2025-1-18 14:15:02-debug: // ---- build task 查询 Asset Bundle ----
  2101. 2025-1-18 14:15:02-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
  2102. 2025-1-18 14:15:02-debug: Number of all scenes: 3
  2103. 2025-1-18 14:15:02-debug: Number of all scripts: 118
  2104. 2025-1-18 14:15:02-debug: Number of other assets: 1135
  2105. 2025-1-18 14:15:02-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  2106. 2025-1-18 14:15:02-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  2107. 2025-1-18 14:15:02-debug: // ---- build task 查询 Asset Bundle ----
  2108. 2025-1-18 14:15:02-debug: [Build Memory track]: 查询 Asset Bundle start:204.80MB, end 204.80MB, increase: -2.51KB
  2109. 2025-1-18 14:15:02-debug: 查询 Asset Bundle start, progress: 5%
  2110. 2025-1-18 14:15:02-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  2111. 2025-1-18 14:15:02-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  2112. 2025-1-18 14:15:02-debug: [Build Memory track]: 查询 Asset Bundle start:204.83MB, end 205.04MB, increase: 211.12KB
  2113. 2025-1-18 14:15:02-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2114. 2025-1-18 14:15:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2115. 2025-1-18 14:15:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2116. 2025-1-18 14:15:02-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  2117. 2025-1-18 14:15:02-debug: // ---- build task 填充脚本数据到 settings.json ----
  2118. 2025-1-18 14:15:02-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.07MB, end 205.10MB, increase: 31.11KB
  2119. 2025-1-18 14:15:02-debug: 填充脚本数据到 settings.json start, progress: 12%
  2120. 2025-1-18 14:15:02-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2121. 2025-1-18 14:15:02-debug: [Build Memory track]: 填充脚本数据到 settings.json start:205.14MB, end 205.15MB, increase: 18.85KB
  2122. 2025-1-18 14:15:02-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2123. 2025-1-18 14:15:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2124. 2025-1-18 14:15:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  2125. 2025-1-18 14:15:02-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  2126. 2025-1-18 14:15:02-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.19MB, end 203.56MB, increase: -1666.68KB
  2127. 2025-1-18 14:15:25-debug: refresh db internal success
  2128. 2025-1-18 14:15:25-debug: refresh db assets success
  2129. 2025-1-18 14:15:25-debug: Run asset db hook engine-extends:afterRefresh ...
  2130. 2025-1-18 14:15:25-debug: Run asset db hook engine-extends:afterRefresh success!
  2131. 2025-1-18 14:15:25-debug: asset-db:refresh-all-database (103ms)
  2132. 2025-1-18 14:15:25-debug: asset-db:worker-effect-data-processing (1ms)
  2133. 2025-1-18 14:15:25-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2134. 2025-1-18 14:15:41-debug: refresh db internal success
  2135. 2025-1-18 14:15:41-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2136. 2025-1-18 14:15:41-debug: refresh db assets success
  2137. 2025-1-18 14:15:41-debug: Run asset db hook engine-extends:afterRefresh success!
  2138. 2025-1-18 14:15:41-debug: Run asset db hook engine-extends:afterRefresh ...
  2139. 2025-1-18 14:15:41-debug: asset-db:refresh-all-database (110ms)
  2140. 2025-1-18 14:15:41-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2141. 2025-1-18 14:15:42-debug: Query all assets info in project
  2142. 2025-1-18 14:15:42-debug: init custom config: keepNodeUuid: false, useCache: true
  2143. 2025-1-18 14:15:42-debug: 查询 Asset Bundle start, progress: 0%
  2144. 2025-1-18 14:15:42-debug: // ---- build task 查询 Asset Bundle ----
  2145. 2025-1-18 14:15:42-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
  2146. 2025-1-18 14:15:42-debug: Number of all scenes: 3
  2147. 2025-1-18 14:15:42-debug: Number of all scripts: 118
  2148. 2025-1-18 14:15:42-debug: Number of other assets: 1135
  2149. 2025-1-18 14:15:42-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2150. 2025-1-18 14:15:42-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2151. 2025-1-18 14:15:42-debug: // ---- build task 查询 Asset Bundle ----
  2152. 2025-1-18 14:15:42-debug: [Build Memory track]: 查询 Asset Bundle start:210.74MB, end 209.58MB, increase: -1188.83KB
  2153. 2025-1-18 14:15:42-debug: 查询 Asset Bundle start, progress: 5%
  2154. 2025-1-18 14:15:42-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2155. 2025-1-18 14:15:42-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2156. 2025-1-18 14:15:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2157. 2025-1-18 14:15:42-debug: [Build Memory track]: 查询 Asset Bundle start:209.61MB, end 209.81MB, increase: 210.38KB
  2158. 2025-1-18 14:15:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2159. 2025-1-18 14:15:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2160. 2025-1-18 14:15:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.85MB, end 209.87MB, increase: 29.78KB
  2161. 2025-1-18 14:15:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2162. 2025-1-18 14:15:42-debug: 填充脚本数据到 settings.json start, progress: 12%
  2163. 2025-1-18 14:15:42-debug: // ---- build task 填充脚本数据到 settings.json ----
  2164. 2025-1-18 14:15:42-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2165. 2025-1-18 14:15:42-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2166. 2025-1-18 14:15:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2167. 2025-1-18 14:15:42-debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.91MB, end 209.93MB, increase: 27.45KB
  2168. 2025-1-18 14:15:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2169. 2025-1-18 14:15:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2170. 2025-1-18 14:15:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2171. 2025-1-18 14:15:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.96MB, end 208.31MB, increase: -1692.41KB
  2172. 2025-1-18 14:16:17-debug: refresh db internal success
  2173. 2025-1-18 14:16:17-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2174. 2025-1-18 14:16:17-debug: refresh db assets success
  2175. 2025-1-18 14:16:17-debug: Run asset db hook engine-extends:afterRefresh ...
  2176. 2025-1-18 14:16:17-debug: Run asset db hook engine-extends:afterRefresh success!
  2177. 2025-1-18 14:16:17-debug: asset-db:refresh-all-database (105ms)
  2178. 2025-1-18 14:16:17-debug: asset-db:worker-effect-data-processing (1ms)
  2179. 2025-1-18 14:16:17-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2180. 2025-1-18 14:16:18-debug: Query all assets info in project
  2181. 2025-1-18 14:16:18-debug: init custom config: keepNodeUuid: false, useCache: true
  2182. 2025-1-18 14:16:18-debug: 查询 Asset Bundle start, progress: 0%
  2183. 2025-1-18 14:16:18-debug: // ---- build task 查询 Asset Bundle ----
  2184. 2025-1-18 14:16:18-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
  2185. 2025-1-18 14:16:18-debug: Number of all scenes: 3
  2186. 2025-1-18 14:16:18-debug: Number of all scripts: 118
  2187. 2025-1-18 14:16:18-debug: Number of other assets: 1135
  2188. 2025-1-18 14:16:18-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  2189. 2025-1-18 14:16:18-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  2190. 2025-1-18 14:16:18-debug: [Build Memory track]: 查询 Asset Bundle start:210.61MB, end 210.59MB, increase: -17.25KB
  2191. 2025-1-18 14:16:18-debug: 查询 Asset Bundle start, progress: 5%
  2192. 2025-1-18 14:16:18-debug: // ---- build task 查询 Asset Bundle ----
  2193. 2025-1-18 14:16:18-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2194. 2025-1-18 14:16:18-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  2195. 2025-1-18 14:16:18-debug: [Build Memory track]: 查询 Asset Bundle start:210.63MB, end 210.84MB, increase: 215.88KB
  2196. 2025-1-18 14:16:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2197. 2025-1-18 14:16:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2198. 2025-1-18 14:16:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2199. 2025-1-18 14:16:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.87MB, end 210.90MB, increase: 28.55KB
  2200. 2025-1-18 14:16:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  2201. 2025-1-18 14:16:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  2202. 2025-1-18 14:16:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2203. 2025-1-18 14:16:18-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2204. 2025-1-18 14:16:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.93MB, end 210.95MB, increase: 19.42KB
  2205. 2025-1-18 14:16:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2206. 2025-1-18 14:16:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2207. 2025-1-18 14:16:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (9ms)
  2208. 2025-1-18 14:16:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 9 ms√, progress: 15%
  2209. 2025-1-18 14:16:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.98MB, end 211.11MB, increase: 131.41KB
  2210. 2025-1-18 14:16:18-debug: Query all assets info in project
  2211. 2025-1-18 14:16:18-debug: init custom config: keepNodeUuid: false, useCache: true
  2212. 2025-1-18 14:16:18-debug: 查询 Asset Bundle start, progress: 0%
  2213. 2025-1-18 14:16:18-debug: // ---- build task 查询 Asset Bundle ----
  2214. 2025-1-18 14:16:18-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
  2215. 2025-1-18 14:16:18-debug: Number of all scenes: 3
  2216. 2025-1-18 14:16:18-debug: Number of other assets: 1135
  2217. 2025-1-18 14:16:18-debug: Number of all scripts: 118
  2218. 2025-1-18 14:16:18-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  2219. 2025-1-18 14:16:18-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  2220. 2025-1-18 14:16:18-debug: 查询 Asset Bundle start, progress: 5%
  2221. 2025-1-18 14:16:18-debug: [Build Memory track]: 查询 Asset Bundle start:211.67MB, end 211.76MB, increase: 88.89KB
  2222. 2025-1-18 14:16:18-debug: // ---- build task 查询 Asset Bundle ----
  2223. 2025-1-18 14:16:18-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  2224. 2025-1-18 14:16:18-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  2225. 2025-1-18 14:16:18-debug: [Build Memory track]: 查询 Asset Bundle start:211.79MB, end 211.99MB, increase: 209.29KB
  2226. 2025-1-18 14:16:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2227. 2025-1-18 14:16:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2228. 2025-1-18 14:16:18-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2229. 2025-1-18 14:16:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.03MB, end 212.04MB, increase: 17.86KB
  2230. 2025-1-18 14:16:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  2231. 2025-1-18 14:16:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  2232. 2025-1-18 14:16:18-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2233. 2025-1-18 14:16:18-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2234. 2025-1-18 14:16:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2235. 2025-1-18 14:16:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:212.08MB, end 212.10MB, increase: 29.29KB
  2236. 2025-1-18 14:16:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2237. 2025-1-18 14:16:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2238. 2025-1-18 14:16:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2239. 2025-1-18 14:16:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.14MB, end 212.26MB, increase: 129.60KB
  2240. 2025-1-18 14:16:38-debug: refresh db internal success
  2241. 2025-1-18 14:16:38-debug: refresh db assets success
  2242. 2025-1-18 14:16:38-debug: Run asset db hook engine-extends:afterRefresh success!
  2243. 2025-1-18 14:16:38-debug: Run asset db hook engine-extends:afterRefresh ...
  2244. 2025-1-18 14:16:38-debug: asset-db:refresh-all-database (99ms)
  2245. 2025-1-18 14:16:38-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2246. 2025-1-18 14:16:59-debug: refresh db internal success
  2247. 2025-1-18 14:16:59-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2248. 2025-1-18 14:17:00-debug: refresh db assets success
  2249. 2025-1-18 14:17:00-debug: Run asset db hook engine-extends:afterRefresh success!
  2250. 2025-1-18 14:17:00-debug: Run asset db hook engine-extends:afterRefresh ...
  2251. 2025-1-18 14:17:00-debug: asset-db:refresh-all-database (293ms)
  2252. 2025-1-18 14:17:00-debug: asset-db:worker-effect-data-processing (1ms)
  2253. 2025-1-18 14:17:00-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2254. 2025-1-18 14:17:00-debug: Query all assets info in project
  2255. 2025-1-18 14:17:00-debug: init custom config: keepNodeUuid: false, useCache: true
  2256. 2025-1-18 14:17:00-debug: 查询 Asset Bundle start, progress: 0%
  2257. 2025-1-18 14:17:00-debug: // ---- build task 查询 Asset Bundle ----
  2258. 2025-1-18 14:17:00-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
  2259. 2025-1-18 14:17:00-debug: Number of all scripts: 118
  2260. 2025-1-18 14:17:00-debug: Number of other assets: 1135
  2261. 2025-1-18 14:17:00-debug: Number of all scenes: 3
  2262. 2025-1-18 14:17:00-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  2263. 2025-1-18 14:17:00-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  2264. 2025-1-18 14:17:00-debug: // ---- build task 查询 Asset Bundle ----
  2265. 2025-1-18 14:17:00-debug: [Build Memory track]: 查询 Asset Bundle start:217.41MB, end 216.53MB, increase: -906.86KB
  2266. 2025-1-18 14:17:00-debug: 查询 Asset Bundle start, progress: 5%
  2267. 2025-1-18 14:17:00-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2268. 2025-1-18 14:17:00-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  2269. 2025-1-18 14:17:00-debug: [Build Memory track]: 查询 Asset Bundle start:216.56MB, end 216.77MB, increase: 210.46KB
  2270. 2025-1-18 14:17:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2271. 2025-1-18 14:17:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2272. 2025-1-18 14:17:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  2273. 2025-1-18 14:17:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.80MB, end 216.83MB, increase: 27.14KB
  2274. 2025-1-18 14:17:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 12%
  2275. 2025-1-18 14:17:00-debug: 填充脚本数据到 settings.json start, progress: 12%
  2276. 2025-1-18 14:17:00-debug: // ---- build task 填充脚本数据到 settings.json ----
  2277. 2025-1-18 14:17:00-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  2278. 2025-1-18 14:17:00-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  2279. 2025-1-18 14:17:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2280. 2025-1-18 14:17:00-debug: [Build Memory track]: 填充脚本数据到 settings.json start:216.86MB, end 216.89MB, increase: 31.11KB
  2281. 2025-1-18 14:17:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2282. 2025-1-18 14:17:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  2283. 2025-1-18 14:17:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  2284. 2025-1-18 14:17:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.92MB, end 215.36MB, increase: -1592.15KB
  2285. 2025-1-18 14:17:01-debug: Query all assets info in project
  2286. 2025-1-18 14:17:01-debug: init custom config: keepNodeUuid: false, useCache: true
  2287. 2025-1-18 14:17:01-debug: 查询 Asset Bundle start, progress: 0%
  2288. 2025-1-18 14:17:01-debug: // ---- build task 查询 Asset Bundle ----
  2289. 2025-1-18 14:17:01-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
  2290. 2025-1-18 14:17:01-debug: Number of all scripts: 118
  2291. 2025-1-18 14:17:01-debug: Number of other assets: 1135
  2292. 2025-1-18 14:17:01-debug: Number of all scenes: 3
  2293. 2025-1-18 14:17:01-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  2294. 2025-1-18 14:17:01-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  2295. 2025-1-18 14:17:01-debug: [Build Memory track]: 查询 Asset Bundle start:216.43MB, end 216.52MB, increase: 91.75KB
  2296. 2025-1-18 14:17:01-debug: // ---- build task 查询 Asset Bundle ----
  2297. 2025-1-18 14:17:01-debug: 查询 Asset Bundle start, progress: 5%
  2298. 2025-1-18 14:17:01-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2299. 2025-1-18 14:17:01-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2300. 2025-1-18 14:17:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2301. 2025-1-18 14:17:01-debug: [Build Memory track]: 查询 Asset Bundle start:216.56MB, end 216.76MB, increase: 210.54KB
  2302. 2025-1-18 14:17:01-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2303. 2025-1-18 14:17:01-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.79MB, end 216.81MB, increase: 17.86KB
  2304. 2025-1-18 14:17:01-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2305. 2025-1-18 14:17:01-debug: // ---- build task 填充脚本数据到 settings.json ----
  2306. 2025-1-18 14:17:01-debug: 填充脚本数据到 settings.json start, progress: 12%
  2307. 2025-1-18 14:17:01-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2308. 2025-1-18 14:17:01-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2309. 2025-1-18 14:17:01-debug: [Build Memory track]: 填充脚本数据到 settings.json start:216.84MB, end 216.87MB, increase: 29.35KB
  2310. 2025-1-18 14:17:01-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2311. 2025-1-18 14:17:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2312. 2025-1-18 14:17:01-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  2313. 2025-1-18 14:17:01-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.90MB, end 217.04MB, increase: 142.33KB
  2314. 2025-1-18 14:17:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  2315. 2025-1-18 14:17:18-debug: refresh db internal success
  2316. 2025-1-18 14:17:18-debug: refresh db assets success
  2317. 2025-1-18 14:17:18-debug: Run asset db hook engine-extends:afterRefresh ...
  2318. 2025-1-18 14:17:18-debug: Run asset db hook engine-extends:afterRefresh success!
  2319. 2025-1-18 14:17:18-debug: asset-db:refresh-all-database (101ms)
  2320. 2025-1-18 14:18:24-debug: refresh db internal success
  2321. 2025-1-18 14:18:24-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2322. 2025-1-18 14:18:24-debug: refresh db assets success
  2323. 2025-1-18 14:18:24-debug: Run asset db hook engine-extends:afterRefresh ...
  2324. 2025-1-18 14:18:24-debug: Run asset db hook engine-extends:afterRefresh success!
  2325. 2025-1-18 14:18:24-debug: asset-db:refresh-all-database (142ms)
  2326. 2025-1-18 14:18:24-debug: asset-db:worker-effect-data-processing (1ms)
  2327. 2025-1-18 14:18:24-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2328. 2025-1-18 14:18:25-debug: Query all assets info in project
  2329. 2025-1-18 14:18:25-debug: init custom config: keepNodeUuid: false, useCache: true
  2330. 2025-1-18 14:18:25-debug: 查询 Asset Bundle start, progress: 0%
  2331. 2025-1-18 14:18:25-debug: // ---- build task 查询 Asset Bundle ----
  2332. 2025-1-18 14:18:25-debug: Number of all scenes: 3
  2333. 2025-1-18 14:18:25-debug: Number of all scripts: 118
  2334. 2025-1-18 14:18:25-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
  2335. 2025-1-18 14:18:25-debug: Number of other assets: 1135
  2336. 2025-1-18 14:18:25-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2337. 2025-1-18 14:18:25-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2338. 2025-1-18 14:18:25-debug: [Build Memory track]: 查询 Asset Bundle start:199.15MB, end 199.19MB, increase: 35.98KB
  2339. 2025-1-18 14:18:25-debug: 查询 Asset Bundle start, progress: 5%
  2340. 2025-1-18 14:18:25-debug: // ---- build task 查询 Asset Bundle ----
  2341. 2025-1-18 14:18:25-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  2342. 2025-1-18 14:18:25-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  2343. 2025-1-18 14:18:25-debug: [Build Memory track]: 查询 Asset Bundle start:199.22MB, end 199.42MB, increase: 209.68KB
  2344. 2025-1-18 14:18:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2345. 2025-1-18 14:18:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2346. 2025-1-18 14:18:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  2347. 2025-1-18 14:18:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.46MB, end 199.48MB, increase: 27.11KB
  2348. 2025-1-18 14:18:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 12%
  2349. 2025-1-18 14:18:25-debug: // ---- build task 填充脚本数据到 settings.json ----
  2350. 2025-1-18 14:18:25-debug: 填充脚本数据到 settings.json start, progress: 12%
  2351. 2025-1-18 14:18:25-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2352. 2025-1-18 14:18:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2353. 2025-1-18 14:18:25-debug: [Build Memory track]: 填充脚本数据到 settings.json start:199.51MB, end 199.54MB, increase: 27.06KB
  2354. 2025-1-18 14:18:25-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2355. 2025-1-18 14:18:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2356. 2025-1-18 14:18:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  2357. 2025-1-18 14:18:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  2358. 2025-1-18 14:18:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.57MB, end 199.71MB, increase: 138.76KB
  2359. 2025-1-18 14:18:25-debug: Query all assets info in project
  2360. 2025-1-18 14:18:25-debug: init custom config: keepNodeUuid: false, useCache: true
  2361. 2025-1-18 14:18:25-debug: 查询 Asset Bundle start, progress: 0%
  2362. 2025-1-18 14:18:25-debug: // ---- build task 查询 Asset Bundle ----
  2363. 2025-1-18 14:18:25-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
  2364. 2025-1-18 14:18:25-debug: Number of all scenes: 3
  2365. 2025-1-18 14:18:25-debug: Number of all scripts: 118
  2366. 2025-1-18 14:18:25-debug: Number of other assets: 1135
  2367. 2025-1-18 14:18:25-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  2368. 2025-1-18 14:18:25-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  2369. 2025-1-18 14:18:25-debug: 查询 Asset Bundle start, progress: 5%
  2370. 2025-1-18 14:18:25-debug: // ---- build task 查询 Asset Bundle ----
  2371. 2025-1-18 14:18:25-debug: [Build Memory track]: 查询 Asset Bundle start:200.26MB, end 200.32MB, increase: 58.40KB
  2372. 2025-1-18 14:18:25-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2373. 2025-1-18 14:18:25-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2374. 2025-1-18 14:18:25-debug: [Build Memory track]: 查询 Asset Bundle start:200.35MB, end 200.55MB, increase: 209.25KB
  2375. 2025-1-18 14:18:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2376. 2025-1-18 14:18:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2377. 2025-1-18 14:18:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2378. 2025-1-18 14:18:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2379. 2025-1-18 14:18:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.58MB, end 200.61MB, increase: 31.12KB
  2380. 2025-1-18 14:18:25-debug: 填充脚本数据到 settings.json start, progress: 12%
  2381. 2025-1-18 14:18:25-debug: // ---- build task 填充脚本数据到 settings.json ----
  2382. 2025-1-18 14:18:25-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2383. 2025-1-18 14:18:25-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2384. 2025-1-18 14:18:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2385. 2025-1-18 14:18:25-debug: [Build Memory track]: 填充脚本数据到 settings.json start:200.65MB, end 200.68MB, increase: 30.04KB
  2386. 2025-1-18 14:18:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2387. 2025-1-18 14:18:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2388. 2025-1-18 14:18:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2389. 2025-1-18 14:18:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.71MB, end 200.85MB, increase: 143.71KB
  2390. 2025-1-18 14:19:24-debug: refresh db internal success
  2391. 2025-1-18 14:19:24-debug: refresh db assets success
  2392. 2025-1-18 14:19:24-debug: Run asset db hook engine-extends:afterRefresh success!
  2393. 2025-1-18 14:19:24-debug: Run asset db hook engine-extends:afterRefresh ...
  2394. 2025-1-18 14:19:24-debug: asset-db:refresh-all-database (105ms)
  2395. 2025-1-18 14:19:24-debug: asset-db:worker-effect-data-processing (1ms)
  2396. 2025-1-18 14:19:24-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2397. 2025-1-18 14:20:23-debug: refresh db internal success
  2398. 2025-1-18 14:20:23-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI\UI_Item.ts background: #aaff85; color: #000; color: #000;
  2399. 2025-1-18 14:20:23-debug: refresh db assets success
  2400. 2025-1-18 14:20:23-debug: Run asset db hook engine-extends:afterRefresh ...
  2401. 2025-1-18 14:20:23-debug: Run asset db hook engine-extends:afterRefresh success!
  2402. 2025-1-18 14:20:23-debug: asset-db:refresh-all-database (104ms)
  2403. 2025-1-18 14:20:24-debug: Query all assets info in project
  2404. 2025-1-18 14:20:24-debug: init custom config: keepNodeUuid: false, useCache: true
  2405. 2025-1-18 14:20:24-debug: 查询 Asset Bundle start, progress: 0%
  2406. 2025-1-18 14:20:24-debug: // ---- build task 查询 Asset Bundle ----
  2407. 2025-1-18 14:20:24-debug: Number of all scenes: 3
  2408. 2025-1-18 14:20:24-debug: Number of all scripts: 118
  2409. 2025-1-18 14:20: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
  2410. 2025-1-18 14:20:24-debug: Number of other assets: 1135
  2411. 2025-1-18 14:20:24-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2412. 2025-1-18 14:20:24-debug: [Build Memory track]: 查询 Asset Bundle start:205.54MB, end 204.65MB, increase: -909.61KB
  2413. 2025-1-18 14:20:24-debug: 查询 Asset Bundle start, progress: 5%
  2414. 2025-1-18 14:20:24-debug: // ---- build task 查询 Asset Bundle ----
  2415. 2025-1-18 14:20:24-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2416. 2025-1-18 14:20:24-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  2417. 2025-1-18 14:20:24-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  2418. 2025-1-18 14:20:24-debug: [Build Memory track]: 查询 Asset Bundle start:204.68MB, end 204.89MB, increase: 210.82KB
  2419. 2025-1-18 14:20:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2420. 2025-1-18 14:20:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2421. 2025-1-18 14:20:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2422. 2025-1-18 14:20:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.92MB, end 204.95MB, increase: 30.08KB
  2423. 2025-1-18 14:20:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2424. 2025-1-18 14:20:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  2425. 2025-1-18 14:20:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  2426. 2025-1-18 14:20:24-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  2427. 2025-1-18 14:20:24-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  2428. 2025-1-18 14:20:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2429. 2025-1-18 14:20:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:204.98MB, end 205.01MB, increase: 27.00KB
  2430. 2025-1-18 14:20:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2431. 2025-1-18 14:20:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  2432. 2025-1-18 14:20:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  2433. 2025-1-18 14:20:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.04MB, end 203.53MB, increase: -1551.65KB
  2434. 2025-1-18 14:20:24-debug: Query all assets info in project
  2435. 2025-1-18 14:20:24-debug: init custom config: keepNodeUuid: false, useCache: true
  2436. 2025-1-18 14:20:24-debug: 查询 Asset Bundle start, progress: 0%
  2437. 2025-1-18 14:20:24-debug: // ---- build task 查询 Asset Bundle ----
  2438. 2025-1-18 14:20: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
  2439. 2025-1-18 14:20:24-debug: Number of all scenes: 3
  2440. 2025-1-18 14:20:24-debug: Number of other assets: 1135
  2441. 2025-1-18 14:20:24-debug: Number of all scripts: 118
  2442. 2025-1-18 14:20:24-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  2443. 2025-1-18 14:20:24-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  2444. 2025-1-18 14:20:24-debug: [Build Memory track]: 查询 Asset Bundle start:204.11MB, end 204.16MB, increase: 58.37KB
  2445. 2025-1-18 14:20:24-debug: 查询 Asset Bundle start, progress: 5%
  2446. 2025-1-18 14:20:24-debug: // ---- build task 查询 Asset Bundle ----
  2447. 2025-1-18 14:20:24-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  2448. 2025-1-18 14:20:24-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  2449. 2025-1-18 14:20:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2450. 2025-1-18 14:20:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2451. 2025-1-18 14:20:24-debug: [Build Memory track]: 查询 Asset Bundle start:204.20MB, end 204.40MB, increase: 210.45KB
  2452. 2025-1-18 14:20:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2453. 2025-1-18 14:20:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2454. 2025-1-18 14:20:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  2455. 2025-1-18 14:20:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.43MB, end 204.46MB, increase: 28.55KB
  2456. 2025-1-18 14:20:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  2457. 2025-1-18 14:20:24-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2458. 2025-1-18 14:20:24-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2459. 2025-1-18 14:20:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2460. 2025-1-18 14:20:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:204.49MB, end 204.52MB, increase: 29.75KB
  2461. 2025-1-18 14:20:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2462. 2025-1-18 14:20:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  2463. 2025-1-18 14:20:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  2464. 2025-1-18 14:20:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.55MB, end 204.70MB, increase: 147.01KB
  2465. 2025-1-18 14:20:52-debug: refresh db internal success
  2466. 2025-1-18 14:20:52-debug: refresh db assets success
  2467. 2025-1-18 14:20:52-debug: Run asset db hook engine-extends:afterRefresh ...
  2468. 2025-1-18 14:20:52-debug: Run asset db hook engine-extends:afterRefresh success!
  2469. 2025-1-18 14:20:52-debug: asset-db:refresh-all-database (106ms)
  2470. 2025-1-18 14:20:52-debug: asset-db:worker-effect-data-processing (2ms)
  2471. 2025-1-18 14:20:52-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2472. 2025-1-18 14:21:16-debug: refresh db internal success
  2473. 2025-1-18 14:21:16-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI\UI_Item.ts background: #aaff85; color: #000; color: #000;
  2474. 2025-1-18 14:21:16-debug: refresh db assets success
  2475. 2025-1-18 14:21:16-debug: Run asset db hook engine-extends:afterRefresh ...
  2476. 2025-1-18 14:21:16-debug: Run asset db hook engine-extends:afterRefresh success!
  2477. 2025-1-18 14:21:16-debug: asset-db:refresh-all-database (106ms)
  2478. 2025-1-18 14:21:16-debug: asset-db:worker-effect-data-processing (2ms)
  2479. 2025-1-18 14:21:16-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2480. 2025-1-18 14:21:17-debug: Query all assets info in project
  2481. 2025-1-18 14:21:17-debug: init custom config: keepNodeUuid: false, useCache: true
  2482. 2025-1-18 14:21:17-debug: 查询 Asset Bundle start, progress: 0%
  2483. 2025-1-18 14:21:17-debug: // ---- build task 查询 Asset Bundle ----
  2484. 2025-1-18 14:21:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2485. 2025-1-18 14:21:17-debug: Number of all scripts: 118
  2486. 2025-1-18 14:21:17-debug: Number of other assets: 1135
  2487. 2025-1-18 14:21:17-debug: Number of all scenes: 3
  2488. 2025-1-18 14:21:17-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  2489. 2025-1-18 14:21:17-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  2490. 2025-1-18 14:21:17-debug: // ---- build task 查询 Asset Bundle ----
  2491. 2025-1-18 14:21:17-debug: [Build Memory track]: 查询 Asset Bundle start:207.83MB, end 207.83MB, increase: 1.83KB
  2492. 2025-1-18 14:21:17-debug: 查询 Asset Bundle start, progress: 5%
  2493. 2025-1-18 14:21:17-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2494. 2025-1-18 14:21:17-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2495. 2025-1-18 14:21:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2496. 2025-1-18 14:21:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2497. 2025-1-18 14:21:17-debug: [Build Memory track]: 查询 Asset Bundle start:207.87MB, end 208.07MB, increase: 212.38KB
  2498. 2025-1-18 14:21:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2499. 2025-1-18 14:21:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2500. 2025-1-18 14:21:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  2501. 2025-1-18 14:21:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:208.10MB, end 208.13MB, increase: 28.57KB
  2502. 2025-1-18 14:21:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  2503. 2025-1-18 14:21:17-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  2504. 2025-1-18 14:21:17-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  2505. 2025-1-18 14:21:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2506. 2025-1-18 14:21:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:208.16MB, end 208.20MB, increase: 34.73KB
  2507. 2025-1-18 14:21:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2508. 2025-1-18 14:21:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  2509. 2025-1-18 14:21:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:208.23MB, end 208.36MB, increase: 129.69KB
  2510. 2025-1-18 14:21:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  2511. 2025-1-18 14:21:56-debug: refresh db internal success
  2512. 2025-1-18 14:21:56-debug: refresh db assets success
  2513. 2025-1-18 14:21:56-debug: Run asset db hook engine-extends:afterRefresh ...
  2514. 2025-1-18 14:21:56-debug: Run asset db hook engine-extends:afterRefresh success!
  2515. 2025-1-18 14:21:56-debug: asset-db:refresh-all-database (100ms)
  2516. 2025-1-18 14:26:41-debug: refresh db internal success
  2517. 2025-1-18 14:26:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign_Reward.ts background: #aaff85; color: #000; color: #000;
  2518. 2025-1-18 14:26:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  2519. 2025-1-18 14:26:42-debug: refresh db assets success
  2520. 2025-1-18 14:26:42-debug: Run asset db hook engine-extends:afterRefresh ...
  2521. 2025-1-18 14:26:42-debug: Run asset db hook engine-extends:afterRefresh success!
  2522. 2025-1-18 14:26:42-debug: asset-db:refresh-all-database (110ms)
  2523. 2025-1-18 14:26:42-debug: asset-db:worker-effect-data-processing (1ms)
  2524. 2025-1-18 14:26:42-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2525. 2025-1-18 14:26:42-debug: Query all assets info in project
  2526. 2025-1-18 14:26:42-debug: init custom config: keepNodeUuid: false, useCache: true
  2527. 2025-1-18 14:26:42-debug: 查询 Asset Bundle start, progress: 0%
  2528. 2025-1-18 14:26:42-debug: // ---- build task 查询 Asset Bundle ----
  2529. 2025-1-18 14:26:42-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
  2530. 2025-1-18 14:26:42-debug: Number of all scripts: 118
  2531. 2025-1-18 14:26:42-debug: Number of other assets: 1135
  2532. 2025-1-18 14:26:42-debug: Number of all scenes: 3
  2533. 2025-1-18 14:26:42-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2534. 2025-1-18 14:26:42-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2535. 2025-1-18 14:26:42-debug: [Build Memory track]: 查询 Asset Bundle start:213.80MB, end 213.38MB, increase: -434.93KB
  2536. 2025-1-18 14:26:42-debug: 查询 Asset Bundle start, progress: 5%
  2537. 2025-1-18 14:26:42-debug: // ---- build task 查询 Asset Bundle ----
  2538. 2025-1-18 14:26:42-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  2539. 2025-1-18 14:26:42-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  2540. 2025-1-18 14:26:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2541. 2025-1-18 14:26:42-debug: [Build Memory track]: 查询 Asset Bundle start:213.41MB, end 213.61MB, increase: 210.45KB
  2542. 2025-1-18 14:26:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2543. 2025-1-18 14:26:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  2544. 2025-1-18 14:26:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  2545. 2025-1-18 14:26:42-debug: 填充脚本数据到 settings.json start, progress: 12%
  2546. 2025-1-18 14:26:42-debug: // ---- build task 填充脚本数据到 settings.json ----
  2547. 2025-1-18 14:26:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:213.65MB, end 213.67MB, increase: 28.23KB
  2548. 2025-1-18 14:26:42-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  2549. 2025-1-18 14:26:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2550. 2025-1-18 14:26:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2551. 2025-1-18 14:26:42-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  2552. 2025-1-18 14:26:42-debug: [Build Memory track]: 填充脚本数据到 settings.json start:213.71MB, end 213.75MB, increase: 41.03KB
  2553. 2025-1-18 14:26:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  2554. 2025-1-18 14:26:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  2555. 2025-1-18 14:26:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:213.78MB, end 213.92MB, increase: 147.29KB
  2556. 2025-1-18 14:27:04-debug: refresh db internal success
  2557. 2025-1-18 14:27:05-debug: refresh db assets success
  2558. 2025-1-18 14:27:05-debug: Run asset db hook engine-extends:afterRefresh ...
  2559. 2025-1-18 14:27:05-debug: Run asset db hook engine-extends:afterRefresh success!
  2560. 2025-1-18 14:27:05-debug: asset-db:refresh-all-database (103ms)
  2561. 2025-1-18 14:27:05-debug: asset-db:worker-effect-data-processing (1ms)
  2562. 2025-1-18 14:27:05-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2563. 2025-1-18 14:31:27-debug: refresh db internal success
  2564. 2025-1-18 14:31:27-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\PlayerData.ts background: #aaff85; color: #000; color: #000;
  2565. 2025-1-18 14:31:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI\UI_Item.ts background: #aaff85; color: #000; color: #000;
  2566. 2025-1-18 14:31:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign_Reward.ts background: #aaff85; color: #000; color: #000;
  2567. 2025-1-18 14:31:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  2568. 2025-1-18 14:31:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Store\UI_Store.ts background: #aaff85; color: #000; color: #000;
  2569. 2025-1-18 14:31:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Task\UI_Task_Item.ts background: #aaff85; color: #000; color: #000;
  2570. 2025-1-18 14:31:28-debug: refresh db assets success
  2571. 2025-1-18 14:31:28-debug: Run asset db hook engine-extends:afterRefresh ...
  2572. 2025-1-18 14:31:28-debug: Run asset db hook engine-extends:afterRefresh success!
  2573. 2025-1-18 14:31:28-debug: asset-db:refresh-all-database (115ms)
  2574. 2025-1-18 14:31:28-debug: Query all assets info in project
  2575. 2025-1-18 14:31:28-debug: init custom config: keepNodeUuid: false, useCache: true
  2576. 2025-1-18 14:31:28-debug: 查询 Asset Bundle start, progress: 0%
  2577. 2025-1-18 14:31:28-debug: // ---- build task 查询 Asset Bundle ----
  2578. 2025-1-18 14:31:28-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
  2579. 2025-1-18 14:31:28-debug: Number of all scenes: 3
  2580. 2025-1-18 14:31:28-debug: Number of other assets: 1135
  2581. 2025-1-18 14:31:28-debug: Number of all scripts: 118
  2582. 2025-1-18 14:31:28-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  2583. 2025-1-18 14:31:28-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  2584. 2025-1-18 14:31:28-debug: [Build Memory track]: 查询 Asset Bundle start:218.52MB, end 218.31MB, increase: -208.12KB
  2585. 2025-1-18 14:31:28-debug: 查询 Asset Bundle start, progress: 5%
  2586. 2025-1-18 14:31:28-debug: // ---- build task 查询 Asset Bundle ----
  2587. 2025-1-18 14:31:28-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2588. 2025-1-18 14:31:28-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2589. 2025-1-18 14:31:28-debug: [Build Memory track]: 查询 Asset Bundle start:218.34MB, end 218.55MB, increase: 215.57KB
  2590. 2025-1-18 14:31:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2591. 2025-1-18 14:31:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2592. 2025-1-18 14:31:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  2593. 2025-1-18 14:31:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  2594. 2025-1-18 14:31:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.59MB, end 218.61MB, increase: 28.14KB
  2595. 2025-1-18 14:31:28-debug: 填充脚本数据到 settings.json start, progress: 12%
  2596. 2025-1-18 14:31:28-debug: // ---- build task 填充脚本数据到 settings.json ----
  2597. 2025-1-18 14:31:28-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  2598. 2025-1-18 14:31:28-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  2599. 2025-1-18 14:31:28-debug: [Build Memory track]: 填充脚本数据到 settings.json start:218.65MB, end 218.67MB, increase: 27.40KB
  2600. 2025-1-18 14:31:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2601. 2025-1-18 14:31:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2602. 2025-1-18 14:31:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  2603. 2025-1-18 14:31:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  2604. 2025-1-18 14:31:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.70MB, end 218.83MB, increase: 131.89KB
  2605. 2025-1-18 14:31:30-debug: Query all assets info in project
  2606. 2025-1-18 14:31:30-debug: init custom config: keepNodeUuid: false, useCache: true
  2607. 2025-1-18 14:31:30-debug: 查询 Asset Bundle start, progress: 0%
  2608. 2025-1-18 14:31:30-debug: // ---- build task 查询 Asset Bundle ----
  2609. 2025-1-18 14:31:30-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
  2610. 2025-1-18 14:31:30-debug: Number of all scenes: 3
  2611. 2025-1-18 14:31:30-debug: Number of all scripts: 118
  2612. 2025-1-18 14:31:30-debug: Number of other assets: 1135
  2613. 2025-1-18 14:31:30-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2614. 2025-1-18 14:31:30-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2615. 2025-1-18 14:31:30-debug: 查询 Asset Bundle start, progress: 5%
  2616. 2025-1-18 14:31:30-debug: [Build Memory track]: 查询 Asset Bundle start:218.52MB, end 218.50MB, increase: -17.68KB
  2617. 2025-1-18 14:31:30-debug: // ---- build task 查询 Asset Bundle ----
  2618. 2025-1-18 14:31:30-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2619. 2025-1-18 14:31:30-debug: [Build Memory track]: 查询 Asset Bundle start:218.53MB, end 218.74MB, increase: 210.39KB
  2620. 2025-1-18 14:31:30-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2621. 2025-1-18 14:31:30-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2622. 2025-1-18 14:31:30-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2623. 2025-1-18 14:31:30-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2624. 2025-1-18 14:31:30-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.77MB, end 218.79MB, increase: 18.43KB
  2625. 2025-1-18 14:31:30-debug: // ---- build task 填充脚本数据到 settings.json ----
  2626. 2025-1-18 14:31:30-debug: 填充脚本数据到 settings.json start, progress: 12%
  2627. 2025-1-18 14:31:30-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2628. 2025-1-18 14:31:30-debug: [Build Memory track]: 填充脚本数据到 settings.json start:218.82MB, end 218.84MB, increase: 18.35KB
  2629. 2025-1-18 14:31:30-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2630. 2025-1-18 14:31:30-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2631. 2025-1-18 14:31:30-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2632. 2025-1-18 14:31:30-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  2633. 2025-1-18 14:31:30-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:218.87MB, end 218.99MB, increase: 128.75KB
  2634. 2025-1-18 14:31:57-debug: refresh db internal success
  2635. 2025-1-18 14:31:57-debug: refresh db assets success
  2636. 2025-1-18 14:31:57-debug: Run asset db hook engine-extends:afterRefresh ...
  2637. 2025-1-18 14:31:57-debug: Run asset db hook engine-extends:afterRefresh success!
  2638. 2025-1-18 14:31:57-debug: asset-db:refresh-all-database (126ms)
  2639. 2025-1-18 14:31:57-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2640. 2025-1-18 14:33:16-debug: refresh db internal success
  2641. 2025-1-18 14:33:16-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2642. 2025-1-18 14:33:16-debug: refresh db assets success
  2643. 2025-1-18 14:33:16-debug: Run asset db hook engine-extends:afterRefresh ...
  2644. 2025-1-18 14:33:16-debug: Run asset db hook engine-extends:afterRefresh success!
  2645. 2025-1-18 14:33:16-debug: asset-db:refresh-all-database (110ms)
  2646. 2025-1-18 14:33:16-debug: asset-db:worker-effect-data-processing (1ms)
  2647. 2025-1-18 14:33:16-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2648. 2025-1-18 14:33:17-debug: Query all assets info in project
  2649. 2025-1-18 14:33:17-debug: init custom config: keepNodeUuid: false, useCache: true
  2650. 2025-1-18 14:33:17-debug: 查询 Asset Bundle start, progress: 0%
  2651. 2025-1-18 14:33:17-debug: // ---- build task 查询 Asset Bundle ----
  2652. 2025-1-18 14:33:17-debug: Number of all scenes: 3
  2653. 2025-1-18 14:33:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2654. 2025-1-18 14:33:17-debug: Number of other assets: 1135
  2655. 2025-1-18 14:33:17-debug: Number of all scripts: 118
  2656. 2025-1-18 14:33:17-debug: // ---- build task 查询 Asset Bundle ---- (169ms)
  2657. 2025-1-18 14:33:17-debug: run build task 查询 Asset Bundle success in 169 ms√, progress: 5%
  2658. 2025-1-18 14:33:17-debug: [Build Memory track]: 查询 Asset Bundle start:200.33MB, end 200.39MB, increase: 64.96KB
  2659. 2025-1-18 14:33:17-debug: // ---- build task 查询 Asset Bundle ----
  2660. 2025-1-18 14:33:17-debug: 查询 Asset Bundle start, progress: 5%
  2661. 2025-1-18 14:33:17-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  2662. 2025-1-18 14:33:17-debug: [Build Memory track]: 查询 Asset Bundle start:200.42MB, end 200.63MB, increase: 212.31KB
  2663. 2025-1-18 14:33:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2664. 2025-1-18 14:33:17-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 10%
  2665. 2025-1-18 14:33:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2666. 2025-1-18 14:33:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2667. 2025-1-18 14:33:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  2668. 2025-1-18 14:33:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  2669. 2025-1-18 14:33:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.66MB, end 200.69MB, increase: 29.73KB
  2670. 2025-1-18 14:33:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  2671. 2025-1-18 14:33:17-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  2672. 2025-1-18 14:33:17-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  2673. 2025-1-18 14:33:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2674. 2025-1-18 14:33:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2675. 2025-1-18 14:33:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:200.72MB, end 200.75MB, increase: 28.54KB
  2676. 2025-1-18 14:33:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  2677. 2025-1-18 14:33:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  2678. 2025-1-18 14:33:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.78MB, end 200.91MB, increase: 131.71KB
  2679. 2025-1-18 14:33:25-debug: refresh db internal success
  2680. 2025-1-18 14:33:25-debug: refresh db assets success
  2681. 2025-1-18 14:33:25-debug: Run asset db hook engine-extends:afterRefresh ...
  2682. 2025-1-18 14:33:25-debug: Run asset db hook engine-extends:afterRefresh success!
  2683. 2025-1-18 14:33:25-debug: asset-db:refresh-all-database (99ms)
  2684. 2025-1-18 14:33:25-debug: asset-db:worker-effect-data-processing (2ms)
  2685. 2025-1-18 14:33:25-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2686. 2025-1-18 14:33:33-debug: refresh db internal success
  2687. 2025-1-18 14:33:34-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2688. 2025-1-18 14:33:34-debug: refresh db assets success
  2689. 2025-1-18 14:33:34-debug: Run asset db hook engine-extends:afterRefresh ...
  2690. 2025-1-18 14:33:34-debug: Run asset db hook engine-extends:afterRefresh success!
  2691. 2025-1-18 14:33:34-debug: asset-db:refresh-all-database (107ms)
  2692. 2025-1-18 14:33:34-debug: asset-db:worker-effect-data-processing (2ms)
  2693. 2025-1-18 14:33:34-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2694. 2025-1-18 14:33:35-debug: Query all assets info in project
  2695. 2025-1-18 14:33:35-debug: init custom config: keepNodeUuid: false, useCache: true
  2696. 2025-1-18 14:33:35-debug: 查询 Asset Bundle start, progress: 0%
  2697. 2025-1-18 14:33:35-debug: // ---- build task 查询 Asset Bundle ----
  2698. 2025-1-18 14:33:35-debug: Number of all scenes: 3
  2699. 2025-1-18 14:33:35-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
  2700. 2025-1-18 14:33:35-debug: Number of all scripts: 118
  2701. 2025-1-18 14:33:35-debug: Number of other assets: 1135
  2702. 2025-1-18 14:33:35-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2703. 2025-1-18 14:33:35-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2704. 2025-1-18 14:33:35-debug: // ---- build task 查询 Asset Bundle ----
  2705. 2025-1-18 14:33:35-debug: [Build Memory track]: 查询 Asset Bundle start:205.82MB, end 204.90MB, increase: -945.85KB
  2706. 2025-1-18 14:33:35-debug: 查询 Asset Bundle start, progress: 5%
  2707. 2025-1-18 14:33:35-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2708. 2025-1-18 14:33:35-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2709. 2025-1-18 14:33:35-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2710. 2025-1-18 14:33:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2711. 2025-1-18 14:33:35-debug: [Build Memory track]: 查询 Asset Bundle start:204.93MB, end 205.14MB, increase: 210.39KB
  2712. 2025-1-18 14:33:35-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2713. 2025-1-18 14:33:35-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.17MB, end 205.19MB, increase: 28.14KB
  2714. 2025-1-18 14:33:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2715. 2025-1-18 14:33:35-debug: 填充脚本数据到 settings.json start, progress: 12%
  2716. 2025-1-18 14:33:35-debug: // ---- build task 填充脚本数据到 settings.json ----
  2717. 2025-1-18 14:33:35-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  2718. 2025-1-18 14:33:35-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  2719. 2025-1-18 14:33:35-debug: [Build Memory track]: 填充脚本数据到 settings.json start:205.23MB, end 205.26MB, increase: 29.96KB
  2720. 2025-1-18 14:33:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2721. 2025-1-18 14:33:35-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2722. 2025-1-18 14:33:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  2723. 2025-1-18 14:33:35-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  2724. 2025-1-18 14:33:35-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.29MB, end 205.41MB, increase: 129.57KB
  2725. 2025-1-18 14:33:41-debug: refresh db internal success
  2726. 2025-1-18 14:33:41-debug: refresh db assets success
  2727. 2025-1-18 14:33:41-debug: Run asset db hook engine-extends:afterRefresh ...
  2728. 2025-1-18 14:33:41-debug: Run asset db hook engine-extends:afterRefresh success!
  2729. 2025-1-18 14:33:41-debug: asset-db:refresh-all-database (193ms)
  2730. 2025-1-18 14:33:41-debug: asset-db:worker-effect-data-processing (98ms)
  2731. 2025-1-18 14:33:41-debug: asset-db-hook-engine-extends-afterRefresh (98ms)
  2732. 2025-1-18 14:33:59-debug: refresh db internal success
  2733. 2025-1-18 14:33:59-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2734. 2025-1-18 14:33:59-debug: refresh db assets success
  2735. 2025-1-18 14:33:59-debug: Run asset db hook engine-extends:afterRefresh ...
  2736. 2025-1-18 14:33:59-debug: Run asset db hook engine-extends:afterRefresh success!
  2737. 2025-1-18 14:33:59-debug: asset-db:worker-effect-data-processing (2ms)
  2738. 2025-1-18 14:33:59-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2739. 2025-1-18 14:33:59-debug: asset-db:refresh-all-database (115ms)
  2740. 2025-1-18 14:34:00-debug: Query all assets info in project
  2741. 2025-1-18 14:34:00-debug: init custom config: keepNodeUuid: false, useCache: true
  2742. 2025-1-18 14:34:00-debug: 查询 Asset Bundle start, progress: 0%
  2743. 2025-1-18 14:34:00-debug: // ---- build task 查询 Asset Bundle ----
  2744. 2025-1-18 14:34:00-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
  2745. 2025-1-18 14:34:00-debug: Number of all scripts: 118
  2746. 2025-1-18 14:34:00-debug: Number of other assets: 1135
  2747. 2025-1-18 14:34:00-debug: Number of all scenes: 3
  2748. 2025-1-18 14:34:00-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  2749. 2025-1-18 14:34:00-debug: [Build Memory track]: 查询 Asset Bundle start:209.67MB, end 208.76MB, increase: -928.34KB
  2750. 2025-1-18 14:34:00-debug: // ---- build task 查询 Asset Bundle ----
  2751. 2025-1-18 14:34:00-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  2752. 2025-1-18 14:34:00-debug: 查询 Asset Bundle start, progress: 5%
  2753. 2025-1-18 14:34:00-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2754. 2025-1-18 14:34:00-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2755. 2025-1-18 14:34:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2756. 2025-1-18 14:34:00-debug: [Build Memory track]: 查询 Asset Bundle start:208.79MB, end 207.60MB, increase: -1225.13KB
  2757. 2025-1-18 14:34:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2758. 2025-1-18 14:34:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2759. 2025-1-18 14:34:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:207.63MB, end 207.66MB, increase: 28.17KB
  2760. 2025-1-18 14:34:00-debug: // ---- build task 填充脚本数据到 settings.json ----
  2761. 2025-1-18 14:34:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  2762. 2025-1-18 14:34:00-debug: 填充脚本数据到 settings.json start, progress: 12%
  2763. 2025-1-18 14:34:00-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  2764. 2025-1-18 14:34:00-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  2765. 2025-1-18 14:34:00-debug: [Build Memory track]: 填充脚本数据到 settings.json start:207.69MB, end 207.72MB, increase: 33.10KB
  2766. 2025-1-18 14:34:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2767. 2025-1-18 14:34:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2768. 2025-1-18 14:34:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  2769. 2025-1-18 14:34:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  2770. 2025-1-18 14:34:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:207.75MB, end 207.88MB, increase: 129.96KB
  2771. 2025-1-18 14:34:08-debug: refresh db internal success
  2772. 2025-1-18 14:34:08-debug: refresh db assets success
  2773. 2025-1-18 14:34:08-debug: Run asset db hook engine-extends:afterRefresh ...
  2774. 2025-1-18 14:34:08-debug: Run asset db hook engine-extends:afterRefresh success!
  2775. 2025-1-18 14:34:08-debug: asset-db:refresh-all-database (105ms)
  2776. 2025-1-18 14:34:08-debug: asset-db:worker-effect-data-processing (1ms)
  2777. 2025-1-18 14:34:08-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2778. 2025-1-18 14:35:15-debug: refresh db internal success
  2779. 2025-1-18 14:35:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2780. 2025-1-18 14:35:15-debug: refresh db assets success
  2781. 2025-1-18 14:35:15-debug: Run asset db hook engine-extends:afterRefresh ...
  2782. 2025-1-18 14:35:15-debug: Run asset db hook engine-extends:afterRefresh success!
  2783. 2025-1-18 14:35:15-debug: asset-db:refresh-all-database (105ms)
  2784. 2025-1-18 14:35:15-debug: asset-db:worker-effect-data-processing (1ms)
  2785. 2025-1-18 14:35:15-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2786. 2025-1-18 14:35:16-debug: Query all assets info in project
  2787. 2025-1-18 14:35:16-debug: init custom config: keepNodeUuid: false, useCache: true
  2788. 2025-1-18 14:35:16-debug: 查询 Asset Bundle start, progress: 0%
  2789. 2025-1-18 14:35:16-debug: // ---- build task 查询 Asset Bundle ----
  2790. 2025-1-18 14:35:16-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
  2791. 2025-1-18 14:35:16-debug: Number of all scenes: 3
  2792. 2025-1-18 14:35:16-debug: Number of all scripts: 118
  2793. 2025-1-18 14:35:16-debug: Number of other assets: 1135
  2794. 2025-1-18 14:35:16-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  2795. 2025-1-18 14:35:16-debug: [Build Memory track]: 查询 Asset Bundle start:214.13MB, end 211.61MB, increase: -2585.87KB
  2796. 2025-1-18 14:35:16-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  2797. 2025-1-18 14:35:16-debug: // ---- build task 查询 Asset Bundle ----
  2798. 2025-1-18 14:35:16-debug: 查询 Asset Bundle start, progress: 5%
  2799. 2025-1-18 14:35:16-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2800. 2025-1-18 14:35:16-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2801. 2025-1-18 14:35:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2802. 2025-1-18 14:35:16-debug: [Build Memory track]: 查询 Asset Bundle start:211.64MB, end 211.85MB, increase: 211.25KB
  2803. 2025-1-18 14:35:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2804. 2025-1-18 14:35:16-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2805. 2025-1-18 14:35:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.88MB, end 211.90MB, increase: 17.58KB
  2806. 2025-1-18 14:35:16-debug: 填充脚本数据到 settings.json start, progress: 12%
  2807. 2025-1-18 14:35:16-debug: // ---- build task 填充脚本数据到 settings.json ----
  2808. 2025-1-18 14:35:16-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  2809. 2025-1-18 14:35:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2810. 2025-1-18 14:35:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2811. 2025-1-18 14:35:16-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  2812. 2025-1-18 14:35:16-debug: [Build Memory track]: 填充脚本数据到 settings.json start:211.93MB, end 211.96MB, increase: 29.37KB
  2813. 2025-1-18 14:35:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  2814. 2025-1-18 14:35:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.99MB, end 212.13MB, increase: 144.80KB
  2815. 2025-1-18 14:35:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  2816. 2025-1-18 14:35:17-debug: Query all assets info in project
  2817. 2025-1-18 14:35:17-debug: init custom config: keepNodeUuid: false, useCache: true
  2818. 2025-1-18 14:35:17-debug: 查询 Asset Bundle start, progress: 0%
  2819. 2025-1-18 14:35:17-debug: // ---- build task 查询 Asset Bundle ----
  2820. 2025-1-18 14:35:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2821. 2025-1-18 14:35:17-debug: Number of all scenes: 3
  2822. 2025-1-18 14:35:17-debug: Number of all scripts: 118
  2823. 2025-1-18 14:35:17-debug: Number of other assets: 1135
  2824. 2025-1-18 14:35:17-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  2825. 2025-1-18 14:35:17-debug: [Build Memory track]: 查询 Asset Bundle start:212.69MB, end 212.73MB, increase: 42.05KB
  2826. 2025-1-18 14:35:17-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  2827. 2025-1-18 14:35:17-debug: 查询 Asset Bundle start, progress: 5%
  2828. 2025-1-18 14:35:17-debug: // ---- build task 查询 Asset Bundle ----
  2829. 2025-1-18 14:35:17-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2830. 2025-1-18 14:35:17-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2831. 2025-1-18 14:35:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2832. 2025-1-18 14:35:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2833. 2025-1-18 14:35:17-debug: [Build Memory track]: 查询 Asset Bundle start:212.76MB, end 212.97MB, increase: 209.11KB
  2834. 2025-1-18 14:35:17-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2835. 2025-1-18 14:35:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:213.00MB, end 213.02MB, increase: 18.93KB
  2836. 2025-1-18 14:35:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  2837. 2025-1-18 14:35:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  2838. 2025-1-18 14:35:17-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2839. 2025-1-18 14:35:17-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2840. 2025-1-18 14:35:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2841. 2025-1-18 14:35:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:213.05MB, end 213.08MB, increase: 28.00KB
  2842. 2025-1-18 14:35:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2843. 2025-1-18 14:35:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2844. 2025-1-18 14:35:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2845. 2025-1-18 14:35:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:213.11MB, end 213.23MB, increase: 129.30KB
  2846. 2025-1-18 14:35:26-debug: refresh db internal success
  2847. 2025-1-18 14:35:26-debug: refresh db assets success
  2848. 2025-1-18 14:35:26-debug: Run asset db hook engine-extends:afterRefresh ...
  2849. 2025-1-18 14:35:26-debug: Run asset db hook engine-extends:afterRefresh success!
  2850. 2025-1-18 14:35:26-debug: asset-db:refresh-all-database (101ms)
  2851. 2025-1-18 14:35:46-debug: refresh db internal success
  2852. 2025-1-18 14:35:46-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2853. 2025-1-18 14:35:46-debug: refresh db assets success
  2854. 2025-1-18 14:35:46-debug: Run asset db hook engine-extends:afterRefresh ...
  2855. 2025-1-18 14:35:46-debug: Run asset db hook engine-extends:afterRefresh success!
  2856. 2025-1-18 14:35:46-debug: asset-db:refresh-all-database (105ms)
  2857. 2025-1-18 14:35:46-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2858. 2025-1-18 14:35:46-debug: asset-db:worker-effect-data-processing (1ms)
  2859. 2025-1-18 14:35:47-debug: Query all assets info in project
  2860. 2025-1-18 14:35:47-debug: init custom config: keepNodeUuid: false, useCache: true
  2861. 2025-1-18 14:35:47-debug: 查询 Asset Bundle start, progress: 0%
  2862. 2025-1-18 14:35:47-debug: // ---- build task 查询 Asset Bundle ----
  2863. 2025-1-18 14:35:47-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
  2864. 2025-1-18 14:35:47-debug: Number of all scenes: 3
  2865. 2025-1-18 14:35:47-debug: Number of all scripts: 118
  2866. 2025-1-18 14:35:47-debug: Number of other assets: 1135
  2867. 2025-1-18 14:35:47-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  2868. 2025-1-18 14:35:47-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  2869. 2025-1-18 14:35:47-debug: // ---- build task 查询 Asset Bundle ----
  2870. 2025-1-18 14:35:47-debug: [Build Memory track]: 查询 Asset Bundle start:216.86MB, end 216.40MB, increase: -471.02KB
  2871. 2025-1-18 14:35:47-debug: 查询 Asset Bundle start, progress: 5%
  2872. 2025-1-18 14:35:47-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2873. 2025-1-18 14:35:47-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2874. 2025-1-18 14:35:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2875. 2025-1-18 14:35:47-debug: [Build Memory track]: 查询 Asset Bundle start:216.44MB, end 216.64MB, increase: 209.10KB
  2876. 2025-1-18 14:35:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2877. 2025-1-18 14:35:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2878. 2025-1-18 14:35:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.67MB, end 216.70MB, increase: 28.01KB
  2879. 2025-1-18 14:35:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2880. 2025-1-18 14:35:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  2881. 2025-1-18 14:35:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  2882. 2025-1-18 14:35:47-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2883. 2025-1-18 14:35:47-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2884. 2025-1-18 14:35:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:216.73MB, end 216.76MB, increase: 27.86KB
  2885. 2025-1-18 14:35:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2886. 2025-1-18 14:35:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2887. 2025-1-18 14:35:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  2888. 2025-1-18 14:35:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  2889. 2025-1-18 14:35:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.79MB, end 216.92MB, increase: 131.30KB
  2890. 2025-1-18 14:35:47-debug: Query all assets info in project
  2891. 2025-1-18 14:35:47-debug: init custom config: keepNodeUuid: false, useCache: true
  2892. 2025-1-18 14:35:47-debug: 查询 Asset Bundle start, progress: 0%
  2893. 2025-1-18 14:35:47-debug: // ---- build task 查询 Asset Bundle ----
  2894. 2025-1-18 14:35:47-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
  2895. 2025-1-18 14:35:47-debug: Number of all scenes: 3
  2896. 2025-1-18 14:35:47-debug: Number of other assets: 1135
  2897. 2025-1-18 14:35:47-debug: Number of all scripts: 118
  2898. 2025-1-18 14:35:47-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  2899. 2025-1-18 14:35:47-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  2900. 2025-1-18 14:35:47-debug: // ---- build task 查询 Asset Bundle ----
  2901. 2025-1-18 14:35:47-debug: 查询 Asset Bundle start, progress: 5%
  2902. 2025-1-18 14:35:47-debug: [Build Memory track]: 查询 Asset Bundle start:215.69MB, end 217.54MB, increase: 1.85MB
  2903. 2025-1-18 14:35:47-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  2904. 2025-1-18 14:35:47-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  2905. 2025-1-18 14:35:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2906. 2025-1-18 14:35:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2907. 2025-1-18 14:35:47-debug: [Build Memory track]: 查询 Asset Bundle start:215.82MB, end 216.03MB, increase: 215.17KB
  2908. 2025-1-18 14:35:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2909. 2025-1-18 14:35:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2910. 2025-1-18 14:35:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  2911. 2025-1-18 14:35:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.06MB, end 216.09MB, increase: 28.92KB
  2912. 2025-1-18 14:35:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  2913. 2025-1-18 14:35:47-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2914. 2025-1-18 14:35:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:216.12MB, end 216.14MB, increase: 18.67KB
  2915. 2025-1-18 14:35:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2916. 2025-1-18 14:35:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2917. 2025-1-18 14:35:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  2918. 2025-1-18 14:35:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  2919. 2025-1-18 14:35:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.17MB, end 216.30MB, increase: 128.63KB
  2920. 2025-1-18 14:35:54-debug: refresh db internal success
  2921. 2025-1-18 14:35:54-debug: refresh db assets success
  2922. 2025-1-18 14:35:54-debug: Run asset db hook engine-extends:afterRefresh ...
  2923. 2025-1-18 14:35:54-debug: Run asset db hook engine-extends:afterRefresh success!
  2924. 2025-1-18 14:35:54-debug: asset-db:refresh-all-database (126ms)
  2925. 2025-1-18 14:35:54-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2926. 2025-1-18 14:36:03-debug: refresh db internal success
  2927. 2025-1-18 14:36:03-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  2928. 2025-1-18 14:36:03-debug: refresh db assets success
  2929. 2025-1-18 14:36:03-debug: Run asset db hook engine-extends:afterRefresh ...
  2930. 2025-1-18 14:36:03-debug: Run asset db hook engine-extends:afterRefresh success!
  2931. 2025-1-18 14:36:03-debug: asset-db:refresh-all-database (105ms)
  2932. 2025-1-18 14:36:03-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2933. 2025-1-18 14:36:04-debug: Query all assets info in project
  2934. 2025-1-18 14:36:04-debug: init custom config: keepNodeUuid: false, useCache: true
  2935. 2025-1-18 14:36:04-debug: 查询 Asset Bundle start, progress: 0%
  2936. 2025-1-18 14:36:04-debug: // ---- build task 查询 Asset Bundle ----
  2937. 2025-1-18 14:36: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
  2938. 2025-1-18 14:36:04-debug: Number of all scenes: 3
  2939. 2025-1-18 14:36:04-debug: Number of all scripts: 118
  2940. 2025-1-18 14:36:04-debug: Number of other assets: 1135
  2941. 2025-1-18 14:36:04-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2942. 2025-1-18 14:36:04-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2943. 2025-1-18 14:36:04-debug: // ---- build task 查询 Asset Bundle ----
  2944. 2025-1-18 14:36:04-debug: [Build Memory track]: 查询 Asset Bundle start:199.91MB, end 199.94MB, increase: 32.39KB
  2945. 2025-1-18 14:36:04-debug: 查询 Asset Bundle start, progress: 5%
  2946. 2025-1-18 14:36:04-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2947. 2025-1-18 14:36:04-debug: [Build Memory track]: 查询 Asset Bundle start:199.97MB, end 200.18MB, increase: 213.27KB
  2948. 2025-1-18 14:36:04-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2949. 2025-1-18 14:36:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2950. 2025-1-18 14:36:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2951. 2025-1-18 14:36:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  2952. 2025-1-18 14:36:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 12%
  2953. 2025-1-18 14:36:04-debug: // ---- build task 填充脚本数据到 settings.json ----
  2954. 2025-1-18 14:36:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.21MB, end 200.24MB, increase: 28.00KB
  2955. 2025-1-18 14:36:04-debug: 填充脚本数据到 settings.json start, progress: 12%
  2956. 2025-1-18 14:36:04-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2957. 2025-1-18 14:36:04-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2958. 2025-1-18 14:36:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2959. 2025-1-18 14:36:04-debug: [Build Memory track]: 填充脚本数据到 settings.json start:200.27MB, end 200.30MB, increase: 28.31KB
  2960. 2025-1-18 14:36:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2961. 2025-1-18 14:36:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  2962. 2025-1-18 14:36:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.33MB, end 200.46MB, increase: 133.11KB
  2963. 2025-1-18 14:36:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  2964. 2025-1-18 14:36:04-debug: Query all assets info in project
  2965. 2025-1-18 14:36:04-debug: init custom config: keepNodeUuid: false, useCache: true
  2966. 2025-1-18 14:36:04-debug: 查询 Asset Bundle start, progress: 0%
  2967. 2025-1-18 14:36:04-debug: // ---- build task 查询 Asset Bundle ----
  2968. 2025-1-18 14:36: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
  2969. 2025-1-18 14:36:04-debug: Number of all scripts: 118
  2970. 2025-1-18 14:36:04-debug: Number of other assets: 1135
  2971. 2025-1-18 14:36:04-debug: Number of all scenes: 3
  2972. 2025-1-18 14:36:04-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  2973. 2025-1-18 14:36:04-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  2974. 2025-1-18 14:36:04-debug: [Build Memory track]: 查询 Asset Bundle start:201.01MB, end 201.06MB, increase: 55.15KB
  2975. 2025-1-18 14:36:04-debug: // ---- build task 查询 Asset Bundle ----
  2976. 2025-1-18 14:36:04-debug: 查询 Asset Bundle start, progress: 5%
  2977. 2025-1-18 14:36:04-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2978. 2025-1-18 14:36:04-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2979. 2025-1-18 14:36:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2980. 2025-1-18 14:36:04-debug: [Build Memory track]: 查询 Asset Bundle start:201.09MB, end 201.30MB, increase: 210.80KB
  2981. 2025-1-18 14:36:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2982. 2025-1-18 14:36:04-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2983. 2025-1-18 14:36:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.33MB, end 201.35MB, increase: 18.07KB
  2984. 2025-1-18 14:36:04-debug: 填充脚本数据到 settings.json start, progress: 12%
  2985. 2025-1-18 14:36:04-debug: // ---- build task 填充脚本数据到 settings.json ----
  2986. 2025-1-18 14:36:04-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2987. 2025-1-18 14:36:04-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2988. 2025-1-18 14:36:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2989. 2025-1-18 14:36:04-debug: [Build Memory track]: 填充脚本数据到 settings.json start:201.38MB, end 201.41MB, increase: 28.87KB
  2990. 2025-1-18 14:36:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2991. 2025-1-18 14:36:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2992. 2025-1-18 14:36:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2993. 2025-1-18 14:36:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.44MB, end 201.57MB, increase: 135.54KB
  2994. 2025-1-18 14:36:11-debug: refresh db internal success
  2995. 2025-1-18 14:36:11-debug: refresh db assets success
  2996. 2025-1-18 14:36:11-debug: Run asset db hook engine-extends:afterRefresh ...
  2997. 2025-1-18 14:36:11-debug: Run asset db hook engine-extends:afterRefresh success!
  2998. 2025-1-18 14:36:11-debug: asset-db:refresh-all-database (100ms)
  2999. 2025-1-18 14:36:11-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3000. 2025-1-18 14:36:20-debug: refresh db internal success
  3001. 2025-1-18 14:36:20-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\core\util_class\Toast.ts background: #aaff85; color: #000; color: #000;
  3002. 2025-1-18 14:36:20-debug: refresh db assets success
  3003. 2025-1-18 14:36:20-debug: Run asset db hook engine-extends:afterRefresh ...
  3004. 2025-1-18 14:36:20-debug: Run asset db hook engine-extends:afterRefresh success!
  3005. 2025-1-18 14:36:20-debug: asset-db:refresh-all-database (104ms)
  3006. 2025-1-18 14:36:20-debug: asset-db:worker-effect-data-processing (1ms)
  3007. 2025-1-18 14:36:20-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3008. 2025-1-18 14:36:21-debug: Query all assets info in project
  3009. 2025-1-18 14:36:21-debug: init custom config: keepNodeUuid: false, useCache: true
  3010. 2025-1-18 14:36:21-debug: 查询 Asset Bundle start, progress: 0%
  3011. 2025-1-18 14:36:21-debug: // ---- build task 查询 Asset Bundle ----
  3012. 2025-1-18 14:36:21-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
  3013. 2025-1-18 14:36:21-debug: Number of all scripts: 118
  3014. 2025-1-18 14:36:21-debug: Number of other assets: 1135
  3015. 2025-1-18 14:36:21-debug: Number of all scenes: 3
  3016. 2025-1-18 14:36:21-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  3017. 2025-1-18 14:36:21-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  3018. 2025-1-18 14:36:21-debug: // ---- build task 查询 Asset Bundle ----
  3019. 2025-1-18 14:36:21-debug: [Build Memory track]: 查询 Asset Bundle start:204.43MB, end 203.99MB, increase: -453.17KB
  3020. 2025-1-18 14:36:21-debug: 查询 Asset Bundle start, progress: 5%
  3021. 2025-1-18 14:36:21-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3022. 2025-1-18 14:36:21-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3023. 2025-1-18 14:36:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3024. 2025-1-18 14:36:21-debug: [Build Memory track]: 查询 Asset Bundle start:204.02MB, end 204.23MB, increase: 213.15KB
  3025. 2025-1-18 14:36:21-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3026. 2025-1-18 14:36:21-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3027. 2025-1-18 14:36:21-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.26MB, end 204.28MB, increase: 17.72KB
  3028. 2025-1-18 14:36:21-debug: 填充脚本数据到 settings.json start, progress: 12%
  3029. 2025-1-18 14:36:21-debug: // ---- build task 填充脚本数据到 settings.json ----
  3030. 2025-1-18 14:36:21-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3031. 2025-1-18 14:36:21-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3032. 2025-1-18 14:36:21-debug: [Build Memory track]: 填充脚本数据到 settings.json start:204.31MB, end 204.34MB, increase: 29.05KB
  3033. 2025-1-18 14:36:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3034. 2025-1-18 14:36:21-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3035. 2025-1-18 14:36:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3036. 2025-1-18 14:36:21-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3037. 2025-1-18 14:36:21-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.37MB, end 204.50MB, increase: 129.25KB
  3038. 2025-1-18 14:37:09-debug: refresh db internal success
  3039. 2025-1-18 14:37:09-debug: Run asset db hook engine-extends:afterRefresh ...
  3040. 2025-1-18 14:37:09-debug: Run asset db hook engine-extends:afterRefresh success!
  3041. 2025-1-18 14:37:09-debug: refresh db assets success
  3042. 2025-1-18 14:37:09-debug: asset-db:refresh-all-database (102ms)
  3043. 2025-1-18 14:37:09-debug: asset-db:worker-effect-data-processing (1ms)
  3044. 2025-1-18 14:37:09-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3045. 2025-1-18 14:37:36-debug: refresh db internal success
  3046. 2025-1-18 14:37:36-debug: refresh db assets success
  3047. 2025-1-18 14:37:36-debug: Run asset db hook engine-extends:afterRefresh ...
  3048. 2025-1-18 14:37:36-debug: Run asset db hook engine-extends:afterRefresh success!
  3049. 2025-1-18 14:37:36-debug: asset-db:refresh-all-database (105ms)
  3050. 2025-1-18 14:37:36-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3051. 2025-1-18 14:37:37-debug: Query all assets info in project
  3052. 2025-1-18 14:37:37-debug: init custom config: keepNodeUuid: false, useCache: true
  3053. 2025-1-18 14:37:37-debug: 查询 Asset Bundle start, progress: 0%
  3054. 2025-1-18 14:37:37-debug: // ---- build task 查询 Asset Bundle ----
  3055. 2025-1-18 14:37:37-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
  3056. 2025-1-18 14:37:37-debug: Number of all scenes: 3
  3057. 2025-1-18 14:37:37-debug: Number of other assets: 1135
  3058. 2025-1-18 14:37:37-debug: Number of all scripts: 118
  3059. 2025-1-18 14:37:37-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  3060. 2025-1-18 14:37:37-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  3061. 2025-1-18 14:37:37-debug: [Build Memory track]: 查询 Asset Bundle start:208.04MB, end 208.04MB, increase: -4.62KB
  3062. 2025-1-18 14:37:37-debug: 查询 Asset Bundle start, progress: 5%
  3063. 2025-1-18 14:37:37-debug: // ---- build task 查询 Asset Bundle ----
  3064. 2025-1-18 14:37:37-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3065. 2025-1-18 14:37:37-debug: [Build Memory track]: 查询 Asset Bundle start:208.07MB, end 208.28MB, increase: 213.50KB
  3066. 2025-1-18 14:37:37-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3067. 2025-1-18 14:37:37-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3068. 2025-1-18 14:37:37-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3069. 2025-1-18 14:37:37-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3070. 2025-1-18 14:37:37-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:208.31MB, end 208.34MB, increase: 28.36KB
  3071. 2025-1-18 14:37:37-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3072. 2025-1-18 14:37:37-debug: 填充脚本数据到 settings.json start, progress: 12%
  3073. 2025-1-18 14:37:37-debug: // ---- build task 填充脚本数据到 settings.json ----
  3074. 2025-1-18 14:37:37-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3075. 2025-1-18 14:37:37-debug: [Build Memory track]: 填充脚本数据到 settings.json start:208.37MB, end 208.39MB, increase: 28.30KB
  3076. 2025-1-18 14:37:37-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3077. 2025-1-18 14:37:37-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3078. 2025-1-18 14:37:37-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3079. 2025-1-18 14:37:37-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  3080. 2025-1-18 14:37:37-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  3081. 2025-1-18 14:37:37-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:208.43MB, end 208.58MB, increase: 153.14KB
  3082. 2025-1-18 14:37:51-debug: refresh db internal success
  3083. 2025-1-18 14:37:51-debug: refresh db assets success
  3084. 2025-1-18 14:37:51-debug: Run asset db hook engine-extends:afterRefresh ...
  3085. 2025-1-18 14:37:51-debug: Run asset db hook engine-extends:afterRefresh success!
  3086. 2025-1-18 14:37:51-debug: asset-db:refresh-all-database (103ms)
  3087. 2025-1-18 14:37:51-debug: asset-db:worker-effect-data-processing (1ms)
  3088. 2025-1-18 14:37:51-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3089. 2025-1-18 14:39:15-debug: refresh db internal success
  3090. 2025-1-18 14:39:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\UI_Settings.ts background: #aaff85; color: #000; color: #000;
  3091. 2025-1-18 14:39:15-debug: refresh db assets success
  3092. 2025-1-18 14:39:15-debug: Run asset db hook engine-extends:afterRefresh ...
  3093. 2025-1-18 14:39:15-debug: Run asset db hook engine-extends:afterRefresh success!
  3094. 2025-1-18 14:39:15-debug: asset-db:refresh-all-database (108ms)
  3095. 2025-1-18 14:39:15-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3096. 2025-1-18 14:39:15-debug: asset-db:worker-effect-data-processing (1ms)
  3097. 2025-1-18 14:39:16-debug: Query all assets info in project
  3098. 2025-1-18 14:39:16-debug: init custom config: keepNodeUuid: false, useCache: true
  3099. 2025-1-18 14:39:16-debug: // ---- build task 查询 Asset Bundle ----
  3100. 2025-1-18 14:39:16-debug: 查询 Asset Bundle start, progress: 0%
  3101. 2025-1-18 14:39:16-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
  3102. 2025-1-18 14:39:16-debug: Number of all scenes: 3
  3103. 2025-1-18 14:39:16-debug: Number of other assets: 1135
  3104. 2025-1-18 14:39:16-debug: Number of all scripts: 118
  3105. 2025-1-18 14:39:16-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  3106. 2025-1-18 14:39:16-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  3107. 2025-1-18 14:39:16-debug: [Build Memory track]: 查询 Asset Bundle start:211.61MB, end 211.61MB, increase: 8.16KB
  3108. 2025-1-18 14:39:16-debug: 查询 Asset Bundle start, progress: 5%
  3109. 2025-1-18 14:39:16-debug: // ---- build task 查询 Asset Bundle ----
  3110. 2025-1-18 14:39:16-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  3111. 2025-1-18 14:39:16-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  3112. 2025-1-18 14:39:16-debug: [Build Memory track]: 查询 Asset Bundle start:211.64MB, end 211.85MB, increase: 211.13KB
  3113. 2025-1-18 14:39:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3114. 2025-1-18 14:39:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3115. 2025-1-18 14:39:16-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3116. 2025-1-18 14:39:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.88MB, end 211.90MB, increase: 18.30KB
  3117. 2025-1-18 14:39:16-debug: // ---- build task 填充脚本数据到 settings.json ----
  3118. 2025-1-18 14:39:16-debug: 填充脚本数据到 settings.json start, progress: 12%
  3119. 2025-1-18 14:39:16-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3120. 2025-1-18 14:39:16-debug: [Build Memory track]: 填充脚本数据到 settings.json start:211.93MB, end 211.96MB, increase: 28.43KB
  3121. 2025-1-18 14:39:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3122. 2025-1-18 14:39:16-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3123. 2025-1-18 14:39:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3124. 2025-1-18 14:39:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (10ms)
  3125. 2025-1-18 14:39:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.99MB, end 212.12MB, increase: 129.30KB
  3126. 2025-1-18 14:39:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 10 ms√, progress: 15%
  3127. 2025-1-18 14:39:27-debug: refresh db internal success
  3128. 2025-1-18 14:39:27-debug: Run asset db hook engine-extends:afterRefresh success!
  3129. 2025-1-18 14:39:27-debug: Run asset db hook engine-extends:afterRefresh ...
  3130. 2025-1-18 14:39:27-debug: refresh db assets success
  3131. 2025-1-18 14:39:27-debug: asset-db:refresh-all-database (99ms)
  3132. 2025-1-18 14:39:27-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3133. 2025-1-18 14:39:46-debug: refresh db internal success
  3134. 2025-1-18 14:39:46-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\UI_Settings.ts background: #aaff85; color: #000; color: #000;
  3135. 2025-1-18 14:39:46-debug: refresh db assets success
  3136. 2025-1-18 14:39:46-debug: Run asset db hook engine-extends:afterRefresh success!
  3137. 2025-1-18 14:39:46-debug: Run asset db hook engine-extends:afterRefresh ...
  3138. 2025-1-18 14:39:46-debug: asset-db:refresh-all-database (103ms)
  3139. 2025-1-18 14:39:46-debug: asset-db:worker-effect-data-processing (1ms)
  3140. 2025-1-18 14:39:46-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3141. 2025-1-18 14:39:47-debug: Query all assets info in project
  3142. 2025-1-18 14:39:47-debug: init custom config: keepNodeUuid: false, useCache: true
  3143. 2025-1-18 14:39:47-debug: 查询 Asset Bundle start, progress: 0%
  3144. 2025-1-18 14:39:47-debug: // ---- build task 查询 Asset Bundle ----
  3145. 2025-1-18 14:39:47-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
  3146. 2025-1-18 14:39:47-debug: Number of all scenes: 3
  3147. 2025-1-18 14:39:47-debug: Number of other assets: 1135
  3148. 2025-1-18 14:39:47-debug: Number of all scripts: 118
  3149. 2025-1-18 14:39:47-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  3150. 2025-1-18 14:39:47-debug: [Build Memory track]: 查询 Asset Bundle start:218.02MB, end 217.11MB, increase: -928.54KB
  3151. 2025-1-18 14:39:47-debug: // ---- build task 查询 Asset Bundle ----
  3152. 2025-1-18 14:39:47-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  3153. 2025-1-18 14:39:47-debug: 查询 Asset Bundle start, progress: 5%
  3154. 2025-1-18 14:39:47-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3155. 2025-1-18 14:39:47-debug: [Build Memory track]: 查询 Asset Bundle start:217.14MB, end 217.35MB, increase: 210.03KB
  3156. 2025-1-18 14:39:47-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3157. 2025-1-18 14:39:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3158. 2025-1-18 14:39:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3159. 2025-1-18 14:39:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3160. 2025-1-18 14:39:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  3161. 2025-1-18 14:39:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:217.38MB, end 215.87MB, increase: -1542.13KB
  3162. 2025-1-18 14:39:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  3163. 2025-1-18 14:39:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  3164. 2025-1-18 14:39:47-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  3165. 2025-1-18 14:39:47-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  3166. 2025-1-18 14:39:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:215.90MB, end 215.93MB, increase: 27.12KB
  3167. 2025-1-18 14:39:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3168. 2025-1-18 14:39:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3169. 2025-1-18 14:39:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  3170. 2025-1-18 14:39:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  3171. 2025-1-18 14:39:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.96MB, end 216.09MB, increase: 136.18KB
  3172. 2025-1-18 14:39:54-debug: refresh db internal success
  3173. 2025-1-18 14:39:54-debug: refresh db assets success
  3174. 2025-1-18 14:39:54-debug: Run asset db hook engine-extends:afterRefresh success!
  3175. 2025-1-18 14:39:54-debug: Run asset db hook engine-extends:afterRefresh ...
  3176. 2025-1-18 14:39:54-debug: asset-db:refresh-all-database (126ms)
  3177. 2025-1-18 14:39:54-debug: asset-db:worker-effect-data-processing (1ms)
  3178. 2025-1-18 14:39:54-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3179. 2025-1-18 14:40:07-debug: refresh db internal success
  3180. 2025-1-18 14:40:07-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\UI_Settings.ts background: #aaff85; color: #000; color: #000;
  3181. 2025-1-18 14:40:07-debug: refresh db assets success
  3182. 2025-1-18 14:40:07-debug: Run asset db hook engine-extends:afterRefresh ...
  3183. 2025-1-18 14:40:07-debug: Run asset db hook engine-extends:afterRefresh success!
  3184. 2025-1-18 14:40:07-debug: asset-db:refresh-all-database (277ms)
  3185. 2025-1-18 14:40:07-debug: asset-db:worker-effect-data-processing (3ms)
  3186. 2025-1-18 14:40:07-debug: asset-db-hook-engine-extends-afterRefresh (4ms)
  3187. 2025-1-18 14:40:08-debug: Query all assets info in project
  3188. 2025-1-18 14:40:08-debug: init custom config: keepNodeUuid: false, useCache: true
  3189. 2025-1-18 14:40:08-debug: 查询 Asset Bundle start, progress: 0%
  3190. 2025-1-18 14:40:08-debug: // ---- build task 查询 Asset Bundle ----
  3191. 2025-1-18 14:40:08-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
  3192. 2025-1-18 14:40:08-debug: Number of all scripts: 118
  3193. 2025-1-18 14:40:08-debug: Number of other assets: 1135
  3194. 2025-1-18 14:40:08-debug: Number of all scenes: 3
  3195. 2025-1-18 14:40:08-debug: // ---- build task 查询 Asset Bundle ---- (15ms)
  3196. 2025-1-18 14:40:08-debug: run build task 查询 Asset Bundle success in 15 ms√, progress: 5%
  3197. 2025-1-18 14:40:08-debug: [Build Memory track]: 查询 Asset Bundle start:201.47MB, end 201.49MB, increase: 23.45KB
  3198. 2025-1-18 14:40:08-debug: // ---- build task 查询 Asset Bundle ----
  3199. 2025-1-18 14:40:08-debug: 查询 Asset Bundle start, progress: 5%
  3200. 2025-1-18 14:40:08-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  3201. 2025-1-18 14:40:08-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3202. 2025-1-18 14:40:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3203. 2025-1-18 14:40:08-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  3204. 2025-1-18 14:40:08-debug: [Build Memory track]: 查询 Asset Bundle start:201.52MB, end 201.73MB, increase: 210.93KB
  3205. 2025-1-18 14:40:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3206. 2025-1-18 14:40:08-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3207. 2025-1-18 14:40:08-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.76MB, end 201.78MB, increase: 27.93KB
  3208. 2025-1-18 14:40:08-debug: 填充脚本数据到 settings.json start, progress: 12%
  3209. 2025-1-18 14:40:08-debug: // ---- build task 填充脚本数据到 settings.json ----
  3210. 2025-1-18 14:40:08-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  3211. 2025-1-18 14:40:08-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  3212. 2025-1-18 14:40:08-debug: [Build Memory track]: 填充脚本数据到 settings.json start:201.82MB, end 201.84MB, increase: 28.27KB
  3213. 2025-1-18 14:40:08-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3214. 2025-1-18 14:40:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3215. 2025-1-18 14:40:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  3216. 2025-1-18 14:40:08-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  3217. 2025-1-18 14:40:08-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.87MB, end 202.03MB, increase: 155.00KB
  3218. 2025-1-18 14:40:09-debug: Query all assets info in project
  3219. 2025-1-18 14:40:09-debug: init custom config: keepNodeUuid: false, useCache: true
  3220. 2025-1-18 14:40:09-debug: 查询 Asset Bundle start, progress: 0%
  3221. 2025-1-18 14:40:09-debug: // ---- build task 查询 Asset Bundle ----
  3222. 2025-1-18 14:40:09-debug: Number of all scenes: 3
  3223. 2025-1-18 14:40:09-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
  3224. 2025-1-18 14:40:09-debug: Number of other assets: 1135
  3225. 2025-1-18 14:40:09-debug: Number of all scripts: 118
  3226. 2025-1-18 14:40:09-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  3227. 2025-1-18 14:40:09-debug: [Build Memory track]: 查询 Asset Bundle start:202.90MB, end 202.94MB, increase: 38.28KB
  3228. 2025-1-18 14:40:09-debug: 查询 Asset Bundle start, progress: 5%
  3229. 2025-1-18 14:40:09-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  3230. 2025-1-18 14:40:09-debug: // ---- build task 查询 Asset Bundle ----
  3231. 2025-1-18 14:40:09-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3232. 2025-1-18 14:40:09-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3233. 2025-1-18 14:40:09-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3234. 2025-1-18 14:40:09-debug: [Build Memory track]: 查询 Asset Bundle start:202.97MB, end 201.42MB, increase: -1582.68KB
  3235. 2025-1-18 14:40:09-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3236. 2025-1-18 14:40:09-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3237. 2025-1-18 14:40:09-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3238. 2025-1-18 14:40:09-debug: // ---- build task 填充脚本数据到 settings.json ----
  3239. 2025-1-18 14:40:09-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.45MB, end 201.48MB, increase: 27.93KB
  3240. 2025-1-18 14:40:09-debug: 填充脚本数据到 settings.json start, progress: 12%
  3241. 2025-1-18 14:40:09-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3242. 2025-1-18 14:40:09-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3243. 2025-1-18 14:40:09-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3244. 2025-1-18 14:40:09-debug: [Build Memory track]: 填充脚本数据到 settings.json start:201.51MB, end 201.54MB, increase: 29.79KB
  3245. 2025-1-18 14:40:09-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3246. 2025-1-18 14:40:09-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3247. 2025-1-18 14:40:09-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3248. 2025-1-18 14:40:09-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.57MB, end 201.72MB, increase: 147.75KB
  3249. 2025-1-18 14:41:17-debug: Query all assets info in project
  3250. 2025-1-18 14:41:17-debug: init custom config: keepNodeUuid: false, useCache: true
  3251. 2025-1-18 14:41:17-debug: 查询 Asset Bundle start, progress: 0%
  3252. 2025-1-18 14:41:17-debug: // ---- build task 查询 Asset Bundle ----
  3253. 2025-1-18 14:41:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3254. 2025-1-18 14:41:17-debug: Number of all scenes: 3
  3255. 2025-1-18 14:41:17-debug: Number of all scripts: 118
  3256. 2025-1-18 14:41:17-debug: Number of other assets: 1135
  3257. 2025-1-18 14:41:17-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3258. 2025-1-18 14:41:17-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  3259. 2025-1-18 14:41:17-debug: // ---- build task 查询 Asset Bundle ----
  3260. 2025-1-18 14:41:17-debug: [Build Memory track]: 查询 Asset Bundle start:201.76MB, end 201.86MB, increase: 103.68KB
  3261. 2025-1-18 14:41:17-debug: 查询 Asset Bundle start, progress: 5%
  3262. 2025-1-18 14:41:17-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  3263. 2025-1-18 14:41:17-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  3264. 2025-1-18 14:41:17-debug: [Build Memory track]: 查询 Asset Bundle start:201.90MB, end 202.10MB, increase: 209.97KB
  3265. 2025-1-18 14:41:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3266. 2025-1-18 14:41:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3267. 2025-1-18 14:41:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3268. 2025-1-18 14:41:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  3269. 2025-1-18 14:41:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  3270. 2025-1-18 14:41:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:202.13MB, end 202.16MB, increase: 29.46KB
  3271. 2025-1-18 14:41:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  3272. 2025-1-18 14:41:17-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  3273. 2025-1-18 14:41:17-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  3274. 2025-1-18 14:41:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3275. 2025-1-18 14:41:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:202.19MB, end 202.22MB, increase: 27.40KB
  3276. 2025-1-18 14:41:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3277. 2025-1-18 14:41:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3278. 2025-1-18 14:41:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:202.25MB, end 201.53MB, increase: -733.01KB
  3279. 2025-1-18 14:41:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3280. 2025-1-18 14:42:50-debug: refresh db internal success
  3281. 2025-1-18 14:42:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\PlayerData.ts background: #aaff85; color: #000; color: #000;
  3282. 2025-1-18 14:42:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI\UI_Item.ts background: #aaff85; color: #000; color: #000;
  3283. 2025-1-18 14:42:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign_Reward.ts background: #aaff85; color: #000; color: #000;
  3284. 2025-1-18 14:42:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Store\UI_Store.ts background: #aaff85; color: #000; color: #000;
  3285. 2025-1-18 14:42:50-debug: refresh db assets success
  3286. 2025-1-18 14:42:50-debug: Run asset db hook engine-extends:afterRefresh ...
  3287. 2025-1-18 14:42:50-debug: Run asset db hook engine-extends:afterRefresh success!
  3288. 2025-1-18 14:42:50-debug: asset-db:refresh-all-database (116ms)
  3289. 2025-1-18 14:42:50-debug: asset-db:worker-effect-data-processing (1ms)
  3290. 2025-1-18 14:42:50-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3291. 2025-1-18 14:42:50-debug: Query all assets info in project
  3292. 2025-1-18 14:42:50-debug: init custom config: keepNodeUuid: false, useCache: true
  3293. 2025-1-18 14:42:50-debug: 查询 Asset Bundle start, progress: 0%
  3294. 2025-1-18 14:42:50-debug: // ---- build task 查询 Asset Bundle ----
  3295. 2025-1-18 14:42:50-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
  3296. 2025-1-18 14:42:50-debug: Number of all scenes: 3
  3297. 2025-1-18 14:42:50-debug: Number of all scripts: 118
  3298. 2025-1-18 14:42:50-debug: Number of other assets: 1135
  3299. 2025-1-18 14:42:50-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  3300. 2025-1-18 14:42:50-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  3301. 2025-1-18 14:42:50-debug: [Build Memory track]: 查询 Asset Bundle start:205.32MB, end 204.86MB, increase: -471.34KB
  3302. 2025-1-18 14:42:50-debug: 查询 Asset Bundle start, progress: 5%
  3303. 2025-1-18 14:42:50-debug: // ---- build task 查询 Asset Bundle ----
  3304. 2025-1-18 14:42:50-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  3305. 2025-1-18 14:42:50-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  3306. 2025-1-18 14:42:50-debug: [Build Memory track]: 查询 Asset Bundle start:204.89MB, end 205.10MB, increase: 217.93KB
  3307. 2025-1-18 14:42:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3308. 2025-1-18 14:42:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3309. 2025-1-18 14:42:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3310. 2025-1-18 14:42:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  3311. 2025-1-18 14:42:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.14MB, end 205.16MB, increase: 28.57KB
  3312. 2025-1-18 14:42:50-debug: 填充脚本数据到 settings.json start, progress: 12%
  3313. 2025-1-18 14:42:50-debug: // ---- build task 填充脚本数据到 settings.json ----
  3314. 2025-1-18 14:42:50-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3315. 2025-1-18 14:42:50-debug: [Build Memory track]: 填充脚本数据到 settings.json start:205.20MB, end 205.22MB, increase: 26.55KB
  3316. 2025-1-18 14:42:50-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3317. 2025-1-18 14:42:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3318. 2025-1-18 14:42:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3319. 2025-1-18 14:42:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3320. 2025-1-18 14:42:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3321. 2025-1-18 14:42:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.25MB, end 205.38MB, increase: 132.48KB
  3322. 2025-1-18 14:42:52-debug: Query all assets info in project
  3323. 2025-1-18 14:42:52-debug: init custom config: keepNodeUuid: false, useCache: true
  3324. 2025-1-18 14:42:52-debug: 查询 Asset Bundle start, progress: 0%
  3325. 2025-1-18 14:42:52-debug: // ---- build task 查询 Asset Bundle ----
  3326. 2025-1-18 14:42:52-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
  3327. 2025-1-18 14:42:52-debug: Number of other assets: 1135
  3328. 2025-1-18 14:42:52-debug: Number of all scripts: 118
  3329. 2025-1-18 14:42:52-debug: Number of all scenes: 3
  3330. 2025-1-18 14:42:52-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  3331. 2025-1-18 14:42:52-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  3332. 2025-1-18 14:42:52-debug: // ---- build task 查询 Asset Bundle ----
  3333. 2025-1-18 14:42:52-debug: [Build Memory track]: 查询 Asset Bundle start:204.76MB, end 206.56MB, increase: 1.80MB
  3334. 2025-1-18 14:42:52-debug: 查询 Asset Bundle start, progress: 5%
  3335. 2025-1-18 14:42:52-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3336. 2025-1-18 14:42:52-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3337. 2025-1-18 14:42:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3338. 2025-1-18 14:42:52-debug: [Build Memory track]: 查询 Asset Bundle start:206.59MB, end 206.79MB, increase: 210.00KB
  3339. 2025-1-18 14:42:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3340. 2025-1-18 14:42:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3341. 2025-1-18 14:42:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.83MB, end 206.86MB, increase: 30.93KB
  3342. 2025-1-18 14:42:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3343. 2025-1-18 14:42:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  3344. 2025-1-18 14:42:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  3345. 2025-1-18 14:42:52-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  3346. 2025-1-18 14:42:52-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  3347. 2025-1-18 14:42:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:206.89MB, end 206.91MB, increase: 27.12KB
  3348. 2025-1-18 14:42:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3349. 2025-1-18 14:42:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3350. 2025-1-18 14:42:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  3351. 2025-1-18 14:42:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  3352. 2025-1-18 14:42:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.94MB, end 207.07MB, increase: 131.79KB
  3353. 2025-1-18 14:43:34-debug: refresh db internal success
  3354. 2025-1-18 14:43:34-debug: refresh db assets success
  3355. 2025-1-18 14:43:34-debug: Run asset db hook engine-extends:afterRefresh success!
  3356. 2025-1-18 14:43:34-debug: Run asset db hook engine-extends:afterRefresh ...
  3357. 2025-1-18 14:43:34-debug: asset-db:refresh-all-database (103ms)
  3358. 2025-1-18 14:43:34-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3359. 2025-1-18 14:57:15-debug: refresh db internal success
  3360. 2025-1-18 14:57:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  3361. 2025-1-18 14:57:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\GameCtl.ts background: #aaff85; color: #000; color: #000;
  3362. 2025-1-18 14:57:15-debug: refresh db assets success
  3363. 2025-1-18 14:57:15-debug: Run asset db hook engine-extends:afterRefresh success!
  3364. 2025-1-18 14:57:15-debug: Run asset db hook engine-extends:afterRefresh ...
  3365. 2025-1-18 14:57:15-debug: asset-db:refresh-all-database (113ms)
  3366. 2025-1-18 14:57:15-debug: asset-db:worker-effect-data-processing (1ms)
  3367. 2025-1-18 14:57:15-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3368. 2025-1-18 14:57:15-debug: Query all assets info in project
  3369. 2025-1-18 14:57:15-debug: init custom config: keepNodeUuid: false, useCache: true
  3370. 2025-1-18 14:57:15-debug: 查询 Asset Bundle start, progress: 0%
  3371. 2025-1-18 14:57:15-debug: // ---- build task 查询 Asset Bundle ----
  3372. 2025-1-18 14:57:15-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
  3373. 2025-1-18 14:57:15-debug: Number of all scenes: 3
  3374. 2025-1-18 14:57:15-debug: Number of all scripts: 118
  3375. 2025-1-18 14:57:15-debug: Number of other assets: 1135
  3376. 2025-1-18 14:57:15-debug: // ---- build task 查询 Asset Bundle ---- (22ms)
  3377. 2025-1-18 14:57:15-debug: run build task 查询 Asset Bundle success in 22 ms√, progress: 5%
  3378. 2025-1-18 14:57:15-debug: [Build Memory track]: 查询 Asset Bundle start:209.18MB, end 209.17MB, increase: -11.69KB
  3379. 2025-1-18 14:57:15-debug: // ---- build task 查询 Asset Bundle ----
  3380. 2025-1-18 14:57:15-debug: 查询 Asset Bundle start, progress: 5%
  3381. 2025-1-18 14:57:15-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3382. 2025-1-18 14:57:15-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  3383. 2025-1-18 14:57:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3384. 2025-1-18 14:57:15-debug: [Build Memory track]: 查询 Asset Bundle start:209.20MB, end 209.41MB, increase: 215.71KB
  3385. 2025-1-18 14:57:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3386. 2025-1-18 14:57:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3387. 2025-1-18 14:57:15-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  3388. 2025-1-18 14:57:15-debug: 填充脚本数据到 settings.json start, progress: 12%
  3389. 2025-1-18 14:57:15-debug: // ---- build task 填充脚本数据到 settings.json ----
  3390. 2025-1-18 14:57:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.44MB, end 209.47MB, increase: 29.46KB
  3391. 2025-1-18 14:57:15-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  3392. 2025-1-18 14:57:15-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  3393. 2025-1-18 14:57:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3394. 2025-1-18 14:57:15-debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.50MB, end 209.53MB, increase: 28.40KB
  3395. 2025-1-18 14:57:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3396. 2025-1-18 14:57:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (26ms)
  3397. 2025-1-18 14:57:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 26 ms√, progress: 15%
  3398. 2025-1-18 14:57:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.56MB, end 209.71MB, increase: 150.06KB
  3399. 2025-1-18 14:57:17-debug: Query all assets info in project
  3400. 2025-1-18 14:57:17-debug: init custom config: keepNodeUuid: false, useCache: true
  3401. 2025-1-18 14:57:17-debug: 查询 Asset Bundle start, progress: 0%
  3402. 2025-1-18 14:57:17-debug: // ---- build task 查询 Asset Bundle ----
  3403. 2025-1-18 14:57:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3404. 2025-1-18 14:57:17-debug: Number of all scenes: 3
  3405. 2025-1-18 14:57:17-debug: Number of all scripts: 118
  3406. 2025-1-18 14:57:17-debug: Number of other assets: 1135
  3407. 2025-1-18 14:57:17-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3408. 2025-1-18 14:57:17-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  3409. 2025-1-18 14:57:17-debug: [Build Memory track]: 查询 Asset Bundle start:208.98MB, end 208.98MB, increase: 2.71KB
  3410. 2025-1-18 14:57:17-debug: 查询 Asset Bundle start, progress: 5%
  3411. 2025-1-18 14:57:17-debug: // ---- build task 查询 Asset Bundle ----
  3412. 2025-1-18 14:57:17-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3413. 2025-1-18 14:57:17-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3414. 2025-1-18 14:57:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3415. 2025-1-18 14:57:17-debug: [Build Memory track]: 查询 Asset Bundle start:209.02MB, end 209.22MB, increase: 213.69KB
  3416. 2025-1-18 14:57:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3417. 2025-1-18 14:57:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3418. 2025-1-18 14:57:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3419. 2025-1-18 14:57:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  3420. 2025-1-18 14:57:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.26MB, end 209.28MB, increase: 27.96KB
  3421. 2025-1-18 14:57:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  3422. 2025-1-18 14:57:17-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3423. 2025-1-18 14:57:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.31MB, end 209.33MB, increase: 18.01KB
  3424. 2025-1-18 14:57:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3425. 2025-1-18 14:57:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3426. 2025-1-18 14:57:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3427. 2025-1-18 14:57:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.36MB, end 209.49MB, increase: 129.94KB
  3428. 2025-1-18 14:57:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3429. 2025-1-18 14:57:34-debug: Query all assets info in project
  3430. 2025-1-18 14:57:34-debug: init custom config: keepNodeUuid: false, useCache: true
  3431. 2025-1-18 14:57:34-debug: 查询 Asset Bundle start, progress: 0%
  3432. 2025-1-18 14:57:34-debug: // ---- build task 查询 Asset Bundle ----
  3433. 2025-1-18 14:57:34-debug: Number of all scenes: 3
  3434. 2025-1-18 14:57:34-debug: Number of all scripts: 118
  3435. 2025-1-18 14:57:34-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
  3436. 2025-1-18 14:57:34-debug: Number of other assets: 1135
  3437. 2025-1-18 14:57:34-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  3438. 2025-1-18 14:57:34-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  3439. 2025-1-18 14:57:34-debug: [Build Memory track]: 查询 Asset Bundle start:210.23MB, end 209.45MB, increase: -799.42KB
  3440. 2025-1-18 14:57:34-debug: 查询 Asset Bundle start, progress: 5%
  3441. 2025-1-18 14:57:34-debug: // ---- build task 查询 Asset Bundle ----
  3442. 2025-1-18 14:57:34-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3443. 2025-1-18 14:57:34-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3444. 2025-1-18 14:57:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3445. 2025-1-18 14:57:34-debug: [Build Memory track]: 查询 Asset Bundle start:209.49MB, end 209.69MB, increase: 210.39KB
  3446. 2025-1-18 14:57:34-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3447. 2025-1-18 14:57:34-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3448. 2025-1-18 14:57:34-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.72MB, end 209.74MB, increase: 17.67KB
  3449. 2025-1-18 14:57:34-debug: 填充脚本数据到 settings.json start, progress: 12%
  3450. 2025-1-18 14:57:34-debug: // ---- build task 填充脚本数据到 settings.json ----
  3451. 2025-1-18 14:57:34-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3452. 2025-1-18 14:57:34-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3453. 2025-1-18 14:57:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3454. 2025-1-18 14:57:34-debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.77MB, end 209.80MB, increase: 28.44KB
  3455. 2025-1-18 14:57:34-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3456. 2025-1-18 14:57:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3457. 2025-1-18 14:57:34-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3458. 2025-1-18 14:57:34-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.83MB, end 209.23MB, increase: -612.79KB
  3459. 2025-1-18 14:57:51-debug: refresh db internal success
  3460. 2025-1-18 14:57:51-debug: Run asset db hook engine-extends:afterRefresh ...
  3461. 2025-1-18 14:57:51-debug: Run asset db hook engine-extends:afterRefresh success!
  3462. 2025-1-18 14:57:51-debug: refresh db assets success
  3463. 2025-1-18 14:57:51-debug: asset-db:refresh-all-database (103ms)
  3464. 2025-1-18 14:57:51-debug: asset-db:worker-effect-data-processing (1ms)
  3465. 2025-1-18 14:57:51-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3466. 2025-1-18 14:59:08-debug: refresh db internal success
  3467. 2025-1-18 14:59:08-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  3468. 2025-1-18 14:59:08-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  3469. 2025-1-18 14:59:08-debug: refresh db assets success
  3470. 2025-1-18 14:59:08-debug: Run asset db hook engine-extends:afterRefresh ...
  3471. 2025-1-18 14:59:08-debug: Run asset db hook engine-extends:afterRefresh success!
  3472. 2025-1-18 14:59:08-debug: asset-db:refresh-all-database (107ms)
  3473. 2025-1-18 14:59:08-debug: asset-db:worker-effect-data-processing (1ms)
  3474. 2025-1-18 14:59:08-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3475. 2025-1-18 14:59:09-debug: Query all assets info in project
  3476. 2025-1-18 14:59:09-debug: init custom config: keepNodeUuid: false, useCache: true
  3477. 2025-1-18 14:59:09-debug: 查询 Asset Bundle start, progress: 0%
  3478. 2025-1-18 14:59:09-debug: // ---- build task 查询 Asset Bundle ----
  3479. 2025-1-18 14:59:09-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
  3480. 2025-1-18 14:59:09-debug: Number of all scripts: 118
  3481. 2025-1-18 14:59:09-debug: Number of other assets: 1135
  3482. 2025-1-18 14:59:09-debug: Number of all scenes: 3
  3483. 2025-1-18 14:59:09-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  3484. 2025-1-18 14:59:09-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  3485. 2025-1-18 14:59:09-debug: // ---- build task 查询 Asset Bundle ----
  3486. 2025-1-18 14:59:09-debug: [Build Memory track]: 查询 Asset Bundle start:214.23MB, end 214.24MB, increase: 12.33KB
  3487. 2025-1-18 14:59:09-debug: 查询 Asset Bundle start, progress: 5%
  3488. 2025-1-18 14:59:09-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3489. 2025-1-18 14:59:09-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3490. 2025-1-18 14:59:09-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3491. 2025-1-18 14:59:09-debug: [Build Memory track]: 查询 Asset Bundle start:214.27MB, end 214.48MB, increase: 209.96KB
  3492. 2025-1-18 14:59:09-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3493. 2025-1-18 14:59:09-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3494. 2025-1-18 14:59:09-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.51MB, end 214.53MB, increase: 18.04KB
  3495. 2025-1-18 14:59:09-debug: // ---- build task 填充脚本数据到 settings.json ----
  3496. 2025-1-18 14:59:09-debug: 填充脚本数据到 settings.json start, progress: 12%
  3497. 2025-1-18 14:59:09-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3498. 2025-1-18 14:59:09-debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.56MB, end 214.58MB, increase: 18.50KB
  3499. 2025-1-18 14:59:09-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3500. 2025-1-18 14:59:09-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3501. 2025-1-18 14:59:09-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (11ms)
  3502. 2025-1-18 14:59:09-debug: run build task 整理部分构建选项内数据到 settings.json success in 11 ms√, progress: 15%
  3503. 2025-1-18 14:59:09-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.61MB, end 214.73MB, increase: 128.49KB
  3504. 2025-1-18 14:59:10-debug: Query all assets info in project
  3505. 2025-1-18 14:59:10-debug: init custom config: keepNodeUuid: false, useCache: true
  3506. 2025-1-18 14:59:10-debug: 查询 Asset Bundle start, progress: 0%
  3507. 2025-1-18 14:59:10-debug: // ---- build task 查询 Asset Bundle ----
  3508. 2025-1-18 14:59: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
  3509. 2025-1-18 14:59:10-debug: Number of all scripts: 118
  3510. 2025-1-18 14:59:10-debug: Number of other assets: 1135
  3511. 2025-1-18 14:59:10-debug: Number of all scenes: 3
  3512. 2025-1-18 14:59:10-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  3513. 2025-1-18 14:59:10-debug: [Build Memory track]: 查询 Asset Bundle start:215.45MB, end 214.02MB, increase: -1463.20KB
  3514. 2025-1-18 14:59:10-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  3515. 2025-1-18 14:59:10-debug: 查询 Asset Bundle start, progress: 5%
  3516. 2025-1-18 14:59:10-debug: // ---- build task 查询 Asset Bundle ----
  3517. 2025-1-18 14:59:10-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3518. 2025-1-18 14:59:10-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3519. 2025-1-18 14:59:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3520. 2025-1-18 14:59:10-debug: [Build Memory track]: 查询 Asset Bundle start:214.06MB, end 214.27MB, increase: 216.76KB
  3521. 2025-1-18 14:59:10-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3522. 2025-1-18 14:59:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3523. 2025-1-18 14:59:10-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3524. 2025-1-18 14:59:10-debug: // ---- build task 填充脚本数据到 settings.json ----
  3525. 2025-1-18 14:59:10-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.30MB, end 214.33MB, increase: 28.28KB
  3526. 2025-1-18 14:59:10-debug: 填充脚本数据到 settings.json start, progress: 12%
  3527. 2025-1-18 14:59:10-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3528. 2025-1-18 14:59:10-debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.36MB, end 214.38MB, increase: 19.25KB
  3529. 2025-1-18 14:59:10-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3530. 2025-1-18 14:59:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3531. 2025-1-18 14:59:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3532. 2025-1-18 14:59:10-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3533. 2025-1-18 14:59:10-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.41MB, end 214.53MB, increase: 128.66KB
  3534. 2025-1-18 14:59:21-debug: refresh db internal success
  3535. 2025-1-18 14:59:21-debug: refresh db assets success
  3536. 2025-1-18 14:59:21-debug: Run asset db hook engine-extends:afterRefresh success!
  3537. 2025-1-18 14:59:21-debug: Run asset db hook engine-extends:afterRefresh ...
  3538. 2025-1-18 14:59:21-debug: asset-db:refresh-all-database (98ms)
  3539. 2025-1-18 14:59:21-debug: asset-db:worker-effect-data-processing (1ms)
  3540. 2025-1-18 14:59:21-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3541. 2025-1-18 14:59:27-debug: refresh db internal success
  3542. 2025-1-18 14:59:27-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  3543. 2025-1-18 14:59:27-debug: refresh db assets success
  3544. 2025-1-18 14:59:27-debug: Run asset db hook engine-extends:afterRefresh ...
  3545. 2025-1-18 14:59:27-debug: Run asset db hook engine-extends:afterRefresh success!
  3546. 2025-1-18 14:59:27-debug: asset-db:refresh-all-database (101ms)
  3547. 2025-1-18 14:59:27-debug: asset-db:worker-effect-data-processing (1ms)
  3548. 2025-1-18 14:59:27-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3549. 2025-1-18 14:59:28-debug: Query all assets info in project
  3550. 2025-1-18 14:59:28-debug: init custom config: keepNodeUuid: false, useCache: true
  3551. 2025-1-18 14:59:28-debug: 查询 Asset Bundle start, progress: 0%
  3552. 2025-1-18 14:59:28-debug: // ---- build task 查询 Asset Bundle ----
  3553. 2025-1-18 14:59:28-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
  3554. 2025-1-18 14:59:28-debug: Number of all scripts: 118
  3555. 2025-1-18 14:59:28-debug: Number of other assets: 1135
  3556. 2025-1-18 14:59:28-debug: Number of all scenes: 3
  3557. 2025-1-18 14:59:28-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  3558. 2025-1-18 14:59:28-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  3559. 2025-1-18 14:59:28-debug: // ---- build task 查询 Asset Bundle ----
  3560. 2025-1-18 14:59:28-debug: [Build Memory track]: 查询 Asset Bundle start:198.53MB, end 198.53MB, increase: -3.41KB
  3561. 2025-1-18 14:59:28-debug: 查询 Asset Bundle start, progress: 5%
  3562. 2025-1-18 14:59:28-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  3563. 2025-1-18 14:59:28-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  3564. 2025-1-18 14:59:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3565. 2025-1-18 14:59:28-debug: [Build Memory track]: 查询 Asset Bundle start:198.56MB, end 198.77MB, increase: 209.29KB
  3566. 2025-1-18 14:59:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3567. 2025-1-18 14:59:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3568. 2025-1-18 14:59:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3569. 2025-1-18 14:59:28-debug: 填充脚本数据到 settings.json start, progress: 12%
  3570. 2025-1-18 14:59:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:198.80MB, end 198.83MB, increase: 32.05KB
  3571. 2025-1-18 14:59:28-debug: // ---- build task 填充脚本数据到 settings.json ----
  3572. 2025-1-18 14:59:28-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3573. 2025-1-18 14:59:28-debug: [Build Memory track]: 填充脚本数据到 settings.json start:198.86MB, end 198.88MB, increase: 25.71KB
  3574. 2025-1-18 14:59:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3575. 2025-1-18 14:59:28-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3576. 2025-1-18 14:59:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3577. 2025-1-18 14:59:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3578. 2025-1-18 14:59:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3579. 2025-1-18 14:59:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:198.92MB, end 199.05MB, increase: 134.27KB
  3580. 2025-1-18 15:00:29-debug: refresh db internal success
  3581. 2025-1-18 15:00:29-debug: refresh db assets success
  3582. 2025-1-18 15:00:29-debug: Run asset db hook engine-extends:afterRefresh ...
  3583. 2025-1-18 15:00:29-debug: Run asset db hook engine-extends:afterRefresh success!
  3584. 2025-1-18 15:00:29-debug: asset-db:refresh-all-database (106ms)
  3585. 2025-1-18 15:00:29-debug: asset-db:worker-effect-data-processing (1ms)
  3586. 2025-1-18 15:00:29-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3587. 2025-1-18 15:01:16-debug: refresh db internal success
  3588. 2025-1-18 15:01:16-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_LatticeFull\UI_LatticeFull.ts background: #aaff85; color: #000; color: #000;
  3589. 2025-1-18 15:01:16-debug: refresh db assets success
  3590. 2025-1-18 15:01:16-debug: Run asset db hook engine-extends:afterRefresh ...
  3591. 2025-1-18 15:01:16-debug: Run asset db hook engine-extends:afterRefresh success!
  3592. 2025-1-18 15:01:16-debug: asset-db:refresh-all-database (107ms)
  3593. 2025-1-18 15:01:16-debug: asset-db:worker-effect-data-processing (1ms)
  3594. 2025-1-18 15:01:16-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3595. 2025-1-18 15:01:17-debug: Query all assets info in project
  3596. 2025-1-18 15:01:17-debug: init custom config: keepNodeUuid: false, useCache: true
  3597. 2025-1-18 15:01:17-debug: 查询 Asset Bundle start, progress: 0%
  3598. 2025-1-18 15:01:17-debug: // ---- build task 查询 Asset Bundle ----
  3599. 2025-1-18 15:01:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3600. 2025-1-18 15:01:17-debug: Number of all scenes: 3
  3601. 2025-1-18 15:01:17-debug: Number of other assets: 1135
  3602. 2025-1-18 15:01:17-debug: Number of all scripts: 118
  3603. 2025-1-18 15:01:17-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  3604. 2025-1-18 15:01:17-debug: [Build Memory track]: 查询 Asset Bundle start:204.83MB, end 203.95MB, increase: -905.89KB
  3605. 2025-1-18 15:01:17-debug: 查询 Asset Bundle start, progress: 5%
  3606. 2025-1-18 15:01:17-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  3607. 2025-1-18 15:01:17-debug: // ---- build task 查询 Asset Bundle ----
  3608. 2025-1-18 15:01:17-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3609. 2025-1-18 15:01:17-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3610. 2025-1-18 15:01:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3611. 2025-1-18 15:01:17-debug: [Build Memory track]: 查询 Asset Bundle start:203.98MB, end 204.18MB, increase: 210.02KB
  3612. 2025-1-18 15:01:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3613. 2025-1-18 15:01:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3614. 2025-1-18 15:01:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3615. 2025-1-18 15:01:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.21MB, end 204.24MB, increase: 29.22KB
  3616. 2025-1-18 15:01:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  3617. 2025-1-18 15:01:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  3618. 2025-1-18 15:01:17-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3619. 2025-1-18 15:01:17-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3620. 2025-1-18 15:01:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3621. 2025-1-18 15:01:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:204.27MB, end 204.30MB, increase: 28.57KB
  3622. 2025-1-18 15:01:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3623. 2025-1-18 15:01:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3624. 2025-1-18 15:01:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3625. 2025-1-18 15:01:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.33MB, end 202.83MB, increase: -1537.96KB
  3626. 2025-1-18 15:04:24-debug: refresh db internal success
  3627. 2025-1-18 15:04:24-debug: refresh db assets success
  3628. 2025-1-18 15:04:24-debug: Run asset db hook engine-extends:afterRefresh ...
  3629. 2025-1-18 15:04:24-debug: Run asset db hook engine-extends:afterRefresh success!
  3630. 2025-1-18 15:04:24-debug: asset-db:refresh-all-database (105ms)
  3631. 2025-1-18 15:04:24-debug: asset-db:worker-effect-data-processing (1ms)
  3632. 2025-1-18 15:04:24-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3633. 2025-1-18 15:04:26-debug: refresh db internal success
  3634. 2025-1-18 15:04:26-debug: Run asset db hook engine-extends:afterRefresh ...
  3635. 2025-1-18 15:04:26-debug: Run asset db hook engine-extends:afterRefresh success!
  3636. 2025-1-18 15:04:26-debug: refresh db assets success
  3637. 2025-1-18 15:04:26-debug: asset-db:refresh-all-database (98ms)
  3638. 2025-1-18 15:04:26-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3639. 2025-1-18 15:04:26-debug: asset-db:worker-effect-data-processing (1ms)
  3640. 2025-1-18 15:06:02-debug: refresh db internal success
  3641. 2025-1-18 15:06:02-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  3642. 2025-1-18 15:06:02-debug: refresh db assets success
  3643. 2025-1-18 15:06:02-debug: Run asset db hook engine-extends:afterRefresh ...
  3644. 2025-1-18 15:06:02-debug: Run asset db hook engine-extends:afterRefresh success!
  3645. 2025-1-18 15:06:02-debug: asset-db:refresh-all-database (108ms)
  3646. 2025-1-18 15:06:02-debug: asset-db:worker-effect-data-processing (1ms)
  3647. 2025-1-18 15:06:02-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3648. 2025-1-18 15:06:07-debug: Cannot find the asset handler of operate open for importer json
  3649. 2025-1-18 15:06:13-debug: refresh db internal success
  3650. 2025-1-18 15:06:14-debug: refresh db assets success
  3651. 2025-1-18 15:06:14-debug: Run asset db hook engine-extends:afterRefresh ...
  3652. 2025-1-18 15:06:14-debug: Run asset db hook engine-extends:afterRefresh success!
  3653. 2025-1-18 15:06:14-debug: asset-db:refresh-all-database (356ms)
  3654. 2025-1-18 15:06:14-debug: asset-db:worker-effect-data-processing (2ms)
  3655. 2025-1-18 15:06:14-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  3656. 2025-1-18 15:06:18-debug: refresh db internal success
  3657. 2025-1-18 15:06:18-debug: refresh db assets success
  3658. 2025-1-18 15:06:18-debug: Run asset db hook engine-extends:afterRefresh success!
  3659. 2025-1-18 15:06:18-debug: Run asset db hook engine-extends:afterRefresh ...
  3660. 2025-1-18 15:06:18-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3661. 2025-1-18 15:06:18-debug: asset-db:refresh-all-database (198ms)
  3662. 2025-1-18 15:06:18-debug: asset-db:worker-effect-data-processing (1ms)
  3663. 2025-1-18 15:08:52-debug: refresh db internal success
  3664. 2025-1-18 15:08:52-debug: Run asset db hook engine-extends:afterRefresh ...
  3665. 2025-1-18 15:08:52-debug: Run asset db hook engine-extends:afterRefresh success!
  3666. 2025-1-18 15:08:52-debug: refresh db assets success
  3667. 2025-1-18 15:08:52-debug: asset-db:refresh-all-database (105ms)
  3668. 2025-1-18 15:08:52-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3669. 2025-1-18 15:08:57-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level-001.json...
  3670. 2025-1-18 15:08:57-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level-001.json background: #aaff85; color: #000; color: #000;
  3671. 2025-1-18 15:08:57-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  3672. 2025-1-18 15:08:57-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  3673. 2025-1-18 15:09:02-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level-001.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json...
  3674. 2025-1-18 15:09:02-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json...
  3675. 2025-1-18 15:09:02-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json background: #aaff85; color: #000; color: #000;
  3676. 2025-1-18 15:09:02-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  3677. 2025-1-18 15:09:02-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  3678. 2025-1-18 15:09:02-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  3679. 2025-1-18 15:09:02-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level-001.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json success
  3680. 2025-1-18 15:09:02-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  3681. 2025-1-18 15:09:03-debug: Cannot find the asset handler of operate open for importer json
  3682. 2025-1-18 15:10:44-debug: refresh db internal success
  3683. 2025-1-18 15:10:44-debug: refresh db assets success
  3684. 2025-1-18 15:10:44-debug: Run asset db hook engine-extends:afterRefresh ...
  3685. 2025-1-18 15:10:44-debug: Run asset db hook engine-extends:afterRefresh success!
  3686. 2025-1-18 15:10:44-debug: asset-db:refresh-all-database (340ms)
  3687. 2025-1-18 15:10:44-debug: asset-db:worker-effect-data-processing (1ms)
  3688. 2025-1-18 15:10:44-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3689. 2025-1-18 15:10:55-debug: refresh db internal success
  3690. 2025-1-18 15:10:55-debug: refresh db assets success
  3691. 2025-1-18 15:10:55-debug: Run asset db hook engine-extends:afterRefresh ...
  3692. 2025-1-18 15:10:55-debug: Run asset db hook engine-extends:afterRefresh success!
  3693. 2025-1-18 15:10:55-debug: asset-db:refresh-all-database (133ms)
  3694. 2025-1-18 15:10:56-debug: refresh db internal success
  3695. 2025-1-18 15:10:56-debug: Run asset db hook engine-extends:afterRefresh success!
  3696. 2025-1-18 15:10:56-debug: refresh db assets success
  3697. 2025-1-18 15:10:56-debug: Run asset db hook engine-extends:afterRefresh ...
  3698. 2025-1-18 15:10:56-debug: asset-db:refresh-all-database (109ms)
  3699. 2025-1-18 15:10:56-debug: asset-db:worker-effect-data-processing (1ms)
  3700. 2025-1-18 15:10:56-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3701. 2025-1-18 15:12:10-debug: refresh db internal success
  3702. 2025-1-18 15:12:10-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json background: #aaff85; color: #000; color: #000;
  3703. 2025-1-18 15:12:10-debug: refresh db assets success
  3704. 2025-1-18 15:12:10-debug: Run asset db hook engine-extends:afterRefresh ...
  3705. 2025-1-18 15:12:10-debug: Run asset db hook engine-extends:afterRefresh success!
  3706. 2025-1-18 15:12:10-debug: asset-db:refresh-all-database (135ms)
  3707. 2025-1-18 15:12:10-debug: asset-db:worker-effect-data-processing (2ms)
  3708. 2025-1-18 15:12:10-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3709. 2025-1-18 15:14:02-debug: refresh db internal success
  3710. 2025-1-18 15:14:02-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json background: #aaff85; color: #000; color: #000;
  3711. 2025-1-18 15:14:02-debug: refresh db assets success
  3712. 2025-1-18 15:14:02-debug: Run asset db hook engine-extends:afterRefresh ...
  3713. 2025-1-18 15:14:02-debug: Run asset db hook engine-extends:afterRefresh success!
  3714. 2025-1-18 15:14:02-debug: asset-db:refresh-all-database (129ms)
  3715. 2025-1-18 15:14:02-debug: asset-db:worker-effect-data-processing (1ms)
  3716. 2025-1-18 15:14:02-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3717. 2025-1-18 15:14:14-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_level-001.ts...
  3718. 2025-1-18 15:14:14-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_level-001.ts background: #aaff85; color: #000; color: #000;
  3719. 2025-1-18 15:14:14-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  3720. 2025-1-18 15:14:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  3721. 2025-1-18 15:14:16-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  3722. 2025-1-18 15:14:21-debug: refresh db internal success
  3723. 2025-1-18 15:14:21-debug: refresh db assets success
  3724. 2025-1-18 15:14:21-debug: Run asset db hook engine-extends:afterRefresh ...
  3725. 2025-1-18 15:14:21-debug: Run asset db hook engine-extends:afterRefresh success!
  3726. 2025-1-18 15:14:21-debug: asset-db:refresh-all-database (101ms)
  3727. 2025-1-18 15:14:21-debug: asset-db:worker-effect-data-processing (1ms)
  3728. 2025-1-18 15:14:21-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3729. 2025-1-18 15:14:29-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_level-001.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store.ts...
  3730. 2025-1-18 15:14:29-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store.ts...
  3731. 2025-1-18 15:14:29-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store.ts background: #aaff85; color: #000; color: #000;
  3732. 2025-1-18 15:14:29-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  3733. 2025-1-18 15:14:29-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts...
  3734. 2025-1-18 15:14:29-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  3735. 2025-1-18 15:14:29-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_level-001.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store.ts success
  3736. 2025-1-18 15:14:29-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  3737. 2025-1-18 15:14:30-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  3738. 2025-1-18 15:23:15-debug: refresh db internal success
  3739. 2025-1-18 15:23:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store.ts background: #aaff85; color: #000; color: #000;
  3740. 2025-1-18 15:23:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json background: #aaff85; color: #000; color: #000;
  3741. 2025-1-18 15:23:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Store\Layout_Store.ts background: #aaff85; color: #000; color: #000;
  3742. 2025-1-18 15:23:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Store\UI_Store.ts background: #aaff85; color: #000; color: #000;
  3743. 2025-1-18 15:23:15-debug: refresh db assets success
  3744. 2025-1-18 15:23:15-debug: Run asset db hook engine-extends:afterRefresh ...
  3745. 2025-1-18 15:23:15-debug: Run asset db hook engine-extends:afterRefresh success!
  3746. 2025-1-18 15:23:15-debug: asset-db:refresh-all-database (357ms)
  3747. 2025-1-18 15:23:15-debug: asset-db:worker-effect-data-processing (3ms)
  3748. 2025-1-18 15:23:15-debug: asset-db-hook-engine-extends-afterRefresh (5ms)
  3749. 2025-1-18 15:23:17-debug: Query all assets info in project
  3750. 2025-1-18 15:23:17-debug: init custom config: keepNodeUuid: false, useCache: true
  3751. 2025-1-18 15:23:17-debug: 查询 Asset Bundle start, progress: 0%
  3752. 2025-1-18 15:23:17-debug: // ---- build task 查询 Asset Bundle ----
  3753. 2025-1-18 15:23:17-debug: Number of all scenes: 3
  3754. 2025-1-18 15:23:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3755. 2025-1-18 15:23:17-debug: Number of other assets: 1136
  3756. 2025-1-18 15:23:17-debug: Number of all scripts: 119
  3757. 2025-1-18 15:23:17-debug: // ---- build task 查询 Asset Bundle ---- (23ms)
  3758. 2025-1-18 15:23:17-debug: run build task 查询 Asset Bundle success in 23 ms√, progress: 5%
  3759. 2025-1-18 15:23:17-debug: [Build Memory track]: 查询 Asset Bundle start:210.40MB, end 210.06MB, increase: -345.86KB
  3760. 2025-1-18 15:23:17-debug: 查询 Asset Bundle start, progress: 5%
  3761. 2025-1-18 15:23:17-debug: // ---- build task 查询 Asset Bundle ----
  3762. 2025-1-18 15:23:17-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  3763. 2025-1-18 15:23:17-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 10%
  3764. 2025-1-18 15:23:17-debug: [Build Memory track]: 查询 Asset Bundle start:210.09MB, end 210.33MB, increase: 237.39KB
  3765. 2025-1-18 15:23:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3766. 2025-1-18 15:23:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3767. 2025-1-18 15:23:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  3768. 2025-1-18 15:23:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.36MB, end 210.39MB, increase: 29.48KB
  3769. 2025-1-18 15:23:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  3770. 2025-1-18 15:23:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  3771. 2025-1-18 15:23:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3772. 2025-1-18 15:23:17-debug: // ---- build task 填充脚本数据到 settings.json ---- (5ms)
  3773. 2025-1-18 15:23:17-debug: run build task 填充脚本数据到 settings.json success in 5 ms√, progress: 13%
  3774. 2025-1-18 15:23:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.42MB, end 210.45MB, increase: 30.41KB
  3775. 2025-1-18 15:23:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3776. 2025-1-18 15:23:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3777. 2025-1-18 15:23:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (16ms)
  3778. 2025-1-18 15:23:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 16 ms√, progress: 15%
  3779. 2025-1-18 15:23:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.48MB, end 210.87MB, increase: 405.00KB
  3780. 2025-1-18 15:23:18-debug: Query all assets info in project
  3781. 2025-1-18 15:23:18-debug: init custom config: keepNodeUuid: false, useCache: true
  3782. 2025-1-18 15:23:18-debug: 查询 Asset Bundle start, progress: 0%
  3783. 2025-1-18 15:23:18-debug: // ---- build task 查询 Asset Bundle ----
  3784. 2025-1-18 15:23:18-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
  3785. 2025-1-18 15:23:18-debug: Number of other assets: 1136
  3786. 2025-1-18 15:23:18-debug: Number of all scripts: 119
  3787. 2025-1-18 15:23:18-debug: Number of all scenes: 3
  3788. 2025-1-18 15:23:18-debug: // ---- build task 查询 Asset Bundle ---- (15ms)
  3789. 2025-1-18 15:23:18-debug: run build task 查询 Asset Bundle success in 15 ms√, progress: 5%
  3790. 2025-1-18 15:23:18-debug: [Build Memory track]: 查询 Asset Bundle start:209.91MB, end 211.73MB, increase: 1.82MB
  3791. 2025-1-18 15:23:18-debug: // ---- build task 查询 Asset Bundle ----
  3792. 2025-1-18 15:23:18-debug: 查询 Asset Bundle start, progress: 5%
  3793. 2025-1-18 15:23:18-debug: // ---- build task 查询 Asset Bundle ---- (13ms)
  3794. 2025-1-18 15:23:18-debug: [Build Memory track]: 查询 Asset Bundle start:211.76MB, end 211.96MB, increase: 212.68KB
  3795. 2025-1-18 15:23:18-debug: run build task 查询 Asset Bundle success in 13 ms√, progress: 10%
  3796. 2025-1-18 15:23:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3797. 2025-1-18 15:23:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3798. 2025-1-18 15:23:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3799. 2025-1-18 15:23:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3800. 2025-1-18 15:23:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  3801. 2025-1-18 15:23:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.00MB, end 212.02MB, increase: 27.96KB
  3802. 2025-1-18 15:23:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  3803. 2025-1-18 15:23:18-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3804. 2025-1-18 15:23:18-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3805. 2025-1-18 15:23:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3806. 2025-1-18 15:23:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:212.05MB, end 212.08MB, increase: 29.42KB
  3807. 2025-1-18 15:23:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3808. 2025-1-18 15:23:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3809. 2025-1-18 15:23:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3810. 2025-1-18 15:23:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.11MB, end 212.24MB, increase: 129.53KB
  3811. 2025-1-18 15:23:18-debug: Query all assets info in project
  3812. 2025-1-18 15:23:18-debug: init custom config: keepNodeUuid: false, useCache: true
  3813. 2025-1-18 15:23:18-debug: 查询 Asset Bundle start, progress: 0%
  3814. 2025-1-18 15:23:18-debug: // ---- build task 查询 Asset Bundle ----
  3815. 2025-1-18 15:23:18-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
  3816. 2025-1-18 15:23:18-debug: Number of all scenes: 3
  3817. 2025-1-18 15:23:18-debug: Number of all scripts: 119
  3818. 2025-1-18 15:23:18-debug: Number of other assets: 1136
  3819. 2025-1-18 15:23:18-debug: // ---- build task 查询 Asset Bundle ---- (23ms)
  3820. 2025-1-18 15:23:18-debug: run build task 查询 Asset Bundle success in 23 ms√, progress: 5%
  3821. 2025-1-18 15:23:18-debug: 查询 Asset Bundle start, progress: 5%
  3822. 2025-1-18 15:23:18-debug: [Build Memory track]: 查询 Asset Bundle start:212.82MB, end 211.00MB, increase: -1868.86KB
  3823. 2025-1-18 15:23:18-debug: // ---- build task 查询 Asset Bundle ----
  3824. 2025-1-18 15:23:18-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  3825. 2025-1-18 15:23:18-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 10%
  3826. 2025-1-18 15:23:18-debug: [Build Memory track]: 查询 Asset Bundle start:211.03MB, end 211.24MB, increase: 212.69KB
  3827. 2025-1-18 15:23:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3828. 2025-1-18 15:23:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3829. 2025-1-18 15:23:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3830. 2025-1-18 15:23:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3831. 2025-1-18 15:23:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.27MB, end 211.30MB, increase: 26.84KB
  3832. 2025-1-18 15:23:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  3833. 2025-1-18 15:23:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  3834. 2025-1-18 15:23:18-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3835. 2025-1-18 15:23:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:211.33MB, end 211.35MB, increase: 26.71KB
  3836. 2025-1-18 15:23:18-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3837. 2025-1-18 15:23:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3838. 2025-1-18 15:23:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3839. 2025-1-18 15:23:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  3840. 2025-1-18 15:23:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  3841. 2025-1-18 15:23:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.39MB, end 211.52MB, increase: 133.07KB
  3842. 2025-1-18 15:23:35-debug: refresh db internal success
  3843. 2025-1-18 15:23:35-debug: refresh db assets success
  3844. 2025-1-18 15:23:35-debug: Run asset db hook engine-extends:afterRefresh success!
  3845. 2025-1-18 15:23:35-debug: Run asset db hook engine-extends:afterRefresh ...
  3846. 2025-1-18 15:23:35-debug: asset-db:refresh-all-database (102ms)
  3847. 2025-1-18 15:24:34-debug: refresh db internal success
  3848. 2025-1-18 15:24:34-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json background: #aaff85; color: #000; color: #000;
  3849. 2025-1-18 15:24:34-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Store\UI_Store.ts background: #aaff85; color: #000; color: #000;
  3850. 2025-1-18 15:24:34-debug: refresh db assets success
  3851. 2025-1-18 15:24:34-debug: Run asset db hook engine-extends:afterRefresh ...
  3852. 2025-1-18 15:24:34-debug: Run asset db hook engine-extends:afterRefresh success!
  3853. 2025-1-18 15:24:34-debug: asset-db:refresh-all-database (111ms)
  3854. 2025-1-18 15:24:34-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3855. 2025-1-18 15:24:34-debug: asset-db:worker-effect-data-processing (1ms)
  3856. 2025-1-18 15:24:34-debug: Query all assets info in project
  3857. 2025-1-18 15:24:34-debug: init custom config: keepNodeUuid: false, useCache: true
  3858. 2025-1-18 15:24:34-debug: 查询 Asset Bundle start, progress: 0%
  3859. 2025-1-18 15:24:34-debug: // ---- build task 查询 Asset Bundle ----
  3860. 2025-1-18 15:24:34-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
  3861. 2025-1-18 15:24:34-debug: Number of all scenes: 3
  3862. 2025-1-18 15:24:34-debug: Number of all scripts: 119
  3863. 2025-1-18 15:24:34-debug: Number of other assets: 1136
  3864. 2025-1-18 15:24:34-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  3865. 2025-1-18 15:24:34-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  3866. 2025-1-18 15:24:34-debug: // ---- build task 查询 Asset Bundle ----
  3867. 2025-1-18 15:24:34-debug: [Build Memory track]: 查询 Asset Bundle start:215.22MB, end 214.85MB, increase: -373.30KB
  3868. 2025-1-18 15:24:34-debug: 查询 Asset Bundle start, progress: 5%
  3869. 2025-1-18 15:24:34-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3870. 2025-1-18 15:24:34-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3871. 2025-1-18 15:24:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3872. 2025-1-18 15:24:34-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  3873. 2025-1-18 15:24:34-debug: [Build Memory track]: 查询 Asset Bundle start:214.89MB, end 215.09MB, increase: 212.53KB
  3874. 2025-1-18 15:24:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3875. 2025-1-18 15:24:34-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  3876. 2025-1-18 15:24:34-debug: // ---- build task 填充脚本数据到 settings.json ----
  3877. 2025-1-18 15:24:34-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.12MB, end 215.15MB, increase: 29.48KB
  3878. 2025-1-18 15:24:34-debug: 填充脚本数据到 settings.json start, progress: 12%
  3879. 2025-1-18 15:24:34-debug: [Build Memory track]: 填充脚本数据到 settings.json start:215.18MB, end 215.21MB, increase: 27.13KB
  3880. 2025-1-18 15:24:34-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3881. 2025-1-18 15:24:34-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3882. 2025-1-18 15:24:34-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3883. 2025-1-18 15:24:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3884. 2025-1-18 15:24:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  3885. 2025-1-18 15:24:34-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.24MB, end 215.37MB, increase: 130.39KB
  3886. 2025-1-18 15:24:34-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  3887. 2025-1-18 15:24:35-debug: Query all assets info in project
  3888. 2025-1-18 15:24:35-debug: init custom config: keepNodeUuid: false, useCache: true
  3889. 2025-1-18 15:24:35-debug: 查询 Asset Bundle start, progress: 0%
  3890. 2025-1-18 15:24:35-debug: // ---- build task 查询 Asset Bundle ----
  3891. 2025-1-18 15:24:35-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
  3892. 2025-1-18 15:24:35-debug: Number of all scenes: 3
  3893. 2025-1-18 15:24:35-debug: Number of all scripts: 119
  3894. 2025-1-18 15:24:35-debug: Number of other assets: 1136
  3895. 2025-1-18 15:24:35-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  3896. 2025-1-18 15:24:35-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  3897. 2025-1-18 15:24:35-debug: // ---- build task 查询 Asset Bundle ----
  3898. 2025-1-18 15:24:35-debug: [Build Memory track]: 查询 Asset Bundle start:216.03MB, end 214.15MB, increase: -1919.44KB
  3899. 2025-1-18 15:24:35-debug: 查询 Asset Bundle start, progress: 5%
  3900. 2025-1-18 15:24:35-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3901. 2025-1-18 15:24:35-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3902. 2025-1-18 15:24:35-debug: [Build Memory track]: 查询 Asset Bundle start:214.19MB, end 214.39MB, increase: 213.77KB
  3903. 2025-1-18 15:24:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3904. 2025-1-18 15:24:35-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3905. 2025-1-18 15:24:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3906. 2025-1-18 15:24:35-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3907. 2025-1-18 15:24:35-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.43MB, end 214.45MB, increase: 28.30KB
  3908. 2025-1-18 15:24:35-debug: // ---- build task 填充脚本数据到 settings.json ----
  3909. 2025-1-18 15:24:35-debug: 填充脚本数据到 settings.json start, progress: 12%
  3910. 2025-1-18 15:24:35-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3911. 2025-1-18 15:24:35-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3912. 2025-1-18 15:24:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3913. 2025-1-18 15:24:35-debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.49MB, end 214.54MB, increase: 57.21KB
  3914. 2025-1-18 15:24:35-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3915. 2025-1-18 15:24:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3916. 2025-1-18 15:24:35-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3917. 2025-1-18 15:24:35-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.57MB, end 214.71MB, increase: 143.89KB
  3918. 2025-1-18 15:24:52-debug: refresh db internal success
  3919. 2025-1-18 15:24:52-debug: refresh db assets success
  3920. 2025-1-18 15:24:52-debug: Run asset db hook engine-extends:afterRefresh ...
  3921. 2025-1-18 15:24:52-debug: Run asset db hook engine-extends:afterRefresh success!
  3922. 2025-1-18 15:24:52-debug: asset-db:refresh-all-database (145ms)
  3923. 2025-1-18 15:24:52-debug: asset-db:worker-effect-data-processing (35ms)
  3924. 2025-1-18 15:24:52-debug: asset-db-hook-engine-extends-afterRefresh (36ms)
  3925. 2025-1-18 15:25:05-debug: refresh db internal success
  3926. 2025-1-18 15:25:05-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store.ts background: #aaff85; color: #000; color: #000;
  3927. 2025-1-18 15:25:05-debug: refresh db assets success
  3928. 2025-1-18 15:25:05-debug: Run asset db hook engine-extends:afterRefresh ...
  3929. 2025-1-18 15:25:05-debug: Run asset db hook engine-extends:afterRefresh success!
  3930. 2025-1-18 15:25:05-debug: asset-db:refresh-all-database (153ms)
  3931. 2025-1-18 15:25:05-debug: asset-db:worker-effect-data-processing (12ms)
  3932. 2025-1-18 15:25:05-debug: asset-db-hook-engine-extends-afterRefresh (12ms)
  3933. 2025-1-18 15:25:06-debug: Query all assets info in project
  3934. 2025-1-18 15:25:06-debug: init custom config: keepNodeUuid: false, useCache: true
  3935. 2025-1-18 15:25:06-debug: 查询 Asset Bundle start, progress: 0%
  3936. 2025-1-18 15:25:06-debug: // ---- build task 查询 Asset Bundle ----
  3937. 2025-1-18 15:25:06-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
  3938. 2025-1-18 15:25:06-debug: Number of other assets: 1136
  3939. 2025-1-18 15:25:06-debug: Number of all scenes: 3
  3940. 2025-1-18 15:25:06-debug: Number of all scripts: 119
  3941. 2025-1-18 15:25:06-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3942. 2025-1-18 15:25:06-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  3943. 2025-1-18 15:25:06-debug: // ---- build task 查询 Asset Bundle ----
  3944. 2025-1-18 15:25:06-debug: 查询 Asset Bundle start, progress: 5%
  3945. 2025-1-18 15:25:06-debug: [Build Memory track]: 查询 Asset Bundle start:201.10MB, end 200.24MB, increase: -889.13KB
  3946. 2025-1-18 15:25:06-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3947. 2025-1-18 15:25:06-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3948. 2025-1-18 15:25:06-debug: [Build Memory track]: 查询 Asset Bundle start:200.27MB, end 200.48MB, increase: 213.75KB
  3949. 2025-1-18 15:25:06-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3950. 2025-1-18 15:25:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3951. 2025-1-18 15:25:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3952. 2025-1-18 15:25:06-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3953. 2025-1-18 15:25:06-debug: // ---- build task 填充脚本数据到 settings.json ----
  3954. 2025-1-18 15:25:06-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.51MB, end 200.54MB, increase: 27.93KB
  3955. 2025-1-18 15:25:06-debug: 填充脚本数据到 settings.json start, progress: 12%
  3956. 2025-1-18 15:25:06-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3957. 2025-1-18 15:25:06-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3958. 2025-1-18 15:25:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3959. 2025-1-18 15:25:06-debug: [Build Memory track]: 填充脚本数据到 settings.json start:200.57MB, end 200.59MB, increase: 28.27KB
  3960. 2025-1-18 15:25:06-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3961. 2025-1-18 15:25:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3962. 2025-1-18 15:25:06-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3963. 2025-1-18 15:25:06-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.63MB, end 200.76MB, increase: 140.91KB
  3964. 2025-1-18 15:25:12-debug: Query all assets info in project
  3965. 2025-1-18 15:25:12-debug: init custom config: keepNodeUuid: false, useCache: true
  3966. 2025-1-18 15:25:12-debug: 查询 Asset Bundle start, progress: 0%
  3967. 2025-1-18 15:25:12-debug: // ---- build task 查询 Asset Bundle ----
  3968. 2025-1-18 15:25: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
  3969. 2025-1-18 15:25:12-debug: Number of all scenes: 3
  3970. 2025-1-18 15:25:12-debug: Number of all scripts: 119
  3971. 2025-1-18 15:25:12-debug: Number of other assets: 1136
  3972. 2025-1-18 15:25:12-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3973. 2025-1-18 15:25:12-debug: [Build Memory track]: 查询 Asset Bundle start:200.61MB, end 199.81MB, increase: -819.62KB
  3974. 2025-1-18 15:25:12-debug: // ---- build task 查询 Asset Bundle ----
  3975. 2025-1-18 15:25:12-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  3976. 2025-1-18 15:25:12-debug: 查询 Asset Bundle start, progress: 5%
  3977. 2025-1-18 15:25:12-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3978. 2025-1-18 15:25:12-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3979. 2025-1-18 15:25:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3980. 2025-1-18 15:25:12-debug: [Build Memory track]: 查询 Asset Bundle start:199.84MB, end 200.05MB, increase: 214.90KB
  3981. 2025-1-18 15:25:12-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3982. 2025-1-18 15:25:12-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3983. 2025-1-18 15:25:12-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.08MB, end 199.21MB, increase: -892.30KB
  3984. 2025-1-18 15:25:12-debug: 填充脚本数据到 settings.json start, progress: 12%
  3985. 2025-1-18 15:25:12-debug: // ---- build task 填充脚本数据到 settings.json ----
  3986. 2025-1-18 15:25:12-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  3987. 2025-1-18 15:25:12-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  3988. 2025-1-18 15:25:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3989. 2025-1-18 15:25:12-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3990. 2025-1-18 15:25:12-debug: [Build Memory track]: 填充脚本数据到 settings.json start:199.24MB, end 199.27MB, increase: 29.25KB
  3991. 2025-1-18 15:25:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3992. 2025-1-18 15:25:12-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3993. 2025-1-18 15:25:12-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.30MB, end 199.44MB, increase: 147.45KB
  3994. 2025-1-18 15:25:30-debug: refresh db internal success
  3995. 2025-1-18 15:25:30-debug: refresh db assets success
  3996. 2025-1-18 15:25:30-debug: Run asset db hook engine-extends:afterRefresh ...
  3997. 2025-1-18 15:25:30-debug: Run asset db hook engine-extends:afterRefresh success!
  3998. 2025-1-18 15:25:30-debug: asset-db:refresh-all-database (109ms)
  3999. 2025-1-18 15:25:30-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4000. 2025-1-18 15:25:49-debug: refresh db internal success
  4001. 2025-1-18 15:25:49-debug: refresh db assets success
  4002. 2025-1-18 15:25:49-debug: Run asset db hook engine-extends:afterRefresh ...
  4003. 2025-1-18 15:25:49-debug: Run asset db hook engine-extends:afterRefresh success!
  4004. 2025-1-18 15:25:49-debug: asset-db:refresh-all-database (253ms)
  4005. 2025-1-18 15:25:49-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4006. 2025-1-18 15:25:49-debug: asset-db:worker-effect-data-processing (1ms)
  4007. 2025-1-18 15:25:56-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store-001.json...
  4008. 2025-1-18 15:25:56-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store-001.json background: #aaff85; color: #000; color: #000;
  4009. 2025-1-18 15:25:56-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4010. 2025-1-18 15:25:57-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4011. 2025-1-18 15:26:01-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store-001.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\task.json...
  4012. 2025-1-18 15:26:01-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\task.json...
  4013. 2025-1-18 15:26:01-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\task.json background: #aaff85; color: #000; color: #000;
  4014. 2025-1-18 15:26:01-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4015. 2025-1-18 15:26:01-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4016. 2025-1-18 15:26:01-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4017. 2025-1-18 15:26:01-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store-001.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\task.json success
  4018. 2025-1-18 15:26:01-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4019. 2025-1-18 15:26:04-debug: Cannot find the asset handler of operate open for importer json
  4020. 2025-1-18 15:26:10-debug: refresh db internal success
  4021. 2025-1-18 15:26:10-debug: refresh db assets success
  4022. 2025-1-18 15:26:10-debug: Run asset db hook engine-extends:afterRefresh ...
  4023. 2025-1-18 15:26:10-debug: Run asset db hook engine-extends:afterRefresh success!
  4024. 2025-1-18 15:26:10-debug: asset-db:refresh-all-database (314ms)
  4025. 2025-1-18 15:26:10-debug: asset-db:worker-effect-data-processing (1ms)
  4026. 2025-1-18 15:26:10-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4027. 2025-1-18 15:28:04-debug: refresh db internal success
  4028. 2025-1-18 15:28:04-debug: refresh db assets success
  4029. 2025-1-18 15:28:04-debug: Run asset db hook engine-extends:afterRefresh ...
  4030. 2025-1-18 15:28:04-debug: Run asset db hook engine-extends:afterRefresh success!
  4031. 2025-1-18 15:28:04-debug: asset-db:refresh-all-database (128ms)
  4032. 2025-1-18 15:28:04-debug: asset-db:worker-effect-data-processing (1ms)
  4033. 2025-1-18 15:28:04-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4034. 2025-1-18 15:28:07-debug: refresh db internal success
  4035. 2025-1-18 15:28:07-debug: refresh db assets success
  4036. 2025-1-18 15:28:07-debug: Run asset db hook engine-extends:afterRefresh success!
  4037. 2025-1-18 15:28:07-debug: Run asset db hook engine-extends:afterRefresh ...
  4038. 2025-1-18 15:28:07-debug: asset-db:refresh-all-database (112ms)
  4039. 2025-1-18 15:29:19-debug: refresh db internal success
  4040. 2025-1-18 15:29:19-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\task.json background: #aaff85; color: #000; color: #000;
  4041. 2025-1-18 15:29:19-debug: refresh db assets success
  4042. 2025-1-18 15:29:19-debug: Run asset db hook engine-extends:afterRefresh ...
  4043. 2025-1-18 15:29:19-debug: Run asset db hook engine-extends:afterRefresh success!
  4044. 2025-1-18 15:29:19-debug: asset-db:refresh-all-database (111ms)
  4045. 2025-1-18 15:29:19-debug: asset-db:worker-effect-data-processing (1ms)
  4046. 2025-1-18 15:29:19-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4047. 2025-1-18 15:29:43-debug: refresh db internal success
  4048. 2025-1-18 15:29:43-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\task.json background: #aaff85; color: #000; color: #000;
  4049. 2025-1-18 15:29:43-debug: refresh db assets success
  4050. 2025-1-18 15:29:43-debug: Run asset db hook engine-extends:afterRefresh ...
  4051. 2025-1-18 15:29:43-debug: Run asset db hook engine-extends:afterRefresh success!
  4052. 2025-1-18 15:29:43-debug: asset-db:refresh-all-database (104ms)
  4053. 2025-1-18 15:29:43-debug: asset-db:worker-effect-data-processing (1ms)
  4054. 2025-1-18 15:29:43-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4055. 2025-1-18 15:29:49-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store-001.ts...
  4056. 2025-1-18 15:29:49-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store-001.ts background: #aaff85; color: #000; color: #000;
  4057. 2025-1-18 15:29:49-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4058. 2025-1-18 15:29:49-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4059. 2025-1-18 15:29:55-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store-001.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_task.ts...
  4060. 2025-1-18 15:29:55-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_task.ts...
  4061. 2025-1-18 15:29:55-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_task.ts background: #aaff85; color: #000; color: #000;
  4062. 2025-1-18 15:29:55-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4063. 2025-1-18 15:29:55-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts...
  4064. 2025-1-18 15:29:55-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4065. 2025-1-18 15:29:55-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store-001.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_task.ts success
  4066. 2025-1-18 15:29:55-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4067. 2025-1-18 15:29:56-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4068. 2025-1-18 15:31:25-debug: refresh db internal success
  4069. 2025-1-18 15:31:25-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_task.ts background: #aaff85; color: #000; color: #000;
  4070. 2025-1-18 15:31:25-debug: refresh db assets success
  4071. 2025-1-18 15:31:25-debug: Run asset db hook engine-extends:afterRefresh ...
  4072. 2025-1-18 15:31:25-debug: Run asset db hook engine-extends:afterRefresh success!
  4073. 2025-1-18 15:31:25-debug: asset-db:refresh-all-database (344ms)
  4074. 2025-1-18 15:31:25-debug: asset-db:worker-effect-data-processing (4ms)
  4075. 2025-1-18 15:31:25-debug: asset-db-hook-engine-extends-afterRefresh (6ms)
  4076. 2025-1-18 15:32:00-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4077. 2025-1-18 15:37:23-debug: refresh db internal success
  4078. 2025-1-18 15:37:23-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Task\UI_Task.ts background: #aaff85; color: #000; color: #000;
  4079. 2025-1-18 15:37:23-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Task\UI_Task_Item.ts background: #aaff85; color: #000; color: #000;
  4080. 2025-1-18 15:37:23-debug: Run asset db hook engine-extends:afterRefresh ...
  4081. 2025-1-18 15:37:23-debug: Run asset db hook engine-extends:afterRefresh success!
  4082. 2025-1-18 15:37:23-debug: refresh db assets success
  4083. 2025-1-18 15:37:23-debug: asset-db:refresh-all-database (350ms)
  4084. 2025-1-18 15:37:23-debug: asset-db:worker-effect-data-processing (37ms)
  4085. 2025-1-18 15:37:23-debug: asset-db-hook-engine-extends-afterRefresh (37ms)
  4086. 2025-1-18 15:37:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Task\Task.prefab background: #aaff85; color: #000; color: #000;
  4087. 2025-1-18 15:37:31-debug: asset-db:reimport-asset7ec01514-1b13-41f3-86ea-9dbe6e53ba1b (20ms)
  4088. 2025-1-18 15:37:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Task\Task.prefab background: #aaff85; color: #000; color: #000;
  4089. 2025-1-18 15:37:31-debug: asset-db:reimport-asset7ec01514-1b13-41f3-86ea-9dbe6e53ba1b (112ms)
  4090. 2025-1-18 15:37:33-debug: refresh db internal success
  4091. 2025-1-18 15:37:33-debug: refresh db assets success
  4092. 2025-1-18 15:37:33-debug: Run asset db hook engine-extends:afterRefresh ...
  4093. 2025-1-18 15:37:33-debug: Run asset db hook engine-extends:afterRefresh success!
  4094. 2025-1-18 15:37:33-debug: asset-db:refresh-all-database (116ms)
  4095. 2025-1-18 15:37:33-debug: asset-db:worker-effect-data-processing (14ms)
  4096. 2025-1-18 15:37:33-debug: asset-db-hook-engine-extends-afterRefresh (14ms)
  4097. 2025-1-18 15:37:34-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Task\Task.prefab background: #aaff85; color: #000; color: #000;
  4098. 2025-1-18 15:37:34-debug: asset-db:reimport-asset7ec01514-1b13-41f3-86ea-9dbe6e53ba1b (19ms)
  4099. 2025-1-18 15:40:42-debug: refresh db internal success
  4100. 2025-1-18 15:40:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_store.ts background: #aaff85; color: #000; color: #000;
  4101. 2025-1-18 15:40:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_task.ts background: #aaff85; color: #000; color: #000;
  4102. 2025-1-18 15:40:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\task.json background: #aaff85; color: #000; color: #000;
  4103. 2025-1-18 15:40:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\store.json background: #aaff85; color: #000; color: #000;
  4104. 2025-1-18 15:40:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\PlayerData.ts background: #aaff85; color: #000; color: #000;
  4105. 2025-1-18 15:40:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Store\UI_Store.ts background: #aaff85; color: #000; color: #000;
  4106. 2025-1-18 15:40:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Task\UI_Task_Item.ts background: #aaff85; color: #000; color: #000;
  4107. 2025-1-18 15:40:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Win\UI_Win.ts background: #aaff85; color: #000; color: #000;
  4108. 2025-1-18 15:40:42-debug: refresh db assets success
  4109. 2025-1-18 15:40:42-debug: Run asset db hook engine-extends:afterRefresh ...
  4110. 2025-1-18 15:40:42-debug: Run asset db hook engine-extends:afterRefresh success!
  4111. 2025-1-18 15:40:42-debug: asset-db:refresh-all-database (309ms)
  4112. 2025-1-18 15:40:42-debug: asset-db:worker-effect-data-processing (1ms)
  4113. 2025-1-18 15:40:42-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4114. 2025-1-18 15:40:44-debug: Query all assets info in project
  4115. 2025-1-18 15:40:44-debug: init custom config: keepNodeUuid: false, useCache: true
  4116. 2025-1-18 15:40:44-debug: 查询 Asset Bundle start, progress: 0%
  4117. 2025-1-18 15:40:44-debug: // ---- build task 查询 Asset Bundle ----
  4118. 2025-1-18 15:40:44-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4119. 2025-1-18 15:40:44-debug: Number of all scenes: 3
  4120. 2025-1-18 15:40:44-debug: Number of all scripts: 120
  4121. 2025-1-18 15:40:44-debug: Number of other assets: 1137
  4122. 2025-1-18 15:40:44-debug: // ---- build task 查询 Asset Bundle ---- (15ms)
  4123. 2025-1-18 15:40:44-debug: run build task 查询 Asset Bundle success in 15 ms√, progress: 5%
  4124. 2025-1-18 15:40:44-debug: [Build Memory track]: 查询 Asset Bundle start:204.74MB, end 204.80MB, increase: 63.52KB
  4125. 2025-1-18 15:40:44-debug: 查询 Asset Bundle start, progress: 5%
  4126. 2025-1-18 15:40:44-debug: // ---- build task 查询 Asset Bundle ----
  4127. 2025-1-18 15:40:44-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  4128. 2025-1-18 15:40:44-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  4129. 2025-1-18 15:40:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4130. 2025-1-18 15:40:44-debug: [Build Memory track]: 查询 Asset Bundle start:204.83MB, end 205.06MB, increase: 233.75KB
  4131. 2025-1-18 15:40:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4132. 2025-1-18 15:40:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4133. 2025-1-18 15:40:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 12%
  4134. 2025-1-18 15:40:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  4135. 2025-1-18 15:40:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.09MB, end 205.12MB, increase: 29.51KB
  4136. 2025-1-18 15:40:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  4137. 2025-1-18 15:40:44-debug: // ---- build task 填充脚本数据到 settings.json ---- (4ms)
  4138. 2025-1-18 15:40:44-debug: run build task 填充脚本数据到 settings.json success in 4 ms√, progress: 13%
  4139. 2025-1-18 15:40:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:205.15MB, end 205.18MB, increase: 28.48KB
  4140. 2025-1-18 15:40:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4141. 2025-1-18 15:40:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4142. 2025-1-18 15:40:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (28ms)
  4143. 2025-1-18 15:40:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 28 ms√, progress: 15%
  4144. 2025-1-18 15:40:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.21MB, end 205.34MB, increase: 133.86KB
  4145. 2025-1-18 15:40:46-debug: Query all assets info in project
  4146. 2025-1-18 15:40:46-debug: init custom config: keepNodeUuid: false, useCache: true
  4147. 2025-1-18 15:40:46-debug: 查询 Asset Bundle start, progress: 0%
  4148. 2025-1-18 15:40:46-debug: // ---- build task 查询 Asset Bundle ----
  4149. 2025-1-18 15:40:46-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
  4150. 2025-1-18 15:40:46-debug: Number of all scenes: 3
  4151. 2025-1-18 15:40:46-debug: Number of all scripts: 120
  4152. 2025-1-18 15:40:46-debug: Number of other assets: 1137
  4153. 2025-1-18 15:40:46-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  4154. 2025-1-18 15:40:46-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  4155. 2025-1-18 15:40:46-debug: // ---- build task 查询 Asset Bundle ----
  4156. 2025-1-18 15:40:46-debug: 查询 Asset Bundle start, progress: 5%
  4157. 2025-1-18 15:40:46-debug: [Build Memory track]: 查询 Asset Bundle start:206.15MB, end 206.25MB, increase: 102.02KB
  4158. 2025-1-18 15:40:46-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  4159. 2025-1-18 15:40:46-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  4160. 2025-1-18 15:40:46-debug: [Build Memory track]: 查询 Asset Bundle start:206.28MB, end 205.01MB, increase: -1303.04KB
  4161. 2025-1-18 15:40:46-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4162. 2025-1-18 15:40:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4163. 2025-1-18 15:40:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4164. 2025-1-18 15:40:46-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4165. 2025-1-18 15:40:46-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.04MB, end 205.07MB, increase: 29.51KB
  4166. 2025-1-18 15:40:46-debug: 填充脚本数据到 settings.json start, progress: 12%
  4167. 2025-1-18 15:40:46-debug: // ---- build task 填充脚本数据到 settings.json ----
  4168. 2025-1-18 15:40:46-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4169. 2025-1-18 15:40:46-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4170. 2025-1-18 15:40:46-debug: [Build Memory track]: 填充脚本数据到 settings.json start:205.10MB, end 205.13MB, increase: 26.96KB
  4171. 2025-1-18 15:40:46-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4172. 2025-1-18 15:40:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4173. 2025-1-18 15:40:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4174. 2025-1-18 15:40:46-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4175. 2025-1-18 15:40:46-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.16MB, end 205.29MB, increase: 131.32KB
  4176. 2025-1-18 15:40:51-debug: Query all assets info in project
  4177. 2025-1-18 15:40:51-debug: init custom config: keepNodeUuid: false, useCache: true
  4178. 2025-1-18 15:40:51-debug: 查询 Asset Bundle start, progress: 0%
  4179. 2025-1-18 15:40:51-debug: // ---- build task 查询 Asset Bundle ----
  4180. 2025-1-18 15:40:51-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
  4181. 2025-1-18 15:40:51-debug: Number of all scenes: 3
  4182. 2025-1-18 15:40:51-debug: Number of all scripts: 120
  4183. 2025-1-18 15:40:51-debug: Number of other assets: 1137
  4184. 2025-1-18 15:40:51-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  4185. 2025-1-18 15:40:51-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  4186. 2025-1-18 15:40:51-debug: // ---- build task 查询 Asset Bundle ----
  4187. 2025-1-18 15:40:51-debug: [Build Memory track]: 查询 Asset Bundle start:205.94MB, end 205.17MB, increase: -792.36KB
  4188. 2025-1-18 15:40:51-debug: 查询 Asset Bundle start, progress: 5%
  4189. 2025-1-18 15:40:51-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  4190. 2025-1-18 15:40:51-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  4191. 2025-1-18 15:40:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4192. 2025-1-18 15:40:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4193. 2025-1-18 15:40:51-debug: [Build Memory track]: 查询 Asset Bundle start:205.20MB, end 205.43MB, increase: 235.86KB
  4194. 2025-1-18 15:40:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4195. 2025-1-18 15:40:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  4196. 2025-1-18 15:40:51-debug: // ---- build task 填充脚本数据到 settings.json ----
  4197. 2025-1-18 15:40:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.46MB, end 205.49MB, increase: 32.92KB
  4198. 2025-1-18 15:40:51-debug: 填充脚本数据到 settings.json start, progress: 12%
  4199. 2025-1-18 15:40:51-debug: // ---- build task 填充脚本数据到 settings.json ---- (4ms)
  4200. 2025-1-18 15:40:51-debug: run build task 填充脚本数据到 settings.json success in 4 ms√, progress: 13%
  4201. 2025-1-18 15:40:51-debug: [Build Memory track]: 填充脚本数据到 settings.json start:205.52MB, end 205.55MB, increase: 28.77KB
  4202. 2025-1-18 15:40:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4203. 2025-1-18 15:40:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4204. 2025-1-18 15:40:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4205. 2025-1-18 15:40:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4206. 2025-1-18 15:40:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.58MB, end 205.71MB, increase: 129.82KB
  4207. 2025-1-18 15:40:55-debug: Query all assets info in project
  4208. 2025-1-18 15:40:55-debug: init custom config: keepNodeUuid: false, useCache: true
  4209. 2025-1-18 15:40:55-debug: 查询 Asset Bundle start, progress: 0%
  4210. 2025-1-18 15:40:55-debug: // ---- build task 查询 Asset Bundle ----
  4211. 2025-1-18 15:40:55-debug: Number of all scenes: 3
  4212. 2025-1-18 15:40:55-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4213. 2025-1-18 15:40:55-debug: Number of all scripts: 120
  4214. 2025-1-18 15:40:55-debug: Number of other assets: 1137
  4215. 2025-1-18 15:40:55-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  4216. 2025-1-18 15:40:55-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  4217. 2025-1-18 15:40:55-debug: [Build Memory track]: 查询 Asset Bundle start:205.50MB, end 205.59MB, increase: 92.18KB
  4218. 2025-1-18 15:40:55-debug: // ---- build task 查询 Asset Bundle ----
  4219. 2025-1-18 15:40:55-debug: 查询 Asset Bundle start, progress: 5%
  4220. 2025-1-18 15:40:55-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  4221. 2025-1-18 15:40:55-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  4222. 2025-1-18 15:40:55-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4223. 2025-1-18 15:40:55-debug: [Build Memory track]: 查询 Asset Bundle start:205.62MB, end 205.85MB, increase: 234.49KB
  4224. 2025-1-18 15:40:55-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4225. 2025-1-18 15:40:55-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4226. 2025-1-18 15:40:55-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4227. 2025-1-18 15:40:55-debug: // ---- build task 填充脚本数据到 settings.json ----
  4228. 2025-1-18 15:40:55-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.88MB, end 205.91MB, increase: 28.36KB
  4229. 2025-1-18 15:40:55-debug: 填充脚本数据到 settings.json start, progress: 12%
  4230. 2025-1-18 15:40:55-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4231. 2025-1-18 15:40:55-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4232. 2025-1-18 15:40:55-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4233. 2025-1-18 15:40:55-debug: [Build Memory track]: 填充脚本数据到 settings.json start:205.94MB, end 205.97MB, increase: 28.85KB
  4234. 2025-1-18 15:40:55-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4235. 2025-1-18 15:40:55-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4236. 2025-1-18 15:40:55-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4237. 2025-1-18 15:40:55-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.00MB, end 206.13MB, increase: 137.43KB
  4238. 2025-1-18 15:41:17-debug: refresh db internal success
  4239. 2025-1-18 15:41:17-debug: refresh db assets success
  4240. 2025-1-18 15:41:17-debug: Run asset db hook engine-extends:afterRefresh success!
  4241. 2025-1-18 15:41:17-debug: Run asset db hook engine-extends:afterRefresh ...
  4242. 2025-1-18 15:41:17-debug: asset-db:refresh-all-database (104ms)
  4243. 2025-1-18 15:41:17-debug: asset-db:worker-effect-data-processing (1ms)
  4244. 2025-1-18 15:41:17-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4245. 2025-1-18 15:43:26-debug: refresh db internal success
  4246. 2025-1-18 15:43:26-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Task\UI_Task_Item.ts background: #aaff85; color: #000; color: #000;
  4247. 2025-1-18 15:43:26-debug: refresh db assets success
  4248. 2025-1-18 15:43:26-debug: Run asset db hook engine-extends:afterRefresh ...
  4249. 2025-1-18 15:43:26-debug: Run asset db hook engine-extends:afterRefresh success!
  4250. 2025-1-18 15:43:26-debug: asset-db:refresh-all-database (108ms)
  4251. 2025-1-18 15:43:26-debug: asset-db:worker-effect-data-processing (1ms)
  4252. 2025-1-18 15:43:26-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4253. 2025-1-18 15:43:28-debug: Query all assets info in project
  4254. 2025-1-18 15:43:28-debug: init custom config: keepNodeUuid: false, useCache: true
  4255. 2025-1-18 15:43:28-debug: 查询 Asset Bundle start, progress: 0%
  4256. 2025-1-18 15:43:28-debug: // ---- build task 查询 Asset Bundle ----
  4257. 2025-1-18 15:43:28-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
  4258. 2025-1-18 15:43:28-debug: Number of all scenes: 3
  4259. 2025-1-18 15:43:28-debug: Number of all scripts: 120
  4260. 2025-1-18 15:43:28-debug: Number of other assets: 1137
  4261. 2025-1-18 15:43:28-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  4262. 2025-1-18 15:43:28-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  4263. 2025-1-18 15:43:28-debug: [Build Memory track]: 查询 Asset Bundle start:211.33MB, end 211.34MB, increase: 3.77KB
  4264. 2025-1-18 15:43:28-debug: // ---- build task 查询 Asset Bundle ----
  4265. 2025-1-18 15:43:28-debug: 查询 Asset Bundle start, progress: 5%
  4266. 2025-1-18 15:43:28-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4267. 2025-1-18 15:43:28-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4268. 2025-1-18 15:43:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4269. 2025-1-18 15:43:28-debug: [Build Memory track]: 查询 Asset Bundle start:211.37MB, end 211.57MB, increase: 210.65KB
  4270. 2025-1-18 15:43:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4271. 2025-1-18 15:43:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4272. 2025-1-18 15:43:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.61MB, end 211.63MB, increase: 28.46KB
  4273. 2025-1-18 15:43:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4274. 2025-1-18 15:43:28-debug: 填充脚本数据到 settings.json start, progress: 12%
  4275. 2025-1-18 15:43:28-debug: // ---- build task 填充脚本数据到 settings.json ----
  4276. 2025-1-18 15:43:28-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4277. 2025-1-18 15:43:28-debug: [Build Memory track]: 填充脚本数据到 settings.json start:211.66MB, end 211.68MB, increase: 17.99KB
  4278. 2025-1-18 15:43:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4279. 2025-1-18 15:43:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4280. 2025-1-18 15:43:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  4281. 2025-1-18 15:43:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  4282. 2025-1-18 15:43:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.71MB, end 210.37MB, increase: -1377.79KB
  4283. 2025-1-18 15:43:35-debug: refresh db internal success
  4284. 2025-1-18 15:43:35-debug: refresh db assets success
  4285. 2025-1-18 15:43:35-debug: Run asset db hook engine-extends:afterRefresh success!
  4286. 2025-1-18 15:43:35-debug: Run asset db hook engine-extends:afterRefresh ...
  4287. 2025-1-18 15:43:35-debug: asset-db:refresh-all-database (99ms)
  4288. 2025-1-18 15:43:35-debug: asset-db:worker-effect-data-processing (1ms)
  4289. 2025-1-18 15:43:35-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4290. 2025-1-18 15:47:53-debug: refresh db internal success
  4291. 2025-1-18 15:47:53-debug: refresh db assets success
  4292. 2025-1-18 15:47:53-debug: Run asset db hook engine-extends:afterRefresh ...
  4293. 2025-1-18 15:47:53-debug: Run asset db hook engine-extends:afterRefresh success!
  4294. 2025-1-18 15:47:53-debug: asset-db:refresh-all-database (102ms)
  4295. 2025-1-18 15:47:53-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4296. 2025-1-18 15:52:08-debug: refresh db internal success
  4297. 2025-1-18 15:52:08-debug: refresh db assets success
  4298. 2025-1-18 15:52:08-debug: Run asset db hook engine-extends:afterRefresh ...
  4299. 2025-1-18 15:52:08-debug: Run asset db hook engine-extends:afterRefresh success!
  4300. 2025-1-18 15:52:08-debug: asset-db:refresh-all-database (105ms)
  4301. 2025-1-18 15:52:08-debug: asset-db:worker-effect-data-processing (1ms)
  4302. 2025-1-18 15:52:08-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4303. 2025-1-18 15:52:16-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_06yof0.json...
  4304. 2025-1-18 15:52:16-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_06yof0.json background: #aaff85; color: #000; color: #000;
  4305. 2025-1-18 15:52:16-log: 资源数据库已锁定,资源操作(bound autoRefreshAssetLazy)将会延迟响应,请稍侯
  4306. 2025-1-18 15:52:16-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4307. 2025-1-18 15:52:16-debug: refresh db internal success
  4308. 2025-1-18 15:52:16-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4309. 2025-1-18 15:52:16-debug: refresh db assets success
  4310. 2025-1-18 15:52:16-debug: Run asset db hook engine-extends:afterRefresh ...
  4311. 2025-1-18 15:52:16-debug: Run asset db hook engine-extends:afterRefresh success!
  4312. 2025-1-18 15:52:16-debug: asset-db:refresh-all-database (133ms)
  4313. 2025-1-18 15:52:16-debug: asset-db:worker-effect-data-processing (1ms)
  4314. 2025-1-18 15:52:16-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4315. 2025-1-18 15:52:58-debug: refresh db internal success
  4316. 2025-1-18 15:52:58-debug: Run asset db hook engine-extends:afterRefresh ...
  4317. 2025-1-18 15:52:58-debug: Run asset db hook engine-extends:afterRefresh success!
  4318. 2025-1-18 15:52:58-debug: refresh db assets success
  4319. 2025-1-18 15:52:58-debug: asset-db:refresh-all-database (343ms)
  4320. 2025-1-18 15:52:58-debug: asset-db:worker-effect-data-processing (1ms)
  4321. 2025-1-18 15:52:58-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4322. 2025-1-18 15:53:17-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_06yof0.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json...
  4323. 2025-1-18 15:53:17-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json...
  4324. 2025-1-18 15:53:17-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json background: #aaff85; color: #000; color: #000;
  4325. 2025-1-18 15:53:17-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4326. 2025-1-18 15:53:17-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4327. 2025-1-18 15:53:17-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4328. 2025-1-18 15:53:17-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_06yof0.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json success
  4329. 2025-1-18 15:53:17-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4330. 2025-1-18 15:54:49-debug: Cannot find the asset handler of operate open for importer json
  4331. 2025-1-18 15:54:49-debug: refresh db internal success
  4332. 2025-1-18 15:54:49-debug: refresh db assets success
  4333. 2025-1-18 15:54:49-debug: Run asset db hook engine-extends:afterRefresh ...
  4334. 2025-1-18 15:54:49-debug: Run asset db hook engine-extends:afterRefresh success!
  4335. 2025-1-18 15:54:49-debug: asset-db:refresh-all-database (249ms)
  4336. 2025-1-18 15:54:49-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4337. 2025-1-18 15:54:49-debug: asset-db:worker-effect-data-processing (1ms)
  4338. 2025-1-18 15:55:35-debug: refresh db internal success
  4339. 2025-1-18 15:55:35-debug: refresh db assets success
  4340. 2025-1-18 15:55:35-debug: Run asset db hook engine-extends:afterRefresh ...
  4341. 2025-1-18 15:55:35-debug: Run asset db hook engine-extends:afterRefresh success!
  4342. 2025-1-18 15:55:35-debug: asset-db:refresh-all-database (107ms)
  4343. 2025-1-18 15:55:41-debug: refresh db internal success
  4344. 2025-1-18 15:55:41-debug: refresh db assets success
  4345. 2025-1-18 15:55:41-debug: Run asset db hook engine-extends:afterRefresh success!
  4346. 2025-1-18 15:55:41-debug: Run asset db hook engine-extends:afterRefresh ...
  4347. 2025-1-18 15:55:41-debug: asset-db:refresh-all-database (108ms)
  4348. 2025-1-18 15:56:25-debug: refresh db internal success
  4349. 2025-1-18 15:56:26-debug: refresh db assets success
  4350. 2025-1-18 15:56:26-debug: Run asset db hook engine-extends:afterRefresh ...
  4351. 2025-1-18 15:56:26-debug: Run asset db hook engine-extends:afterRefresh success!
  4352. 2025-1-18 15:56:26-debug: asset-db:refresh-all-database (272ms)
  4353. 2025-1-18 15:56:26-debug: asset-db:worker-effect-data-processing (2ms)
  4354. 2025-1-18 15:56:26-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  4355. 2025-1-18 16:00:16-debug: refresh db internal success
  4356. 2025-1-18 16:00:16-debug: refresh db assets success
  4357. 2025-1-18 16:00:16-debug: Run asset db hook engine-extends:afterRefresh ...
  4358. 2025-1-18 16:00:16-debug: Run asset db hook engine-extends:afterRefresh success!
  4359. 2025-1-18 16:00:16-debug: asset-db:refresh-all-database (109ms)
  4360. 2025-1-18 16:00:16-debug: asset-db:worker-effect-data-processing (1ms)
  4361. 2025-1-18 16:00:16-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4362. 2025-1-18 16:00:18-debug: refresh db internal success
  4363. 2025-1-18 16:00:18-debug: Run asset db hook engine-extends:afterRefresh ...
  4364. 2025-1-18 16:00:18-debug: Run asset db hook engine-extends:afterRefresh success!
  4365. 2025-1-18 16:00:18-debug: refresh db assets success
  4366. 2025-1-18 16:00:18-debug: asset-db:refresh-all-database (98ms)
  4367. 2025-1-18 16:00:18-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4368. 2025-1-18 16:00:22-debug: refresh db internal success
  4369. 2025-1-18 16:00:22-debug: refresh db assets success
  4370. 2025-1-18 16:00:22-debug: Run asset db hook engine-extends:afterRefresh ...
  4371. 2025-1-18 16:00:22-debug: Run asset db hook engine-extends:afterRefresh success!
  4372. 2025-1-18 16:00:22-debug: asset-db:refresh-all-database (103ms)
  4373. 2025-1-18 16:00:22-debug: asset-db:worker-effect-data-processing (1ms)
  4374. 2025-1-18 16:00:22-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4375. 2025-1-18 16:00:24-debug: refresh db internal success
  4376. 2025-1-18 16:00:24-debug: refresh db assets success
  4377. 2025-1-18 16:00:24-debug: Run asset db hook engine-extends:afterRefresh success!
  4378. 2025-1-18 16:00:24-debug: Run asset db hook engine-extends:afterRefresh ...
  4379. 2025-1-18 16:00:24-debug: asset-db:refresh-all-database (94ms)
  4380. 2025-1-18 16:00:24-debug: asset-db:worker-effect-data-processing (1ms)
  4381. 2025-1-18 16:00:24-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4382. 2025-1-18 16:00:30-debug: refresh db internal success
  4383. 2025-1-18 16:00:30-debug: Run asset db hook engine-extends:afterRefresh ...
  4384. 2025-1-18 16:00:30-debug: Run asset db hook engine-extends:afterRefresh success!
  4385. 2025-1-18 16:00:30-debug: refresh db assets success
  4386. 2025-1-18 16:00:30-debug: asset-db:refresh-all-database (94ms)
  4387. 2025-1-18 16:00:30-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4388. 2025-1-18 16:00:30-debug: asset-db:worker-effect-data-processing (1ms)
  4389. 2025-1-18 16:00:33-debug: refresh db internal success
  4390. 2025-1-18 16:00:33-debug: refresh db assets success
  4391. 2025-1-18 16:00:33-debug: Run asset db hook engine-extends:afterRefresh ...
  4392. 2025-1-18 16:00:33-debug: Run asset db hook engine-extends:afterRefresh success!
  4393. 2025-1-18 16:00:33-debug: asset-db:refresh-all-database (116ms)
  4394. 2025-1-18 16:00:33-debug: asset-db:worker-effect-data-processing (9ms)
  4395. 2025-1-18 16:00:33-debug: asset-db-hook-engine-extends-afterRefresh (9ms)
  4396. 2025-1-18 16:00:40-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_krb85m.json...
  4397. 2025-1-18 16:00:40-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_krb85m.json background: #aaff85; color: #000; color: #000;
  4398. 2025-1-18 16:00:40-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4399. 2025-1-18 16:00:40-debug: refresh db internal success
  4400. 2025-1-18 16:00:40-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4401. 2025-1-18 16:00:40-debug: refresh db assets success
  4402. 2025-1-18 16:00:40-debug: Run asset db hook engine-extends:afterRefresh ...
  4403. 2025-1-18 16:00:40-debug: Run asset db hook engine-extends:afterRefresh success!
  4404. 2025-1-18 16:00:40-debug: asset-db:refresh-all-database (161ms)
  4405. 2025-1-18 16:00:40-debug: asset-db:worker-effect-data-processing (2ms)
  4406. 2025-1-18 16:00:40-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4407. 2025-1-18 16:01:22-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_krb85m.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json...
  4408. 2025-1-18 16:01:22-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json...
  4409. 2025-1-18 16:01:22-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json background: #aaff85; color: #000; color: #000;
  4410. 2025-1-18 16:01:22-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4411. 2025-1-18 16:01:22-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4412. 2025-1-18 16:01:22-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4413. 2025-1-18 16:01:22-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_krb85m.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json success
  4414. 2025-1-18 16:01:22-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4415. 2025-1-18 16:02:52-debug: refresh db internal success
  4416. 2025-1-18 16:02:52-debug: refresh db assets success
  4417. 2025-1-18 16:02:52-debug: Run asset db hook engine-extends:afterRefresh ...
  4418. 2025-1-18 16:02:52-debug: Run asset db hook engine-extends:afterRefresh success!
  4419. 2025-1-18 16:02:52-debug: asset-db:refresh-all-database (298ms)
  4420. 2025-1-18 16:02:52-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4421. 2025-1-18 16:02:52-debug: asset-db:worker-effect-data-processing (2ms)
  4422. 2025-1-18 16:02:57-debug: refresh db internal success
  4423. 2025-1-18 16:02:57-debug: refresh db assets success
  4424. 2025-1-18 16:02:57-debug: Run asset db hook engine-extends:afterRefresh success!
  4425. 2025-1-18 16:02:57-debug: Run asset db hook engine-extends:afterRefresh ...
  4426. 2025-1-18 16:02:57-debug: asset-db:refresh-all-database (101ms)
  4427. 2025-1-18 16:04:34-debug: refresh db internal success
  4428. 2025-1-18 16:04:34-debug: refresh db assets success
  4429. 2025-1-18 16:04:34-debug: Run asset db hook engine-extends:afterRefresh ...
  4430. 2025-1-18 16:04:34-debug: Run asset db hook engine-extends:afterRefresh success!
  4431. 2025-1-18 16:04:34-debug: asset-db:refresh-all-database (105ms)
  4432. 2025-1-18 16:04:38-debug: refresh db internal success
  4433. 2025-1-18 16:04:38-debug: refresh db assets success
  4434. 2025-1-18 16:04:38-debug: Run asset db hook engine-extends:afterRefresh ...
  4435. 2025-1-18 16:04:38-debug: Run asset db hook engine-extends:afterRefresh success!
  4436. 2025-1-18 16:04:38-debug: asset-db:refresh-all-database (95ms)
  4437. 2025-1-18 16:04:43-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_fbgzhu.json...
  4438. 2025-1-18 16:04:43-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_fbgzhu.json background: #aaff85; color: #000; color: #000;
  4439. 2025-1-18 16:04:43-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4440. 2025-1-18 16:04:43-debug: refresh db internal success
  4441. 2025-1-18 16:04:43-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4442. 2025-1-18 16:04:43-debug: refresh db assets success
  4443. 2025-1-18 16:04:43-debug: Run asset db hook engine-extends:afterRefresh ...
  4444. 2025-1-18 16:04:43-debug: Run asset db hook engine-extends:afterRefresh success!
  4445. 2025-1-18 16:04:43-debug: asset-db:refresh-all-database (176ms)
  4446. 2025-1-18 16:04:43-debug: asset-db:worker-effect-data-processing (1ms)
  4447. 2025-1-18 16:04:43-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4448. 2025-1-18 16:04:53-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_fbgzhu.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json...
  4449. 2025-1-18 16:04:53-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json...
  4450. 2025-1-18 16:04:53-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json background: #aaff85; color: #000; color: #000;
  4451. 2025-1-18 16:04:53-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4452. 2025-1-18 16:04:53-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4453. 2025-1-18 16:04:53-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4454. 2025-1-18 16:04:53-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_fbgzhu.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json success
  4455. 2025-1-18 16:04:53-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4456. 2025-1-18 16:05:12-debug: refresh db internal success
  4457. 2025-1-18 16:05:12-debug: refresh db assets success
  4458. 2025-1-18 16:05:12-debug: Run asset db hook engine-extends:afterRefresh ...
  4459. 2025-1-18 16:05:12-debug: Run asset db hook engine-extends:afterRefresh success!
  4460. 2025-1-18 16:05:12-debug: asset-db:refresh-all-database (106ms)
  4461. 2025-1-18 16:08:09-debug: refresh db internal success
  4462. 2025-1-18 16:08:09-debug: refresh db assets success
  4463. 2025-1-18 16:08:09-debug: Run asset db hook engine-extends:afterRefresh ...
  4464. 2025-1-18 16:08:09-debug: Run asset db hook engine-extends:afterRefresh success!
  4465. 2025-1-18 16:08:09-debug: asset-db:refresh-all-database (379ms)
  4466. 2025-1-18 16:08:09-debug: asset-db:worker-effect-data-processing (2ms)
  4467. 2025-1-18 16:08:09-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  4468. 2025-1-18 16:08:12-debug: refresh db internal success
  4469. 2025-1-18 16:08:12-debug: refresh db assets success
  4470. 2025-1-18 16:08:12-debug: Run asset db hook engine-extends:afterRefresh ...
  4471. 2025-1-18 16:08:12-debug: Run asset db hook engine-extends:afterRefresh success!
  4472. 2025-1-18 16:08:12-debug: asset-db:refresh-all-database (269ms)
  4473. 2025-1-18 16:08:12-debug: asset-db:worker-effect-data-processing (2ms)
  4474. 2025-1-18 16:08:12-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4475. 2025-1-18 16:08:19-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_nv9u9n.json...
  4476. 2025-1-18 16:08:19-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_nv9u9n.json background: #aaff85; color: #000; color: #000;
  4477. 2025-1-18 16:08:19-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4478. 2025-1-18 16:08:19-debug: refresh db internal success
  4479. 2025-1-18 16:08:19-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4480. 2025-1-18 16:08:19-debug: refresh db assets success
  4481. 2025-1-18 16:08:19-debug: Run asset db hook engine-extends:afterRefresh ...
  4482. 2025-1-18 16:08:19-debug: Run asset db hook engine-extends:afterRefresh success!
  4483. 2025-1-18 16:08:19-debug: asset-db:refresh-all-database (158ms)
  4484. 2025-1-18 16:08:19-debug: asset-db:worker-effect-data-processing (1ms)
  4485. 2025-1-18 16:08:19-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4486. 2025-1-18 16:08:36-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_nv9u9n.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json...
  4487. 2025-1-18 16:08:36-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json...
  4488. 2025-1-18 16:08:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json background: #aaff85; color: #000; color: #000;
  4489. 2025-1-18 16:08:36-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4490. 2025-1-18 16:08:36-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4491. 2025-1-18 16:08:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4492. 2025-1-18 16:08:36-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_nv9u9n.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json success
  4493. 2025-1-18 16:08:36-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4494. 2025-1-18 16:09:11-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom-001.ts...
  4495. 2025-1-18 16:09:11-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom-001.ts background: #aaff85; color: #000; color: #000;
  4496. 2025-1-18 16:09:11-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4497. 2025-1-18 16:09:11-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4498. 2025-1-18 16:09:13-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4499. 2025-1-18 16:09:49-debug: refresh db internal success
  4500. 2025-1-18 16:09:49-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom-001.ts background: #aaff85; color: #000; color: #000;
  4501. 2025-1-18 16:09:49-debug: refresh db assets success
  4502. 2025-1-18 16:09:49-debug: Run asset db hook engine-extends:afterRefresh ...
  4503. 2025-1-18 16:09:49-debug: Run asset db hook engine-extends:afterRefresh success!
  4504. 2025-1-18 16:09:49-debug: asset-db:refresh-all-database (139ms)
  4505. 2025-1-18 16:09:49-debug: asset-db:worker-effect-data-processing (4ms)
  4506. 2025-1-18 16:09:49-debug: asset-db-hook-engine-extends-afterRefresh (5ms)
  4507. 2025-1-18 16:09:59-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom-001.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order.ts...
  4508. 2025-1-18 16:09:59-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order.ts...
  4509. 2025-1-18 16:09:59-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order.ts background: #aaff85; color: #000; color: #000;
  4510. 2025-1-18 16:09:59-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4511. 2025-1-18 16:09:59-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts...
  4512. 2025-1-18 16:09:59-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4513. 2025-1-18 16:09:59-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom-001.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order.ts success
  4514. 2025-1-18 16:09:59-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4515. 2025-1-18 16:10:05-debug: Cannot find the asset handler of operate open for importer json
  4516. 2025-1-18 16:10:19-debug: refresh db internal success
  4517. 2025-1-18 16:10:19-debug: refresh db assets success
  4518. 2025-1-18 16:10:19-debug: Run asset db hook engine-extends:afterRefresh ...
  4519. 2025-1-18 16:10:19-debug: Run asset db hook engine-extends:afterRefresh success!
  4520. 2025-1-18 16:10:19-debug: asset-db:refresh-all-database (138ms)
  4521. 2025-1-18 16:10:19-debug: asset-db:worker-effect-data-processing (4ms)
  4522. 2025-1-18 16:10:19-debug: asset-db-hook-engine-extends-afterRefresh (5ms)
  4523. 2025-1-18 16:10:19-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4524. 2025-1-18 16:10:32-debug: refresh db internal success
  4525. 2025-1-18 16:10:33-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order.ts background: #aaff85; color: #000; color: #000;
  4526. 2025-1-18 16:10:33-debug: refresh db assets success
  4527. 2025-1-18 16:10:33-debug: Run asset db hook engine-extends:afterRefresh ...
  4528. 2025-1-18 16:10:33-debug: Run asset db hook engine-extends:afterRefresh success!
  4529. 2025-1-18 16:10:33-debug: asset-db:refresh-all-database (107ms)
  4530. 2025-1-18 16:18:08-debug: refresh db internal success
  4531. 2025-1-18 16:18:08-debug: refresh db assets success
  4532. 2025-1-18 16:18:08-debug: Run asset db hook engine-extends:afterRefresh success!
  4533. 2025-1-18 16:18:08-debug: Run asset db hook engine-extends:afterRefresh ...
  4534. 2025-1-18 16:18:08-debug: asset-db:refresh-all-database (325ms)
  4535. 2025-1-18 16:18:08-debug: asset-db:worker-effect-data-processing (1ms)
  4536. 2025-1-18 16:18:08-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4537. 2025-1-18 16:18:15-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\order.json...
  4538. 2025-1-18 16:18:15-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\order.json...
  4539. 2025-1-18 16:18:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\order.json background: #aaff85; color: #000; color: #000;
  4540. 2025-1-18 16:18:15-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4541. 2025-1-18 16:18:15-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4542. 2025-1-18 16:18:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4543. 2025-1-18 16:18:15-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\order.json success
  4544. 2025-1-18 16:18:15-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4545. 2025-1-18 16:18:21-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_3+1.json...
  4546. 2025-1-18 16:18:21-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_3+1.json...
  4547. 2025-1-18 16:18:21-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_3+1.json background: #aaff85; color: #000; color: #000;
  4548. 2025-1-18 16:18:21-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4549. 2025-1-18 16:18:21-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4550. 2025-1-18 16:18:21-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4551. 2025-1-18 16:18:21-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_3+1.json success
  4552. 2025-1-18 16:18:21-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4553. 2025-1-18 16:18:28-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_2+2.json...
  4554. 2025-1-18 16:18:28-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_2+2.json...
  4555. 2025-1-18 16:18:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_2+2.json background: #aaff85; color: #000; color: #000;
  4556. 2025-1-18 16:18:29-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4557. 2025-1-18 16:18:29-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4558. 2025-1-18 16:18:29-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4559. 2025-1-18 16:18:29-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4560. 2025-1-18 16:18:29-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_2+2.json success
  4561. 2025-1-18 16:18:33-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_1+3.json...
  4562. 2025-1-18 16:18:33-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_1+3.json...
  4563. 2025-1-18 16:18:33-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_1+3.json background: #aaff85; color: #000; color: #000;
  4564. 2025-1-18 16:18:33-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4565. 2025-1-18 16:18:33-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4566. 2025-1-18 16:18:33-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4567. 2025-1-18 16:18:33-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_1+3.json success
  4568. 2025-1-18 16:18:33-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4569. 2025-1-18 16:19:10-debug: refresh db internal success
  4570. 2025-1-18 16:19:10-debug: Run asset db hook engine-extends:afterRefresh ...
  4571. 2025-1-18 16:19:10-debug: Run asset db hook engine-extends:afterRefresh success!
  4572. 2025-1-18 16:19:10-debug: refresh db assets success
  4573. 2025-1-18 16:19:10-debug: asset-db:refresh-all-database (118ms)
  4574. 2025-1-18 16:19:10-debug: asset-db:worker-effect-data-processing (1ms)
  4575. 2025-1-18 16:19:10-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4576. 2025-1-18 16:19:12-debug: refresh db internal success
  4577. 2025-1-18 16:19:12-debug: Run asset db hook engine-extends:afterRefresh ...
  4578. 2025-1-18 16:19:12-debug: Run asset db hook engine-extends:afterRefresh success!
  4579. 2025-1-18 16:19:12-debug: refresh db assets success
  4580. 2025-1-18 16:19:12-debug: asset-db:refresh-all-database (102ms)
  4581. 2025-1-18 16:19:12-debug: asset-db:worker-effect-data-processing (1ms)
  4582. 2025-1-18 16:19:12-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4583. 2025-1-18 16:19:16-debug: refresh db internal success
  4584. 2025-1-18 16:19:16-debug: refresh db assets success
  4585. 2025-1-18 16:19:16-debug: Run asset db hook engine-extends:afterRefresh ...
  4586. 2025-1-18 16:19:16-debug: Run asset db hook engine-extends:afterRefresh success!
  4587. 2025-1-18 16:19:16-debug: asset-db:refresh-all-database (99ms)
  4588. 2025-1-18 16:19:16-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4589. 2025-1-18 16:19:16-debug: asset-db:worker-effect-data-processing (2ms)
  4590. 2025-1-18 16:19:46-debug: Query all assets info in project
  4591. 2025-1-18 16:19:46-debug: init custom config: keepNodeUuid: false, useCache: true
  4592. 2025-1-18 16:19:46-debug: 查询 Asset Bundle start, progress: 0%
  4593. 2025-1-18 16:19:46-debug: // ---- build task 查询 Asset Bundle ----
  4594. 2025-1-18 16:19:46-debug: Number of all scenes: 3
  4595. 2025-1-18 16:19:46-debug: Number of all scripts: 121
  4596. 2025-1-18 16:19:46-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
  4597. 2025-1-18 16:19:46-debug: Number of other assets: 1141
  4598. 2025-1-18 16:19:46-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  4599. 2025-1-18 16:19:46-debug: [Build Memory track]: 查询 Asset Bundle start:200.25MB, end 200.39MB, increase: 144.65KB
  4600. 2025-1-18 16:19:46-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  4601. 2025-1-18 16:19:46-debug: 查询 Asset Bundle start, progress: 5%
  4602. 2025-1-18 16:19:46-debug: // ---- build task 查询 Asset Bundle ----
  4603. 2025-1-18 16:19:46-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4604. 2025-1-18 16:19:46-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4605. 2025-1-18 16:19:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4606. 2025-1-18 16:19:46-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4607. 2025-1-18 16:19:46-debug: [Build Memory track]: 查询 Asset Bundle start:200.42MB, end 200.63MB, increase: 214.13KB
  4608. 2025-1-18 16:19:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4609. 2025-1-18 16:19:46-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4610. 2025-1-18 16:19:46-debug: 填充脚本数据到 settings.json start, progress: 12%
  4611. 2025-1-18 16:19:46-debug: // ---- build task 填充脚本数据到 settings.json ----
  4612. 2025-1-18 16:19:46-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.66MB, end 200.69MB, increase: 28.54KB
  4613. 2025-1-18 16:19:46-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4614. 2025-1-18 16:19:46-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4615. 2025-1-18 16:19:46-debug: [Build Memory track]: 填充脚本数据到 settings.json start:200.72MB, end 200.75MB, increase: 28.07KB
  4616. 2025-1-18 16:19:46-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4617. 2025-1-18 16:19:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4618. 2025-1-18 16:19:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  4619. 2025-1-18 16:19:46-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.78MB, end 200.91MB, increase: 134.59KB
  4620. 2025-1-18 16:19:46-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  4621. 2025-1-18 16:19:56-debug: refresh db internal success
  4622. 2025-1-18 16:19:57-debug: refresh db assets success
  4623. 2025-1-18 16:19:57-debug: Run asset db hook engine-extends:afterRefresh ...
  4624. 2025-1-18 16:19:57-debug: Run asset db hook engine-extends:afterRefresh success!
  4625. 2025-1-18 16:19:57-debug: asset-db:refresh-all-database (342ms)
  4626. 2025-1-18 16:19:57-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4627. 2025-1-18 16:19:57-debug: asset-db:worker-effect-data-processing (2ms)
  4628. 2025-1-18 16:20:25-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\order.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json...
  4629. 2025-1-18 16:20:25-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json...
  4630. 2025-1-18 16:20:25-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json background: #aaff85; color: #000; color: #000;
  4631. 2025-1-18 16:20:26-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4632. 2025-1-18 16:20:26-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4633. 2025-1-18 16:20:26-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4634. 2025-1-18 16:20:26-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\order.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_order.json success
  4635. 2025-1-18 16:20:26-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4636. 2025-1-18 16:20:32-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_1+3.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json...
  4637. 2025-1-18 16:20:32-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json...
  4638. 2025-1-18 16:20:32-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json background: #aaff85; color: #000; color: #000;
  4639. 2025-1-18 16:20:32-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4640. 2025-1-18 16:20:32-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4641. 2025-1-18 16:20:32-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4642. 2025-1-18 16:20:32-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_1+3.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_1+3.json success
  4643. 2025-1-18 16:20:32-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4644. 2025-1-18 16:20:38-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_2+2.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json...
  4645. 2025-1-18 16:20:38-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json...
  4646. 2025-1-18 16:20:38-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json background: #aaff85; color: #000; color: #000;
  4647. 2025-1-18 16:20:38-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4648. 2025-1-18 16:20:38-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4649. 2025-1-18 16:20:38-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4650. 2025-1-18 16:20:38-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_2+2.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_2+2.json success
  4651. 2025-1-18 16:20:38-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4652. 2025-1-18 16:20:44-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_3+1.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json...
  4653. 2025-1-18 16:20:44-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json...
  4654. 2025-1-18 16:20:44-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json background: #aaff85; color: #000; color: #000;
  4655. 2025-1-18 16:20:44-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  4656. 2025-1-18 16:20:44-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  4657. 2025-1-18 16:20:44-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  4658. 2025-1-18 16:20:44-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4659. 2025-1-18 16:20:44-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\unorder_3+1.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\idiom_unorder_3+1.json success
  4660. 2025-1-18 16:20:49-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order-001.ts...
  4661. 2025-1-18 16:20:49-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order-001.ts background: #aaff85; color: #000; color: #000;
  4662. 2025-1-18 16:20:49-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4663. 2025-1-18 16:20:49-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4664. 2025-1-18 16:21:00-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order-001.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts...
  4665. 2025-1-18 16:21:00-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts...
  4666. 2025-1-18 16:21:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts background: #aaff85; color: #000; color: #000;
  4667. 2025-1-18 16:21:00-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4668. 2025-1-18 16:21:00-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts...
  4669. 2025-1-18 16:21:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4670. 2025-1-18 16:21:00-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_order-001.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts success
  4671. 2025-1-18 16:21:00-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4672. 2025-1-18 16:21:03-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4673. 2025-1-18 16:21:40-debug: refresh db internal success
  4674. 2025-1-18 16:21:41-debug: refresh db assets success
  4675. 2025-1-18 16:21:41-debug: Run asset db hook engine-extends:afterRefresh ...
  4676. 2025-1-18 16:21:41-debug: Run asset db hook engine-extends:afterRefresh success!
  4677. 2025-1-18 16:21:41-debug: asset-db:refresh-all-database (391ms)
  4678. 2025-1-18 16:21:41-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  4679. 2025-1-18 16:21:41-debug: asset-db:worker-effect-data-processing (3ms)
  4680. 2025-1-18 16:21:45-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts...
  4681. 2025-1-18 16:21:45-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts...
  4682. 2025-1-18 16:21:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts background: #aaff85; color: #000; color: #000;
  4683. 2025-1-18 16:21:45-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4684. 2025-1-18 16:21:45-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts...
  4685. 2025-1-18 16:21:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4686. 2025-1-18 16:21:45-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts success
  4687. 2025-1-18 16:21:45-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4688. 2025-1-18 16:22:18-debug: refresh db internal success
  4689. 2025-1-18 16:22:18-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts background: #aaff85; color: #000; color: #000;
  4690. 2025-1-18 16:22:18-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4691. 2025-1-18 16:22:18-debug: refresh db assets success
  4692. 2025-1-18 16:22:18-debug: Run asset db hook engine-extends:afterRefresh ...
  4693. 2025-1-18 16:22:18-debug: Run asset db hook engine-extends:afterRefresh success!
  4694. 2025-1-18 16:22:18-debug: asset-db:refresh-all-database (371ms)
  4695. 2025-1-18 16:22:18-debug: asset-db:worker-effect-data-processing (55ms)
  4696. 2025-1-18 16:22:18-debug: asset-db-hook-engine-extends-afterRefresh (56ms)
  4697. 2025-1-18 16:22:30-debug: programming:execute-script (-2ms)
  4698. 2025-1-18 16:22:31-debug: start remove asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts...
  4699. 2025-1-18 16:22:32-debug: refresh db internal success
  4700. 2025-1-18 16:22:32-debug: %cDestroy%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts background: #ffb8b8; color: #000; color: #000;
  4701. 2025-1-18 16:22:32-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4702. 2025-1-18 16:22:32-log: 资源数据库已锁定,资源操作(bound _refreshAsset)将会延迟响应,请稍侯
  4703. 2025-1-18 16:22:32-debug: refresh db assets success
  4704. 2025-1-18 16:22:32-debug: Run asset db hook engine-extends:afterRefresh ...
  4705. 2025-1-18 16:22:32-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4706. 2025-1-18 16:22:32-debug: Run asset db hook engine-extends:afterRefresh success!
  4707. 2025-1-18 16:22:32-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts...
  4708. 2025-1-18 16:22:32-debug: remove asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts success
  4709. 2025-1-18 16:22:32-debug: asset-db:refresh-all-database (182ms)
  4710. 2025-1-18 16:22:36-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts...
  4711. 2025-1-18 16:22:36-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts...
  4712. 2025-1-18 16:22:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts background: #aaff85; color: #000; color: #000;
  4713. 2025-1-18 16:22:36-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4714. 2025-1-18 16:22:36-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts...
  4715. 2025-1-18 16:22:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4716. 2025-1-18 16:22:36-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1+3.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts success
  4717. 2025-1-18 16:22:36-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4718. 2025-1-18 16:22:40-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_4.ts...
  4719. 2025-1-18 16:22:40-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_4.ts background: #aaff85; color: #000; color: #000;
  4720. 2025-1-18 16:22:40-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4721. 2025-1-18 16:22:41-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4722. 2025-1-18 16:22:46-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_4.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_2.ts...
  4723. 2025-1-18 16:22:46-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_2.ts...
  4724. 2025-1-18 16:22:46-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_2.ts background: #aaff85; color: #000; color: #000;
  4725. 2025-1-18 16:22:46-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts...
  4726. 2025-1-18 16:22:46-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4727. 2025-1-18 16:22:46-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4728. 2025-1-18 16:22:46-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_4.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_2.ts success
  4729. 2025-1-18 16:22:46-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4730. 2025-1-18 16:22:48-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4731. 2025-1-18 16:23:14-debug: refresh db internal success
  4732. 2025-1-18 16:23:14-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_2.ts background: #aaff85; color: #000; color: #000;
  4733. 2025-1-18 16:23:14-debug: refresh db assets success
  4734. 2025-1-18 16:23:14-debug: Run asset db hook engine-extends:afterRefresh ...
  4735. 2025-1-18 16:23:14-debug: Run asset db hook engine-extends:afterRefresh success!
  4736. 2025-1-18 16:23:14-debug: asset-db:refresh-all-database (330ms)
  4737. 2025-1-18 16:23:14-debug: asset-db:worker-effect-data-processing (-2ms)
  4738. 2025-1-18 16:23:14-debug: asset-db-hook-engine-extends-afterRefresh (-2ms)
  4739. 2025-1-18 16:23:18-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_3.ts...
  4740. 2025-1-18 16:23:18-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_3.ts background: #aaff85; color: #000; color: #000;
  4741. 2025-1-18 16:23:18-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4742. 2025-1-18 16:23:18-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4743. 2025-1-18 16:23:19-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4744. 2025-1-18 16:23:21-debug: refresh db internal success
  4745. 2025-1-18 16:23:21-debug: refresh db assets success
  4746. 2025-1-18 16:23:21-debug: Run asset db hook engine-extends:afterRefresh ...
  4747. 2025-1-18 16:23:21-debug: Run asset db hook engine-extends:afterRefresh success!
  4748. 2025-1-18 16:23:21-debug: asset-db:refresh-all-database (100ms)
  4749. 2025-1-18 16:23:21-debug: asset-db:worker-effect-data-processing (1ms)
  4750. 2025-1-18 16:23:21-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4751. 2025-1-18 16:23:26-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_3.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_3_1.ts...
  4752. 2025-1-18 16:23:26-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_3_1.ts...
  4753. 2025-1-18 16:23:26-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_3_1.ts background: #aaff85; color: #000; color: #000;
  4754. 2025-1-18 16:23:26-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts success
  4755. 2025-1-18 16:23:26-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts...
  4756. 2025-1-18 16:23:26-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts background: #aaff85; color: #000; color: #000;
  4757. 2025-1-18 16:23:26-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  4758. 2025-1-18 16:23:26-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_3.ts -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_3_1.ts success
  4759. 2025-1-18 16:23:29-debug: refresh db internal success
  4760. 2025-1-18 16:23:29-debug: refresh db assets success
  4761. 2025-1-18 16:23:29-debug: Run asset db hook engine-extends:afterRefresh ...
  4762. 2025-1-18 16:23:29-debug: Run asset db hook engine-extends:afterRefresh success!
  4763. 2025-1-18 16:23:29-debug: asset-db:refresh-all-database (104ms)
  4764. 2025-1-18 16:23:29-debug: asset-db:worker-effect-data-processing (1ms)
  4765. 2025-1-18 16:23:29-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4766. 2025-1-18 16:23:38-debug: refresh db internal success
  4767. 2025-1-18 16:23:38-debug: refresh db assets success
  4768. 2025-1-18 16:23:38-debug: Run asset db hook engine-extends:afterRefresh success!
  4769. 2025-1-18 16:23:38-debug: Run asset db hook engine-extends:afterRefresh ...
  4770. 2025-1-18 16:23:38-debug: asset-db:refresh-all-database (106ms)
  4771. 2025-1-18 16:23:38-debug: asset-db:worker-effect-data-processing (1ms)
  4772. 2025-1-18 16:23:38-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4773. 2025-1-18 16:23:41-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4774. 2025-1-18 16:24:41-debug: refresh db internal success
  4775. 2025-1-18 16:24:41-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_3_1.ts background: #aaff85; color: #000; color: #000;
  4776. 2025-1-18 16:24:41-debug: refresh db assets success
  4777. 2025-1-18 16:24:41-debug: Run asset db hook engine-extends:afterRefresh ...
  4778. 2025-1-18 16:24:41-debug: Run asset db hook engine-extends:afterRefresh success!
  4779. 2025-1-18 16:24:41-debug: asset-db:refresh-all-database (327ms)
  4780. 2025-1-18 16:24:41-debug: asset-db:worker-effect-data-processing (3ms)
  4781. 2025-1-18 16:24:41-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  4782. 2025-1-18 16:24:45-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4783. 2025-1-18 16:24:52-debug: refresh db internal success
  4784. 2025-1-18 16:24:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_2.ts background: #aaff85; color: #000; color: #000;
  4785. 2025-1-18 16:24:52-debug: refresh db assets success
  4786. 2025-1-18 16:24:52-debug: Run asset db hook engine-extends:afterRefresh ...
  4787. 2025-1-18 16:24:52-debug: Run asset db hook engine-extends:afterRefresh success!
  4788. 2025-1-18 16:24:52-debug: asset-db:refresh-all-database (281ms)
  4789. 2025-1-18 16:24:52-debug: asset-db:worker-effect-data-processing (1ms)
  4790. 2025-1-18 16:24:52-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4791. 2025-1-18 16:24:54-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4792. 2025-1-18 16:27:24-debug: refresh db internal success
  4793. 2025-1-18 16:27:24-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts background: #aaff85; color: #000; color: #000;
  4794. 2025-1-18 16:27:24-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  4795. 2025-1-18 16:27:24-debug: refresh db assets success
  4796. 2025-1-18 16:27:24-debug: Run asset db hook engine-extends:afterRefresh ...
  4797. 2025-1-18 16:27:24-debug: Run asset db hook engine-extends:afterRefresh success!
  4798. 2025-1-18 16:27:24-debug: asset-db:refresh-all-database (119ms)
  4799. 2025-1-18 16:27:24-debug: asset-db-hook-engine-extends-afterRefresh (10ms)
  4800. 2025-1-18 16:27:24-debug: asset-db:worker-effect-data-processing (10ms)
  4801. 2025-1-18 16:27:25-debug: Query all assets info in project
  4802. 2025-1-18 16:27:25-debug: init custom config: keepNodeUuid: false, useCache: true
  4803. 2025-1-18 16:27:25-debug: 查询 Asset Bundle start, progress: 0%
  4804. 2025-1-18 16:27:25-debug: // ---- build task 查询 Asset Bundle ----
  4805. 2025-1-18 16:27:25-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
  4806. 2025-1-18 16:27:25-debug: Number of all scripts: 124
  4807. 2025-1-18 16:27:25-debug: Number of other assets: 1141
  4808. 2025-1-18 16:27:25-debug: Number of all scenes: 3
  4809. 2025-1-18 16:27:25-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  4810. 2025-1-18 16:27:25-debug: [Build Memory track]: 查询 Asset Bundle start:216.06MB, end 216.12MB, increase: 61.40KB
  4811. 2025-1-18 16:27:25-debug: // ---- build task 查询 Asset Bundle ----
  4812. 2025-1-18 16:27:25-debug: 查询 Asset Bundle start, progress: 5%
  4813. 2025-1-18 16:27:25-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  4814. 2025-1-18 16:27:25-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4815. 2025-1-18 16:27:25-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4816. 2025-1-18 16:27:25-debug: [Build Memory track]: 查询 Asset Bundle start:216.15MB, end 216.35MB, increase: 211.18KB
  4817. 2025-1-18 16:27:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4818. 2025-1-18 16:27:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4819. 2025-1-18 16:27:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4820. 2025-1-18 16:27:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.39MB, end 216.41MB, increase: 29.43KB
  4821. 2025-1-18 16:27:25-debug: 填充脚本数据到 settings.json start, progress: 12%
  4822. 2025-1-18 16:27:25-debug: // ---- build task 填充脚本数据到 settings.json ----
  4823. 2025-1-18 16:27:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4824. 2025-1-18 16:27:25-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4825. 2025-1-18 16:27:25-debug: [Build Memory track]: 填充脚本数据到 settings.json start:216.45MB, end 216.46MB, increase: 18.59KB
  4826. 2025-1-18 16:27:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4827. 2025-1-18 16:27:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4828. 2025-1-18 16:27:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4829. 2025-1-18 16:27:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.50MB, end 216.63MB, increase: 141.99KB
  4830. 2025-1-18 16:27:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4831. 2025-1-18 16:27:33-debug: refresh db internal success
  4832. 2025-1-18 16:27:33-debug: refresh db assets success
  4833. 2025-1-18 16:27:33-debug: Run asset db hook engine-extends:afterRefresh ...
  4834. 2025-1-18 16:27:33-debug: Run asset db hook engine-extends:afterRefresh success!
  4835. 2025-1-18 16:27:33-debug: asset-db:refresh-all-database (125ms)
  4836. 2025-1-18 16:27:33-debug: asset-db:worker-effect-data-processing (27ms)
  4837. 2025-1-18 16:27:33-debug: asset-db-hook-engine-extends-afterRefresh (27ms)
  4838. 2025-1-18 16:29:10-debug: refresh db internal success
  4839. 2025-1-18 16:29:10-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  4840. 2025-1-18 16:29:10-debug: refresh db assets success
  4841. 2025-1-18 16:29:10-debug: Run asset db hook engine-extends:afterRefresh ...
  4842. 2025-1-18 16:29:10-debug: Run asset db hook engine-extends:afterRefresh success!
  4843. 2025-1-18 16:29:10-debug: asset-db:refresh-all-database (140ms)
  4844. 2025-1-18 16:29:10-debug: asset-db:worker-effect-data-processing (1ms)
  4845. 2025-1-18 16:29:10-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4846. 2025-1-18 16:29:11-debug: Query all assets info in project
  4847. 2025-1-18 16:29:11-debug: init custom config: keepNodeUuid: false, useCache: true
  4848. 2025-1-18 16:29:11-debug: 查询 Asset Bundle start, progress: 0%
  4849. 2025-1-18 16:29:11-debug: // ---- build task 查询 Asset Bundle ----
  4850. 2025-1-18 16:29: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
  4851. 2025-1-18 16:29:11-debug: Number of all scenes: 3
  4852. 2025-1-18 16:29:11-debug: Number of other assets: 1141
  4853. 2025-1-18 16:29:11-debug: Number of all scripts: 124
  4854. 2025-1-18 16:29:11-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  4855. 2025-1-18 16:29:11-debug: [Build Memory track]: 查询 Asset Bundle start:201.85MB, end 200.69MB, increase: -1189.37KB
  4856. 2025-1-18 16:29:11-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  4857. 2025-1-18 16:29:11-debug: // ---- build task 查询 Asset Bundle ----
  4858. 2025-1-18 16:29:11-debug: 查询 Asset Bundle start, progress: 5%
  4859. 2025-1-18 16:29:11-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  4860. 2025-1-18 16:29:11-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  4861. 2025-1-18 16:29:11-debug: [Build Memory track]: 查询 Asset Bundle start:200.72MB, end 200.93MB, increase: 210.86KB
  4862. 2025-1-18 16:29:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4863. 2025-1-18 16:29:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4864. 2025-1-18 16:29:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.20MB, end 199.22MB, increase: 26.81KB
  4865. 2025-1-18 16:29:11-debug: 填充脚本数据到 settings.json start, progress: 12%
  4866. 2025-1-18 16:29:11-debug: // ---- build task 填充脚本数据到 settings.json ----
  4867. 2025-1-18 16:29:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4868. 2025-1-18 16:29:11-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4869. 2025-1-18 16:29:11-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4870. 2025-1-18 16:29:11-debug: [Build Memory track]: 填充脚本数据到 settings.json start:199.26MB, end 199.29MB, increase: 31.00KB
  4871. 2025-1-18 16:29:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4872. 2025-1-18 16:29:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4873. 2025-1-18 16:29:11-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4874. 2025-1-18 16:29:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4875. 2025-1-18 16:29:11-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4876. 2025-1-18 16:29:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.32MB, end 199.45MB, increase: 138.26KB
  4877. 2025-1-18 16:29:20-debug: refresh db internal success
  4878. 2025-1-18 16:29:20-debug: Run asset db hook engine-extends:afterRefresh ...
  4879. 2025-1-18 16:29:20-debug: Run asset db hook engine-extends:afterRefresh success!
  4880. 2025-1-18 16:29:20-debug: refresh db assets success
  4881. 2025-1-18 16:29:20-debug: asset-db:refresh-all-database (104ms)
  4882. 2025-1-18 16:29:20-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4883. 2025-1-18 16:29:23-debug: Cannot find the asset handler of operate open for importer json
  4884. 2025-1-18 16:29:31-debug: refresh db internal success
  4885. 2025-1-18 16:29:31-debug: refresh db assets success
  4886. 2025-1-18 16:29:31-debug: Run asset db hook engine-extends:afterRefresh ...
  4887. 2025-1-18 16:29:31-debug: Run asset db hook engine-extends:afterRefresh success!
  4888. 2025-1-18 16:29:31-debug: asset-db:refresh-all-database (252ms)
  4889. 2025-1-18 16:29:31-debug: asset-db:worker-effect-data-processing (3ms)
  4890. 2025-1-18 16:29:31-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  4891. 2025-1-18 16:29:32-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4892. 2025-1-18 16:29:39-debug: refresh db internal success
  4893. 2025-1-18 16:29:39-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_1_3.ts background: #aaff85; color: #000; color: #000;
  4894. 2025-1-18 16:29:39-debug: refresh db assets success
  4895. 2025-1-18 16:29:39-debug: Run asset db hook engine-extends:afterRefresh ...
  4896. 2025-1-18 16:29:39-debug: Run asset db hook engine-extends:afterRefresh success!
  4897. 2025-1-18 16:29:39-debug: asset-db:refresh-all-database (123ms)
  4898. 2025-1-18 16:29:39-debug: asset-db:worker-effect-data-processing (20ms)
  4899. 2025-1-18 16:29:39-debug: asset-db-hook-engine-extends-afterRefresh (21ms)
  4900. 2025-1-18 16:29:40-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4901. 2025-1-18 16:29:42-debug: refresh db internal success
  4902. 2025-1-18 16:29:43-debug: Run asset db hook engine-extends:afterRefresh ...
  4903. 2025-1-18 16:29:43-debug: Run asset db hook engine-extends:afterRefresh success!
  4904. 2025-1-18 16:29:43-debug: refresh db assets success
  4905. 2025-1-18 16:29:43-debug: asset-db:refresh-all-database (97ms)
  4906. 2025-1-18 16:29:43-debug: asset-db:worker-effect-data-processing (2ms)
  4907. 2025-1-18 16:29:43-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4908. 2025-1-18 16:29:44-debug: Cannot find the asset handler of operate open for importer json
  4909. 2025-1-18 16:29:56-debug: refresh db internal success
  4910. 2025-1-18 16:29:56-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_2_2.ts background: #aaff85; color: #000; color: #000;
  4911. 2025-1-18 16:29:56-debug: refresh db assets success
  4912. 2025-1-18 16:29:56-debug: Run asset db hook engine-extends:afterRefresh ...
  4913. 2025-1-18 16:29:56-debug: Run asset db hook engine-extends:afterRefresh success!
  4914. 2025-1-18 16:29:56-debug: asset-db:refresh-all-database (109ms)
  4915. 2025-1-18 16:29:56-debug: asset-db:worker-effect-data-processing (2ms)
  4916. 2025-1-18 16:29:56-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4917. 2025-1-18 16:29:58-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  4918. 2025-1-18 16:30:00-debug: refresh db internal success
  4919. 2025-1-18 16:30:00-debug: refresh db assets success
  4920. 2025-1-18 16:30:00-debug: Run asset db hook engine-extends:afterRefresh ...
  4921. 2025-1-18 16:30:00-debug: Run asset db hook engine-extends:afterRefresh success!
  4922. 2025-1-18 16:30:00-debug: asset-db:refresh-all-database (96ms)
  4923. 2025-1-18 16:30:00-debug: asset-db:worker-effect-data-processing (2ms)
  4924. 2025-1-18 16:30:00-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4925. 2025-1-18 16:30:02-debug: Cannot find the asset handler of operate open for importer json
  4926. 2025-1-18 16:30:14-debug: refresh db internal success
  4927. 2025-1-18 16:30:14-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_idiom_unorder_3_1.ts background: #aaff85; color: #000; color: #000;
  4928. 2025-1-18 16:30:14-debug: refresh db assets success
  4929. 2025-1-18 16:30:14-debug: Run asset db hook engine-extends:afterRefresh ...
  4930. 2025-1-18 16:30:14-debug: Run asset db hook engine-extends:afterRefresh success!
  4931. 2025-1-18 16:30:14-debug: asset-db:refresh-all-database (299ms)
  4932. 2025-1-18 16:30:14-debug: asset-db:worker-effect-data-processing (2ms)
  4933. 2025-1-18 16:30:14-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  4934. 2025-1-18 16:30:15-debug: Query all assets info in project
  4935. 2025-1-18 16:30:15-debug: init custom config: keepNodeUuid: false, useCache: true
  4936. 2025-1-18 16:30:15-debug: 查询 Asset Bundle start, progress: 0%
  4937. 2025-1-18 16:30:15-debug: // ---- build task 查询 Asset Bundle ----
  4938. 2025-1-18 16:30:15-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
  4939. 2025-1-18 16:30:15-debug: Number of all scripts: 124
  4940. 2025-1-18 16:30:15-debug: Number of other assets: 1141
  4941. 2025-1-18 16:30:15-debug: Number of all scenes: 3
  4942. 2025-1-18 16:30:15-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  4943. 2025-1-18 16:30:15-debug: [Build Memory track]: 查询 Asset Bundle start:210.55MB, end 210.59MB, increase: 37.12KB
  4944. 2025-1-18 16:30:15-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  4945. 2025-1-18 16:30:15-debug: 查询 Asset Bundle start, progress: 5%
  4946. 2025-1-18 16:30:15-debug: // ---- build task 查询 Asset Bundle ----
  4947. 2025-1-18 16:30:15-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  4948. 2025-1-18 16:30:15-debug: [Build Memory track]: 查询 Asset Bundle start:210.62MB, end 210.83MB, increase: 211.14KB
  4949. 2025-1-18 16:30:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4950. 2025-1-18 16:30:15-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  4951. 2025-1-18 16:30:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4952. 2025-1-18 16:30:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4953. 2025-1-18 16:30:15-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  4954. 2025-1-18 16:30:15-debug: // ---- build task 填充脚本数据到 settings.json ----
  4955. 2025-1-18 16:30:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.86MB, end 210.89MB, increase: 28.25KB
  4956. 2025-1-18 16:30:15-debug: 填充脚本数据到 settings.json start, progress: 12%
  4957. 2025-1-18 16:30:15-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4958. 2025-1-18 16:30:15-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4959. 2025-1-18 16:30:15-debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.92MB, end 210.95MB, increase: 28.77KB
  4960. 2025-1-18 16:30:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4961. 2025-1-18 16:30:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4962. 2025-1-18 16:30:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  4963. 2025-1-18 16:30:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.98MB, end 211.10MB, increase: 130.60KB
  4964. 2025-1-18 16:30:15-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  4965. 2025-1-18 16:30:16-debug: Query all assets info in project
  4966. 2025-1-18 16:30:16-debug: init custom config: keepNodeUuid: false, useCache: true
  4967. 2025-1-18 16:30:16-debug: 查询 Asset Bundle start, progress: 0%
  4968. 2025-1-18 16:30:16-debug: // ---- build task 查询 Asset Bundle ----
  4969. 2025-1-18 16:30:16-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
  4970. 2025-1-18 16:30:16-debug: Number of all scenes: 3
  4971. 2025-1-18 16:30:16-debug: Number of all scripts: 124
  4972. 2025-1-18 16:30:16-debug: Number of other assets: 1141
  4973. 2025-1-18 16:30:16-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  4974. 2025-1-18 16:30:16-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  4975. 2025-1-18 16:30:16-debug: // ---- build task 查询 Asset Bundle ----
  4976. 2025-1-18 16:30:16-debug: [Build Memory track]: 查询 Asset Bundle start:211.68MB, end 211.80MB, increase: 123.61KB
  4977. 2025-1-18 16:30:16-debug: 查询 Asset Bundle start, progress: 5%
  4978. 2025-1-18 16:30:16-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  4979. 2025-1-18 16:30:16-debug: [Build Memory track]: 查询 Asset Bundle start:211.83MB, end 212.04MB, increase: 211.21KB
  4980. 2025-1-18 16:30:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4981. 2025-1-18 16:30:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4982. 2025-1-18 16:30:16-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  4983. 2025-1-18 16:30:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4984. 2025-1-18 16:30:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  4985. 2025-1-18 16:30:16-debug: // ---- build task 填充脚本数据到 settings.json ----
  4986. 2025-1-18 16:30:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.07MB, end 212.10MB, increase: 29.48KB
  4987. 2025-1-18 16:30:16-debug: 填充脚本数据到 settings.json start, progress: 12%
  4988. 2025-1-18 16:30:16-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4989. 2025-1-18 16:30:16-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4990. 2025-1-18 16:30:16-debug: [Build Memory track]: 填充脚本数据到 settings.json start:212.13MB, end 212.16MB, increase: 27.16KB
  4991. 2025-1-18 16:30:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4992. 2025-1-18 16:30:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4993. 2025-1-18 16:30:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4994. 2025-1-18 16:30:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4995. 2025-1-18 16:30:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.19MB, end 212.32MB, increase: 137.23KB
  4996. 2025-1-18 16:30:48-debug: refresh db internal success
  4997. 2025-1-18 16:30:48-debug: refresh db assets success
  4998. 2025-1-18 16:30:48-debug: Run asset db hook engine-extends:afterRefresh ...
  4999. 2025-1-18 16:30:48-debug: Run asset db hook engine-extends:afterRefresh success!
  5000. 2025-1-18 16:30:48-debug: asset-db:refresh-all-database (104ms)
  5001. 2025-1-18 16:30:48-debug: asset-db:worker-effect-data-processing (2ms)
  5002. 2025-1-18 16:30:48-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  5003. 2025-1-18 16:31:26-debug: refresh db internal success
  5004. 2025-1-18 16:31:26-debug: refresh db assets success
  5005. 2025-1-18 16:31:26-debug: Run asset db hook engine-extends:afterRefresh success!
  5006. 2025-1-18 16:31:26-debug: Run asset db hook engine-extends:afterRefresh ...
  5007. 2025-1-18 16:31:26-debug: asset-db:refresh-all-database (104ms)
  5008. 2025-1-18 16:31:26-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5009. 2025-1-18 16:31:35-debug: refresh db internal success
  5010. 2025-1-18 16:31:35-debug: refresh db assets success
  5011. 2025-1-18 16:31:35-debug: Run asset db hook engine-extends:afterRefresh ...
  5012. 2025-1-18 16:31:35-debug: Run asset db hook engine-extends:afterRefresh success!
  5013. 2025-1-18 16:31:35-debug: asset-db:refresh-all-database (108ms)
  5014. 2025-1-18 16:31:35-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5015. 2025-1-18 16:31:37-debug: refresh db internal success
  5016. 2025-1-18 16:31:37-debug: refresh db assets success
  5017. 2025-1-18 16:31:37-debug: Run asset db hook engine-extends:afterRefresh ...
  5018. 2025-1-18 16:31:37-debug: Run asset db hook engine-extends:afterRefresh success!
  5019. 2025-1-18 16:31:37-debug: asset-db:refresh-all-database (123ms)
  5020. 2025-1-18 16:31:37-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5021. 2025-1-18 16:31:49-debug: refresh db internal success
  5022. 2025-1-18 16:31:49-debug: Run asset db hook engine-extends:afterRefresh ...
  5023. 2025-1-18 16:31:49-debug: Run asset db hook engine-extends:afterRefresh success!
  5024. 2025-1-18 16:31:49-debug: refresh db assets success
  5025. 2025-1-18 16:31:49-debug: asset-db:refresh-all-database (103ms)
  5026. 2025-1-18 16:37:27-debug: refresh db internal success
  5027. 2025-1-18 16:37:27-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5028. 2025-1-18 16:37:27-debug: refresh db assets success
  5029. 2025-1-18 16:37:27-debug: Run asset db hook engine-extends:afterRefresh success!
  5030. 2025-1-18 16:37:27-debug: Run asset db hook engine-extends:afterRefresh ...
  5031. 2025-1-18 16:37:27-debug: asset-db:refresh-all-database (112ms)
  5032. 2025-1-18 16:37:27-debug: asset-db:worker-effect-data-processing (3ms)
  5033. 2025-1-18 16:37:27-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  5034. 2025-1-18 16:37:31-debug: programming:execute-script (2ms)
  5035. 2025-1-18 16:37:32-debug: start remove asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json...
  5036. 2025-1-18 16:37:32-debug: refresh db internal success
  5037. 2025-1-18 16:37:32-debug: %cDestroy%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json background: #ffb8b8; color: #000; color: #000;
  5038. 2025-1-18 16:37:32-log: 资源数据库已锁定,资源操作(bound _refreshAsset)将会延迟响应,请稍侯
  5039. 2025-1-18 16:37:33-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  5040. 2025-1-18 16:37:33-debug: refresh db assets success
  5041. 2025-1-18 16:37:33-debug: Run asset db hook engine-extends:afterRefresh success!
  5042. 2025-1-18 16:37:33-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  5043. 2025-1-18 16:37:33-debug: Run asset db hook engine-extends:afterRefresh ...
  5044. 2025-1-18 16:37:33-debug: remove asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json success
  5045. 2025-1-18 16:37:33-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json...
  5046. 2025-1-18 16:37:33-debug: asset-db:refresh-all-database (262ms)
  5047. 2025-1-18 16:37:33-debug: asset-db-hook-engine-extends-afterRefresh (147ms)
  5048. 2025-1-18 16:37:33-debug: asset-db:worker-effect-data-processing (147ms)
  5049. 2025-1-18 16:37:47-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_9mdmwq.json...
  5050. 2025-1-18 16:37:47-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_9mdmwq.json background: #aaff85; color: #000; color: #000;
  5051. 2025-1-18 16:37:47-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  5052. 2025-1-18 16:37:47-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  5053. 2025-1-18 16:37:47-debug: refresh db internal success
  5054. 2025-1-18 16:37:48-debug: refresh db assets success
  5055. 2025-1-18 16:37:48-debug: Run asset db hook engine-extends:afterRefresh ...
  5056. 2025-1-18 16:37:48-debug: Run asset db hook engine-extends:afterRefresh success!
  5057. 2025-1-18 16:37:48-debug: asset-db:refresh-all-database (156ms)
  5058. 2025-1-18 16:37:48-debug: asset-db:worker-effect-data-processing (28ms)
  5059. 2025-1-18 16:37:48-debug: asset-db-hook-engine-extends-afterRefresh (28ms)
  5060. 2025-1-18 16:37:52-debug: start move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_9mdmwq.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json...
  5061. 2025-1-18 16:37:52-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json...
  5062. 2025-1-18 16:37:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json background: #aaff85; color: #000; color: #000;
  5063. 2025-1-18 16:37:52-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json success
  5064. 2025-1-18 16:37:52-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json...
  5065. 2025-1-18 16:37:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json background: #aaff85; color: #000; color: #000;
  5066. 2025-1-18 16:37:52-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_extra success
  5067. 2025-1-18 16:37:52-debug: move asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\tableConvert.com_9mdmwq.json -> D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json success
  5068. 2025-1-18 16:38:13-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  5069. 2025-1-18 16:38:28-debug: refresh db internal success
  5070. 2025-1-18 16:38:28-debug: refresh db assets success
  5071. 2025-1-18 16:38:28-debug: Run asset db hook engine-extends:afterRefresh success!
  5072. 2025-1-18 16:38:28-debug: Run asset db hook engine-extends:afterRefresh ...
  5073. 2025-1-18 16:38:28-debug: asset-db:refresh-all-database (124ms)
  5074. 2025-1-18 16:39:31-debug: refresh db internal success
  5075. 2025-1-18 16:39:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_level.ts background: #aaff85; color: #000; color: #000;
  5076. 2025-1-18 16:39:31-debug: refresh db assets success
  5077. 2025-1-18 16:39:31-debug: Run asset db hook engine-extends:afterRefresh ...
  5078. 2025-1-18 16:39:31-debug: Run asset db hook engine-extends:afterRefresh success!
  5079. 2025-1-18 16:39:31-debug: asset-db:refresh-all-database (153ms)
  5080. 2025-1-18 16:39:31-debug: asset-db:worker-effect-data-processing (14ms)
  5081. 2025-1-18 16:39:31-debug: asset-db-hook-engine-extends-afterRefresh (14ms)
  5082. 2025-1-18 16:44:15-debug: refresh db internal success
  5083. 2025-1-18 16:44:15-debug: refresh db assets success
  5084. 2025-1-18 16:44:15-debug: Run asset db hook engine-extends:afterRefresh ...
  5085. 2025-1-18 16:44:15-debug: Run asset db hook engine-extends:afterRefresh success!
  5086. 2025-1-18 16:44:15-debug: asset-db:refresh-all-database (106ms)
  5087. 2025-1-18 16:44:15-debug: asset-db:worker-effect-data-processing (-1ms)
  5088. 2025-1-18 16:45:27-debug: refresh db internal success
  5089. 2025-1-18 16:45:27-debug: refresh db assets success
  5090. 2025-1-18 16:45:27-debug: Run asset db hook engine-extends:afterRefresh ...
  5091. 2025-1-18 16:45:27-debug: Run asset db hook engine-extends:afterRefresh success!
  5092. 2025-1-18 16:45:27-debug: asset-db:refresh-all-database (293ms)
  5093. 2025-1-18 16:45:27-debug: asset-db:worker-effect-data-processing (1ms)
  5094. 2025-1-18 16:45:27-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  5095. 2025-1-18 16:45:28-debug: Cannot find the asset handler of operate open for importer json
  5096. 2025-1-18 16:49:32-debug: refresh db internal success
  5097. 2025-1-18 16:49:32-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_ts\table_level.ts background: #aaff85; color: #000; color: #000;
  5098. 2025-1-18 16:49:32-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5099. 2025-1-18 16:49:32-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json background: #aaff85; color: #000; color: #000;
  5100. 2025-1-18 16:49:32-debug: refresh db assets success
  5101. 2025-1-18 16:49:32-debug: Run asset db hook engine-extends:afterRefresh ...
  5102. 2025-1-18 16:49:32-debug: Run asset db hook engine-extends:afterRefresh success!
  5103. 2025-1-18 16:49:32-debug: asset-db:refresh-all-database (313ms)
  5104. 2025-1-18 16:49:32-debug: asset-db:worker-effect-data-processing (21ms)
  5105. 2025-1-18 16:49:32-debug: asset-db-hook-engine-extends-afterRefresh (22ms)
  5106. 2025-1-18 16:49:33-debug: Query all assets info in project
  5107. 2025-1-18 16:49:33-debug: init custom config: keepNodeUuid: false, useCache: true
  5108. 2025-1-18 16:49:33-debug: 查询 Asset Bundle start, progress: 0%
  5109. 2025-1-18 16:49:33-debug: // ---- build task 查询 Asset Bundle ----
  5110. 2025-1-18 16:49:33-debug: Number of all scenes: 3
  5111. 2025-1-18 16:49:33-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5112. 2025-1-18 16:49:33-debug: Number of all scripts: 124
  5113. 2025-1-18 16:49:33-debug: Number of other assets: 1141
  5114. 2025-1-18 16:49:33-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  5115. 2025-1-18 16:49:33-debug: [Build Memory track]: 查询 Asset Bundle start:198.61MB, end 198.69MB, increase: 86.45KB
  5116. 2025-1-18 16:49:33-debug: 查询 Asset Bundle start, progress: 5%
  5117. 2025-1-18 16:49:33-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  5118. 2025-1-18 16:49:33-debug: // ---- build task 查询 Asset Bundle ----
  5119. 2025-1-18 16:49:33-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5120. 2025-1-18 16:49:33-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  5121. 2025-1-18 16:49:33-debug: [Build Memory track]: 查询 Asset Bundle start:198.72MB, end 198.93MB, increase: 212.18KB
  5122. 2025-1-18 16:49:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5123. 2025-1-18 16:49:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5124. 2025-1-18 16:49:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5125. 2025-1-18 16:49:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5126. 2025-1-18 16:49:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:198.96MB, end 198.99MB, increase: 29.94KB
  5127. 2025-1-18 16:49:33-debug: // ---- build task 填充脚本数据到 settings.json ----
  5128. 2025-1-18 16:49:33-debug: 填充脚本数据到 settings.json start, progress: 12%
  5129. 2025-1-18 16:49:33-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5130. 2025-1-18 16:49:33-debug: [Build Memory track]: 填充脚本数据到 settings.json start:199.02MB, end 199.05MB, increase: 26.32KB
  5131. 2025-1-18 16:49:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5132. 2025-1-18 16:49:33-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5133. 2025-1-18 16:49:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5134. 2025-1-18 16:49:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  5135. 2025-1-18 16:49:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  5136. 2025-1-18 16:49:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.08MB, end 199.21MB, increase: 139.14KB
  5137. 2025-1-18 16:49:34-debug: Query all assets info in project
  5138. 2025-1-18 16:49:34-debug: init custom config: keepNodeUuid: false, useCache: true
  5139. 2025-1-18 16:49:34-debug: 查询 Asset Bundle start, progress: 0%
  5140. 2025-1-18 16:49:34-debug: // ---- build task 查询 Asset Bundle ----
  5141. 2025-1-18 16:49:34-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
  5142. 2025-1-18 16:49:34-debug: Number of all scenes: 3
  5143. 2025-1-18 16:49:34-debug: Number of all scripts: 124
  5144. 2025-1-18 16:49:34-debug: Number of other assets: 1141
  5145. 2025-1-18 16:49:34-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5146. 2025-1-18 16:49:34-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5147. 2025-1-18 16:49:34-debug: // ---- build task 查询 Asset Bundle ----
  5148. 2025-1-18 16:49:34-debug: [Build Memory track]: 查询 Asset Bundle start:198.80MB, end 198.86MB, increase: 68.91KB
  5149. 2025-1-18 16:49:34-debug: 查询 Asset Bundle start, progress: 5%
  5150. 2025-1-18 16:49:34-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5151. 2025-1-18 16:49:34-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5152. 2025-1-18 16:49:34-debug: [Build Memory track]: 查询 Asset Bundle start:198.90MB, end 199.10MB, increase: 212.13KB
  5153. 2025-1-18 16:49:34-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5154. 2025-1-18 16:49:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5155. 2025-1-18 16:49:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5156. 2025-1-18 16:49:34-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5157. 2025-1-18 16:49:34-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.13MB, end 199.16MB, increase: 28.52KB
  5158. 2025-1-18 16:49:34-debug: // ---- build task 填充脚本数据到 settings.json ----
  5159. 2025-1-18 16:49:34-debug: 填充脚本数据到 settings.json start, progress: 12%
  5160. 2025-1-18 16:49:34-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5161. 2025-1-18 16:49:34-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5162. 2025-1-18 16:49:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5163. 2025-1-18 16:49:34-debug: [Build Memory track]: 填充脚本数据到 settings.json start:199.19MB, end 199.22MB, increase: 29.50KB
  5164. 2025-1-18 16:49:34-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5165. 2025-1-18 16:49:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5166. 2025-1-18 16:49:34-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5167. 2025-1-18 16:49:34-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:199.25MB, end 199.38MB, increase: 129.57KB
  5168. 2025-1-18 16:50:31-debug: refresh db internal success
  5169. 2025-1-18 16:50:31-debug: refresh db assets success
  5170. 2025-1-18 16:50:31-debug: Run asset db hook engine-extends:afterRefresh ...
  5171. 2025-1-18 16:50:31-debug: Run asset db hook engine-extends:afterRefresh success!
  5172. 2025-1-18 16:50:31-debug: asset-db:refresh-all-database (104ms)
  5173. 2025-1-18 16:50:31-debug: asset-db:worker-effect-data-processing (1ms)
  5174. 2025-1-18 16:50:31-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5175. 2025-1-18 16:50:32-debug: Query all assets info in project
  5176. 2025-1-18 16:50:32-debug: init custom config: keepNodeUuid: false, useCache: true
  5177. 2025-1-18 16:50:32-debug: 查询 Asset Bundle start, progress: 0%
  5178. 2025-1-18 16:50:32-debug: // ---- build task 查询 Asset Bundle ----
  5179. 2025-1-18 16:50:32-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
  5180. 2025-1-18 16:50:32-debug: Number of all scripts: 124
  5181. 2025-1-18 16:50:32-debug: Number of other assets: 1141
  5182. 2025-1-18 16:50:32-debug: Number of all scenes: 3
  5183. 2025-1-18 16:50:32-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5184. 2025-1-18 16:50:32-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5185. 2025-1-18 16:50:32-debug: [Build Memory track]: 查询 Asset Bundle start:201.30MB, end 201.32MB, increase: 25.52KB
  5186. 2025-1-18 16:50:32-debug: // ---- build task 查询 Asset Bundle ----
  5187. 2025-1-18 16:50:32-debug: 查询 Asset Bundle start, progress: 5%
  5188. 2025-1-18 16:50:32-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5189. 2025-1-18 16:50:32-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5190. 2025-1-18 16:50:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5191. 2025-1-18 16:50:32-debug: [Build Memory track]: 查询 Asset Bundle start:201.35MB, end 201.56MB, increase: 211.30KB
  5192. 2025-1-18 16:50:32-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5193. 2025-1-18 16:50:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5194. 2025-1-18 16:50:32-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5195. 2025-1-18 16:50:32-debug: 填充脚本数据到 settings.json start, progress: 12%
  5196. 2025-1-18 16:50:32-debug: // ---- build task 填充脚本数据到 settings.json ----
  5197. 2025-1-18 16:50:32-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.59MB, end 201.62MB, increase: 28.25KB
  5198. 2025-1-18 16:50:32-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5199. 2025-1-18 16:50:32-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5200. 2025-1-18 16:50:32-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5201. 2025-1-18 16:50:32-debug: [Build Memory track]: 填充脚本数据到 settings.json start:201.65MB, end 201.68MB, increase: 31.01KB
  5202. 2025-1-18 16:50:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5203. 2025-1-18 16:50:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  5204. 2025-1-18 16:50:32-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  5205. 2025-1-18 16:50:32-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.71MB, end 201.84MB, increase: 131.14KB
  5206. 2025-1-18 16:50:54-debug: refresh db internal success
  5207. 2025-1-18 16:50:54-debug: refresh db assets success
  5208. 2025-1-18 16:50:54-debug: Run asset db hook engine-extends:afterRefresh ...
  5209. 2025-1-18 16:50:54-debug: Run asset db hook engine-extends:afterRefresh success!
  5210. 2025-1-18 16:50:54-debug: asset-db:refresh-all-database (102ms)
  5211. 2025-1-18 16:50:54-debug: asset-db:worker-effect-data-processing (1ms)
  5212. 2025-1-18 16:50:54-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5213. 2025-1-18 16:51:02-debug: refresh db internal success
  5214. 2025-1-18 16:51:02-debug: refresh db assets success
  5215. 2025-1-18 16:51:02-debug: Run asset db hook engine-extends:afterRefresh ...
  5216. 2025-1-18 16:51:02-debug: Run asset db hook engine-extends:afterRefresh success!
  5217. 2025-1-18 16:51:02-debug: asset-db:refresh-all-database (102ms)
  5218. 2025-1-18 16:51:02-debug: asset-db:worker-effect-data-processing (2ms)
  5219. 2025-1-18 16:51:02-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  5220. 2025-1-18 16:51:03-debug: Query all assets info in project
  5221. 2025-1-18 16:51:03-debug: init custom config: keepNodeUuid: false, useCache: true
  5222. 2025-1-18 16:51:03-debug: 查询 Asset Bundle start, progress: 0%
  5223. 2025-1-18 16:51:03-debug: // ---- build task 查询 Asset Bundle ----
  5224. 2025-1-18 16:51:03-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
  5225. 2025-1-18 16:51:03-debug: Number of all scenes: 3
  5226. 2025-1-18 16:51:03-debug: Number of all scripts: 124
  5227. 2025-1-18 16:51:03-debug: Number of other assets: 1141
  5228. 2025-1-18 16:51:03-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  5229. 2025-1-18 16:51:03-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  5230. 2025-1-18 16:51:03-debug: [Build Memory track]: 查询 Asset Bundle start:205.20MB, end 205.22MB, increase: 25.32KB
  5231. 2025-1-18 16:51:03-debug: // ---- build task 查询 Asset Bundle ----
  5232. 2025-1-18 16:51:03-debug: 查询 Asset Bundle start, progress: 5%
  5233. 2025-1-18 16:51:03-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  5234. 2025-1-18 16:51:03-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  5235. 2025-1-18 16:51:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5236. 2025-1-18 16:51:03-debug: [Build Memory track]: 查询 Asset Bundle start:205.25MB, end 205.46MB, increase: 210.60KB
  5237. 2025-1-18 16:51:03-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5238. 2025-1-18 16:51:03-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5239. 2025-1-18 16:51:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5240. 2025-1-18 16:51:03-debug: // ---- build task 填充脚本数据到 settings.json ----
  5241. 2025-1-18 16:51:03-debug: 填充脚本数据到 settings.json start, progress: 12%
  5242. 2025-1-18 16:51:03-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.49MB, end 205.52MB, increase: 26.81KB
  5243. 2025-1-18 16:51:03-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  5244. 2025-1-18 16:51:03-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  5245. 2025-1-18 16:51:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5246. 2025-1-18 16:51:03-debug: [Build Memory track]: 填充脚本数据到 settings.json start:205.55MB, end 205.58MB, increase: 31.08KB
  5247. 2025-1-18 16:51:03-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5248. 2025-1-18 16:51:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  5249. 2025-1-18 16:51:03-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.61MB, end 205.74MB, increase: 129.83KB
  5250. 2025-1-18 16:51:03-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  5251. 2025-1-18 17:00:10-debug: refresh db internal success
  5252. 2025-1-18 17:00:10-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5253. 2025-1-18 17:00:10-debug: refresh db assets success
  5254. 2025-1-18 17:00:10-debug: Run asset db hook engine-extends:afterRefresh ...
  5255. 2025-1-18 17:00:10-debug: Run asset db hook engine-extends:afterRefresh success!
  5256. 2025-1-18 17:00:10-debug: asset-db:refresh-all-database (111ms)
  5257. 2025-1-18 17:00:10-debug: asset-db:worker-effect-data-processing (1ms)
  5258. 2025-1-18 17:00:10-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  5259. 2025-1-18 17:00:11-debug: Query all assets info in project
  5260. 2025-1-18 17:00:11-debug: init custom config: keepNodeUuid: false, useCache: true
  5261. 2025-1-18 17:00:11-debug: 查询 Asset Bundle start, progress: 0%
  5262. 2025-1-18 17:00:11-debug: // ---- build task 查询 Asset Bundle ----
  5263. 2025-1-18 17:00: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
  5264. 2025-1-18 17:00:11-debug: Number of all scenes: 3
  5265. 2025-1-18 17:00:11-debug: Number of other assets: 1141
  5266. 2025-1-18 17:00:11-debug: Number of all scripts: 124
  5267. 2025-1-18 17:00:11-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  5268. 2025-1-18 17:00:11-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  5269. 2025-1-18 17:00:11-debug: [Build Memory track]: 查询 Asset Bundle start:209.83MB, end 208.94MB, increase: -903.63KB
  5270. 2025-1-18 17:00:11-debug: 查询 Asset Bundle start, progress: 5%
  5271. 2025-1-18 17:00:11-debug: // ---- build task 查询 Asset Bundle ----
  5272. 2025-1-18 17:00:11-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  5273. 2025-1-18 17:00:11-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  5274. 2025-1-18 17:00:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5275. 2025-1-18 17:00:11-debug: [Build Memory track]: 查询 Asset Bundle start:208.98MB, end 209.18MB, increase: 209.93KB
  5276. 2025-1-18 17:00:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5277. 2025-1-18 17:00:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5278. 2025-1-18 17:00:11-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  5279. 2025-1-18 17:00:11-debug: // ---- build task 填充脚本数据到 settings.json ----
  5280. 2025-1-18 17:00:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.21MB, end 209.24MB, increase: 29.61KB
  5281. 2025-1-18 17:00:11-debug: 填充脚本数据到 settings.json start, progress: 12%
  5282. 2025-1-18 17:00:11-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5283. 2025-1-18 17:00:11-debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.27MB, end 209.29MB, increase: 18.39KB
  5284. 2025-1-18 17:00:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5285. 2025-1-18 17:00:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5286. 2025-1-18 17:00:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  5287. 2025-1-18 17:00:11-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  5288. 2025-1-18 17:00:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.32MB, end 209.45MB, increase: 128.64KB
  5289. 2025-1-18 17:00:12-debug: Query all assets info in project
  5290. 2025-1-18 17:00:12-debug: init custom config: keepNodeUuid: false, useCache: true
  5291. 2025-1-18 17:00:12-debug: // ---- build task 查询 Asset Bundle ----
  5292. 2025-1-18 17:00:12-debug: 查询 Asset Bundle start, progress: 0%
  5293. 2025-1-18 17:00: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
  5294. 2025-1-18 17:00:12-debug: Number of all scenes: 3
  5295. 2025-1-18 17:00:12-debug: Number of other assets: 1141
  5296. 2025-1-18 17:00:12-debug: Number of all scripts: 124
  5297. 2025-1-18 17:00:12-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5298. 2025-1-18 17:00:12-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5299. 2025-1-18 17:00:12-debug: // ---- build task 查询 Asset Bundle ----
  5300. 2025-1-18 17:00:12-debug: [Build Memory track]: 查询 Asset Bundle start:208.32MB, end 208.35MB, increase: 26.36KB
  5301. 2025-1-18 17:00:12-debug: 查询 Asset Bundle start, progress: 5%
  5302. 2025-1-18 17:00:12-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  5303. 2025-1-18 17:00:12-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  5304. 2025-1-18 17:00:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5305. 2025-1-18 17:00:12-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5306. 2025-1-18 17:00:12-debug: [Build Memory track]: 查询 Asset Bundle start:208.38MB, end 208.58MB, increase: 209.91KB
  5307. 2025-1-18 17:00:12-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5308. 2025-1-18 17:00:12-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:208.61MB, end 208.63MB, increase: 17.56KB
  5309. 2025-1-18 17:00:12-debug: 填充脚本数据到 settings.json start, progress: 12%
  5310. 2025-1-18 17:00:12-debug: // ---- build task 填充脚本数据到 settings.json ----
  5311. 2025-1-18 17:00:12-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  5312. 2025-1-18 17:00:12-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  5313. 2025-1-18 17:00:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5314. 2025-1-18 17:00:12-debug: [Build Memory track]: 填充脚本数据到 settings.json start:208.66MB, end 208.69MB, increase: 29.30KB
  5315. 2025-1-18 17:00:12-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5316. 2025-1-18 17:00:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5317. 2025-1-18 17:00:12-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5318. 2025-1-18 17:00:12-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:208.72MB, end 208.85MB, increase: 129.21KB
  5319. 2025-1-18 17:00:12-debug: Query all assets info in project
  5320. 2025-1-18 17:00:12-debug: init custom config: keepNodeUuid: false, useCache: true
  5321. 2025-1-18 17:00:12-debug: 查询 Asset Bundle start, progress: 0%
  5322. 2025-1-18 17:00:12-debug: // ---- build task 查询 Asset Bundle ----
  5323. 2025-1-18 17:00: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
  5324. 2025-1-18 17:00:12-debug: Number of all scenes: 3
  5325. 2025-1-18 17:00:12-debug: Number of other assets: 1141
  5326. 2025-1-18 17:00:12-debug: Number of all scripts: 124
  5327. 2025-1-18 17:00:12-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  5328. 2025-1-18 17:00:12-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  5329. 2025-1-18 17:00:12-debug: 查询 Asset Bundle start, progress: 5%
  5330. 2025-1-18 17:00:12-debug: [Build Memory track]: 查询 Asset Bundle start:209.42MB, end 207.99MB, increase: -1465.11KB
  5331. 2025-1-18 17:00:12-debug: // ---- build task 查询 Asset Bundle ----
  5332. 2025-1-18 17:00:12-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  5333. 2025-1-18 17:00:12-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  5334. 2025-1-18 17:00:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5335. 2025-1-18 17:00:12-debug: [Build Memory track]: 查询 Asset Bundle start:208.02MB, end 208.23MB, increase: 211.95KB
  5336. 2025-1-18 17:00:12-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5337. 2025-1-18 17:00:12-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5338. 2025-1-18 17:00:12-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:208.26MB, end 208.28MB, increase: 17.62KB
  5339. 2025-1-18 17:00:12-debug: // ---- build task 填充脚本数据到 settings.json ----
  5340. 2025-1-18 17:00:12-debug: 填充脚本数据到 settings.json start, progress: 12%
  5341. 2025-1-18 17:00:12-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5342. 2025-1-18 17:00:12-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5343. 2025-1-18 17:00:12-debug: [Build Memory track]: 填充脚本数据到 settings.json start:208.31MB, end 208.34MB, increase: 28.98KB
  5344. 2025-1-18 17:00:12-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5345. 2025-1-18 17:00:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5346. 2025-1-18 17:00:12-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5347. 2025-1-18 17:00:12-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5348. 2025-1-18 17:00:12-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:208.37MB, end 208.49MB, increase: 129.57KB
  5349. 2025-1-18 17:00:30-debug: refresh db internal success
  5350. 2025-1-18 17:00:30-debug: refresh db assets success
  5351. 2025-1-18 17:00:30-debug: Run asset db hook engine-extends:afterRefresh success!
  5352. 2025-1-18 17:00:30-debug: Run asset db hook engine-extends:afterRefresh ...
  5353. 2025-1-18 17:00:30-debug: asset-db:refresh-all-database (103ms)
  5354. 2025-1-18 17:00:30-debug: asset-db:worker-effect-data-processing (1ms)
  5355. 2025-1-18 17:00:30-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5356. 2025-1-18 17:00:51-debug: refresh db internal success
  5357. 2025-1-18 17:00:51-debug: refresh db assets success
  5358. 2025-1-18 17:00:51-debug: Run asset db hook engine-extends:afterRefresh ...
  5359. 2025-1-18 17:00:51-debug: Run asset db hook engine-extends:afterRefresh success!
  5360. 2025-1-18 17:00:51-debug: asset-db:refresh-all-database (103ms)
  5361. 2025-1-18 17:00:52-debug: Query all assets info in project
  5362. 2025-1-18 17:00:52-debug: init custom config: keepNodeUuid: false, useCache: true
  5363. 2025-1-18 17:00:52-debug: 查询 Asset Bundle start, progress: 0%
  5364. 2025-1-18 17:00:52-debug: // ---- build task 查询 Asset Bundle ----
  5365. 2025-1-18 17:00:52-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
  5366. 2025-1-18 17:00:52-debug: Number of all scenes: 3
  5367. 2025-1-18 17:00:52-debug: Number of all scripts: 124
  5368. 2025-1-18 17:00:52-debug: Number of other assets: 1141
  5369. 2025-1-18 17:00:52-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5370. 2025-1-18 17:00:52-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5371. 2025-1-18 17:00:52-debug: // ---- build task 查询 Asset Bundle ----
  5372. 2025-1-18 17:00:52-debug: [Build Memory track]: 查询 Asset Bundle start:212.51MB, end 212.57MB, increase: 57.10KB
  5373. 2025-1-18 17:00:52-debug: 查询 Asset Bundle start, progress: 5%
  5374. 2025-1-18 17:00:52-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5375. 2025-1-18 17:00:52-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5376. 2025-1-18 17:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5377. 2025-1-18 17:00:52-debug: [Build Memory track]: 查询 Asset Bundle start:212.60MB, end 212.80MB, increase: 211.11KB
  5378. 2025-1-18 17:00:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5379. 2025-1-18 17:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5380. 2025-1-18 17:00:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5381. 2025-1-18 17:00:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  5382. 2025-1-18 17:00:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.84MB, end 212.86MB, increase: 29.41KB
  5383. 2025-1-18 17:00:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  5384. 2025-1-18 17:00:52-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5385. 2025-1-18 17:00:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:212.90MB, end 212.91MB, increase: 17.16KB
  5386. 2025-1-18 17:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5387. 2025-1-18 17:00:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5388. 2025-1-18 17:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5389. 2025-1-18 17:00:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5390. 2025-1-18 17:00:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:212.94MB, end 213.07MB, increase: 129.72KB
  5391. 2025-1-18 17:01:11-debug: refresh db internal success
  5392. 2025-1-18 17:01:11-debug: refresh db assets success
  5393. 2025-1-18 17:01:11-debug: Run asset db hook engine-extends:afterRefresh ...
  5394. 2025-1-18 17:01:11-debug: Run asset db hook engine-extends:afterRefresh success!
  5395. 2025-1-18 17:01:11-debug: asset-db:refresh-all-database (103ms)
  5396. 2025-1-18 17:02:23-debug: refresh db internal success
  5397. 2025-1-18 17:02:23-debug: Run asset db hook engine-extends:afterRefresh ...
  5398. 2025-1-18 17:02:23-debug: Run asset db hook engine-extends:afterRefresh success!
  5399. 2025-1-18 17:02:23-debug: refresh db assets success
  5400. 2025-1-18 17:02:23-debug: asset-db:refresh-all-database (105ms)
  5401. 2025-1-18 17:02:23-debug: asset-db:worker-effect-data-processing (1ms)
  5402. 2025-1-18 17:02:23-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5403. 2025-1-18 17:02:24-debug: Query all assets info in project
  5404. 2025-1-18 17:02:24-debug: init custom config: keepNodeUuid: false, useCache: true
  5405. 2025-1-18 17:02:24-debug: 查询 Asset Bundle start, progress: 0%
  5406. 2025-1-18 17:02:24-debug: // ---- build task 查询 Asset Bundle ----
  5407. 2025-1-18 17:02:24-debug: Number of all scenes: 3
  5408. 2025-1-18 17:02:24-debug: Number of other assets: 1141
  5409. 2025-1-18 17:02: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
  5410. 2025-1-18 17:02:24-debug: Number of all scripts: 124
  5411. 2025-1-18 17:02:24-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  5412. 2025-1-18 17:02:24-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  5413. 2025-1-18 17:02:24-debug: [Build Memory track]: 查询 Asset Bundle start:216.89MB, end 216.95MB, increase: 59.32KB
  5414. 2025-1-18 17:02:24-debug: 查询 Asset Bundle start, progress: 5%
  5415. 2025-1-18 17:02:24-debug: // ---- build task 查询 Asset Bundle ----
  5416. 2025-1-18 17:02:24-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5417. 2025-1-18 17:02:24-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5418. 2025-1-18 17:02:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5419. 2025-1-18 17:02:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5420. 2025-1-18 17:02:24-debug: [Build Memory track]: 查询 Asset Bundle start:216.98MB, end 217.18MB, increase: 211.04KB
  5421. 2025-1-18 17:02:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5422. 2025-1-18 17:02:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  5423. 2025-1-18 17:02:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5424. 2025-1-18 17:02:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:217.22MB, end 217.25MB, increase: 29.66KB
  5425. 2025-1-18 17:02:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  5426. 2025-1-18 17:02:24-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5427. 2025-1-18 17:02:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:217.28MB, end 217.29MB, increase: 16.78KB
  5428. 2025-1-18 17:02:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5429. 2025-1-18 17:02:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5430. 2025-1-18 17:02:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5431. 2025-1-18 17:02:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5432. 2025-1-18 17:02:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:217.32MB, end 217.45MB, increase: 129.91KB
  5433. 2025-1-18 17:03:05-debug: refresh db internal success
  5434. 2025-1-18 17:03:05-debug: refresh db assets success
  5435. 2025-1-18 17:03:05-debug: Run asset db hook engine-extends:afterRefresh ...
  5436. 2025-1-18 17:03:05-debug: Run asset db hook engine-extends:afterRefresh success!
  5437. 2025-1-18 17:03:05-debug: asset-db:refresh-all-database (130ms)
  5438. 2025-1-18 17:05:17-debug: refresh db internal success
  5439. 2025-1-18 17:05:17-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5440. 2025-1-18 17:05:17-debug: refresh db assets success
  5441. 2025-1-18 17:05:17-debug: Run asset db hook engine-extends:afterRefresh ...
  5442. 2025-1-18 17:05:17-debug: Run asset db hook engine-extends:afterRefresh success!
  5443. 2025-1-18 17:05:17-debug: asset-db:refresh-all-database (130ms)
  5444. 2025-1-18 17:05:17-debug: asset-db-hook-engine-extends-afterRefresh (16ms)
  5445. 2025-1-18 17:05:17-debug: asset-db:worker-effect-data-processing (16ms)
  5446. 2025-1-18 17:05:18-debug: Query all assets info in project
  5447. 2025-1-18 17:05:18-debug: init custom config: keepNodeUuid: false, useCache: true
  5448. 2025-1-18 17:05:18-debug: 查询 Asset Bundle start, progress: 0%
  5449. 2025-1-18 17:05:18-debug: // ---- build task 查询 Asset Bundle ----
  5450. 2025-1-18 17:05:18-debug: Number of all scenes: 3
  5451. 2025-1-18 17:05:18-debug: Number of all scripts: 124
  5452. 2025-1-18 17:05:18-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
  5453. 2025-1-18 17:05:18-debug: Number of other assets: 1141
  5454. 2025-1-18 17:05:18-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  5455. 2025-1-18 17:05:18-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  5456. 2025-1-18 17:05:18-debug: [Build Memory track]: 查询 Asset Bundle start:201.21MB, end 201.28MB, increase: 70.42KB
  5457. 2025-1-18 17:05:18-debug: // ---- build task 查询 Asset Bundle ----
  5458. 2025-1-18 17:05:18-debug: 查询 Asset Bundle start, progress: 5%
  5459. 2025-1-18 17:05:18-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5460. 2025-1-18 17:05:18-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  5461. 2025-1-18 17:05:18-debug: [Build Memory track]: 查询 Asset Bundle start:201.31MB, end 201.52MB, increase: 209.93KB
  5462. 2025-1-18 17:05:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5463. 2025-1-18 17:05:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5464. 2025-1-18 17:05:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5465. 2025-1-18 17:05:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5466. 2025-1-18 17:05:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.55MB, end 201.58MB, increase: 28.09KB
  5467. 2025-1-18 17:05:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  5468. 2025-1-18 17:05:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  5469. 2025-1-18 17:05:18-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5470. 2025-1-18 17:05:18-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5471. 2025-1-18 17:05:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5472. 2025-1-18 17:05:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:201.61MB, end 201.63MB, increase: 28.55KB
  5473. 2025-1-18 17:05:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5474. 2025-1-18 17:05:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  5475. 2025-1-18 17:05:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  5476. 2025-1-18 17:05:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:201.67MB, end 201.80MB, increase: 134.13KB
  5477. 2025-1-18 17:05:34-debug: refresh db internal success
  5478. 2025-1-18 17:05:34-debug: refresh db assets success
  5479. 2025-1-18 17:05:34-debug: Run asset db hook engine-extends:afterRefresh ...
  5480. 2025-1-18 17:05:34-debug: Run asset db hook engine-extends:afterRefresh success!
  5481. 2025-1-18 17:05:34-debug: asset-db:refresh-all-database (101ms)
  5482. 2025-1-18 17:05:34-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5483. 2025-1-18 17:06:19-debug: refresh db internal success
  5484. 2025-1-18 17:06:19-debug: Run asset db hook engine-extends:afterRefresh success!
  5485. 2025-1-18 17:06:19-debug: refresh db assets success
  5486. 2025-1-18 17:06:19-debug: Run asset db hook engine-extends:afterRefresh ...
  5487. 2025-1-18 17:06:19-debug: asset-db:refresh-all-database (108ms)
  5488. 2025-1-18 17:06:19-debug: asset-db:worker-effect-data-processing (1ms)
  5489. 2025-1-18 17:06:19-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5490. 2025-1-18 17:06:21-debug: Query all assets info in project
  5491. 2025-1-18 17:06:21-debug: init custom config: keepNodeUuid: false, useCache: true
  5492. 2025-1-18 17:06:21-debug: 查询 Asset Bundle start, progress: 0%
  5493. 2025-1-18 17:06:21-debug: // ---- build task 查询 Asset Bundle ----
  5494. 2025-1-18 17:06:21-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
  5495. 2025-1-18 17:06:21-debug: Number of all scenes: 3
  5496. 2025-1-18 17:06:21-debug: Number of all scripts: 124
  5497. 2025-1-18 17:06:21-debug: Number of other assets: 1141
  5498. 2025-1-18 17:06:21-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  5499. 2025-1-18 17:06:21-debug: [Build Memory track]: 查询 Asset Bundle start:206.31MB, end 206.31MB, increase: 0.44KB
  5500. 2025-1-18 17:06:21-debug: // ---- build task 查询 Asset Bundle ----
  5501. 2025-1-18 17:06:21-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  5502. 2025-1-18 17:06:21-debug: 查询 Asset Bundle start, progress: 5%
  5503. 2025-1-18 17:06:21-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5504. 2025-1-18 17:06:21-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5505. 2025-1-18 17:06:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5506. 2025-1-18 17:06:21-debug: [Build Memory track]: 查询 Asset Bundle start:206.34MB, end 206.54MB, increase: 210.96KB
  5507. 2025-1-18 17:06:21-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5508. 2025-1-18 17:06:21-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5509. 2025-1-18 17:06:21-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.58MB, end 206.59MB, increase: 17.56KB
  5510. 2025-1-18 17:06:21-debug: 填充脚本数据到 settings.json start, progress: 12%
  5511. 2025-1-18 17:06:21-debug: // ---- build task 填充脚本数据到 settings.json ----
  5512. 2025-1-18 17:06:21-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5513. 2025-1-18 17:06:21-debug: [Build Memory track]: 填充脚本数据到 settings.json start:206.62MB, end 206.64MB, increase: 18.68KB
  5514. 2025-1-18 17:06:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5515. 2025-1-18 17:06:21-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5516. 2025-1-18 17:06:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  5517. 2025-1-18 17:06:21-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  5518. 2025-1-18 17:06:21-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:206.67MB, end 206.81MB, increase: 139.72KB
  5519. 2025-1-18 17:06:32-debug: refresh db internal success
  5520. 2025-1-18 17:06:32-debug: refresh db assets success
  5521. 2025-1-18 17:06:32-debug: Run asset db hook engine-extends:afterRefresh success!
  5522. 2025-1-18 17:06:32-debug: Run asset db hook engine-extends:afterRefresh ...
  5523. 2025-1-18 17:06:32-debug: asset-db:refresh-all-database (110ms)
  5524. 2025-1-18 17:06:32-debug: asset-db:worker-effect-data-processing (6ms)
  5525. 2025-1-18 17:06:32-debug: asset-db-hook-engine-extends-afterRefresh (6ms)
  5526. 2025-1-18 17:08:00-debug: refresh db internal success
  5527. 2025-1-18 17:08:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5528. 2025-1-18 17:08:00-debug: refresh db assets success
  5529. 2025-1-18 17:08:00-debug: Run asset db hook engine-extends:afterRefresh ...
  5530. 2025-1-18 17:08:00-debug: Run asset db hook engine-extends:afterRefresh success!
  5531. 2025-1-18 17:08:00-debug: asset-db:refresh-all-database (112ms)
  5532. 2025-1-18 17:08:01-debug: Query all assets info in project
  5533. 2025-1-18 17:08:01-debug: init custom config: keepNodeUuid: false, useCache: true
  5534. 2025-1-18 17:08:01-debug: 查询 Asset Bundle start, progress: 0%
  5535. 2025-1-18 17:08:01-debug: // ---- build task 查询 Asset Bundle ----
  5536. 2025-1-18 17:08:01-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
  5537. 2025-1-18 17:08:01-debug: Number of all scripts: 124
  5538. 2025-1-18 17:08:01-debug: Number of other assets: 1141
  5539. 2025-1-18 17:08:01-debug: Number of all scenes: 3
  5540. 2025-1-18 17:08:01-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  5541. 2025-1-18 17:08:01-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  5542. 2025-1-18 17:08:01-debug: // ---- build task 查询 Asset Bundle ----
  5543. 2025-1-18 17:08:01-debug: [Build Memory track]: 查询 Asset Bundle start:211.49MB, end 211.09MB, increase: -414.18KB
  5544. 2025-1-18 17:08:01-debug: 查询 Asset Bundle start, progress: 5%
  5545. 2025-1-18 17:08:01-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5546. 2025-1-18 17:08:01-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5547. 2025-1-18 17:08:01-debug: [Build Memory track]: 查询 Asset Bundle start:211.12MB, end 211.32MB, increase: 211.23KB
  5548. 2025-1-18 17:08:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5549. 2025-1-18 17:08:01-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5550. 2025-1-18 17:08:01-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5551. 2025-1-18 17:08:01-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.35MB, end 211.37MB, increase: 17.56KB
  5552. 2025-1-18 17:08:01-debug: // ---- build task 填充脚本数据到 settings.json ----
  5553. 2025-1-18 17:08:01-debug: 填充脚本数据到 settings.json start, progress: 12%
  5554. 2025-1-18 17:08:01-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  5555. 2025-1-18 17:08:01-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  5556. 2025-1-18 17:08:01-debug: [Build Memory track]: 填充脚本数据到 settings.json start:211.40MB, end 211.43MB, increase: 28.09KB
  5557. 2025-1-18 17:08:01-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5558. 2025-1-18 17:08:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5559. 2025-1-18 17:08:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  5560. 2025-1-18 17:08:01-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:211.46MB, end 211.60MB, increase: 145.41KB
  5561. 2025-1-18 17:08:01-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  5562. 2025-1-18 17:08:02-debug: Query all assets info in project
  5563. 2025-1-18 17:08:02-debug: init custom config: keepNodeUuid: false, useCache: true
  5564. 2025-1-18 17:08:02-debug: 查询 Asset Bundle start, progress: 0%
  5565. 2025-1-18 17:08:02-debug: // ---- build task 查询 Asset Bundle ----
  5566. 2025-1-18 17:08:02-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
  5567. 2025-1-18 17:08:02-debug: Number of all scenes: 3
  5568. 2025-1-18 17:08:02-debug: Number of all scripts: 124
  5569. 2025-1-18 17:08:02-debug: Number of other assets: 1141
  5570. 2025-1-18 17:08:02-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  5571. 2025-1-18 17:08:02-debug: [Build Memory track]: 查询 Asset Bundle start:210.59MB, end 210.59MB, increase: 3.72KB
  5572. 2025-1-18 17:08:02-debug: 查询 Asset Bundle start, progress: 5%
  5573. 2025-1-18 17:08:02-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  5574. 2025-1-18 17:08:02-debug: // ---- build task 查询 Asset Bundle ----
  5575. 2025-1-18 17:08:02-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5576. 2025-1-18 17:08:02-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5577. 2025-1-18 17:08:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5578. 2025-1-18 17:08:02-debug: [Build Memory track]: 查询 Asset Bundle start:210.62MB, end 210.83MB, increase: 211.05KB
  5579. 2025-1-18 17:08:02-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5580. 2025-1-18 17:08:02-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5581. 2025-1-18 17:08:02-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.86MB, end 210.88MB, increase: 19.17KB
  5582. 2025-1-18 17:08:02-debug: // ---- build task 填充脚本数据到 settings.json ----
  5583. 2025-1-18 17:08:02-debug: 填充脚本数据到 settings.json start, progress: 12%
  5584. 2025-1-18 17:08:02-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5585. 2025-1-18 17:08:02-debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.91MB, end 210.93MB, increase: 17.76KB
  5586. 2025-1-18 17:08:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5587. 2025-1-18 17:08:02-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5588. 2025-1-18 17:08:02-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5589. 2025-1-18 17:08:02-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5590. 2025-1-18 17:08:02-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.96MB, end 211.09MB, increase: 128.56KB
  5591. 2025-1-18 17:08:19-debug: refresh db internal success
  5592. 2025-1-18 17:08:19-debug: refresh db assets success
  5593. 2025-1-18 17:08:19-debug: Run asset db hook engine-extends:afterRefresh ...
  5594. 2025-1-18 17:08:19-debug: Run asset db hook engine-extends:afterRefresh success!
  5595. 2025-1-18 17:08:19-debug: asset-db:refresh-all-database (126ms)
  5596. 2025-1-18 17:08:19-debug: asset-db:worker-effect-data-processing (24ms)
  5597. 2025-1-18 17:08:19-debug: asset-db-hook-engine-extends-afterRefresh (24ms)
  5598. 2025-1-18 17:08:41-debug: refresh db internal success
  5599. 2025-1-18 17:08:41-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5600. 2025-1-18 17:08:41-debug: refresh db assets success
  5601. 2025-1-18 17:08:41-debug: Run asset db hook engine-extends:afterRefresh ...
  5602. 2025-1-18 17:08:41-debug: Run asset db hook engine-extends:afterRefresh success!
  5603. 2025-1-18 17:08:41-debug: asset-db:refresh-all-database (117ms)
  5604. 2025-1-18 17:08:41-debug: asset-db:worker-effect-data-processing (5ms)
  5605. 2025-1-18 17:08:41-debug: asset-db-hook-engine-extends-afterRefresh (5ms)
  5606. 2025-1-18 17:08:42-debug: Query all assets info in project
  5607. 2025-1-18 17:08:42-debug: init custom config: keepNodeUuid: false, useCache: true
  5608. 2025-1-18 17:08:42-debug: 查询 Asset Bundle start, progress: 0%
  5609. 2025-1-18 17:08:42-debug: // ---- build task 查询 Asset Bundle ----
  5610. 2025-1-18 17:08:42-debug: Number of all scripts: 124
  5611. 2025-1-18 17:08:42-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
  5612. 2025-1-18 17:08:42-debug: Number of other assets: 1141
  5613. 2025-1-18 17:08:42-debug: Number of all scenes: 3
  5614. 2025-1-18 17:08:42-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  5615. 2025-1-18 17:08:42-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  5616. 2025-1-18 17:08:42-debug: // ---- build task 查询 Asset Bundle ----
  5617. 2025-1-18 17:08:42-debug: 查询 Asset Bundle start, progress: 5%
  5618. 2025-1-18 17:08:42-debug: [Build Memory track]: 查询 Asset Bundle start:216.46MB, end 216.05MB, increase: -423.78KB
  5619. 2025-1-18 17:08:42-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  5620. 2025-1-18 17:08:42-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  5621. 2025-1-18 17:08:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5622. 2025-1-18 17:08:42-debug: [Build Memory track]: 查询 Asset Bundle start:216.08MB, end 216.29MB, increase: 211.13KB
  5623. 2025-1-18 17:08:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5624. 2025-1-18 17:08:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (-1ms)
  5625. 2025-1-18 17:08:42-debug: run build task 整理部分构建选项内数据到 settings.json success in -1 h -1 min -1 s√, progress: 12%
  5626. 2025-1-18 17:08:42-debug: 填充脚本数据到 settings.json start, progress: 12%
  5627. 2025-1-18 17:08:42-debug: // ---- build task 填充脚本数据到 settings.json ----
  5628. 2025-1-18 17:08:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.32MB, end 216.35MB, increase: 29.34KB
  5629. 2025-1-18 17:08:42-debug: // ---- build task 填充脚本数据到 settings.json ---- (-1ms)
  5630. 2025-1-18 17:08:42-debug: [Build Memory track]: 填充脚本数据到 settings.json start:216.38MB, end 216.41MB, increase: 27.84KB
  5631. 2025-1-18 17:08:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5632. 2025-1-18 17:08:42-debug: run build task 填充脚本数据到 settings.json success in -1 h -1 min -1 s√, progress: 13%
  5633. 2025-1-18 17:08:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5634. 2025-1-18 17:08:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  5635. 2025-1-18 17:08:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  5636. 2025-1-18 17:08:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.44MB, end 216.57MB, increase: 131.60KB
  5637. 2025-1-18 17:08:42-debug: Query all assets info in project
  5638. 2025-1-18 17:08:42-debug: init custom config: keepNodeUuid: false, useCache: true
  5639. 2025-1-18 17:08:42-debug: 查询 Asset Bundle start, progress: 0%
  5640. 2025-1-18 17:08:42-debug: // ---- build task 查询 Asset Bundle ----
  5641. 2025-1-18 17:08:42-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
  5642. 2025-1-18 17:08:42-debug: Number of all scenes: 3
  5643. 2025-1-18 17:08:42-debug: Number of all scripts: 124
  5644. 2025-1-18 17:08:42-debug: Number of other assets: 1141
  5645. 2025-1-18 17:08:42-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  5646. 2025-1-18 17:08:42-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  5647. 2025-1-18 17:08:42-debug: // ---- build task 查询 Asset Bundle ----
  5648. 2025-1-18 17:08:42-debug: [Build Memory track]: 查询 Asset Bundle start:215.36MB, end 215.42MB, increase: 58.76KB
  5649. 2025-1-18 17:08:42-debug: 查询 Asset Bundle start, progress: 5%
  5650. 2025-1-18 17:08:42-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  5651. 2025-1-18 17:08:42-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  5652. 2025-1-18 17:08:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5653. 2025-1-18 17:08:42-debug: [Build Memory track]: 查询 Asset Bundle start:215.45MB, end 215.66MB, increase: 211.08KB
  5654. 2025-1-18 17:08:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5655. 2025-1-18 17:08:42-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5656. 2025-1-18 17:08:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.69MB, end 215.71MB, increase: 19.52KB
  5657. 2025-1-18 17:08:42-debug: 填充脚本数据到 settings.json start, progress: 12%
  5658. 2025-1-18 17:08:42-debug: // ---- build task 填充脚本数据到 settings.json ----
  5659. 2025-1-18 17:08:42-debug: // ---- build task 填充脚本数据到 settings.json ---- (-1ms)
  5660. 2025-1-18 17:08:42-debug: run build task 填充脚本数据到 settings.json success in -1 h -1 min -1 s√, progress: 13%
  5661. 2025-1-18 17:08:42-debug: [Build Memory track]: 填充脚本数据到 settings.json start:215.74MB, end 215.76MB, increase: 26.40KB
  5662. 2025-1-18 17:08:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5663. 2025-1-18 17:08:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5664. 2025-1-18 17:08:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5665. 2025-1-18 17:08:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5666. 2025-1-18 17:08:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.80MB, end 215.92MB, increase: 130.90KB
  5667. 2025-1-18 17:08:51-debug: refresh db internal success
  5668. 2025-1-18 17:08:51-debug: refresh db assets success
  5669. 2025-1-18 17:08:51-debug: Run asset db hook engine-extends:afterRefresh ...
  5670. 2025-1-18 17:08:51-debug: Run asset db hook engine-extends:afterRefresh success!
  5671. 2025-1-18 17:08:51-debug: asset-db:refresh-all-database (98ms)
  5672. 2025-1-18 17:10:16-debug: refresh db internal success
  5673. 2025-1-18 17:10:16-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5674. 2025-1-18 17:10:16-debug: Run asset db hook engine-extends:afterRefresh ...
  5675. 2025-1-18 17:10:16-debug: refresh db assets success
  5676. 2025-1-18 17:10:16-debug: Run asset db hook engine-extends:afterRefresh success!
  5677. 2025-1-18 17:10:16-debug: asset-db:refresh-all-database (147ms)
  5678. 2025-1-18 17:10:16-debug: asset-db:worker-effect-data-processing (1ms)
  5679. 2025-1-18 17:10:16-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  5680. 2025-1-18 17:10:17-debug: Query all assets info in project
  5681. 2025-1-18 17:10:17-debug: init custom config: keepNodeUuid: false, useCache: true
  5682. 2025-1-18 17:10:17-debug: 查询 Asset Bundle start, progress: 0%
  5683. 2025-1-18 17:10:17-debug: // ---- build task 查询 Asset Bundle ----
  5684. 2025-1-18 17:10:17-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5685. 2025-1-18 17:10:17-debug: Number of all scenes: 3
  5686. 2025-1-18 17:10:17-debug: Number of all scripts: 124
  5687. 2025-1-18 17:10:17-debug: Number of other assets: 1141
  5688. 2025-1-18 17:10:17-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  5689. 2025-1-18 17:10:17-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  5690. 2025-1-18 17:10:17-debug: [Build Memory track]: 查询 Asset Bundle start:202.75MB, end 200.11MB, increase: -2699.95KB
  5691. 2025-1-18 17:10:17-debug: // ---- build task 查询 Asset Bundle ----
  5692. 2025-1-18 17:10:17-debug: 查询 Asset Bundle start, progress: 5%
  5693. 2025-1-18 17:10:17-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5694. 2025-1-18 17:10:17-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5695. 2025-1-18 17:10:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5696. 2025-1-18 17:10:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5697. 2025-1-18 17:10:17-debug: [Build Memory track]: 查询 Asset Bundle start:200.15MB, end 200.35MB, increase: 212.25KB
  5698. 2025-1-18 17:10:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5699. 2025-1-18 17:10:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5700. 2025-1-18 17:10:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.38MB, end 200.41MB, increase: 26.98KB
  5701. 2025-1-18 17:10:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  5702. 2025-1-18 17:10:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  5703. 2025-1-18 17:10:17-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5704. 2025-1-18 17:10:17-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5705. 2025-1-18 17:10:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:200.44MB, end 200.47MB, increase: 28.50KB
  5706. 2025-1-18 17:10:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5707. 2025-1-18 17:10:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5708. 2025-1-18 17:10:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (9ms)
  5709. 2025-1-18 17:10:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 9 ms√, progress: 15%
  5710. 2025-1-18 17:10:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:200.50MB, end 200.63MB, increase: 135.30KB
  5711. 2025-1-18 17:10:26-debug: refresh db internal success
  5712. 2025-1-18 17:10:26-debug: Run asset db hook engine-extends:afterRefresh ...
  5713. 2025-1-18 17:10:26-debug: Run asset db hook engine-extends:afterRefresh success!
  5714. 2025-1-18 17:10:26-debug: refresh db assets success
  5715. 2025-1-18 17:10:26-debug: asset-db:refresh-all-database (111ms)
  5716. 2025-1-18 17:10:26-debug: asset-db:worker-effect-data-processing (11ms)
  5717. 2025-1-18 17:10:26-debug: asset-db-hook-engine-extends-afterRefresh (11ms)
  5718. 2025-1-18 17:10:37-debug: refresh db internal success
  5719. 2025-1-18 17:10:37-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5720. 2025-1-18 17:10:37-debug: refresh db assets success
  5721. 2025-1-18 17:10:37-debug: Run asset db hook engine-extends:afterRefresh ...
  5722. 2025-1-18 17:10:37-debug: Run asset db hook engine-extends:afterRefresh success!
  5723. 2025-1-18 17:10:37-debug: asset-db:refresh-all-database (107ms)
  5724. 2025-1-18 17:10:39-debug: Query all assets info in project
  5725. 2025-1-18 17:10:39-debug: init custom config: keepNodeUuid: false, useCache: true
  5726. 2025-1-18 17:10:39-debug: 查询 Asset Bundle start, progress: 0%
  5727. 2025-1-18 17:10:39-debug: // ---- build task 查询 Asset Bundle ----
  5728. 2025-1-18 17:10:39-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
  5729. 2025-1-18 17:10:39-debug: Number of all scripts: 124
  5730. 2025-1-18 17:10:39-debug: Number of other assets: 1141
  5731. 2025-1-18 17:10:39-debug: Number of all scenes: 3
  5732. 2025-1-18 17:10:39-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5733. 2025-1-18 17:10:39-debug: [Build Memory track]: 查询 Asset Bundle start:204.61MB, end 204.66MB, increase: 49.56KB
  5734. 2025-1-18 17:10:39-debug: // ---- build task 查询 Asset Bundle ----
  5735. 2025-1-18 17:10:39-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5736. 2025-1-18 17:10:39-debug: 查询 Asset Bundle start, progress: 5%
  5737. 2025-1-18 17:10:39-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5738. 2025-1-18 17:10:39-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5739. 2025-1-18 17:10:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5740. 2025-1-18 17:10:39-debug: [Build Memory track]: 查询 Asset Bundle start:204.69MB, end 204.89MB, increase: 211.17KB
  5741. 2025-1-18 17:10:39-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5742. 2025-1-18 17:10:39-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5743. 2025-1-18 17:10:39-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:204.93MB, end 204.95MB, increase: 17.59KB
  5744. 2025-1-18 17:10:39-debug: 填充脚本数据到 settings.json start, progress: 12%
  5745. 2025-1-18 17:10:39-debug: // ---- build task 填充脚本数据到 settings.json ----
  5746. 2025-1-18 17:10:39-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5747. 2025-1-18 17:10:39-debug: [Build Memory track]: 填充脚本数据到 settings.json start:204.98MB, end 204.99MB, increase: 18.55KB
  5748. 2025-1-18 17:10:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5749. 2025-1-18 17:10:39-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5750. 2025-1-18 17:10:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5751. 2025-1-18 17:10:39-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5752. 2025-1-18 17:10:39-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:205.03MB, end 205.15MB, increase: 129.21KB
  5753. 2025-1-18 17:10:56-debug: refresh db internal success
  5754. 2025-1-18 17:10:56-debug: refresh db assets success
  5755. 2025-1-18 17:10:56-debug: Run asset db hook engine-extends:afterRefresh ...
  5756. 2025-1-18 17:10:56-debug: Run asset db hook engine-extends:afterRefresh success!
  5757. 2025-1-18 17:10:56-debug: asset-db:refresh-all-database (102ms)
  5758. 2025-1-18 17:11:46-debug: refresh db internal success
  5759. 2025-1-18 17:11:46-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5760. 2025-1-18 17:11:46-debug: refresh db assets success
  5761. 2025-1-18 17:11:46-debug: Run asset db hook engine-extends:afterRefresh ...
  5762. 2025-1-18 17:11:46-debug: Run asset db hook engine-extends:afterRefresh success!
  5763. 2025-1-18 17:11:46-debug: asset-db:worker-effect-data-processing (11ms)
  5764. 2025-1-18 17:11:46-debug: asset-db-hook-engine-extends-afterRefresh (12ms)
  5765. 2025-1-18 17:11:46-debug: asset-db:refresh-all-database (121ms)
  5766. 2025-1-18 17:11:47-debug: Query all assets info in project
  5767. 2025-1-18 17:11:47-debug: init custom config: keepNodeUuid: false, useCache: true
  5768. 2025-1-18 17:11:47-debug: 查询 Asset Bundle start, progress: 0%
  5769. 2025-1-18 17:11:47-debug: // ---- build task 查询 Asset Bundle ----
  5770. 2025-1-18 17:11:47-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
  5771. 2025-1-18 17:11:47-debug: Number of all scenes: 3
  5772. 2025-1-18 17:11:47-debug: Number of all scripts: 124
  5773. 2025-1-18 17:11:47-debug: Number of other assets: 1141
  5774. 2025-1-18 17:11:47-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  5775. 2025-1-18 17:11:47-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  5776. 2025-1-18 17:11:47-debug: 查询 Asset Bundle start, progress: 5%
  5777. 2025-1-18 17:11:47-debug: [Build Memory track]: 查询 Asset Bundle start:211.41MB, end 210.55MB, increase: -877.04KB
  5778. 2025-1-18 17:11:47-debug: // ---- build task 查询 Asset Bundle ----
  5779. 2025-1-18 17:11:47-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5780. 2025-1-18 17:11:47-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5781. 2025-1-18 17:11:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5782. 2025-1-18 17:11:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5783. 2025-1-18 17:11:47-debug: [Build Memory track]: 查询 Asset Bundle start:210.59MB, end 209.32MB, increase: -1297.82KB
  5784. 2025-1-18 17:11:47-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5785. 2025-1-18 17:11:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.35MB, end 209.37MB, increase: 18.59KB
  5786. 2025-1-18 17:11:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  5787. 2025-1-18 17:11:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  5788. 2025-1-18 17:11:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:209.40MB, end 209.42MB, increase: 17.82KB
  5789. 2025-1-18 17:11:47-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5790. 2025-1-18 17:11:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5791. 2025-1-18 17:11:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5792. 2025-1-18 17:11:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5793. 2025-1-18 17:11:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5794. 2025-1-18 17:11:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:209.45MB, end 209.57MB, increase: 128.81KB
  5795. 2025-1-18 17:11:47-debug: Query all assets info in project
  5796. 2025-1-18 17:11:47-debug: init custom config: keepNodeUuid: false, useCache: true
  5797. 2025-1-18 17:11:47-debug: 查询 Asset Bundle start, progress: 0%
  5798. 2025-1-18 17:11:47-debug: // ---- build task 查询 Asset Bundle ----
  5799. 2025-1-18 17:11:47-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
  5800. 2025-1-18 17:11:47-debug: Number of all scenes: 3
  5801. 2025-1-18 17:11:47-debug: Number of other assets: 1141
  5802. 2025-1-18 17:11:47-debug: Number of all scripts: 124
  5803. 2025-1-18 17:11:47-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5804. 2025-1-18 17:11:47-debug: [Build Memory track]: 查询 Asset Bundle start:210.17MB, end 210.24MB, increase: 70.28KB
  5805. 2025-1-18 17:11:47-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5806. 2025-1-18 17:11:47-debug: 查询 Asset Bundle start, progress: 5%
  5807. 2025-1-18 17:11:47-debug: // ---- build task 查询 Asset Bundle ----
  5808. 2025-1-18 17:11:47-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  5809. 2025-1-18 17:11:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5810. 2025-1-18 17:11:47-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  5811. 2025-1-18 17:11:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5812. 2025-1-18 17:11:47-debug: [Build Memory track]: 查询 Asset Bundle start:210.27MB, end 210.48MB, increase: 212.09KB
  5813. 2025-1-18 17:11:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5814. 2025-1-18 17:11:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.51MB, end 210.53MB, increase: 27.81KB
  5815. 2025-1-18 17:11:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  5816. 2025-1-18 17:11:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5817. 2025-1-18 17:11:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  5818. 2025-1-18 17:11:47-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5819. 2025-1-18 17:11:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:210.57MB, end 210.58MB, increase: 18.95KB
  5820. 2025-1-18 17:11:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5821. 2025-1-18 17:11:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5822. 2025-1-18 17:11:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5823. 2025-1-18 17:11:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  5824. 2025-1-18 17:11:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:210.62MB, end 210.74MB, increase: 129.45KB
  5825. 2025-1-18 17:11:55-debug: refresh db internal success
  5826. 2025-1-18 17:11:56-debug: refresh db assets success
  5827. 2025-1-18 17:11:56-debug: Run asset db hook engine-extends:afterRefresh success!
  5828. 2025-1-18 17:11:56-debug: Run asset db hook engine-extends:afterRefresh ...
  5829. 2025-1-18 17:11:56-debug: asset-db:refresh-all-database (100ms)
  5830. 2025-1-18 17:13:23-debug: refresh db internal success
  5831. 2025-1-18 17:13:23-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\game\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  5832. 2025-1-18 17:13:23-debug: refresh db assets success
  5833. 2025-1-18 17:13:23-debug: Run asset db hook engine-extends:afterRefresh ...
  5834. 2025-1-18 17:13:23-debug: Run asset db hook engine-extends:afterRefresh success!
  5835. 2025-1-18 17:13:23-debug: asset-db:refresh-all-database (110ms)
  5836. 2025-1-18 17:13:24-debug: Query all assets info in project
  5837. 2025-1-18 17:13:24-debug: init custom config: keepNodeUuid: false, useCache: true
  5838. 2025-1-18 17:13:24-debug: 查询 Asset Bundle start, progress: 0%
  5839. 2025-1-18 17:13:24-debug: // ---- build task 查询 Asset Bundle ----
  5840. 2025-1-18 17:13: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
  5841. 2025-1-18 17:13:24-debug: Number of all scenes: 3
  5842. 2025-1-18 17:13:24-debug: Number of all scripts: 124
  5843. 2025-1-18 17:13:24-debug: Number of other assets: 1141
  5844. 2025-1-18 17:13:24-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  5845. 2025-1-18 17:13:24-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  5846. 2025-1-18 17:13:24-debug: 查询 Asset Bundle start, progress: 5%
  5847. 2025-1-18 17:13:24-debug: [Build Memory track]: 查询 Asset Bundle start:213.81MB, end 213.84MB, increase: 26.42KB
  5848. 2025-1-18 17:13:24-debug: // ---- build task 查询 Asset Bundle ----
  5849. 2025-1-18 17:13:24-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5850. 2025-1-18 17:13:24-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  5851. 2025-1-18 17:13:24-debug: [Build Memory track]: 查询 Asset Bundle start:213.87MB, end 214.08MB, increase: 211.81KB
  5852. 2025-1-18 17:13:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5853. 2025-1-18 17:13:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5854. 2025-1-18 17:13:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5855. 2025-1-18 17:13:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5856. 2025-1-18 17:13:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  5857. 2025-1-18 17:13:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.11MB, end 214.14MB, increase: 29.69KB
  5858. 2025-1-18 17:13:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  5859. 2025-1-18 17:13:24-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5860. 2025-1-18 17:13:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:214.17MB, end 214.19MB, increase: 27.99KB
  5861. 2025-1-18 17:13:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5862. 2025-1-18 17:13:24-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5863. 2025-1-18 17:13:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5864. 2025-1-18 17:13:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5865. 2025-1-18 17:13:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5866. 2025-1-18 17:13:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:214.23MB, end 214.35MB, increase: 130.48KB
  5867. 2025-1-18 17:13:24-debug: Query all assets info in project
  5868. 2025-1-18 17:13:24-debug: init custom config: keepNodeUuid: false, useCache: true
  5869. 2025-1-18 17:13:24-debug: 查询 Asset Bundle start, progress: 0%
  5870. 2025-1-18 17:13:24-debug: // ---- build task 查询 Asset Bundle ----
  5871. 2025-1-18 17:13: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
  5872. 2025-1-18 17:13:24-debug: Number of all scenes: 3
  5873. 2025-1-18 17:13:24-debug: Number of all scripts: 124
  5874. 2025-1-18 17:13:24-debug: Number of other assets: 1141
  5875. 2025-1-18 17:13:24-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5876. 2025-1-18 17:13:24-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5877. 2025-1-18 17:13:24-debug: // ---- build task 查询 Asset Bundle ----
  5878. 2025-1-18 17:13:24-debug: [Build Memory track]: 查询 Asset Bundle start:214.91MB, end 215.00MB, increase: 90.13KB
  5879. 2025-1-18 17:13:24-debug: 查询 Asset Bundle start, progress: 5%
  5880. 2025-1-18 17:13:24-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  5881. 2025-1-18 17:13:24-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  5882. 2025-1-18 17:13:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5883. 2025-1-18 17:13:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5884. 2025-1-18 17:13:24-debug: [Build Memory track]: 查询 Asset Bundle start:215.03MB, end 215.24MB, increase: 209.86KB
  5885. 2025-1-18 17:13:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5886. 2025-1-18 17:13:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5887. 2025-1-18 17:13:25-debug: // ---- build task 填充脚本数据到 settings.json ----
  5888. 2025-1-18 17:13:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.27MB, end 215.30MB, increase: 29.76KB
  5889. 2025-1-18 17:13:25-debug: 填充脚本数据到 settings.json start, progress: 12%
  5890. 2025-1-18 17:13:25-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5891. 2025-1-18 17:13:25-debug: [Build Memory track]: 填充脚本数据到 settings.json start:215.33MB, end 215.35MB, increase: 16.79KB
  5892. 2025-1-18 17:13:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5893. 2025-1-18 17:13:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5894. 2025-1-18 17:13:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5895. 2025-1-18 17:13:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:215.38MB, end 213.77MB, increase: -1651.62KB
  5896. 2025-1-18 17:13:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5897. 2025-1-18 17:13:37-debug: refresh db internal success
  5898. 2025-1-18 17:13:37-debug: refresh db assets success
  5899. 2025-1-18 17:13:37-debug: Run asset db hook engine-extends:afterRefresh ...
  5900. 2025-1-18 17:13:37-debug: Run asset db hook engine-extends:afterRefresh success!
  5901. 2025-1-18 17:13:37-debug: asset-db:refresh-all-database (105ms)
  5902. 2025-1-18 17:13:37-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5903. 2025-1-18 17:19:06-debug: refresh db internal success
  5904. 2025-1-18 17:19:06-debug: refresh db assets success
  5905. 2025-1-18 17:19:06-debug: Run asset db hook engine-extends:afterRefresh success!
  5906. 2025-1-18 17:19:06-debug: Run asset db hook engine-extends:afterRefresh ...
  5907. 2025-1-18 17:19:06-debug: asset-db:refresh-all-database (107ms)
  5908. 2025-1-18 17:19:06-debug: asset-db:worker-effect-data-processing (1ms)
  5909. 2025-1-18 17:19:06-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5910. 2025-1-18 17:19:12-debug: Start record console... {file(D:\CocosCreatorProject\Idioms\idiom\temp\builder\log\wechatgame2025-1-18 10-29.log)}
  5911. 2025-1-18 17:19:12-debug: =================================== build Task (wechatgame) Start ================================
  5912. 2025-1-18 17:19:12-debug: Start build task, options: {"name":"看你多厉害","server":"","platform":"wechatgame","buildPath":"project://build","debug":false,"md5Cache":false,"skipCompressTexture":false,"sourceMaps":false,"overwriteProjectSettings":{"macroConfig":{"cleanupImageCache":"on"},"includeModules":{"physics":"inherit-project-setting","physics-2d":"inherit-project-setting","gfx-webgl2":"off"}},"nativeCodeBundleMode":"wasm","polyfills":{"asyncFunctions":false},"experimentalEraseModules":false,"startSceneAssetBundle":true,"bundleConfigs":[],"useBuiltinServer":false,"md5CacheOptions":{"excludes":[],"includes":[],"replaceOnly":[],"handleTemplateMd5Link":true},"mainBundleIsRemote":false,"mainBundleCompressionType":"subpackage","useSplashScreen":true,"bundleCommonChunk":false,"packAutoAtlas":true,"startScene":"155e7964-9abb-4942-be64-ececa65865a5","outputName":"wechatgame","taskName":"wechatgame","scenes":[{"url":"db://assets/start/start.scene","uuid":"155e7964-9abb-4942-be64-ececa65865a5"},{"url":"db://assets/module_game/game/game.scene","uuid":"2d0d9d79-af76-426f-8abd-3eeff0d4e1c3","bundle":"db://assets/module_game"},{"url":"db://assets/module_game/hall/hall.scene","uuid":"f9516261-6f5e-4b79-9676-880b100e9a8d","bundle":"db://assets/module_game"}],"wasmCompressionMode":"brotli","packages":{"wechatgame":{"orientation":"portrait","appid":"wx7d17bc8ef8255490","buildOpenDataContextTemplate":"","separateEngine":false,"highPerformanceMode":false,"__version__":"1.0.4","wasmSubpackage":true},"cocos-service":{"configID":"7dcd5c","services":[]}},"__version__":"1.3.8","logDest":"project://temp/builder/log/wechatgame2025-1-18 10-29.log"}
  5913. 2025-1-18 17:19:12-debug: Build with Cocos Creator 3.8.4
  5914. 2025-1-18 17:19:12-debug: cocos-service:(onBeforeBuild) start..., progress: 0%
  5915. 2025-1-18 17:19:12-debug: // ---- build task cocos-service:onBeforeBuild ----
  5916. 2025-1-18 17:19:12-debug: // ---- build task cocos-service:onBeforeBuild ---- (196ms)
  5917. 2025-1-18 17:19:12-debug: // ---- build task scene:onBeforeBuild ----
  5918. 2025-1-18 17:19:12-debug: cocos-service:(onBeforeBuild) in 196 ms ✓, progress: 2%
  5919. 2025-1-18 17:19:12-debug: scene:(onBeforeBuild) start..., progress: 2%
  5920. 2025-1-18 17:19:12-debug: // ---- build task scene:onBeforeBuild ---- (26ms)
  5921. 2025-1-18 17:19:12-debug: Start lock asset db..., progress: 4%
  5922. 2025-1-18 17:19:12-debug: scene:(onBeforeBuild) in 26 ms ✓, progress: 4%
  5923. 2025-1-18 17:19:12-log: Asset DB is paused with build!
  5924. 2025-1-18 17:19:12-debug: Query all assets info in project
  5925. 2025-1-18 17:19:12-debug: init custom config: keepNodeUuid: false, useCache: true
  5926. 2025-1-18 17:19:12-debug: // ---- build task wechatgame:onAfterInit ----
  5927. 2025-1-18 17:19:12-debug: wechatgame:(onAfterInit) start..., progress: 4%
  5928. 2025-1-18 17:19:12-debug: // ---- build task wechatgame:onAfterInit ---- (17ms)
  5929. 2025-1-18 17:19:12-debug: // ---- build task cocos-service:onAfterInit ----
  5930. 2025-1-18 17:19:12-debug: wechatgame:(onAfterInit) in 17 ms ✓, progress: 5%
  5931. 2025-1-18 17:19:12-debug: cocos-service:(onAfterInit) start..., progress: 5%
  5932. 2025-1-18 17:19:13-debug: // ---- build task cocos-service:onAfterInit ---- (86ms)
  5933. 2025-1-18 17:19:13-debug: engine:(onAfterInit) start..., progress: 7%
  5934. 2025-1-18 17:19:13-debug: cocos-service:(onAfterInit) in 86 ms ✓, progress: 7%
  5935. 2025-1-18 17:19:13-debug: // ---- build task engine:onAfterInit ----
  5936. 2025-1-18 17:19:13-debug: // ---- build task engine:onAfterInit ---- (30ms)
  5937. 2025-1-18 17:19:13-debug: // ---- build task wechatgame:onBeforeBundleInit ----
  5938. 2025-1-18 17:19:13-debug: wechatgame:(onBeforeBundleInit) start..., progress: 9%
  5939. 2025-1-18 17:19:13-debug: engine:(onAfterInit) in 30 ms ✓, progress: 9%
  5940. 2025-1-18 17:19:13-debug: // ---- build task wechatgame:onBeforeBundleInit ---- (31ms)
  5941. 2025-1-18 17:19:13-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ----
  5942. 2025-1-18 17:19:13-debug: wechatgame:(onBeforeBundleInit) in 31 ms ✓, progress: 9%
  5943. 2025-1-18 17:19:13-debug: adsense-h5g-plugin:(onBeforeBundleInit) start..., progress: 9%
  5944. 2025-1-18 17:19:13-debug: [adsense-h5g-plugin] remove script success
  5945. 2025-1-18 17:19:13-debug: // ---- build task adsense-h5g-plugin:onBeforeBundleInit ---- (36ms)
  5946. 2025-1-18 17:19:13-debug: adsense-h5g-plugin:(onBeforeBundleInit) in 36 ms ✓, progress: 9%
  5947. 2025-1-18 17:19:13-debug: Init all bundles start..., progress: 9%
  5948. 2025-1-18 17:19:13-debug: 查询 Asset Bundle start, progress: 9%
  5949. 2025-1-18 17:19:13-debug: // ---- build task 查询 Asset Bundle ----
  5950. 2025-1-18 17:19:13-debug: Init bundle root assets start..., progress: 9%
  5951. 2025-1-18 17:19:13-debug: Num of bundles: 6..., progress: 9%
  5952. 2025-1-18 17:19:13-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,d9937e59-61fe-4ec6-92ab-7ac5a19c89b0,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5953. 2025-1-18 17:19:13-debug: Number of all scripts: 124
  5954. 2025-1-18 17:19:13-debug: Number of other assets: 1141
  5955. 2025-1-18 17:19:13-debug: Init bundle root assets success..., progress: 9%
  5956. 2025-1-18 17:19:13-debug: Number of all scenes: 3
  5957. 2025-1-18 17:19:13-debug: reload all scripts.
  5958. 2025-1-18 17:19:13-debug: Set detail map pack:///resolution-detail-map.json: {}
  5959. 2025-1-18 17:19:13-debug: Unregister BuiltinPipelineSettings
  5960. 2025-1-18 17:19:13-debug: Unregister ch_start_pack
  5961. 2025-1-18 17:19:13-debug: Unregister DebugViewRuntimeControl
  5962. 2025-1-18 17:19:13-debug: Unregister ch_sdk_comp
  5963. 2025-1-18 17:19:13-debug: Unregister __NodeEventAgent__
  5964. 2025-1-18 17:19:13-debug: Unregister ResolutionAutoFit
  5965. 2025-1-18 17:19:13-debug: Unregister ClickPenetrate
  5966. 2025-1-18 17:19:13-debug: Unregister List
  5967. 2025-1-18 17:19:13-debug: Unregister ui_updater
  5968. 2025-1-18 17:19:13-debug: Unregister MotionTrail
  5969. 2025-1-18 17:19:13-debug: Unregister ListItem
  5970. 2025-1-18 17:19:13-debug: Unregister MovieClip
  5971. 2025-1-18 17:19:13-debug: Unregister UISpineMovie
  5972. 2025-1-18 17:19:13-debug: Unregister Layout_UIAlert
  5973. 2025-1-18 17:19:13-debug: Unregister Layout_UI_Notify
  5974. 2025-1-18 17:19:13-debug: Unregister Layout_UIWaiting
  5975. 2025-1-18 17:19:13-debug: Unregister RewardFly
  5976. 2025-1-18 17:19:13-debug: Unregister table_idiom
  5977. 2025-1-18 17:19:13-debug: Unregister table_level
  5978. 2025-1-18 17:19:13-debug: Unregister Layout_GameRules
  5979. 2025-1-18 17:19:13-debug: Unregister UI_GameRules
  5980. 2025-1-18 17:19:13-debug: Unregister Layout_Idioms
  5981. 2025-1-18 17:19:13-debug: Unregister SpineView
  5982. 2025-1-18 17:19:13-debug: Unregister UI_Idiom
  5983. 2025-1-18 17:19:13-debug: Unregister Layout_Settings
  5984. 2025-1-18 17:19:13-debug: Unregister UI_Idioms
  5985. 2025-1-18 17:19:13-debug: Unregister Layout_Hall
  5986. 2025-1-18 17:19:13-debug: Unregister UI_Rank_Item
  5987. 2025-1-18 17:19:13-debug: Unregister UI_Head_Icon
  5988. 2025-1-18 17:19:13-debug: Unregister UI_Rank
  5989. 2025-1-18 17:19:13-debug: Unregister Layout_Rank
  5990. 2025-1-18 17:19:13-debug: Unregister UI_Sign
  5991. 2025-1-18 17:19:13-debug: Unregister Sign_Reward
  5992. 2025-1-18 17:19:13-debug: Unregister Layout_Invite
  5993. 2025-1-18 17:19:13-debug: Unregister Layout_Sign
  5994. 2025-1-18 17:19:13-debug: Unregister UI_Store
  5995. 2025-1-18 17:19:13-debug: Unregister Layout_Store
  5996. 2025-1-18 17:19:13-debug: Unregister Layout_SideBar
  5997. 2025-1-18 17:19:13-debug: Unregister UI_Invite
  5998. 2025-1-18 17:19:13-debug: Unregister UI_SideBar
  5999. 2025-1-18 17:19:13-debug: Unregister UI_Task_Item
  6000. 2025-1-18 17:19:13-debug: Unregister Layout_Task
  6001. 2025-1-18 17:19:13-debug: Unregister UI_Hall
  6002. 2025-1-18 17:19:13-debug: Unregister UI_Settings
  6003. 2025-1-18 17:19:13-debug: Unregister Start
  6004. 2025-1-18 17:19:13-debug: Unregister UI_Task
  6005. 2025-1-18 17:19:13-debug: Unregister Layout_Main
  6006. 2025-1-18 17:19:13-debug: Unregister Layout_Win
  6007. 2025-1-18 17:19:13-debug: Unregister Layout_TimesOver
  6008. 2025-1-18 17:19:13-debug: Unregister Layout_Fail
  6009. 2025-1-18 17:19:13-debug: Unregister UI_TimesOver
  6010. 2025-1-18 17:19:13-debug: Unregister UI_Main
  6011. 2025-1-18 17:19:13-debug: Unregister UI_Fail
  6012. 2025-1-18 17:19:13-debug: Unregister Cube_Infor
  6013. 2025-1-18 17:19:13-debug: Unregister UI_Win
  6014. 2025-1-18 17:19:13-debug: Unregister CreateIdiom
  6015. 2025-1-18 17:19:13-debug: Unregister Layout_LatticeFull
  6016. 2025-1-18 17:19:13-debug: Unregister Layout_Lock
  6017. 2025-1-18 17:19:13-debug: Unregister Hall
  6018. 2025-1-18 17:19:13-debug: Unregister UI_LatticeFull
  6019. 2025-1-18 17:19:13-debug: Unregister Container_Manager
  6020. 2025-1-18 17:19:13-debug: Unregister UI_Lock
  6021. 2025-1-18 17:19:13-debug: Unregister UI_Item
  6022. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js'
  6023. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js'
  6024. 2025-1-18 17:19:13-debug: Unregister GameCtl
  6025. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js'
  6026. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js'
  6027. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js'
  6028. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js'
  6029. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js'
  6030. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js'
  6031. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js'
  6032. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js'
  6033. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js'
  6034. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js'
  6035. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js'
  6036. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js'
  6037. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js'
  6038. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js'
  6039. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js'
  6040. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js'
  6041. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js'
  6042. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js'
  6043. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js'
  6044. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js'
  6045. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js'
  6046. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js'
  6047. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js'
  6048. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js'
  6049. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js'
  6050. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js'
  6051. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js'
  6052. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js'
  6053. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js'
  6054. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js'
  6055. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js'
  6056. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js'
  6057. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js'
  6058. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js'
  6059. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js'
  6060. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js'
  6061. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js'
  6062. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js'
  6063. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js'
  6064. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js'
  6065. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js'
  6066. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js'
  6067. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js'
  6068. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js'
  6069. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js'
  6070. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js'
  6071. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js'
  6072. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js'
  6073. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js'
  6074. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js'
  6075. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js'
  6076. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js'
  6077. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js'
  6078. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js'
  6079. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js'
  6080. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js'
  6081. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js'
  6082. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js'
  6083. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js'
  6084. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js'
  6085. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js'
  6086. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js'
  6087. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js'
  6088. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js'
  6089. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js'
  6090. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js'
  6091. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js'
  6092. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js'
  6093. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js'
  6094. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js'
  6095. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js'
  6096. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js'
  6097. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js'
  6098. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js'
  6099. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js'
  6100. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js'
  6101. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js'
  6102. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js'
  6103. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js'
  6104. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js'
  6105. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js'
  6106. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js'
  6107. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js'
  6108. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js'
  6109. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js'
  6110. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js'
  6111. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js'
  6112. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js'
  6113. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js'
  6114. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js'
  6115. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js'
  6116. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js'
  6117. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js'
  6118. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js'
  6119. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js'
  6120. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js'
  6121. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js'
  6122. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js'
  6123. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js'
  6124. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js'
  6125. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js'
  6126. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js'
  6127. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js'
  6128. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js'
  6129. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js'
  6130. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js'
  6131. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js'
  6132. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js'
  6133. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js'
  6134. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js'
  6135. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js'
  6136. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js'
  6137. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js'
  6138. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js'
  6139. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js'
  6140. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js'
  6141. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/93/93ba276ea7b26ffcdc433fab14afc1ed6f05647b.js" loaded.
  6142. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js'
  6143. 2025-1-18 17:19:13-debug: Invalidating 'pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js'
  6144. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6d\6d8fd2b0177941b032ddc0733af48a561fb60657.js is not in module cache!
  6145. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  6146. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/d6/d6137fe08bf966a053351bb405928e5a6390befd.js" loaded.
  6147. 2025-1-18 17:19:13-debug: [[Executor]] Register BuiltinPipelineSettings
  6148. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/59/59b7958b47eec6168615a6469581f8f48e26cb00.js" loaded.
  6149. 2025-1-18 17:19:13-debug: [[Executor]] Register DebugViewRuntimeControl
  6150. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/97/9758c8bdbb4fd247ebce274d105abb8265561b82.js" loaded.
  6151. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/ba/bab0b6a598c9a4c6dbaa534ff43cd1acd3bc0678.js" loaded.
  6152. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/3c/3c9500ce5c5c73c21b5dfe8ae42edf4d55b8edfe.js" loaded.
  6153. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/e9/e908646c1435d653de6447e2ae846c959ac29b33.js" loaded.
  6154. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/5a/5ad9214371678a1d97027b6cf28752dcbab25e0f.js" loaded.
  6155. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/1c/1c3614b3a2e4710764372e6a76dbe0058c9d9dab.js" loaded.
  6156. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/a6/a62597dd07a24c3714ad095eedbfc8f76f2d165c.js" loaded.
  6157. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/87/879eb4b2cb07a55807079158fde54421bac04056.js" loaded.
  6158. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/41/41d16e1f8113566bf1c111c20aceca9e4a6626d6.js" loaded.
  6159. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/3f/3f8dff31feda7b51e2d0428361dac48e18834ed8.js" loaded.
  6160. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/72/72bc24ff288b2b4316b5ddb0abd45b840383d6f0.js" loaded.
  6161. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/39/3975fe5ce64c51324369e49e8afd9c685ef1036d.js" loaded.
  6162. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/08/08ecc5fa925fc3fd11ef12d15f82b21f0039b613.js" loaded.
  6163. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/e6/e671bb16456ad253c126408d753c04295ea07129.js" loaded.
  6164. 2025-1-18 17:19:13-debug: [[Executor]] Register ch_sdk_comp
  6165. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/d7/d72ce35042ce99e7f64ae289f73e61427ebc5661.js" loaded.
  6166. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/31/31f21e9610b2e754c9705fb8b4947b7629eba3ec.js" loaded.
  6167. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/6a/6a5019a719a9014c047e67aa1cf34453ab8392ce.js" loaded.
  6168. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/b3/b349769b96cc4c1dff92d5d6f941366e27a02c6b.js" loaded.
  6169. 2025-1-18 17:19:13-debug: [[Executor]] Register __NodeEventAgent__
  6170. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/1c/1c6623815813aae756c57cca6f89a3182c222719.js" loaded.
  6171. 2025-1-18 17:19:13-debug: [[Executor]] Register ch_start_pack
  6172. 2025-1-18 17:19:13-debug: [[Executor]] Register ui_updater
  6173. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/33/33d6d868e05219070a908e953bde210e54f92e26.js" loaded.
  6174. 2025-1-18 17:19:13-debug: [[Executor]] Register ResolutionAutoFit
  6175. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/e2/e2c07fd606d93eb79afeed6ef4de521f2be03414.js" loaded.
  6176. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/51/518c777b9b184349470f0a8548bfc02a3ac13b12.js" loaded.
  6177. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/73/73c6533bf475cf801676942513edca165a6ed07f.js" loaded.
  6178. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/9b/9b4abce15a8c07b4b00096caaa35df726664c0eb.js" loaded.
  6179. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/79/79538e7ba270719c2fdeaf5f4b7d2ecd19c3108f.js" loaded.
  6180. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/2d/2d836b3dc11c70cd1a8621bc539f2b1ca2080115.js" loaded.
  6181. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/47/47ffdbe9496b14c1b1c3a26ce79f8df526beea9b.js" loaded.
  6182. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/c9/c969313d23703c6a3fcc53d5e71bae664ed7849e.js" loaded.
  6183. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/bd/bd8a015d9f05319ae091f7383c093a5f26a12133.js" loaded.
  6184. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/6b/6b45817391fda8032e9c3052f72099ae80b977e5.js" loaded.
  6185. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/e5/e5e04bc899c670002bcc5c7aac441a4c4281e9a4.js" loaded.
  6186. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/5f/5f2f6a92220c5db32fcbda8a7cebb9363c896da3.js" loaded.
  6187. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/4e/4efee4d45a67b1b88aec3633ffce1bf66a05cb6d.js" loaded.
  6188. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/17/1787d8e2147a43214097b7b6fea81022fa7297b5.js" loaded.
  6189. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/f7/f780142056b451af1186d982a8e16130bfd276a2.js" loaded.
  6190. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/b6/b601769373047d5119da5c4cb4b3a4bba6a651af.js" loaded.
  6191. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/c0/c0e9a0408b2c77521760095bef7e3d1dc8b428fc.js" loaded.
  6192. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/53/5355f477731c1aa517e29e27c45ac35bf99fe727.js" loaded.
  6193. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/81/815a8e3b66559b0d1265c7b789166062c8861bd5.js" loaded.
  6194. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/69/69708f163aeb7f1d3d93c5d9454dca6576ef2581.js" loaded.
  6195. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/d8/d8ea009be5644c7164c4b5ae51cd349e5525e465.js" loaded.
  6196. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/8e/8e81d067c8870d70331d8b9656a976c1f558e5de.js" loaded.
  6197. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/df/df48ec67964f126550b0d5d71bec2b4cfc027d50.js" loaded.
  6198. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/cf/cf9c45e29398b29856527964dd8d734c5d4fdec4.js" loaded.
  6199. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/74/7404a8ee135932a387eac99bfb33951576fe8b67.js" loaded.
  6200. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/5f/5f91b0c989c2a479c1da04fdb508bd586eba443c.js" loaded.
  6201. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/34/34df8999c17a8450e101699bd789ccbd57ce24ce.js" loaded.
  6202. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/1d/1d5d5546c48e71ed58dfa68bc6fecf1be163c751.js" loaded.
  6203. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/e0/e08485787ba9b2ad7c98e435102c966d3f5c64ae.js" loaded.
  6204. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/d5/d5008f0f69bfd2c16fd6c0deebe987f9210eba0d.js" loaded.
  6205. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5d\5d8144768428205eb83d54c7574071768f6c1b5b.js is not in module cache!
  6206. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/5d/5d8144768428205eb83d54c7574071768f6c1b5b.js" loaded.
  6207. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/31/3166d186d5cd2eca604e02fdebeb727752294da4.js" loaded.
  6208. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/59/5908d1524fdbf33b63c9c924078b09b63cc7fc89.js" loaded.
  6209. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/a8/a89b293907eed8bf35922b74df584b59608173f2.js" loaded.
  6210. 2025-1-18 17:19:13-debug: [[Executor]] Register ClickPenetrate
  6211. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/38/38faaa1a7e061349d2a3e0fb94f944c310c15ca5.js" loaded.
  6212. 2025-1-18 17:19:13-debug: [[Executor]] Register ListItem
  6213. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/12/122ae41024fa99aa4949a176919256851ded60b7.js" loaded.
  6214. 2025-1-18 17:19:13-debug: [[Executor]] Register MotionTrail
  6215. 2025-1-18 17:19:13-debug: [[Executor]] Register List
  6216. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/71/71b930d6142312f684efd1718dfcd7bfd1e95eaa.js" loaded.
  6217. 2025-1-18 17:19:13-warn: 'MotionTrail.color' hides inherited property 'cc.UIRenderer.color'. To make the current property override that implementation, add the `override: true` attribute please.
  6218. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/a4/a499aa9bff2a1818e065dc11bd8ab5f3e352ae6e.js" loaded.
  6219. 2025-1-18 17:19:13-debug: [[Executor]] Register MovieClip
  6220. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/cb/cb13e961bcd8d7069545036fc45d02908c0eee94.js" loaded.
  6221. 2025-1-18 17:19:13-debug: [[Executor]] Register SpineView
  6222. 2025-1-18 17:19:13-debug: [[Executor]] Register UISpineMovie
  6223. 2025-1-18 17:19:13-debug: [[Executor]] Register RewardFly
  6224. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/b3/b338d43f47dfc4fb7dece127fe5d88d8c0b856eb.js" loaded.
  6225. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_UIAlert
  6226. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/20/20712297188dd3bbe9fb3acc1799edea45dda86b.js" loaded.
  6227. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/b7/b71ec6998eef381fede6b5fd1614855829fc2f22.js" loaded.
  6228. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_UI_Notify
  6229. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/97/974d5e18287f52413bf4aef79e6b1b43e2db1119.js" loaded.
  6230. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/7a/7a060cba1d5a032475d6578a562fb8df8171eb0b.js" loaded.
  6231. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/13/137a1b4fd5be0cb2bbc18b621b46dee498a285a8.js" loaded.
  6232. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/cb/cbb4d04a73447a5aa3e85d805611e17bc6e216c1.js" loaded.
  6233. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/c3/c307a58b694cc824581802a8099e6d62860adb91.js" loaded.
  6234. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/09/09a6fd4930dfcb5968a1b01550a6275640cfa703.js" loaded.
  6235. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/9d/9d6b2307e211bf7d71fb96955f3a221662b8b975.js" loaded.
  6236. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_UIWaiting
  6237. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/82/82914e241315735457587bc37563ed7db8183cd0.js" loaded.
  6238. 2025-1-18 17:19:13-debug: [[Executor]] Register table_idiom
  6239. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5c49ac26bc7b811c9d08fcff5242440f88d29d17.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5c49ac26bc7b811c9d08fcff5242440f88d29d17.js is not in module cache!
  6240. 2025-1-18 17:19:13-debug: [[Executor]] Register table_idiom_order
  6241. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/5c/5c49ac26bc7b811c9d08fcff5242440f88d29d17.js" loaded.
  6242. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c4\c4f98bd93a546a52de77fc64f647d47575afdfde.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\c4\c4f98bd93a546a52de77fc64f647d47575afdfde.js is not in module cache!
  6243. 2025-1-18 17:19:13-debug: [[Executor]] Register table_idiom_unorder_1_3
  6244. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/c4/c4f98bd93a546a52de77fc64f647d47575afdfde.js" loaded.
  6245. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\084428b3dfc28ebcd60f1249169098df9f4287da.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\08\084428b3dfc28ebcd60f1249169098df9f4287da.js is not in module cache!
  6246. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/08/084428b3dfc28ebcd60f1249169098df9f4287da.js" loaded.
  6247. 2025-1-18 17:19:13-debug: [[Executor]] Register table_idiom_unorder_2_2
  6248. 2025-1-18 17:19:13-debug: [[Executor]] Register table_idiom_unorder_3_1
  6249. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\cb\cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js is not in module cache!
  6250. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/cb/cb4ecddfc0dc87d616f66fcfc75a1f59ad9818f7.js" loaded.
  6251. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\b0\b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js is not in module cache!
  6252. 2025-1-18 17:19:13-debug: [[Executor]] Register table_level
  6253. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/b0/b04976f3b46e4a2c0e3d4e547f1979cd6eb7200f.js" loaded.
  6254. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0e\0e87907262cdfe9bb04b67b17e1eca1e38126d79.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\0e\0e87907262cdfe9bb04b67b17e1eca1e38126d79.js is not in module cache!
  6255. 2025-1-18 17:19:13-debug: [[Executor]] Register table_store
  6256. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/0e/0e87907262cdfe9bb04b67b17e1eca1e38126d79.js" loaded.
  6257. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\505b34a78c0dbfe58195107ebd90b3bc5807bf10.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\505b34a78c0dbfe58195107ebd90b3bc5807bf10.js is not in module cache!
  6258. 2025-1-18 17:19:13-debug: [[Executor]] Register table_task
  6259. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/50/505b34a78c0dbfe58195107ebd90b3bc5807bf10.js" loaded.
  6260. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\90\90cb08bdd2589bd4780881bf755dafe0306918a1.js is not in module cache!
  6261. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\63\635d373e206601884c96847cb1eeeefae856f2ab.js is not in module cache!
  6262. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\99\99b535d8a2435b17b7a999d87ff3be42be0d89f6.js is not in module cache!
  6263. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\50\50dd8b1c328a686f05e0ea16e0613e3558f0f915.js is not in module cache!
  6264. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\67\67f356369ce567fe1898b7ae72038ee83758a446.js is not in module cache!
  6265. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\28\28edf65eb8d20daf82fac5a67080212e26e054c8.js is not in module cache!
  6266. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\9f\9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js is not in module cache!
  6267. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\6a\6a8af0f15958f7b90e4c55917282aae8bec7ce55.js is not in module cache!
  6268. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\d7\d7e846ac7b691e2f62cb6f2e257f758a25829039.js is not in module cache!
  6269. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\a6\a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js is not in module cache!
  6270. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\1a\1a017ea1d38c47616789b41b9b3ceca6cb903e59.js is not in module cache!
  6271. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\4b\4b736ecb9c777512e2deca84bf06782f772c5a85.js is not in module cache!
  6272. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\39\394eb72f0b5be6799d0045482477175eb4563bad.js is not in module cache!
  6273. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/b9/b968f7f08649c00a45a730a74c55b98d374e1ea3.js" loaded.
  6274. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_GameRules
  6275. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/d4/d4808bb291a6c1906241b46a992fa068602b87c7.js" loaded.
  6276. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Idiom
  6277. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_GameRules
  6278. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/46/4669e191907a2a708fa7ba923dc04da98435f165.js" loaded.
  6279. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/f0/f08b1ecc2b97315a99f02a5e6072e9685ea93ef6.js" loaded.
  6280. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/78/789715a9ff1e6669695bc6f37f849347673e7936.js" loaded.
  6281. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Settings
  6282. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/a0/a0c4f651e5297607ee62681e54a78e7903383828.js" loaded.
  6283. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Idioms
  6284. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Idioms
  6285. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/4f/4f6d58c3ed8fd86feb6424866647fba7a540ce0d.js" loaded.
  6286. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/47/47c8e77781a159f10d589db5916314688580bc33.js" loaded.
  6287. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Head_Icon
  6288. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Hall
  6289. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/aa/aa522899127047b80d0893406f275d7a7aa74d2c.js" loaded.
  6290. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/30/30148fb61fef14f86e2cda463a167887dbf8cde4.js" loaded.
  6291. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Rank_Item
  6292. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/2d/2d7e3424c179d135dc59489a147ede15a8748562.js" loaded.
  6293. 2025-1-18 17:19:13-debug: [[Executor]] Register Sign_Reward
  6294. 2025-1-18 17:19:13-warn: The type of "Sign_Reward.type" must be CCFloat or CCInteger, not Number.
  6295. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Rank
  6296. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Rank
  6297. 2025-1-18 17:19:13-warn: The type of "Sign_Reward.num" must be CCFloat or CCInteger, not Number.
  6298. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/7e/7e7ab0c417629d8b4decc7970b158f69484ca3a0.js" loaded.
  6299. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/4b/4b736ecb9c777512e2deca84bf06782f772c5a85.js" loaded.
  6300. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Sign
  6301. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Invite
  6302. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Sign
  6303. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/28/28edf65eb8d20daf82fac5a67080212e26e054c8.js" loaded.
  6304. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Invite
  6305. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/64/648fcac29cbf9485ceab7e7d1359724ae2b1b196.js" loaded.
  6306. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/1a/1a017ea1d38c47616789b41b9b3ceca6cb903e59.js" loaded.
  6307. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Store
  6308. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Store
  6309. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/73/73e6dc2a8fc59081071dcebb82927640ef5a7f21.js" loaded.
  6310. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/a5/a59d8099545685d191f1183a0f3bc7f3602b80cf.js" loaded.
  6311. 2025-1-18 17:19:13-debug: [[Executor]] Register Start
  6312. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_SideBar
  6313. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/41/41297756668c0510f828032e1d12f96a4d1a9194.js" loaded.
  6314. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/4b/4b62ba828bd2568fd07a8c27879bd9e102538148.js" loaded.
  6315. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_SideBar
  6316. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/6a/6a8af0f15958f7b90e4c55917282aae8bec7ce55.js" loaded.
  6317. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Task_Item
  6318. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/96/96e2fcee174623dab28594a5fc60dc89148d32de.js" loaded.
  6319. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/39/394eb72f0b5be6799d0045482477175eb4563bad.js" loaded.
  6320. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Task
  6321. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/d7/d7e846ac7b691e2f62cb6f2e257f758a25829039.js" loaded.
  6322. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/2c/2cb4568cc17fc880801c649b7e09213445038932.js" loaded.
  6323. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Task
  6324. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Settings
  6325. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/50/50dd8b1c328a686f05e0ea16e0613e3558f0f915.js" loaded.
  6326. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Win
  6327. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Hall
  6328. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/99/99b535d8a2435b17b7a999d87ff3be42be0d89f6.js" loaded.
  6329. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/69/69d4c56dc1cba34d75bdea3a79331f3df0143ac2.js" loaded.
  6330. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/6a/6a163e5eb12e84fcff92e09679473d95caa7ce42.js" loaded.
  6331. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Win
  6332. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Main
  6333. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/c1/c10bd777343c22d44996eae3d1e908c1e444e54c.js" loaded.
  6334. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_TimesOver
  6335. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/4a/4ad53bcc1ddd3f43bec8f797e1fff8c2b794b8f9.js" loaded.
  6336. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Fail
  6337. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Fail
  6338. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/fd/fd567b6cff2bda101ea5067e96a8431f92b55a12.js" loaded.
  6339. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_TimesOver
  6340. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/ef/ef2d221df54a2db9265b17ea24ca2a0b327d2619.js" loaded.
  6341. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/9f/9fa0e63ffe0a92f6cd390b9195c28487e3487e7c.js" loaded.
  6342. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Main
  6343. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/0a/0a4102a464059398e43bc26dd3fe1faf79989cb3.js" loaded.
  6344. 2025-1-18 17:19:13-debug: [[Executor]] Register Cube_Infor
  6345. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/c2/c28f184f0d05e5d5976de9f0de294b88d5de4347.js" loaded.
  6346. 2025-1-18 17:19:13-debug: [[Executor]] Register CreateIdiom
  6347. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/07/07873864f2752ebebcdaae9cbb27e5477e565642.js" loaded.
  6348. 2025-1-18 17:19:13-debug: [[Executor]] Register Hall
  6349. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/63/635d373e206601884c96847cb1eeeefae856f2ab.js" loaded.
  6350. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_LatticeFull
  6351. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_LatticeFull
  6352. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/ca/caf1f57c4e93834ff6792756f81ca4dda67117d5.js" loaded.
  6353. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/a6/a6ae0a69e4239c886f230a6efc663ae5eb37a39d.js" loaded.
  6354. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Lock
  6355. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/3a/3acb6ef7099bffb0eea5bb5edf5202d085f383c9.js" loaded.
  6356. 2025-1-18 17:19:13-debug: [[Executor]] Register GameCtl
  6357. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/92/9223b50b0b25e34c00abbd1136311e176203d399.js" loaded.
  6358. 2025-1-18 17:19:13-debug: [[Executor]] Register Layout_Lock
  6359. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/90/90cb08bdd2589bd4780881bf755dafe0306918a1.js" loaded.
  6360. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/67/67f356369ce567fe1898b7ae72038ee83758a446.js" loaded.
  6361. 2025-1-18 17:19:13-debug: [[Executor]] Register Container_Manager
  6362. 2025-1-18 17:19:13-debug: D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js resolved to D:\CocosCreatorProject\Idioms\idiom\temp\programming\packer-driver\targets\editor\chunks\5c\5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js is not in module cache!
  6363. 2025-1-18 17:19:13-debug: [[Executor]] Register UI_Item
  6364. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/5c/5cc3ce28e30e8e416eb47ff816c05a8fc1f78292.js" loaded.
  6365. 2025-1-18 17:19:13-debug: Init bundle share assets start..., progress: 9%
  6366. 2025-1-18 17:19:13-debug: [[Executor]] Module "pack:///chunks/6d/6d8fd2b0177941b032ddc0733af48a561fb60657.js" loaded.
  6367. 2025-1-18 17:19:13-debug: Incremental keys: chSdk,chsdk
  6368. 2025-1-18 17:19:13-debug: Init bundle share assets success..., progress: 9%
  6369. 2025-1-18 17:19:13-debug: handle json group in bundle internal
  6370. 2025-1-18 17:19:13-debug: handle json group in bundle internal success
  6371. 2025-1-18 17:19:13-debug: handle json group in bundle main
  6372. 2025-1-18 17:19:13-debug: handle json group in bundle start-scene
  6373. 2025-1-18 17:19:13-debug: handle json group in bundle start-scene success
  6374. 2025-1-18 17:19:13-debug: handle json group in bundle module_basic
  6375. 2025-1-18 17:19:13-debug: handle json group in bundle main success
  6376. 2025-1-18 17:19:13-debug: init image compress task 0 in bundle internal
  6377. 2025-1-18 17:19:13-debug: init image compress task 0 in bundle start-scene
  6378. 2025-1-18 17:19:13-debug: handle json group in bundle module_extra
  6379. 2025-1-18 17:19:13-debug: handle json group in bundle module_game
  6380. 2025-1-18 17:19:13-debug: init image compress task 0 in bundle main
  6381. 2025-1-18 17:19:13-debug: init image compress task 0 in bundle module_extra
  6382. 2025-1-18 17:19:13-debug: handle json group in bundle module_basic success
  6383. 2025-1-18 17:19:13-debug: init image compress task 0 in bundle module_basic
  6384. 2025-1-18 17:19:13-debug: handle json group in bundle module_game success
  6385. 2025-1-18 17:19:13-debug: handle json group in bundle module_extra success
  6386. 2025-1-18 17:19:13-debug: init image compress task 0 in bundle module_game
  6387. 2025-1-18 17:19:13-debug: // ---- build task 查询 Asset Bundle ---- (312ms)
  6388. 2025-1-18 17:19:13-debug: run build task 查询 Asset Bundle success in 312 ms√, progress: 14%
  6389. 2025-1-18 17:19:13-debug: 查询 Asset Bundle start, progress: 14%
  6390. 2025-1-18 17:19:13-debug: [Build Memory track]: 查询 Asset Bundle start:218.89MB, end 202.10MB, increase: -17195.19KB
  6391. 2025-1-18 17:19:13-debug: // ---- build task 查询 Asset Bundle ----
  6392. 2025-1-18 17:19:13-debug: // ---- build task 查询 Asset Bundle ---- (42ms)
  6393. 2025-1-18 17:19:13-debug: run build task 查询 Asset Bundle success in 42 ms√, progress: 19%
  6394. 2025-1-18 17:19:13-debug: [Build Memory track]: 查询 Asset Bundle start:202.13MB, end 202.39MB, increase: 261.88KB
  6395. 2025-1-18 17:19:13-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  6396. 2025-1-18 17:19:13-debug: // ---- build task 打包脚本 ----
  6397. 2025-1-18 17:19:13-debug: 打包脚本 start, progress: 19%
  6398. 2025-1-18 17:19:14-log: [build-script]enter sub process 13952, C:\ProgramData\cocos\editors\Creator\3.8.4\CocosCreator.exe,C:\ProgramData\cocos\editors\Creator\3.8.4\resources\app.asar\builtin\builder\static\sub-process-index
  6399. 2025-1-18 17:19:16-debug: excute-script over with build-script 3286ms
  6400. 2025-1-18 17:19:16-debug: Generate systemJs..., progress: 19%
  6401. 2025-1-18 17:19:16-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  6402. 2025-1-18 17:19:19-debug: excute-script over with build-script 2427ms
  6403. 2025-1-18 17:19:19-debug: 构建项目脚本 start..., progress: 19%
  6404. 2025-1-18 17:19:19-debug: Build script in bundle start, progress: 19%
  6405. 2025-1-18 17:19:19-log: Run build task(build-script) in child, see: chrome://inspect/#devices
  6406. 2025-1-18 17:19:23-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_GameRules/UI_GameRules.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Idioms/UI_Idioms.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/Layout_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI/UI_Head_Icon.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts
  6407. 2025-1-18 17:19:23-warn: [build-script][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Rank/UI_Rank.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Layout_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/Sign_Reward.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Sign/UI_Sign.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Invite/UI_Invite.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Store/UI_Store.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_SideBar/UI_SideBar.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/Layout_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task_Item.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Settings/UI_Settings.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Hall/UI_Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Task/UI_Task.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Win/UI_Win.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/Layout_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Fail/UI_Fail.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/PlayerData.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/hall/Hall.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_TimesOver/UI_TimesOver.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/ui/UI_Main/UI_Main.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/CreateIdiom.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts [warning][[Build.Script.Rollup]] Circular dependency: file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/GameCtl.ts -> file:///D:/CocosCreatorProject/Idioms/idiom/assets/module_game/game/Container_Manager.ts
  6408. 2025-1-18 17:19:26-debug: excute-script over with build-script 7319ms
  6409. 2025-1-18 17:19:26-debug: Copy externalScripts success!
  6410. 2025-1-18 17:19:26-debug: Build script in bundle success, progress: 19%
  6411. 2025-1-18 17:19:26-debug: 构建项目脚本 in (7388 ms) √, progress: 19%
  6412. 2025-1-18 17:19:26-debug: 构建引擎脚本 start..., progress: 19%
  6413. 2025-1-18 17:19:26-debug: Use cache engine: {link(C:\Users\NINGMEI\AppData\Local\Temp\CocosCreator\3.8.4\builder\engine\28e650b030519d2cf0f243f53f248454)}
  6414. 2025-1-18 17:19:26-debug: {"debug":false,"sourceMaps":false,"includeModules":["2d","3d","animation","audio","base","custom-pipeline","gfx-webgl","occlusion-query","physics-ammo","primitive","profiler","spine","tween","ui","websocket","webview","custom-pipeline-builtin-scripts"],"engineVersion":"3.8.4","md5Map":[],"engineName":"cocos-js","platform":"WECHAT","useCache":true,"nativeCodeBundleMode":"wasm","wasmCompressionMode":"brotli","split":false,"skip":false,"assetURLFormat":"relative-from-out","output":"D:\\CocosCreatorProject\\Idioms\\idiom\\build\\wechatgame\\cocos-js","flags":{"DEBUG":false,"WASM_SUBPACKAGE":true},"entry":"C:\\ProgramData\\cocos\\editors\\Creator\\3.8.4\\resources\\resources\\3d\\engine"}
  6415. 2025-1-18 17:19:26-debug: 构建引擎脚本 in (219 ms) √, progress: 19%
  6416. 2025-1-18 17:19:26-debug: Copy plugin script ..., progress: 19%
  6417. 2025-1-18 17:19:26-debug: Generate import-map..., progress: 19%
  6418. 2025-1-18 17:19:26-debug: // ---- build task 打包脚本 ---- (13417ms)
  6419. 2025-1-18 17:19:26-debug: run build task 打包脚本 success in 13 s√, progress: 24%
  6420. 2025-1-18 17:19:26-debug: [Build Memory track]: 打包脚本 start:202.56MB, end 203.12MB, increase: 568.06KB
  6421. 2025-1-18 17:19:26-debug: // ---- build task Build Assets ----
  6422. 2025-1-18 17:19:26-debug: Build Assets start, progress: 24%
  6423. 2025-1-18 17:19:26-debug: Pack Images start, progress: 24%
  6424. 2025-1-18 17:19:26-debug: Build bundles..., progress: 24%
  6425. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
  6426. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  6427. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
  6428. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
  6429. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
  6430. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
  6431. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  6432. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
  6433. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
  6434. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
  6435. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
  6436. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
  6437. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(a63114f7-5b8e-4198-b75a-922458c1a293)}
  6438. 2025-1-18 17:19:27-debug: Get Cache info of pac success {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
  6439. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(7c5c0a0b-c573-470a-ab43-ba222a189d65)}
  6440. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(fc529dad-0a7c-4618-ab26-353d7d900ec2)}
  6441. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(db97b087-d079-4f8a-a3aa-53a7123b9d02)}
  6442. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(3379e27d-fadd-4d99-8295-914d0aa5582c)}
  6443. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(77de5a33-df72-4127-b60c-72b45aa6acb0)}
  6444. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(c3e3aaf5-035b-4a2c-be48-c68c5a1899de)}
  6445. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(04d9d3cd-db4c-4846-9449-173b61558e12)}
  6446. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(0f98eb34-f627-428e-aacb-c8d25cafbc2c)}
  6447. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  6448. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(43520f95-106c-478d-ae58-25f251ecc0fb)}
  6449. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(c5e80781-d3aa-48f0-97a5-f09946f760a2)}
  6450. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  6451. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(db832272-4bc8-4cd2-b9a9-7c7b432b919f)}
  6452. 2025-1-18 17:19:27-debug: remove spriteAtlas._uuid : {asset(8924cf2d-a7a0-4ce7-9fa7-f89dadbdf4f4)}
  6453. 2025-1-18 17:19:27-debug: builder:pack-auto-atlas-image (732ms)
  6454. 2025-1-18 17:19:27-debug: Compress image start..., progress: 24%
  6455. 2025-1-18 17:19:27-debug: sort compress task {}
  6456. 2025-1-18 17:19:27-debug: Num of all image compress task 0, really: 0, configTasks: 0
  6457. 2025-1-18 17:19:27-debug: Pack Images success, progress: 24%
  6458. 2025-1-18 17:19:27-debug: Output asset in bundles start, progress: 24%
  6459. 2025-1-18 17:19:27-debug: Handle all json groups in bundle internal
  6460. 2025-1-18 17:19:27-debug: Compress image success..., progress: 24%
  6461. 2025-1-18 17:19:27-debug: Handle all json groups in bundle start-scene
  6462. 2025-1-18 17:19:27-debug: No image need to compress
  6463. 2025-1-18 17:19:27-debug: handle json group
  6464. 2025-1-18 17:19:27-debug: Handle all json groups in bundle main
  6465. 2025-1-18 17:19:27-debug: handle json group
  6466. 2025-1-18 17:19:27-debug: Handle all json groups in bundle module_extra
  6467. 2025-1-18 17:19:27-debug: handle single json
  6468. 2025-1-18 17:19:27-debug: handle json group
  6469. 2025-1-18 17:19:27-debug: handle single json
  6470. 2025-1-18 17:19:27-debug: Handle all json groups in bundle module_basic
  6471. 2025-1-18 17:19:27-debug: handle json group
  6472. 2025-1-18 17:19:27-debug: handle json group
  6473. 2025-1-18 17:19:27-debug: Handle all json groups in bundle module_game
  6474. 2025-1-18 17:19:27-debug: handle json group
  6475. 2025-1-18 17:19:27-debug: Json group(07325bfaa) compile success,json number: 6
  6476. 2025-1-18 17:19:27-debug: Json group(0a66f4293) compile success,json number: 6
  6477. 2025-1-18 17:19:27-debug: Json group(0ba471961) compile success,json number: 6
  6478. 2025-1-18 17:19:27-debug: handle single json
  6479. 2025-1-18 17:19:27-debug: Json group(04ade8c9e) compile success,json number: 6
  6480. 2025-1-18 17:19:27-debug: handle single json
  6481. 2025-1-18 17:19:27-debug: Json group(09d6a42a2) compile success,json number: 6
  6482. 2025-1-18 17:19:27-debug: Json group(0a54f6860) compile success,json number: 6
  6483. 2025-1-18 17:19:27-debug: handle single json
  6484. 2025-1-18 17:19:27-debug: Json group(08d4f0835) compile success,json number: 6
  6485. 2025-1-18 17:19:27-debug: Json group(0a1731415) compile success,json number: 6
  6486. 2025-1-18 17:19:27-debug: Json group(093f10e90) compile success,json number: 6
  6487. 2025-1-18 17:19:27-debug: Json group(02c882590) compile success,json number: 6
  6488. 2025-1-18 17:19:27-debug: Json group(0db065665) compile success,json number: 6
  6489. 2025-1-18 17:19:27-debug: Json group(0787c84da) compile success,json number: 6
  6490. 2025-1-18 17:19:27-debug: Json group(03c9cd961) compile success,json number: 6
  6491. 2025-1-18 17:19:27-debug: Json group(0471cee9c) compile success,json number: 6
  6492. 2025-1-18 17:19:27-debug: Json group(0403d1262) compile success,json number: 6
  6493. 2025-1-18 17:19:27-debug: Json group(070166e93) compile success,json number: 6
  6494. 2025-1-18 17:19:27-debug: Json group(0329651a2) compile success,json number: 6
  6495. 2025-1-18 17:19:27-debug: Json group(02b639d30) compile success,json number: 6
  6496. 2025-1-18 17:19:27-debug: Json group(06db2e96b) compile success,json number: 6
  6497. 2025-1-18 17:19:28-debug: Json group(0c5a2fc7e) compile success,json number: 6
  6498. 2025-1-18 17:19:28-debug: Json group(0332e55a0) compile success,json number: 6
  6499. 2025-1-18 17:19:28-debug: Json group(01236a39b) compile success,json number: 6
  6500. 2025-1-18 17:19:28-debug: Json group(022fd81fe) compile success,json number: 6
  6501. 2025-1-18 17:19:28-debug: Json group(02d36d139) compile success,json number: 6
  6502. 2025-1-18 17:19:28-debug: handle single json
  6503. 2025-1-18 17:19:28-debug: Json group(0d54cf783) compile success,json number: 6
  6504. 2025-1-18 17:19:28-debug: Output asset in bundles success, progress: 24%
  6505. 2025-1-18 17:19:28-debug: Output asset in bundles start, progress: 24%
  6506. 2025-1-18 17:19:28-debug: compress config of bundle internal...
  6507. 2025-1-18 17:19:28-debug: compress config of bundle internal success
  6508. 2025-1-18 17:19:28-debug: compress config of bundle start-scene success
  6509. 2025-1-18 17:19:28-debug: compress config of bundle main success
  6510. 2025-1-18 17:19:28-debug: compress config of bundle start-scene...
  6511. 2025-1-18 17:19:28-debug: compress config of bundle module_extra...
  6512. 2025-1-18 17:19:28-debug: compress config of bundle module_extra success
  6513. 2025-1-18 17:19:28-debug: compress config of bundle module_basic success
  6514. 2025-1-18 17:19:28-debug: compress config of bundle module_basic...
  6515. 2025-1-18 17:19:28-debug: compress config of bundle module_game success
  6516. 2025-1-18 17:19:28-debug: compress config of bundle main...
  6517. 2025-1-18 17:19:28-debug: compress config of bundle module_game...
  6518. 2025-1-18 17:19:28-debug: output config of bundle internal success
  6519. 2025-1-18 17:19:28-debug: output config of bundle start-scene success
  6520. 2025-1-18 17:19:28-debug: output config of bundle start-scene
  6521. 2025-1-18 17:19:28-debug: output config of bundle main success
  6522. 2025-1-18 17:19:28-debug: output config of bundle module_extra
  6523. 2025-1-18 17:19:28-debug: output config of bundle main
  6524. 2025-1-18 17:19:28-debug: output config of bundle internal
  6525. 2025-1-18 17:19:28-debug: output config of bundle module_extra success
  6526. 2025-1-18 17:19:28-debug: output config of bundle module_basic success
  6527. 2025-1-18 17:19:28-debug: output config of bundle module_basic
  6528. 2025-1-18 17:19:28-debug: output config of bundle module_game success
  6529. 2025-1-18 17:19:28-debug: output config of bundle module_game
  6530. 2025-1-18 17:19:28-debug: Output asset in bundles success, progress: 24%
  6531. 2025-1-18 17:19:28-debug: // ---- build task Build Assets ---- (1297ms)
  6532. 2025-1-18 17:19:28-debug: run build task Build Assets success in 1 s√, progress: 29%
  6533. 2025-1-18 17:19:28-debug: // ---- build task wechatgame:onAfterBundleBuildTask ----
  6534. 2025-1-18 17:19:28-debug: wechatgame:(onAfterBundleBuildTask) start..., progress: 29%
  6535. 2025-1-18 17:19:28-debug: [Build Memory track]: Build Assets start:203.15MB, end 216.70MB, increase: 13.55MB
  6536. 2025-1-18 17:19:28-debug: // ---- build task wechatgame:onAfterBundleBuildTask ---- (34ms)
  6537. 2025-1-18 17:19:28-debug: wechatgame:(onAfterBundleBuildTask) in 34 ms ✓, progress: 29%
  6538. 2025-1-18 17:19:28-debug: // ---- build task wechatgame:onAfterBuildAssets ----
  6539. 2025-1-18 17:19:28-debug: wechatgame:(onAfterBuildAssets) start..., progress: 29%
  6540. 2025-1-18 17:19:28-debug: // ---- build task wechatgame:onAfterBuildAssets ---- (41ms)
  6541. 2025-1-18 17:19:28-debug: wechatgame:(onAfterBuildAssets) in 41 ms ✓, progress: 31%
  6542. 2025-1-18 17:19:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 31%
  6543. 2025-1-18 17:19:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  6544. 2025-1-18 17:19:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (40ms)
  6545. 2025-1-18 17:19:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:216.98MB, end 217.05MB, increase: 69.06KB
  6546. 2025-1-18 17:19:28-debug: // ---- build task 填充脚本数据到 settings.json ----
  6547. 2025-1-18 17:19:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 40 ms√, progress: 33%
  6548. 2025-1-18 17:19:28-debug: 填充脚本数据到 settings.json start, progress: 33%
  6549. 2025-1-18 17:19:28-debug: // ---- build task 填充脚本数据到 settings.json ---- (37ms)
  6550. 2025-1-18 17:19:28-debug: run build task 填充脚本数据到 settings.json success in 37 ms√, progress: 34%
  6551. 2025-1-18 17:19:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  6552. 2025-1-18 17:19:28-debug: [Build Memory track]: 填充脚本数据到 settings.json start:217.08MB, end 217.15MB, increase: 69.17KB
  6553. 2025-1-18 17:19:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 34%
  6554. 2025-1-18 17:19:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (48ms)
  6555. 2025-1-18 17:19:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 48 ms√, progress: 36%
  6556. 2025-1-18 17:19:28-debug: // ---- build task wechatgame:onBeforeCompressSettings ----
  6557. 2025-1-18 17:19:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:217.18MB, end 217.36MB, increase: 182.45KB
  6558. 2025-1-18 17:19:28-debug: wechatgame:(onBeforeCompressSettings) start..., progress: 36%
  6559. 2025-1-18 17:19:28-debug: // ---- build task wechatgame:onBeforeCompressSettings ---- (29ms)
  6560. 2025-1-18 17:19:28-debug: wechatgame:(onBeforeCompressSettings) in 29 ms ✓, progress: 38%
  6561. 2025-1-18 17:19:28-debug: cocos-service:(onBeforeCompressSettings) start..., progress: 38%
  6562. 2025-1-18 17:19:28-debug: // ---- build task cocos-service:onBeforeCompressSettings ----
  6563. 2025-1-18 17:19:28-debug: // ---- build task cocos-service:onBeforeCompressSettings ---- (154ms)
  6564. 2025-1-18 17:19:28-debug: cocos-service:(onBeforeCompressSettings) in 154 ms ✓, progress: 40%
  6565. 2025-1-18 17:19:28-debug: 整理静态模板文件 start, progress: 40%
  6566. 2025-1-18 17:19:28-debug: // ---- build task 整理静态模板文件 ----
  6567. 2025-1-18 17:19:28-debug: // ---- build task 整理静态模板文件 ---- (101ms)
  6568. 2025-1-18 17:19:28-debug: run build task 整理静态模板文件 success in 101 ms√, progress: 45%
  6569. 2025-1-18 17:19:28-debug: // ---- build task cocos-service:onAfterCompressSettings ----
  6570. 2025-1-18 17:19:28-debug: [Build Memory track]: 整理静态模板文件 start:217.63MB, end 210.84MB, increase: -6952.94KB
  6571. 2025-1-18 17:19:28-debug: cocos-service:(onAfterCompressSettings) start..., progress: 45%
  6572. 2025-1-18 17:19:29-debug: // ---- build task cocos-service:onAfterCompressSettings ---- (534ms)
  6573. 2025-1-18 17:19:29-debug: cocos-service:(onAfterCompressSettings) in 534 ms ✓, progress: 46%
  6574. 2025-1-18 17:19:29-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ----
  6575. 2025-1-18 17:19:29-debug: wechatgame:(onBeforeCopyBuildTemplate) start..., progress: 46%
  6576. 2025-1-18 17:19:29-debug: // ---- build task wechatgame:onBeforeCopyBuildTemplate ---- (33ms)
  6577. 2025-1-18 17:19:29-debug: wechatgame:(onAfterCopyBuildTemplate) start..., progress: 48%
  6578. 2025-1-18 17:19:29-debug: wechatgame:(onBeforeCopyBuildTemplate) in 33 ms ✓, progress: 48%
  6579. 2025-1-18 17:19:29-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ----
  6580. 2025-1-18 17:19:29-debug: // ---- build task wechatgame:onAfterCopyBuildTemplate ---- (56ms)
  6581. 2025-1-18 17:19:29-debug: wechatgame:(onAfterCopyBuildTemplate) in 56 ms ✓, progress: 50%
  6582. 2025-1-18 17:19:29-debug: 给所有的资源加上 MD5 后缀 start, progress: 50%
  6583. 2025-1-18 17:19:29-debug: // ---- build task 给所有的资源加上 MD5 后缀 ----
  6584. 2025-1-18 17:19:29-debug: // ---- build task 给所有的资源加上 MD5 后缀 ---- (34ms)
  6585. 2025-1-18 17:19:29-debug: run build task 给所有的资源加上 MD5 后缀 success in 34 ms√, progress: 60%
  6586. 2025-1-18 17:19:29-debug: // ---- build task wechatgame:onAfterBuild ----
  6587. 2025-1-18 17:19:29-debug: [Build Memory track]: 给所有的资源加上 MD5 后缀 start:211.44MB, end 211.50MB, increase: 67.27KB
  6588. 2025-1-18 17:19:29-debug: wechatgame:(onAfterBuild) start..., progress: 60%
  6589. 2025-1-18 17:19:29-debug: // ---- build task wechatgame:onAfterBuild ---- (336ms)
  6590. 2025-1-18 17:19:29-debug: wechatgame:(onAfterBuild) in 336 ms ✓, progress: 62%
  6591. 2025-1-18 17:19:29-debug: // ---- build task cocos-service:onAfterBuild ----
  6592. 2025-1-18 17:19:29-debug: cocos-service:(onAfterBuild) start..., progress: 62%
  6593. 2025-1-18 17:19:29-debug: // ---- build task cocos-service:onAfterBuild ---- (84ms)
  6594. 2025-1-18 17:19:29-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ----
  6595. 2025-1-18 17:19:29-debug: adsense-h5g-plugin:(onAfterBuild) start..., progress: 64%
  6596. 2025-1-18 17:19:29-debug: cocos-service:(onAfterBuild) in 84 ms ✓, progress: 64%
  6597. 2025-1-18 17:19:29-debug: // ---- build task adsense-h5g-plugin:onAfterBuild ---- (30ms)
  6598. 2025-1-18 17:19:29-debug: adsense-h5g-plugin:(onAfterBuild) in 30 ms ✓, progress: 65%
  6599. 2025-1-18 17:19:29-log: Asset DB is resume!
  6600. 2025-1-18 17:19:29-debug: builder:build-project-total (17225ms)
  6601. 2025-1-18 17:19:29-debug: build success in 17225!
  6602. 2025-1-18 17:19:29-debug: [Build Memory track]: builder:build-project-total start:219.80MB, end 212.60MB, increase: -7365.39KB
  6603. 2025-1-18 17:19:29-debug: ================================ build Task (wechatgame) Finished in (17 s)ms ================================
  6604. 2025-1-18 17:19:29-debug: Stop record console. {file(D:\CocosCreatorProject\Idioms\idiom\temp\builder\log\wechatgame2025-1-18 10-29.log)}