2025-1-11 13-12.log 712 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923
  1. 2025-1-11 13:12:54-debug: start **** info
  2. 2025-1-11 13:12:55-log: Cannot access game frame or container.
  3. 2025-1-11 13:13:02-debug: asset-db:require-engine-code (7470ms)
  4. 2025-1-11 13:13:02-log: meshopt wasm decoder initialized
  5. 2025-1-11 13:13:02-log: [bullet]:bullet wasm lib loaded.
  6. 2025-1-11 13:13:02-log: [box2d]:box2d wasm lib loaded.
  7. 2025-1-11 13:13:02-log: Cocos Creator v3.8.4
  8. 2025-1-11 13:13:02-log: Using legacy pipeline
  9. 2025-1-11 13:13:02-log: Forward render pipeline initialized.
  10. 2025-1-11 13:13:03-debug: [Assets Memory track]: asset-db-plugin-register: programming start:82.04MB, end 85.36MB, increase: 3.32MB
  11. 2025-1-11 13:13:02-debug: [Assets Memory track]: asset-db:worker-init: initEngine start:26.77MB, end 81.23MB, increase: 54.46MB
  12. 2025-1-11 13:13:04-debug: [Assets Memory track]: asset-db-plugin-register: engine-extends start:162.74MB, end 165.73MB, increase: 2.99MB
  13. 2025-1-11 13:13:04-debug: [Assets Memory track]: asset-db-plugin-register: builder start:85.39MB, end 162.51MB, increase: 77.11MB
  14. 2025-1-11 13:13:04-debug: [Assets Memory track]: asset-db:worker-init: initPlugin start:81.25MB, end 165.84MB, increase: 84.59MB
  15. 2025-1-11 13:13:04-debug: [Assets Memory track]: asset-db-plugin-register: project start:81.91MB, end 165.81MB, increase: 83.90MB
  16. 2025-1-11 13:13:04-debug: asset-db:worker-init: initPlugin (1711ms)
  17. 2025-1-11 13:13:04-debug: [Assets Memory track]: asset-db:worker-init start:26.76MB, end 165.92MB, increase: 139.16MB
  18. 2025-1-11 13:13:04-debug: Run asset db hook programming:beforePreStart ...
  19. 2025-1-11 13:13:04-debug: Run asset db hook programming:beforePreStart success!
  20. 2025-1-11 13:13:04-debug: Run asset db hook engine-extends:beforePreStart success!
  21. 2025-1-11 13:13:04-debug: Run asset db hook engine-extends:beforePreStart ...
  22. 2025-1-11 13:13:07-debug: asset-db:worker-init (12923ms)
  23. 2025-1-11 13:13:07-debug: asset-db-hook-programming-beforePreStart (3052ms)
  24. 2025-1-11 13:13:07-debug: asset-db-hook-engine-extends-beforePreStart (3052ms)
  25. 2025-1-11 13:13:09-debug: Preimport db internal success
  26. 2025-1-11 13:13:10-debug: Preimport db assets success
  27. 2025-1-11 13:13:10-debug: Run asset db hook programming:afterPreStart ...
  28. 2025-1-11 13:13:10-debug: starting packer-driver...
  29. 2025-1-11 13:13:11-debug: initialize scripting environment...
  30. 2025-1-11 13:13:11-debug: Set detail map pack:///resolution-detail-map.json: {}
  31. 2025-1-11 13:13:11-debug: Run asset db hook programming:afterPreStart success!
  32. 2025-1-11 13:13:11-debug: Run asset db hook engine-extends:afterPreStart success!
  33. 2025-1-11 13:13:11-debug: Start up the 'internal' database...
  34. 2025-1-11 13:13:11-debug: Run asset db hook engine-extends:afterPreStart ...
  35. 2025-1-11 13:13:12-debug: asset-db:worker-effect-data-processing (1830ms)
  36. 2025-1-11 13:13:12-debug: asset-db-hook-programming-afterPreStart (2675ms)
  37. 2025-1-11 13:13:12-debug: asset-db-hook-engine-extends-afterPreStart (1831ms)
  38. 2025-1-11 13:13:12-debug: Start up the 'assets' database...
  39. 2025-1-11 13:13:14-debug: asset-db:worker-startup-database[internal] (9602ms)
  40. 2025-1-11 13:13:14-debug: lazy register asset handler *
  41. 2025-1-11 13:13:14-debug: lazy register asset handler directory
  42. 2025-1-11 13:13:14-debug: lazy register asset handler json
  43. 2025-1-11 13:13:14-debug: lazy register asset handler text
  44. 2025-1-11 13:13:14-debug: lazy register asset handler dragonbones
  45. 2025-1-11 13:13:14-debug: lazy register asset handler dragonbones-atlas
  46. 2025-1-11 13:13:14-debug: lazy register asset handler spine-data
  47. 2025-1-11 13:13:14-debug: lazy register asset handler terrain
  48. 2025-1-11 13:13:14-debug: lazy register asset handler javascript
  49. 2025-1-11 13:13:14-debug: lazy register asset handler typescript
  50. 2025-1-11 13:13:14-debug: lazy register asset handler scene
  51. 2025-1-11 13:13:14-debug: lazy register asset handler prefab
  52. 2025-1-11 13:13:14-debug: lazy register asset handler sprite-frame
  53. 2025-1-11 13:13:14-debug: lazy register asset handler buffer
  54. 2025-1-11 13:13:14-debug: lazy register asset handler tiled-map
  55. 2025-1-11 13:13:14-debug: lazy register asset handler sign-image
  56. 2025-1-11 13:13:14-debug: lazy register asset handler alpha-image
  57. 2025-1-11 13:13:14-debug: lazy register asset handler texture-cube
  58. 2025-1-11 13:13:14-debug: lazy register asset handler image
  59. 2025-1-11 13:13:14-debug: lazy register asset handler texture
  60. 2025-1-11 13:13:14-debug: lazy register asset handler erp-texture-cube
  61. 2025-1-11 13:13:14-debug: lazy register asset handler texture-cube-face
  62. 2025-1-11 13:13:14-debug: lazy register asset handler gltf
  63. 2025-1-11 13:13:14-debug: lazy register asset handler render-texture
  64. 2025-1-11 13:13:14-debug: lazy register asset handler gltf-mesh
  65. 2025-1-11 13:13:14-debug: lazy register asset handler gltf-animation
  66. 2025-1-11 13:13:14-debug: lazy register asset handler gltf-material
  67. 2025-1-11 13:13:14-debug: lazy register asset handler rt-sprite-frame
  68. 2025-1-11 13:13:14-debug: lazy register asset handler gltf-embeded-image
  69. 2025-1-11 13:13:14-debug: lazy register asset handler gltf-skeleton
  70. 2025-1-11 13:13:14-debug: lazy register asset handler gltf-scene
  71. 2025-1-11 13:13:14-debug: lazy register asset handler fbx
  72. 2025-1-11 13:13:14-debug: lazy register asset handler material
  73. 2025-1-11 13:13:14-debug: lazy register asset handler effect
  74. 2025-1-11 13:13:14-debug: lazy register asset handler physics-material
  75. 2025-1-11 13:13:14-debug: lazy register asset handler animation-clip
  76. 2025-1-11 13:13:14-debug: lazy register asset handler effect-header
  77. 2025-1-11 13:13:14-debug: lazy register asset handler animation-graph
  78. 2025-1-11 13:13:14-debug: lazy register asset handler animation-graph-variant
  79. 2025-1-11 13:13:14-debug: lazy register asset handler audio-clip
  80. 2025-1-11 13:13:14-debug: lazy register asset handler animation-mask
  81. 2025-1-11 13:13:14-debug: lazy register asset handler bitmap-font
  82. 2025-1-11 13:13:14-debug: lazy register asset handler particle
  83. 2025-1-11 13:13:14-debug: lazy register asset handler ttf-font
  84. 2025-1-11 13:13:14-debug: lazy register asset handler sprite-atlas
  85. 2025-1-11 13:13:14-debug: lazy register asset handler render-pipeline
  86. 2025-1-11 13:13:14-debug: lazy register asset handler auto-atlas
  87. 2025-1-11 13:13:14-debug: lazy register asset handler label-atlas
  88. 2025-1-11 13:13:14-debug: lazy register asset handler instantiation-material
  89. 2025-1-11 13:13:14-debug: lazy register asset handler render-flow
  90. 2025-1-11 13:13:14-debug: lazy register asset handler instantiation-mesh
  91. 2025-1-11 13:13:14-debug: lazy register asset handler instantiation-skeleton
  92. 2025-1-11 13:13:14-debug: lazy register asset handler instantiation-animation
  93. 2025-1-11 13:13:14-debug: lazy register asset handler render-stage
  94. 2025-1-11 13:13:14-debug: lazy register asset handler video-clip
  95. 2025-1-11 13:13:14-debug: asset-db:worker-startup-database[assets] (5028ms)
  96. 2025-1-11 13:13:14-debug: asset-db:start-database (9659ms)
  97. 2025-1-11 13:13:14-debug: asset-db:ready (30136ms)
  98. 2025-1-11 13:13:14-debug: init worker message success
  99. 2025-1-11 13:13:14-debug: programming:execute-script (6ms)
  100. 2025-1-11 13:13:14-debug: [Build Memory track]: builder:worker-init start:158.06MB, end 166.29MB, increase: 8.22MB
  101. 2025-1-11 13:13:14-debug: builder:worker-init (598ms)
  102. 2025-1-11 13:13:18-debug: Query all assets info in project
  103. 2025-1-11 13:13:18-debug: init custom config: keepNodeUuid: false, useCache: true
  104. 2025-1-11 13:13:18-debug: 查询 Asset Bundle start, progress: 0%
  105. 2025-1-11 13:13:18-debug: // ---- build task 查询 Asset Bundle ----
  106. 2025-1-11 13:13: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  107. 2025-1-11 13:13:18-debug: Number of other assets: 599
  108. 2025-1-11 13:13:18-debug: Number of all scripts: 99
  109. 2025-1-11 13:13:18-debug: Number of all scenes: 3
  110. 2025-1-11 13:13:18-debug: run build task 查询 Asset Bundle success in 15 ms√, progress: 5%
  111. 2025-1-11 13:13:18-debug: 查询 Asset Bundle start, progress: 5%
  112. 2025-1-11 13:13:18-debug: // ---- build task 查询 Asset Bundle ----
  113. 2025-1-11 13:13:18-debug: [Build Memory track]: 查询 Asset Bundle start:162.07MB, end 163.28MB, increase: 1.21MB
  114. 2025-1-11 13:13:18-debug: // ---- build task 查询 Asset Bundle ---- (15ms)
  115. 2025-1-11 13:13:18-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  116. 2025-1-11 13:13:18-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  117. 2025-1-11 13:13:18-debug: [Build Memory track]: 查询 Asset Bundle start:163.31MB, end 163.46MB, increase: 151.97KB
  118. 2025-1-11 13:13:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  119. 2025-1-11 13:13:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  120. 2025-1-11 13:13:18-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  121. 2025-1-11 13:13:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.50MB, end 163.52MB, increase: 20.54KB
  122. 2025-1-11 13:13:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  123. 2025-1-11 13:13:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  124. 2025-1-11 13:13:18-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  125. 2025-1-11 13:13:18-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  126. 2025-1-11 13:13:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  127. 2025-1-11 13:13:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  128. 2025-1-11 13:13:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:163.55MB, end 163.58MB, increase: 30.23KB
  129. 2025-1-11 13:13:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  130. 2025-1-11 13:13:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  131. 2025-1-11 13:13:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.61MB, end 163.75MB, increase: 139.09KB
  132. 2025-1-11 13:15:50-debug: refresh db internal success
  133. 2025-1-11 13:15:51-debug: refresh db assets success
  134. 2025-1-11 13:15:51-debug: Run asset db hook engine-extends:afterRefresh ...
  135. 2025-1-11 13:15:51-debug: Run asset db hook engine-extends:afterRefresh success!
  136. 2025-1-11 13:15:51-debug: asset-db:refresh-all-database (301ms)
  137. 2025-1-11 13:15:51-debug: asset-db:worker-effect-data-processing (3ms)
  138. 2025-1-11 13:15:51-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  139. 2025-1-11 13:59:42-debug: refresh db internal success
  140. 2025-1-11 13:59:42-debug: refresh db assets success
  141. 2025-1-11 13:59:42-debug: Run asset db hook engine-extends:afterRefresh ...
  142. 2025-1-11 13:59:42-debug: Run asset db hook engine-extends:afterRefresh success!
  143. 2025-1-11 13:59:42-debug: asset-db:refresh-all-database (108ms)
  144. 2025-1-11 13:59:42-debug: asset-db:worker-effect-data-processing (1ms)
  145. 2025-1-11 13:59:42-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  146. 2025-1-11 13:59:44-debug: Query all assets info in project
  147. 2025-1-11 13:59:44-debug: init custom config: keepNodeUuid: false, useCache: true
  148. 2025-1-11 13:59:44-debug: 查询 Asset Bundle start, progress: 0%
  149. 2025-1-11 13:59:44-debug: // ---- build task 查询 Asset Bundle ----
  150. 2025-1-11 13:59: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  151. 2025-1-11 13:59:44-debug: Number of all scenes: 3
  152. 2025-1-11 13:59:44-debug: Number of all scripts: 99
  153. 2025-1-11 13:59:44-debug: Number of other assets: 599
  154. 2025-1-11 13:59:44-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  155. 2025-1-11 13:59:44-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  156. 2025-1-11 13:59:44-debug: // ---- build task 查询 Asset Bundle ----
  157. 2025-1-11 13:59:44-debug: [Build Memory track]: 查询 Asset Bundle start:161.74MB, end 162.08MB, increase: 341.79KB
  158. 2025-1-11 13:59:44-debug: 查询 Asset Bundle start, progress: 5%
  159. 2025-1-11 13:59:44-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  160. 2025-1-11 13:59:44-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  161. 2025-1-11 13:59:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  162. 2025-1-11 13:59:44-debug: [Build Memory track]: 查询 Asset Bundle start:162.11MB, end 161.43MB, increase: -701.16KB
  163. 2025-1-11 13:59:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  164. 2025-1-11 13:59:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  165. 2025-1-11 13:59:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  166. 2025-1-11 13:59:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.46MB, end 161.49MB, increase: 31.66KB
  167. 2025-1-11 13:59:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  168. 2025-1-11 13:59:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  169. 2025-1-11 13:59:44-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  170. 2025-1-11 13:59:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.53MB, end 161.54MB, increase: 18.00KB
  171. 2025-1-11 13:59:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  172. 2025-1-11 13:59:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  173. 2025-1-11 13:59:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  174. 2025-1-11 13:59:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  175. 2025-1-11 13:59:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.58MB, end 161.71MB, increase: 138.48KB
  176. 2025-1-11 14:00:02-debug: refresh db internal success
  177. 2025-1-11 14:00:02-debug: refresh db assets success
  178. 2025-1-11 14:00:02-debug: Run asset db hook engine-extends:afterRefresh ...
  179. 2025-1-11 14:00:02-debug: Run asset db hook engine-extends:afterRefresh success!
  180. 2025-1-11 14:00:02-debug: asset-db:refresh-all-database (92ms)
  181. 2025-1-11 14:00:02-debug: asset-db:worker-effect-data-processing (1ms)
  182. 2025-1-11 14:00:02-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  183. 2025-1-11 14:00:11-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  184. 2025-1-11 14:00:21-debug: refresh db internal success
  185. 2025-1-11 14:00:21-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  186. 2025-1-11 14:00:21-debug: refresh db assets success
  187. 2025-1-11 14:00:21-debug: Run asset db hook engine-extends:afterRefresh ...
  188. 2025-1-11 14:00:21-debug: Run asset db hook engine-extends:afterRefresh success!
  189. 2025-1-11 14:00:21-debug: asset-db:refresh-all-database (204ms)
  190. 2025-1-11 14:00:21-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  191. 2025-1-11 14:00:21-debug: asset-db:worker-effect-data-processing (1ms)
  192. 2025-1-11 14:00:22-debug: Query all assets info in project
  193. 2025-1-11 14:00:22-debug: init custom config: keepNodeUuid: false, useCache: true
  194. 2025-1-11 14:00:22-debug: 查询 Asset Bundle start, progress: 0%
  195. 2025-1-11 14:00:22-debug: // ---- build task 查询 Asset Bundle ----
  196. 2025-1-11 14:00:22-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  197. 2025-1-11 14:00:22-debug: Number of all scenes: 3
  198. 2025-1-11 14:00:22-debug: Number of all scripts: 99
  199. 2025-1-11 14:00:22-debug: Number of other assets: 599
  200. 2025-1-11 14:00:22-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  201. 2025-1-11 14:00:22-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  202. 2025-1-11 14:00:22-debug: 查询 Asset Bundle start, progress: 5%
  203. 2025-1-11 14:00:22-debug: // ---- build task 查询 Asset Bundle ----
  204. 2025-1-11 14:00:22-debug: [Build Memory track]: 查询 Asset Bundle start:165.46MB, end 165.41MB, increase: -51.48KB
  205. 2025-1-11 14:00:22-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  206. 2025-1-11 14:00:22-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 10%
  207. 2025-1-11 14:00:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  208. 2025-1-11 14:00:22-debug: [Build Memory track]: 查询 Asset Bundle start:165.44MB, end 165.59MB, increase: 152.63KB
  209. 2025-1-11 14:00:22-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  210. 2025-1-11 14:00:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  211. 2025-1-11 14:00:22-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 12%
  212. 2025-1-11 14:00:22-debug: // ---- build task 填充脚本数据到 settings.json ----
  213. 2025-1-11 14:00:22-debug: 填充脚本数据到 settings.json start, progress: 12%
  214. 2025-1-11 14:00:22-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.62MB, end 165.65MB, increase: 31.54KB
  215. 2025-1-11 14:00:22-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  216. 2025-1-11 14:00:22-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  217. 2025-1-11 14:00:22-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.69MB, end 165.72MB, increase: 30.16KB
  218. 2025-1-11 14:00:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  219. 2025-1-11 14:00:22-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  220. 2025-1-11 14:00:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  221. 2025-1-11 14:00:22-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  222. 2025-1-11 14:00:22-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.75MB, end 165.88MB, increase: 132.35KB
  223. 2025-1-11 14:00:23-debug: Query all assets info in project
  224. 2025-1-11 14:00:23-debug: init custom config: keepNodeUuid: false, useCache: true
  225. 2025-1-11 14:00:23-debug: 查询 Asset Bundle start, progress: 0%
  226. 2025-1-11 14:00:23-debug: // ---- build task 查询 Asset Bundle ----
  227. 2025-1-11 14:00:23-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  228. 2025-1-11 14:00:23-debug: Number of all scenes: 3
  229. 2025-1-11 14:00:23-debug: Number of other assets: 599
  230. 2025-1-11 14:00:23-debug: Number of all scripts: 99
  231. 2025-1-11 14:00:23-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  232. 2025-1-11 14:00:23-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  233. 2025-1-11 14:00:23-debug: 查询 Asset Bundle start, progress: 5%
  234. 2025-1-11 14:00:23-debug: // ---- build task 查询 Asset Bundle ----
  235. 2025-1-11 14:00:23-debug: [Build Memory track]: 查询 Asset Bundle start:164.54MB, end 165.71MB, increase: 1.17MB
  236. 2025-1-11 14:00:23-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  237. 2025-1-11 14:00:23-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  238. 2025-1-11 14:00:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  239. 2025-1-11 14:00:23-debug: [Build Memory track]: 查询 Asset Bundle start:165.75MB, end 165.90MB, increase: 151.71KB
  240. 2025-1-11 14:00:23-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  241. 2025-1-11 14:00:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  242. 2025-1-11 14:00:23-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  243. 2025-1-11 14:00:23-debug: // ---- build task 填充脚本数据到 settings.json ----
  244. 2025-1-11 14:00:23-debug: 填充脚本数据到 settings.json start, progress: 12%
  245. 2025-1-11 14:00:23-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.93MB, end 165.96MB, increase: 30.79KB
  246. 2025-1-11 14:00:23-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  247. 2025-1-11 14:00:23-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.99MB, end 166.01MB, increase: 17.75KB
  248. 2025-1-11 14:00:23-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  249. 2025-1-11 14:00:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  250. 2025-1-11 14:00:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  251. 2025-1-11 14:00:23-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  252. 2025-1-11 14:00:23-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.05MB, end 166.18MB, increase: 136.89KB
  253. 2025-1-11 14:00:40-debug: refresh db internal success
  254. 2025-1-11 14:00:40-debug: refresh db assets success
  255. 2025-1-11 14:00:40-debug: Run asset db hook engine-extends:afterRefresh ...
  256. 2025-1-11 14:00:40-debug: Run asset db hook engine-extends:afterRefresh success!
  257. 2025-1-11 14:00:40-debug: asset-db:refresh-all-database (91ms)
  258. 2025-1-11 14:00:40-debug: asset-db:worker-effect-data-processing (1ms)
  259. 2025-1-11 14:00:40-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  260. 2025-1-11 14:00:49-debug: refresh db internal success
  261. 2025-1-11 14:00:49-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  262. 2025-1-11 14:00:49-debug: refresh db assets success
  263. 2025-1-11 14:00:49-debug: Run asset db hook engine-extends:afterRefresh ...
  264. 2025-1-11 14:00:49-debug: Run asset db hook engine-extends:afterRefresh success!
  265. 2025-1-11 14:00:49-debug: asset-db:refresh-all-database (84ms)
  266. 2025-1-11 14:00:49-debug: asset-db:worker-effect-data-processing (1ms)
  267. 2025-1-11 14:00:49-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  268. 2025-1-11 14:00:50-debug: Query all assets info in project
  269. 2025-1-11 14:00:50-debug: init custom config: keepNodeUuid: false, useCache: true
  270. 2025-1-11 14:00:50-debug: 查询 Asset Bundle start, progress: 0%
  271. 2025-1-11 14:00:50-debug: // ---- build task 查询 Asset Bundle ----
  272. 2025-1-11 14:00: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  273. 2025-1-11 14:00:50-debug: Number of all scenes: 3
  274. 2025-1-11 14:00:50-debug: Number of all scripts: 99
  275. 2025-1-11 14:00:50-debug: Number of other assets: 599
  276. 2025-1-11 14:00:50-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  277. 2025-1-11 14:00:50-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  278. 2025-1-11 14:00:50-debug: [Build Memory track]: 查询 Asset Bundle start:168.17MB, end 169.34MB, increase: 1.17MB
  279. 2025-1-11 14:00:50-debug: 查询 Asset Bundle start, progress: 5%
  280. 2025-1-11 14:00:50-debug: // ---- build task 查询 Asset Bundle ----
  281. 2025-1-11 14:00:50-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  282. 2025-1-11 14:00:50-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  283. 2025-1-11 14:00:50-debug: [Build Memory track]: 查询 Asset Bundle start:169.59MB, end 169.74MB, increase: 150.89KB
  284. 2025-1-11 14:00:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  285. 2025-1-11 14:00:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  286. 2025-1-11 14:00:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  287. 2025-1-11 14:00:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  288. 2025-1-11 14:00:50-debug: 填充脚本数据到 settings.json start, progress: 12%
  289. 2025-1-11 14:00:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.78MB, end 167.81MB, increase: 29.77KB
  290. 2025-1-11 14:00:50-debug: // ---- build task 填充脚本数据到 settings.json ----
  291. 2025-1-11 14:00:50-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  292. 2025-1-11 14:00:50-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  293. 2025-1-11 14:00:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  294. 2025-1-11 14:00:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  295. 2025-1-11 14:00:50-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.85MB, end 167.88MB, increase: 31.38KB
  296. 2025-1-11 14:00:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  297. 2025-1-11 14:00:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  298. 2025-1-11 14:00:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.91MB, end 168.04MB, increase: 131.88KB
  299. 2025-1-11 14:01:09-debug: refresh db internal success
  300. 2025-1-11 14:01:09-debug: refresh db assets success
  301. 2025-1-11 14:01:09-debug: Run asset db hook engine-extends:afterRefresh ...
  302. 2025-1-11 14:01:09-debug: Run asset db hook engine-extends:afterRefresh success!
  303. 2025-1-11 14:01:09-debug: asset-db:refresh-all-database (87ms)
  304. 2025-1-11 14:01:09-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  305. 2025-1-11 14:01:09-debug: asset-db:worker-effect-data-processing (1ms)
  306. 2025-1-11 14:01:14-debug: Query all assets info in project
  307. 2025-1-11 14:01:14-debug: init custom config: keepNodeUuid: false, useCache: true
  308. 2025-1-11 14:01:14-debug: 查询 Asset Bundle start, progress: 0%
  309. 2025-1-11 14:01:14-debug: // ---- build task 查询 Asset Bundle ----
  310. 2025-1-11 14:01:14-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  311. 2025-1-11 14:01:14-debug: Number of all scenes: 3
  312. 2025-1-11 14:01:14-debug: Number of all scripts: 99
  313. 2025-1-11 14:01:14-debug: Number of other assets: 599
  314. 2025-1-11 14:01:14-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  315. 2025-1-11 14:01:14-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  316. 2025-1-11 14:01:14-debug: [Build Memory track]: 查询 Asset Bundle start:169.62MB, end 169.97MB, increase: 353.54KB
  317. 2025-1-11 14:01:14-debug: // ---- build task 查询 Asset Bundle ----
  318. 2025-1-11 14:01:14-debug: 查询 Asset Bundle start, progress: 5%
  319. 2025-1-11 14:01:14-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  320. 2025-1-11 14:01:14-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  321. 2025-1-11 14:01:14-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  322. 2025-1-11 14:01:14-debug: [Build Memory track]: 查询 Asset Bundle start:170.00MB, end 169.29MB, increase: -730.23KB
  323. 2025-1-11 14:01:14-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  324. 2025-1-11 14:01:14-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  325. 2025-1-11 14:01:14-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.32MB, end 169.34MB, increase: 18.68KB
  326. 2025-1-11 14:01:14-debug: 填充脚本数据到 settings.json start, progress: 12%
  327. 2025-1-11 14:01:14-debug: // ---- build task 填充脚本数据到 settings.json ----
  328. 2025-1-11 14:01:14-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  329. 2025-1-11 14:01:14-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.37MB, end 169.39MB, increase: 18.46KB
  330. 2025-1-11 14:01:14-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  331. 2025-1-11 14:01:14-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  332. 2025-1-11 14:01:14-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (13ms)
  333. 2025-1-11 14:01:14-debug: run build task 整理部分构建选项内数据到 settings.json success in 13 ms√, progress: 15%
  334. 2025-1-11 14:01:14-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.43MB, end 169.55MB, increase: 132.27KB
  335. 2025-1-11 14:01:45-debug: refresh db internal success
  336. 2025-1-11 14:01:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  337. 2025-1-11 14:01:45-debug: refresh db assets success
  338. 2025-1-11 14:01:45-debug: Run asset db hook engine-extends:afterRefresh ...
  339. 2025-1-11 14:01:45-debug: Run asset db hook engine-extends:afterRefresh success!
  340. 2025-1-11 14:01:45-debug: asset-db:refresh-all-database (225ms)
  341. 2025-1-11 14:01:45-debug: asset-db:worker-effect-data-processing (2ms)
  342. 2025-1-11 14:01:45-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  343. 2025-1-11 14:01:48-debug: Query all assets info in project
  344. 2025-1-11 14:01:48-debug: init custom config: keepNodeUuid: false, useCache: true
  345. 2025-1-11 14:01:48-debug: 查询 Asset Bundle start, progress: 0%
  346. 2025-1-11 14:01:48-debug: // ---- build task 查询 Asset Bundle ----
  347. 2025-1-11 14:01: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  348. 2025-1-11 14:01:48-debug: Number of all scenes: 3
  349. 2025-1-11 14:01:48-debug: Number of other assets: 599
  350. 2025-1-11 14:01:48-debug: Number of all scripts: 99
  351. 2025-1-11 14:01:48-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  352. 2025-1-11 14:01:48-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  353. 2025-1-11 14:01:48-debug: [Build Memory track]: 查询 Asset Bundle start:171.08MB, end 171.35MB, increase: 278.41KB
  354. 2025-1-11 14:01:48-debug: 查询 Asset Bundle start, progress: 5%
  355. 2025-1-11 14:01:48-debug: // ---- build task 查询 Asset Bundle ----
  356. 2025-1-11 14:01:48-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  357. 2025-1-11 14:01:48-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  358. 2025-1-11 14:01:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  359. 2025-1-11 14:01:48-debug: [Build Memory track]: 查询 Asset Bundle start:171.38MB, end 171.53MB, increase: 154.49KB
  360. 2025-1-11 14:01:48-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  361. 2025-1-11 14:01:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  362. 2025-1-11 14:01:48-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  363. 2025-1-11 14:01:48-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.57MB, end 171.60MB, increase: 29.71KB
  364. 2025-1-11 14:01:48-debug: // ---- build task 填充脚本数据到 settings.json ----
  365. 2025-1-11 14:01:48-debug: 填充脚本数据到 settings.json start, progress: 12%
  366. 2025-1-11 14:01:48-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  367. 2025-1-11 14:01:48-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  368. 2025-1-11 14:01:48-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.63MB, end 171.66MB, increase: 31.40KB
  369. 2025-1-11 14:01:48-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  370. 2025-1-11 14:01:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  371. 2025-1-11 14:01:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  372. 2025-1-11 14:01:48-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  373. 2025-1-11 14:01:48-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.69MB, end 171.82MB, increase: 131.92KB
  374. 2025-1-11 14:02:23-debug: refresh db internal success
  375. 2025-1-11 14:02:23-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  376. 2025-1-11 14:02:23-debug: refresh db assets success
  377. 2025-1-11 14:02:23-debug: Run asset db hook engine-extends:afterRefresh ...
  378. 2025-1-11 14:02:23-debug: Run asset db hook engine-extends:afterRefresh success!
  379. 2025-1-11 14:02:23-debug: asset-db:worker-effect-data-processing (1ms)
  380. 2025-1-11 14:02:23-debug: asset-db:refresh-all-database (80ms)
  381. 2025-1-11 14:02:23-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  382. 2025-1-11 14:02:23-debug: Query all assets info in project
  383. 2025-1-11 14:02:23-debug: init custom config: keepNodeUuid: false, useCache: true
  384. 2025-1-11 14:02:23-debug: 查询 Asset Bundle start, progress: 0%
  385. 2025-1-11 14:02:23-debug: // ---- build task 查询 Asset Bundle ----
  386. 2025-1-11 14:02:23-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  387. 2025-1-11 14:02:23-debug: Number of all scripts: 99
  388. 2025-1-11 14:02:23-debug: Number of other assets: 599
  389. 2025-1-11 14:02:23-debug: Number of all scenes: 3
  390. 2025-1-11 14:02:23-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  391. 2025-1-11 14:02:23-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  392. 2025-1-11 14:02:23-debug: 查询 Asset Bundle start, progress: 5%
  393. 2025-1-11 14:02:23-debug: // ---- build task 查询 Asset Bundle ----
  394. 2025-1-11 14:02:23-debug: [Build Memory track]: 查询 Asset Bundle start:173.36MB, end 172.79MB, increase: -586.46KB
  395. 2025-1-11 14:02:23-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  396. 2025-1-11 14:02:23-debug: [Build Memory track]: 查询 Asset Bundle start:172.82MB, end 172.97MB, increase: 151.41KB
  397. 2025-1-11 14:02:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  398. 2025-1-11 14:02:23-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  399. 2025-1-11 14:02:23-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  400. 2025-1-11 14:02:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  401. 2025-1-11 14:02:23-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 12%
  402. 2025-1-11 14:02:23-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.01MB, end 173.04MB, increase: 29.76KB
  403. 2025-1-11 14:02:23-debug: 填充脚本数据到 settings.json start, progress: 12%
  404. 2025-1-11 14:02:23-debug: // ---- build task 填充脚本数据到 settings.json ----
  405. 2025-1-11 14:02:23-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  406. 2025-1-11 14:02:23-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  407. 2025-1-11 14:02:23-debug: [Build Memory track]: 填充脚本数据到 settings.json start:173.07MB, end 173.10MB, increase: 29.86KB
  408. 2025-1-11 14:02:23-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  409. 2025-1-11 14:02:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  410. 2025-1-11 14:02:23-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  411. 2025-1-11 14:02:23-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.13MB, end 173.26MB, increase: 135.68KB
  412. 2025-1-11 14:02:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  413. 2025-1-11 14:02:24-debug: Query all assets info in project
  414. 2025-1-11 14:02:24-debug: init custom config: keepNodeUuid: false, useCache: true
  415. 2025-1-11 14:02:24-debug: 查询 Asset Bundle start, progress: 0%
  416. 2025-1-11 14:02:24-debug: // ---- build task 查询 Asset Bundle ----
  417. 2025-1-11 14: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  418. 2025-1-11 14:02:24-debug: Number of all scenes: 3
  419. 2025-1-11 14:02:24-debug: Number of all scripts: 99
  420. 2025-1-11 14:02:24-debug: Number of other assets: 599
  421. 2025-1-11 14:02:24-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  422. 2025-1-11 14:02:24-debug: [Build Memory track]: 查询 Asset Bundle start:172.96MB, end 173.29MB, increase: 338.14KB
  423. 2025-1-11 14:02:24-debug: // ---- build task 查询 Asset Bundle ----
  424. 2025-1-11 14:02:24-debug: 查询 Asset Bundle start, progress: 5%
  425. 2025-1-11 14:02:24-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  426. 2025-1-11 14:02:24-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  427. 2025-1-11 14:02:24-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  428. 2025-1-11 14:02:24-debug: [Build Memory track]: 查询 Asset Bundle start:173.32MB, end 173.47MB, increase: 150.82KB
  429. 2025-1-11 14:02:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  430. 2025-1-11 14:02:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  431. 2025-1-11 14:02:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  432. 2025-1-11 14:02:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.50MB, end 173.53MB, increase: 30.07KB
  433. 2025-1-11 14:02:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  434. 2025-1-11 14:02:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  435. 2025-1-11 14:02:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  436. 2025-1-11 14:02:24-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  437. 2025-1-11 14:02:24-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  438. 2025-1-11 14:02:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  439. 2025-1-11 14:02:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:173.57MB, end 173.60MB, increase: 30.84KB
  440. 2025-1-11 14:02:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  441. 2025-1-11 14:02:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (10ms)
  442. 2025-1-11 14:02:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 10 ms√, progress: 15%
  443. 2025-1-11 14:02:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.63MB, end 173.76MB, increase: 133.32KB
  444. 2025-1-11 14:02:33-debug: refresh db internal success
  445. 2025-1-11 14:02:33-debug: refresh db assets success
  446. 2025-1-11 14:02:33-debug: Run asset db hook engine-extends:afterRefresh ...
  447. 2025-1-11 14:02:33-debug: Run asset db hook engine-extends:afterRefresh success!
  448. 2025-1-11 14:02:33-debug: asset-db:refresh-all-database (78ms)
  449. 2025-1-11 14:02:33-debug: asset-db:worker-effect-data-processing (1ms)
  450. 2025-1-11 14:02:33-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  451. 2025-1-11 14:02:43-debug: refresh db internal success
  452. 2025-1-11 14:02:43-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  453. 2025-1-11 14:02:43-debug: refresh db assets success
  454. 2025-1-11 14:02:43-debug: Run asset db hook engine-extends:afterRefresh ...
  455. 2025-1-11 14:02:43-debug: Run asset db hook engine-extends:afterRefresh success!
  456. 2025-1-11 14:02:43-debug: asset-db:refresh-all-database (80ms)
  457. 2025-1-11 14:02:44-debug: Query all assets info in project
  458. 2025-1-11 14:02:44-debug: init custom config: keepNodeUuid: false, useCache: true
  459. 2025-1-11 14:02:44-debug: 查询 Asset Bundle start, progress: 0%
  460. 2025-1-11 14:02:44-debug: // ---- build task 查询 Asset Bundle ----
  461. 2025-1-11 14:02:44-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  462. 2025-1-11 14:02:44-debug: Number of all scenes: 3
  463. 2025-1-11 14:02:44-debug: Number of all scripts: 99
  464. 2025-1-11 14:02:44-debug: Number of other assets: 599
  465. 2025-1-11 14:02:44-debug: [Build Memory track]: 查询 Asset Bundle start:161.48MB, end 160.90MB, increase: -590.99KB
  466. 2025-1-11 14:02:44-debug: 查询 Asset Bundle start, progress: 5%
  467. 2025-1-11 14:02:44-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  468. 2025-1-11 14:02:44-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  469. 2025-1-11 14:02:44-debug: // ---- build task 查询 Asset Bundle ----
  470. 2025-1-11 14:02:44-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  471. 2025-1-11 14:02:44-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  472. 2025-1-11 14:02:44-debug: [Build Memory track]: 查询 Asset Bundle start:160.94MB, end 161.08MB, increase: 151.42KB
  473. 2025-1-11 14:02:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  474. 2025-1-11 14:02:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  475. 2025-1-11 14:02:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  476. 2025-1-11 14:02:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.12MB, end 161.15MB, increase: 28.58KB
  477. 2025-1-11 14:02:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  478. 2025-1-11 14:02:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  479. 2025-1-11 14:02:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  480. 2025-1-11 14:02:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.18MB, end 161.20MB, increase: 19.38KB
  481. 2025-1-11 14:02:44-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  482. 2025-1-11 14:02:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  483. 2025-1-11 14:02:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  484. 2025-1-11 14:02:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  485. 2025-1-11 14:02:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  486. 2025-1-11 14:02:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.23MB, end 161.38MB, increase: 148.58KB
  487. 2025-1-11 14:04:20-debug: refresh db internal success
  488. 2025-1-11 14:04:20-debug: refresh db assets success
  489. 2025-1-11 14:04:20-debug: Run asset db hook engine-extends:afterRefresh ...
  490. 2025-1-11 14:04:20-debug: Run asset db hook engine-extends:afterRefresh success!
  491. 2025-1-11 14:04:20-debug: asset-db:refresh-all-database (84ms)
  492. 2025-1-11 14:04:20-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  493. 2025-1-11 14:05:23-debug: refresh db internal success
  494. 2025-1-11 14:05:23-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  495. 2025-1-11 14:05:23-debug: refresh db assets success
  496. 2025-1-11 14:05:23-debug: Run asset db hook engine-extends:afterRefresh success!
  497. 2025-1-11 14:05:23-debug: Run asset db hook engine-extends:afterRefresh ...
  498. 2025-1-11 14:05:23-debug: asset-db:refresh-all-database (81ms)
  499. 2025-1-11 14:05:23-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  500. 2025-1-11 14:05:23-debug: Query all assets info in project
  501. 2025-1-11 14:05:23-debug: init custom config: keepNodeUuid: false, useCache: true
  502. 2025-1-11 14:05:23-debug: 查询 Asset Bundle start, progress: 0%
  503. 2025-1-11 14:05:23-debug: // ---- build task 查询 Asset Bundle ----
  504. 2025-1-11 14:05:23-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  505. 2025-1-11 14:05:23-debug: Number of all scripts: 99
  506. 2025-1-11 14:05:23-debug: Number of other assets: 599
  507. 2025-1-11 14:05:23-debug: Number of all scenes: 3
  508. 2025-1-11 14:05:23-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  509. 2025-1-11 14:05:23-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  510. 2025-1-11 14:05:23-debug: [Build Memory track]: 查询 Asset Bundle start:164.34MB, end 165.50MB, increase: 1.17MB
  511. 2025-1-11 14:05:23-debug: 查询 Asset Bundle start, progress: 5%
  512. 2025-1-11 14:05:23-debug: // ---- build task 查询 Asset Bundle ----
  513. 2025-1-11 14:05:23-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  514. 2025-1-11 14:05:23-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  515. 2025-1-11 14:05:23-debug: [Build Memory track]: 查询 Asset Bundle start:165.54MB, end 163.78MB, increase: -1803.27KB
  516. 2025-1-11 14:05:23-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  517. 2025-1-11 14:05:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  518. 2025-1-11 14:05:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  519. 2025-1-11 14:05:23-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  520. 2025-1-11 14:05:23-debug: // ---- build task 填充脚本数据到 settings.json ----
  521. 2025-1-11 14:05:23-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.81MB, end 163.84MB, increase: 29.64KB
  522. 2025-1-11 14:05:23-debug: 填充脚本数据到 settings.json start, progress: 12%
  523. 2025-1-11 14:05:23-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  524. 2025-1-11 14:05:23-debug: [Build Memory track]: 填充脚本数据到 settings.json start:163.87MB, end 163.90MB, increase: 30.44KB
  525. 2025-1-11 14:05:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  526. 2025-1-11 14:05:23-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  527. 2025-1-11 14:05:23-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  528. 2025-1-11 14:05:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  529. 2025-1-11 14:05:23-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  530. 2025-1-11 14:05:23-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.94MB, end 164.21MB, increase: 274.49KB
  531. 2025-1-11 14:05:24-debug: Query all assets info in project
  532. 2025-1-11 14:05:24-debug: init custom config: keepNodeUuid: false, useCache: true
  533. 2025-1-11 14:05:24-debug: 查询 Asset Bundle start, progress: 0%
  534. 2025-1-11 14:05:24-debug: // ---- build task 查询 Asset Bundle ----
  535. 2025-1-11 14:05: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  536. 2025-1-11 14:05:24-debug: Number of all scenes: 3
  537. 2025-1-11 14:05:24-debug: Number of all scripts: 99
  538. 2025-1-11 14:05:24-debug: Number of other assets: 599
  539. 2025-1-11 14:05:24-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  540. 2025-1-11 14:05:24-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  541. 2025-1-11 14:05:24-debug: [Build Memory track]: 查询 Asset Bundle start:164.79MB, end 164.14MB, increase: -664.79KB
  542. 2025-1-11 14:05:24-debug: 查询 Asset Bundle start, progress: 5%
  543. 2025-1-11 14:05:24-debug: // ---- build task 查询 Asset Bundle ----
  544. 2025-1-11 14:05:24-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  545. 2025-1-11 14:05:24-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  546. 2025-1-11 14:05:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  547. 2025-1-11 14:05:24-debug: [Build Memory track]: 查询 Asset Bundle start:164.17MB, end 164.32MB, increase: 149.42KB
  548. 2025-1-11 14:05:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  549. 2025-1-11 14:05:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  550. 2025-1-11 14:05:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  551. 2025-1-11 14:05:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  552. 2025-1-11 14:05:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.35MB, end 164.38MB, increase: 31.24KB
  553. 2025-1-11 14:05:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  554. 2025-1-11 14:05:24-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  555. 2025-1-11 14:05:24-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  556. 2025-1-11 14:05:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:164.42MB, end 164.45MB, increase: 29.63KB
  557. 2025-1-11 14:05:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  558. 2025-1-11 14:05:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  559. 2025-1-11 14:05:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  560. 2025-1-11 14:05:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  561. 2025-1-11 14:05:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.48MB, end 164.62MB, increase: 136.70KB
  562. 2025-1-11 14:05:32-debug: refresh db internal success
  563. 2025-1-11 14:05:32-debug: refresh db assets success
  564. 2025-1-11 14:05:32-debug: Run asset db hook engine-extends:afterRefresh ...
  565. 2025-1-11 14:05:32-debug: Run asset db hook engine-extends:afterRefresh success!
  566. 2025-1-11 14:05:32-debug: asset-db:refresh-all-database (73ms)
  567. 2025-1-11 14:05:32-debug: asset-db:worker-effect-data-processing (1ms)
  568. 2025-1-11 14:05:32-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  569. 2025-1-11 14:06:07-debug: refresh db internal success
  570. 2025-1-11 14:06:07-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json background: #aaff85; color: #000; color: #000;
  571. 2025-1-11 14:06:07-debug: refresh db assets success
  572. 2025-1-11 14:06:07-debug: Run asset db hook engine-extends:afterRefresh success!
  573. 2025-1-11 14:06:07-debug: Run asset db hook engine-extends:afterRefresh ...
  574. 2025-1-11 14:06:07-debug: asset-db:refresh-all-database (84ms)
  575. 2025-1-11 14:06:07-debug: asset-db:worker-effect-data-processing (1ms)
  576. 2025-1-11 14:06:07-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  577. 2025-1-11 14:06:46-debug: refresh db internal success
  578. 2025-1-11 14:06:46-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json background: #aaff85; color: #000; color: #000;
  579. 2025-1-11 14:06:46-debug: refresh db assets success
  580. 2025-1-11 14:06:46-debug: Run asset db hook engine-extends:afterRefresh ...
  581. 2025-1-11 14:06:46-debug: Run asset db hook engine-extends:afterRefresh success!
  582. 2025-1-11 14:06:46-debug: asset-db:refresh-all-database (82ms)
  583. 2025-1-11 14:06:46-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  584. 2025-1-11 14:06:47-debug: Query all assets info in project
  585. 2025-1-11 14:06:47-debug: init custom config: keepNodeUuid: false, useCache: true
  586. 2025-1-11 14:06:47-debug: 查询 Asset Bundle start, progress: 0%
  587. 2025-1-11 14:06:47-debug: // ---- build task 查询 Asset Bundle ----
  588. 2025-1-11 14:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  589. 2025-1-11 14:06:47-debug: Number of all scenes: 3
  590. 2025-1-11 14:06:47-debug: Number of other assets: 599
  591. 2025-1-11 14:06:47-debug: Number of all scripts: 99
  592. 2025-1-11 14:06:47-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  593. 2025-1-11 14:06:47-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  594. 2025-1-11 14:06:47-debug: // ---- build task 查询 Asset Bundle ----
  595. 2025-1-11 14:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:169.38MB, end 168.44MB, increase: -966.06KB
  596. 2025-1-11 14:06:47-debug: 查询 Asset Bundle start, progress: 5%
  597. 2025-1-11 14:06:47-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  598. 2025-1-11 14:06:47-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  599. 2025-1-11 14:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  600. 2025-1-11 14:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:168.47MB, end 168.62MB, increase: 150.93KB
  601. 2025-1-11 14:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  602. 2025-1-11 14:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  603. 2025-1-11 14:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.65MB, end 168.68MB, increase: 30.52KB
  604. 2025-1-11 14:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  605. 2025-1-11 14:06:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  606. 2025-1-11 14:06:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  607. 2025-1-11 14:06:47-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  608. 2025-1-11 14:06:47-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  609. 2025-1-11 14:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  610. 2025-1-11 14:06:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:168.72MB, end 168.75MB, increase: 30.90KB
  611. 2025-1-11 14:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  612. 2025-1-11 14:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  613. 2025-1-11 14:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  614. 2025-1-11 14:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.78MB, end 168.91MB, increase: 131.70KB
  615. 2025-1-11 14:06:55-debug: refresh db internal success
  616. 2025-1-11 14:06:55-debug: refresh db assets success
  617. 2025-1-11 14:06:55-debug: Run asset db hook engine-extends:afterRefresh ...
  618. 2025-1-11 14:06:55-debug: Run asset db hook engine-extends:afterRefresh success!
  619. 2025-1-11 14:06:55-debug: asset-db:refresh-all-database (76ms)
  620. 2025-1-11 14:06:55-debug: asset-db:worker-effect-data-processing (1ms)
  621. 2025-1-11 14:06:55-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  622. 2025-1-11 14:07:05-debug: refresh db internal success
  623. 2025-1-11 14:07:05-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json background: #aaff85; color: #000; color: #000;
  624. 2025-1-11 14:07:05-debug: refresh db assets success
  625. 2025-1-11 14:07:05-debug: Run asset db hook engine-extends:afterRefresh ...
  626. 2025-1-11 14:07:05-debug: Run asset db hook engine-extends:afterRefresh success!
  627. 2025-1-11 14:07:05-debug: asset-db:refresh-all-database (80ms)
  628. 2025-1-11 14:07:06-debug: Query all assets info in project
  629. 2025-1-11 14:07:06-debug: init custom config: keepNodeUuid: false, useCache: true
  630. 2025-1-11 14:07:06-debug: 查询 Asset Bundle start, progress: 0%
  631. 2025-1-11 14:07:06-debug: // ---- build task 查询 Asset Bundle ----
  632. 2025-1-11 14:07: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  633. 2025-1-11 14:07:06-debug: Number of all scripts: 99
  634. 2025-1-11 14:07:06-debug: Number of other assets: 599
  635. 2025-1-11 14:07:06-debug: Number of all scenes: 3
  636. 2025-1-11 14:07:06-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  637. 2025-1-11 14:07:06-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  638. 2025-1-11 14:07:06-debug: // ---- build task 查询 Asset Bundle ----
  639. 2025-1-11 14:07:06-debug: [Build Memory track]: 查询 Asset Bundle start:172.29MB, end 171.31MB, increase: -1000.48KB
  640. 2025-1-11 14:07:06-debug: 查询 Asset Bundle start, progress: 5%
  641. 2025-1-11 14:07:06-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  642. 2025-1-11 14:07:06-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  643. 2025-1-11 14:07:06-debug: [Build Memory track]: 查询 Asset Bundle start:171.35MB, end 171.49MB, increase: 150.34KB
  644. 2025-1-11 14:07:06-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  645. 2025-1-11 14:07:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  646. 2025-1-11 14:07:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  647. 2025-1-11 14:07:06-debug: // ---- build task 填充脚本数据到 settings.json ----
  648. 2025-1-11 14:07:06-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.53MB, end 171.55MB, increase: 28.88KB
  649. 2025-1-11 14:07:06-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  650. 2025-1-11 14:07:06-debug: 填充脚本数据到 settings.json start, progress: 12%
  651. 2025-1-11 14:07:06-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  652. 2025-1-11 14:07:06-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  653. 2025-1-11 14:07:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  654. 2025-1-11 14:07:06-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.59MB, end 171.62MB, increase: 32.34KB
  655. 2025-1-11 14:07:06-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  656. 2025-1-11 14:07:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  657. 2025-1-11 14:07:06-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  658. 2025-1-11 14:07:06-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.65MB, end 171.79MB, increase: 140.75KB
  659. 2025-1-11 14:08:20-debug: refresh db internal success
  660. 2025-1-11 14:08:20-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  661. 2025-1-11 14:08:20-debug: refresh db assets success
  662. 2025-1-11 14:08:20-debug: Run asset db hook engine-extends:afterRefresh ...
  663. 2025-1-11 14:08:20-debug: Run asset db hook engine-extends:afterRefresh success!
  664. 2025-1-11 14:08:20-debug: asset-db:refresh-all-database (78ms)
  665. 2025-1-11 14:08:21-debug: Query all assets info in project
  666. 2025-1-11 14:08:21-debug: init custom config: keepNodeUuid: false, useCache: true
  667. 2025-1-11 14:08:21-debug: 查询 Asset Bundle start, progress: 0%
  668. 2025-1-11 14:08:21-debug: // ---- build task 查询 Asset Bundle ----
  669. 2025-1-11 14:08: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  670. 2025-1-11 14:08:21-debug: Number of all scenes: 3
  671. 2025-1-11 14:08:21-debug: Number of all scripts: 99
  672. 2025-1-11 14:08:21-debug: Number of other assets: 599
  673. 2025-1-11 14:08:21-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  674. 2025-1-11 14:08:21-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  675. 2025-1-11 14:08:21-debug: // ---- build task 查询 Asset Bundle ----
  676. 2025-1-11 14:08:21-debug: [Build Memory track]: 查询 Asset Bundle start:173.51MB, end 173.61MB, increase: 106.82KB
  677. 2025-1-11 14:08:21-debug: 查询 Asset Bundle start, progress: 5%
  678. 2025-1-11 14:08:21-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  679. 2025-1-11 14:08:21-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  680. 2025-1-11 14:08:21-debug: [Build Memory track]: 查询 Asset Bundle start:173.65MB, end 172.96MB, increase: -702.58KB
  681. 2025-1-11 14:08:21-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  682. 2025-1-11 14:08:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  683. 2025-1-11 14:08:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  684. 2025-1-11 14:08:21-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.00MB, end 173.02MB, increase: 27.53KB
  685. 2025-1-11 14:08:21-debug: 填充脚本数据到 settings.json start, progress: 12%
  686. 2025-1-11 14:08:21-debug: // ---- build task 填充脚本数据到 settings.json ----
  687. 2025-1-11 14:08:21-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  688. 2025-1-11 14:08:21-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  689. 2025-1-11 14:08:21-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  690. 2025-1-11 14:08:21-debug: [Build Memory track]: 填充脚本数据到 settings.json start:173.06MB, end 173.08MB, increase: 28.43KB
  691. 2025-1-11 14:08:21-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  692. 2025-1-11 14:08:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  693. 2025-1-11 14:08:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (43ms)
  694. 2025-1-11 14:08:21-debug: run build task 整理部分构建选项内数据到 settings.json success in 43 ms√, progress: 15%
  695. 2025-1-11 14:08:21-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.12MB, end 157.91MB, increase: -15569.65KB
  696. 2025-1-11 14:09:15-debug: refresh db internal success
  697. 2025-1-11 14:09:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json background: #aaff85; color: #000; color: #000;
  698. 2025-1-11 14:09:15-debug: Run asset db hook engine-extends:afterRefresh ...
  699. 2025-1-11 14:09:15-debug: Run asset db hook engine-extends:afterRefresh success!
  700. 2025-1-11 14:09:15-debug: refresh db assets success
  701. 2025-1-11 14:09:15-debug: asset-db:refresh-all-database (81ms)
  702. 2025-1-11 14:09:16-debug: Query all assets info in project
  703. 2025-1-11 14:09:16-debug: init custom config: keepNodeUuid: false, useCache: true
  704. 2025-1-11 14:09:16-debug: 查询 Asset Bundle start, progress: 0%
  705. 2025-1-11 14:09:16-debug: // ---- build task 查询 Asset Bundle ----
  706. 2025-1-11 14:09: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  707. 2025-1-11 14:09:16-debug: Number of all scenes: 3
  708. 2025-1-11 14:09:16-debug: Number of other assets: 599
  709. 2025-1-11 14:09:16-debug: Number of all scripts: 99
  710. 2025-1-11 14:09:16-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  711. 2025-1-11 14:09:16-debug: [Build Memory track]: 查询 Asset Bundle start:160.05MB, end 160.20MB, increase: 154.13KB
  712. 2025-1-11 14:09:16-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  713. 2025-1-11 14:09:16-debug: 查询 Asset Bundle start, progress: 5%
  714. 2025-1-11 14:09:16-debug: // ---- build task 查询 Asset Bundle ----
  715. 2025-1-11 14:09:16-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  716. 2025-1-11 14:09:16-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  717. 2025-1-11 14:09:16-debug: [Build Memory track]: 查询 Asset Bundle start:160.24MB, end 160.38MB, increase: 151.46KB
  718. 2025-1-11 14:09:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  719. 2025-1-11 14:09:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  720. 2025-1-11 14:09:16-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  721. 2025-1-11 14:09:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.42MB, end 160.44MB, increase: 19.24KB
  722. 2025-1-11 14:09:16-debug: // ---- build task 填充脚本数据到 settings.json ----
  723. 2025-1-11 14:09:16-debug: 填充脚本数据到 settings.json start, progress: 12%
  724. 2025-1-11 14:09:16-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  725. 2025-1-11 14:09:16-debug: [Build Memory track]: 填充脚本数据到 settings.json start:160.47MB, end 160.49MB, increase: 18.97KB
  726. 2025-1-11 14:09:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  727. 2025-1-11 14:09:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  728. 2025-1-11 14:09:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  729. 2025-1-11 14:09:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  730. 2025-1-11 14:09:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.52MB, end 160.65MB, increase: 132.85KB
  731. 2025-1-11 14:09:36-debug: refresh db internal success
  732. 2025-1-11 14:09:36-debug: refresh db assets success
  733. 2025-1-11 14:09:36-debug: Run asset db hook engine-extends:afterRefresh ...
  734. 2025-1-11 14:09:36-debug: Run asset db hook engine-extends:afterRefresh success!
  735. 2025-1-11 14:09:36-debug: asset-db:refresh-all-database (76ms)
  736. 2025-1-11 14:10:04-debug: refresh db internal success
  737. 2025-1-11 14:10:04-debug: refresh db assets success
  738. 2025-1-11 14:10:04-debug: Run asset db hook engine-extends:afterRefresh ...
  739. 2025-1-11 14:10:04-debug: Run asset db hook engine-extends:afterRefresh success!
  740. 2025-1-11 14:10:04-debug: asset-db:refresh-all-database (78ms)
  741. 2025-1-11 14:10:04-debug: asset-db:worker-effect-data-processing (1ms)
  742. 2025-1-11 14:10:04-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  743. 2025-1-11 14:10:07-debug: refresh db internal success
  744. 2025-1-11 14:10:07-debug: refresh db assets success
  745. 2025-1-11 14:10:07-debug: Run asset db hook engine-extends:afterRefresh ...
  746. 2025-1-11 14:10:07-debug: Run asset db hook engine-extends:afterRefresh success!
  747. 2025-1-11 14:10:07-debug: asset-db:refresh-all-database (77ms)
  748. 2025-1-11 14:10:07-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  749. 2025-1-11 14:10:08-debug: refresh db internal success
  750. 2025-1-11 14:10:08-debug: refresh db assets success
  751. 2025-1-11 14:10:08-debug: Run asset db hook engine-extends:afterRefresh ...
  752. 2025-1-11 14:10:08-debug: Run asset db hook engine-extends:afterRefresh success!
  753. 2025-1-11 14:10:08-debug: asset-db:refresh-all-database (68ms)
  754. 2025-1-11 14:10:08-debug: asset-db:worker-effect-data-processing (1ms)
  755. 2025-1-11 14:10:08-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  756. 2025-1-11 14:10:11-debug: refresh db internal success
  757. 2025-1-11 14:10:11-debug: Run asset db hook engine-extends:afterRefresh ...
  758. 2025-1-11 14:10:11-debug: Run asset db hook engine-extends:afterRefresh success!
  759. 2025-1-11 14:10:11-debug: refresh db assets success
  760. 2025-1-11 14:10:11-debug: asset-db:refresh-all-database (75ms)
  761. 2025-1-11 14:10:11-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  762. 2025-1-11 14:10:11-debug: asset-db:worker-effect-data-processing (1ms)
  763. 2025-1-11 14:10:41-debug: refresh db internal success
  764. 2025-1-11 14:10:41-debug: refresh db assets success
  765. 2025-1-11 14:10:41-debug: Run asset db hook engine-extends:afterRefresh ...
  766. 2025-1-11 14:10:41-debug: Run asset db hook engine-extends:afterRefresh success!
  767. 2025-1-11 14:10:41-debug: asset-db:refresh-all-database (79ms)
  768. 2025-1-11 14:10:41-debug: asset-db:worker-effect-data-processing (1ms)
  769. 2025-1-11 14:10:41-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  770. 2025-1-11 14:10:52-debug: refresh db internal success
  771. 2025-1-11 14:10:52-debug: refresh db assets success
  772. 2025-1-11 14:10:52-debug: Run asset db hook engine-extends:afterRefresh ...
  773. 2025-1-11 14:10:52-debug: Run asset db hook engine-extends:afterRefresh success!
  774. 2025-1-11 14:10:52-debug: asset-db:refresh-all-database (76ms)
  775. 2025-1-11 14:10:52-debug: asset-db:worker-effect-data-processing (2ms)
  776. 2025-1-11 14:10:52-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  777. 2025-1-11 14:15:00-debug: refresh db internal success
  778. 2025-1-11 14:15:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Main\UI_Main.ts background: #aaff85; color: #000; color: #000;
  779. 2025-1-11 14:15:00-debug: Run asset db hook engine-extends:afterRefresh ...
  780. 2025-1-11 14:15:00-debug: Run asset db hook engine-extends:afterRefresh success!
  781. 2025-1-11 14:15:00-debug: refresh db assets success
  782. 2025-1-11 14:15:00-debug: asset-db:refresh-all-database (83ms)
  783. 2025-1-11 14:15:00-debug: asset-db:worker-effect-data-processing (1ms)
  784. 2025-1-11 14:15:00-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  785. 2025-1-11 14:17:45-debug: refresh db internal success
  786. 2025-1-11 14:17:45-debug: refresh db assets success
  787. 2025-1-11 14:17:45-debug: Run asset db hook engine-extends:afterRefresh ...
  788. 2025-1-11 14:17:45-debug: Run asset db hook engine-extends:afterRefresh success!
  789. 2025-1-11 14:17:45-debug: asset-db:refresh-all-database (77ms)
  790. 2025-1-11 14:20:03-debug: refresh db internal success
  791. 2025-1-11 14:20:03-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  792. 2025-1-11 14:20:03-debug: refresh db assets success
  793. 2025-1-11 14:20:03-debug: Run asset db hook engine-extends:afterRefresh ...
  794. 2025-1-11 14:20:03-debug: Run asset db hook engine-extends:afterRefresh success!
  795. 2025-1-11 14:20:03-debug: asset-db:refresh-all-database (83ms)
  796. 2025-1-11 14:20:03-debug: asset-db:worker-effect-data-processing (1ms)
  797. 2025-1-11 14:20:03-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  798. 2025-1-11 14:20:04-debug: Query all assets info in project
  799. 2025-1-11 14:20:04-debug: init custom config: keepNodeUuid: false, useCache: true
  800. 2025-1-11 14:20:04-debug: 查询 Asset Bundle start, progress: 0%
  801. 2025-1-11 14:20:04-debug: // ---- build task 查询 Asset Bundle ----
  802. 2025-1-11 14:20:04-debug: Number of all scenes: 3
  803. 2025-1-11 14:20:04-debug: Number of all scripts: 99
  804. 2025-1-11 14:20: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  805. 2025-1-11 14:20:04-debug: Number of other assets: 599
  806. 2025-1-11 14:20:04-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  807. 2025-1-11 14:20:04-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  808. 2025-1-11 14:20:04-debug: // ---- build task 查询 Asset Bundle ----
  809. 2025-1-11 14:20:04-debug: [Build Memory track]: 查询 Asset Bundle start:171.32MB, end 171.40MB, increase: 82.50KB
  810. 2025-1-11 14:20:04-debug: 查询 Asset Bundle start, progress: 5%
  811. 2025-1-11 14:20:04-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  812. 2025-1-11 14:20:04-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  813. 2025-1-11 14:20:04-debug: [Build Memory track]: 查询 Asset Bundle start:171.44MB, end 170.75MB, increase: -701.15KB
  814. 2025-1-11 14:20:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  815. 2025-1-11 14:20:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  816. 2025-1-11 14:20:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  817. 2025-1-11 14:20:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.79MB, end 170.82MB, increase: 29.64KB
  818. 2025-1-11 14:20:04-debug: 填充脚本数据到 settings.json start, progress: 12%
  819. 2025-1-11 14:20:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  820. 2025-1-11 14:20:04-debug: // ---- build task 填充脚本数据到 settings.json ----
  821. 2025-1-11 14:20:04-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  822. 2025-1-11 14:20:04-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.85MB, end 170.87MB, increase: 19.36KB
  823. 2025-1-11 14:20:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  824. 2025-1-11 14:20:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  825. 2025-1-11 14:20:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  826. 2025-1-11 14:20:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  827. 2025-1-11 14:20:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.90MB, end 171.03MB, increase: 131.62KB
  828. 2025-1-11 14:20:13-debug: refresh db internal success
  829. 2025-1-11 14:20:14-debug: Run asset db hook engine-extends:afterRefresh ...
  830. 2025-1-11 14:20:14-debug: Run asset db hook engine-extends:afterRefresh success!
  831. 2025-1-11 14:20:14-debug: refresh db assets success
  832. 2025-1-11 14:20:14-debug: asset-db:refresh-all-database (73ms)
  833. 2025-1-11 14:22:30-debug: refresh db internal success
  834. 2025-1-11 14:22:30-debug: refresh db assets success
  835. 2025-1-11 14:22:30-debug: Run asset db hook engine-extends:afterRefresh ...
  836. 2025-1-11 14:22:30-debug: Run asset db hook engine-extends:afterRefresh success!
  837. 2025-1-11 14:22:30-debug: asset-db:refresh-all-database (77ms)
  838. 2025-1-11 14:22:30-debug: asset-db:worker-effect-data-processing (1ms)
  839. 2025-1-11 14:22:30-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  840. 2025-1-11 14:22:31-debug: Query all assets info in project
  841. 2025-1-11 14:22:31-debug: init custom config: keepNodeUuid: false, useCache: true
  842. 2025-1-11 14:22:31-debug: 查询 Asset Bundle start, progress: 0%
  843. 2025-1-11 14:22:31-debug: // ---- build task 查询 Asset Bundle ----
  844. 2025-1-11 14:22:31-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  845. 2025-1-11 14:22:31-debug: Number of all scenes: 3
  846. 2025-1-11 14:22:31-debug: Number of other assets: 599
  847. 2025-1-11 14:22:31-debug: Number of all scripts: 99
  848. 2025-1-11 14:22:31-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  849. 2025-1-11 14:22:31-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  850. 2025-1-11 14:22:31-debug: [Build Memory track]: 查询 Asset Bundle start:173.50MB, end 173.75MB, increase: 254.19KB
  851. 2025-1-11 14:22:31-debug: // ---- build task 查询 Asset Bundle ----
  852. 2025-1-11 14:22:31-debug: 查询 Asset Bundle start, progress: 5%
  853. 2025-1-11 14:22:31-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  854. 2025-1-11 14:22:31-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  855. 2025-1-11 14:22:31-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  856. 2025-1-11 14:22:31-debug: [Build Memory track]: 查询 Asset Bundle start:173.79MB, end 173.93MB, increase: 150.18KB
  857. 2025-1-11 14:22:31-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  858. 2025-1-11 14:22:31-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  859. 2025-1-11 14:22:31-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  860. 2025-1-11 14:22:31-debug: // ---- build task 填充脚本数据到 settings.json ----
  861. 2025-1-11 14:22:31-debug: 填充脚本数据到 settings.json start, progress: 12%
  862. 2025-1-11 14:22:31-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.97MB, end 174.00MB, increase: 29.96KB
  863. 2025-1-11 14:22:31-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  864. 2025-1-11 14:22:31-debug: [Build Memory track]: 填充脚本数据到 settings.json start:174.03MB, end 174.06MB, increase: 28.38KB
  865. 2025-1-11 14:22:31-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  866. 2025-1-11 14:22:31-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  867. 2025-1-11 14:22:31-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  868. 2025-1-11 14:22:31-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  869. 2025-1-11 14:22:31-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  870. 2025-1-11 14:22:31-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.09MB, end 174.22MB, increase: 133.79KB
  871. 2025-1-11 14:22:39-debug: refresh db internal success
  872. 2025-1-11 14:22:39-debug: refresh db assets success
  873. 2025-1-11 14:22:39-debug: Run asset db hook engine-extends:afterRefresh ...
  874. 2025-1-11 14:22:39-debug: Run asset db hook engine-extends:afterRefresh success!
  875. 2025-1-11 14:22:39-debug: asset-db:refresh-all-database (75ms)
  876. 2025-1-11 14:23:21-debug: refresh db internal success
  877. 2025-1-11 14:23:21-debug: refresh db assets success
  878. 2025-1-11 14:23:21-debug: Run asset db hook engine-extends:afterRefresh ...
  879. 2025-1-11 14:23:21-debug: Run asset db hook engine-extends:afterRefresh success!
  880. 2025-1-11 14:23:21-debug: asset-db:refresh-all-database (75ms)
  881. 2025-1-11 14:23:21-debug: asset-db:worker-effect-data-processing (1ms)
  882. 2025-1-11 14:23:21-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  883. 2025-1-11 14:23:21-debug: Query all assets info in project
  884. 2025-1-11 14:23:21-debug: init custom config: keepNodeUuid: false, useCache: true
  885. 2025-1-11 14:23:21-debug: 查询 Asset Bundle start, progress: 0%
  886. 2025-1-11 14:23:21-debug: // ---- build task 查询 Asset Bundle ----
  887. 2025-1-11 14:23: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  888. 2025-1-11 14:23:21-debug: Number of all scripts: 99
  889. 2025-1-11 14:23:21-debug: Number of other assets: 599
  890. 2025-1-11 14:23:21-debug: Number of all scenes: 3
  891. 2025-1-11 14:23:21-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  892. 2025-1-11 14:23:21-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  893. 2025-1-11 14:23:21-debug: [Build Memory track]: 查询 Asset Bundle start:160.40MB, end 160.73MB, increase: 343.63KB
  894. 2025-1-11 14:23:21-debug: // ---- build task 查询 Asset Bundle ----
  895. 2025-1-11 14:23:21-debug: 查询 Asset Bundle start, progress: 5%
  896. 2025-1-11 14:23:21-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  897. 2025-1-11 14:23:21-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  898. 2025-1-11 14:23:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  899. 2025-1-11 14:23:21-debug: [Build Memory track]: 查询 Asset Bundle start:160.77MB, end 160.90MB, increase: 136.90KB
  900. 2025-1-11 14:23:21-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  901. 2025-1-11 14:23:21-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  902. 2025-1-11 14:23:21-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.94MB, end 160.95MB, increase: 18.93KB
  903. 2025-1-11 14:23:21-debug: 填充脚本数据到 settings.json start, progress: 12%
  904. 2025-1-11 14:23:21-debug: // ---- build task 填充脚本数据到 settings.json ----
  905. 2025-1-11 14:23:21-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  906. 2025-1-11 14:23:21-debug: [Build Memory track]: 填充脚本数据到 settings.json start:160.99MB, end 161.01MB, increase: 19.38KB
  907. 2025-1-11 14:23:21-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  908. 2025-1-11 14:23:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  909. 2025-1-11 14:23:21-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  910. 2025-1-11 14:23:21-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  911. 2025-1-11 14:23:21-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.04MB, end 161.17MB, increase: 133.05KB
  912. 2025-1-11 14:23:44-debug: refresh db internal success
  913. 2025-1-11 14:23:44-debug: refresh db assets success
  914. 2025-1-11 14:23:44-debug: Run asset db hook engine-extends:afterRefresh ...
  915. 2025-1-11 14:23:44-debug: Run asset db hook engine-extends:afterRefresh success!
  916. 2025-1-11 14:23:44-debug: asset-db:refresh-all-database (76ms)
  917. 2025-1-11 14:23:44-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  918. 2025-1-11 14:24:08-debug: refresh db internal success
  919. 2025-1-11 14:24:08-debug: refresh db assets success
  920. 2025-1-11 14:24:08-debug: Run asset db hook engine-extends:afterRefresh success!
  921. 2025-1-11 14:24:08-debug: Run asset db hook engine-extends:afterRefresh ...
  922. 2025-1-11 14:24:08-debug: asset-db:refresh-all-database (77ms)
  923. 2025-1-11 14:24:08-debug: asset-db:worker-effect-data-processing (1ms)
  924. 2025-1-11 14:24:08-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  925. 2025-1-11 14:24:59-debug: refresh db internal success
  926. 2025-1-11 14:25:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_extra\table_json\level.json background: #aaff85; color: #000; color: #000;
  927. 2025-1-11 14:25:00-debug: refresh db assets success
  928. 2025-1-11 14:25:00-debug: Run asset db hook engine-extends:afterRefresh ...
  929. 2025-1-11 14:25:00-debug: Run asset db hook engine-extends:afterRefresh success!
  930. 2025-1-11 14:25:00-debug: asset-db:refresh-all-database (242ms)
  931. 2025-1-11 14:25:00-debug: asset-db:worker-effect-data-processing (1ms)
  932. 2025-1-11 14:25:00-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  933. 2025-1-11 14:25:00-debug: Query all assets info in project
  934. 2025-1-11 14:25:00-debug: init custom config: keepNodeUuid: false, useCache: true
  935. 2025-1-11 14:25:00-debug: 查询 Asset Bundle start, progress: 0%
  936. 2025-1-11 14:25:00-debug: // ---- build task 查询 Asset Bundle ----
  937. 2025-1-11 14:25: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  938. 2025-1-11 14:25:00-debug: Number of all scripts: 99
  939. 2025-1-11 14:25:00-debug: Number of other assets: 599
  940. 2025-1-11 14:25:00-debug: Number of all scenes: 3
  941. 2025-1-11 14:25:00-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  942. 2025-1-11 14:25:00-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  943. 2025-1-11 14:25:00-debug: [Build Memory track]: 查询 Asset Bundle start:166.66MB, end 165.02MB, increase: -1681.81KB
  944. 2025-1-11 14:25:00-debug: 查询 Asset Bundle start, progress: 5%
  945. 2025-1-11 14:25:00-debug: // ---- build task 查询 Asset Bundle ----
  946. 2025-1-11 14:25:00-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  947. 2025-1-11 14:25:00-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 10%
  948. 2025-1-11 14:25:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  949. 2025-1-11 14:25:00-debug: [Build Memory track]: 查询 Asset Bundle start:165.06MB, end 165.19MB, increase: 136.57KB
  950. 2025-1-11 14:25:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  951. 2025-1-11 14:25:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  952. 2025-1-11 14:25:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  953. 2025-1-11 14:25:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.22MB, end 165.25MB, increase: 31.21KB
  954. 2025-1-11 14:25:00-debug: // ---- build task 填充脚本数据到 settings.json ----
  955. 2025-1-11 14:25:00-debug: 填充脚本数据到 settings.json start, progress: 12%
  956. 2025-1-11 14:25:00-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  957. 2025-1-11 14:25:00-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.29MB, end 165.30MB, increase: 18.26KB
  958. 2025-1-11 14:25:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  959. 2025-1-11 14:25:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  960. 2025-1-11 14:25:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  961. 2025-1-11 14:25:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.34MB, end 165.47MB, increase: 131.33KB
  962. 2025-1-11 14:25:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  963. 2025-1-11 14:25:47-debug: refresh db internal success
  964. 2025-1-11 14:25:47-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  965. 2025-1-11 14:25:47-debug: refresh db assets success
  966. 2025-1-11 14:25:47-debug: Run asset db hook engine-extends:afterRefresh ...
  967. 2025-1-11 14:25:47-debug: Run asset db hook engine-extends:afterRefresh success!
  968. 2025-1-11 14:25:47-debug: asset-db:refresh-all-database (77ms)
  969. 2025-1-11 14:25:48-debug: Query all assets info in project
  970. 2025-1-11 14:25:48-debug: init custom config: keepNodeUuid: false, useCache: true
  971. 2025-1-11 14:25:48-debug: 查询 Asset Bundle start, progress: 0%
  972. 2025-1-11 14:25:48-debug: // ---- build task 查询 Asset Bundle ----
  973. 2025-1-11 14:25: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  974. 2025-1-11 14:25:48-debug: Number of all scenes: 3
  975. 2025-1-11 14:25:48-debug: Number of all scripts: 99
  976. 2025-1-11 14:25:48-debug: Number of other assets: 599
  977. 2025-1-11 14:25:48-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  978. 2025-1-11 14:25:48-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  979. 2025-1-11 14:25:48-debug: [Build Memory track]: 查询 Asset Bundle start:166.03MB, end 166.32MB, increase: 300.79KB
  980. 2025-1-11 14:25:48-debug: 查询 Asset Bundle start, progress: 5%
  981. 2025-1-11 14:25:48-debug: // ---- build task 查询 Asset Bundle ----
  982. 2025-1-11 14:25:48-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  983. 2025-1-11 14:25:48-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  984. 2025-1-11 14:25:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  985. 2025-1-11 14:25:48-debug: [Build Memory track]: 查询 Asset Bundle start:166.35MB, end 166.49MB, increase: 136.66KB
  986. 2025-1-11 14:25:48-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  987. 2025-1-11 14:25:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  988. 2025-1-11 14:25:48-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  989. 2025-1-11 14:25:48-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.52MB, end 166.55MB, increase: 29.89KB
  990. 2025-1-11 14:25:48-debug: // ---- build task 填充脚本数据到 settings.json ----
  991. 2025-1-11 14:25:48-debug: 填充脚本数据到 settings.json start, progress: 12%
  992. 2025-1-11 14:25:48-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  993. 2025-1-11 14:25:48-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  994. 2025-1-11 14:25:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  995. 2025-1-11 14:25:48-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.58MB, end 166.62MB, increase: 31.74KB
  996. 2025-1-11 14:25:48-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  997. 2025-1-11 14:25:48-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (15ms)
  998. 2025-1-11 14:25:48-debug: run build task 整理部分构建选项内数据到 settings.json success in 15 ms√, progress: 15%
  999. 2025-1-11 14:25:48-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.65MB, end 166.79MB, increase: 145.29KB
  1000. 2025-1-11 14:25:49-debug: Query all assets info in project
  1001. 2025-1-11 14:25:49-debug: init custom config: keepNodeUuid: false, useCache: true
  1002. 2025-1-11 14:25:49-debug: 查询 Asset Bundle start, progress: 0%
  1003. 2025-1-11 14:25:49-debug: // ---- build task 查询 Asset Bundle ----
  1004. 2025-1-11 14:25: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1005. 2025-1-11 14:25:49-debug: Number of all scenes: 3
  1006. 2025-1-11 14:25:49-debug: Number of all scripts: 99
  1007. 2025-1-11 14:25:49-debug: Number of other assets: 599
  1008. 2025-1-11 14:25:49-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  1009. 2025-1-11 14:25:49-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  1010. 2025-1-11 14:25:49-debug: 查询 Asset Bundle start, progress: 5%
  1011. 2025-1-11 14:25:49-debug: [Build Memory track]: 查询 Asset Bundle start:166.59MB, end 166.95MB, increase: 376.07KB
  1012. 2025-1-11 14:25:49-debug: // ---- build task 查询 Asset Bundle ----
  1013. 2025-1-11 14:25:49-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1014. 2025-1-11 14:25:49-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1015. 2025-1-11 14:25:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1016. 2025-1-11 14:25:49-debug: [Build Memory track]: 查询 Asset Bundle start:166.99MB, end 167.12MB, increase: 136.98KB
  1017. 2025-1-11 14:25:49-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1018. 2025-1-11 14:25:49-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1019. 2025-1-11 14:25:49-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.15MB, end 167.17MB, increase: 19.57KB
  1020. 2025-1-11 14:25:49-debug: // ---- build task 填充脚本数据到 settings.json ----
  1021. 2025-1-11 14:25:49-debug: 填充脚本数据到 settings.json start, progress: 12%
  1022. 2025-1-11 14:25:49-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1023. 2025-1-11 14:25:49-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1024. 2025-1-11 14:25:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1025. 2025-1-11 14:25:49-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.21MB, end 167.24MB, increase: 30.00KB
  1026. 2025-1-11 14:25:49-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1027. 2025-1-11 14:25:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1028. 2025-1-11 14:25:49-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  1029. 2025-1-11 14:25:49-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.27MB, end 167.41MB, increase: 142.34KB
  1030. 2025-1-11 14:28:46-debug: refresh db internal success
  1031. 2025-1-11 14:28:46-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  1032. 2025-1-11 14:28:46-debug: Run asset db hook engine-extends:afterRefresh ...
  1033. 2025-1-11 14:28:46-debug: Run asset db hook engine-extends:afterRefresh success!
  1034. 2025-1-11 14:28:46-debug: refresh db assets success
  1035. 2025-1-11 14:28:46-debug: asset-db:refresh-all-database (80ms)
  1036. 2025-1-11 14:28:46-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1037. 2025-1-11 14:28:47-debug: Query all assets info in project
  1038. 2025-1-11 14:28:47-debug: init custom config: keepNodeUuid: false, useCache: true
  1039. 2025-1-11 14:28:47-debug: 查询 Asset Bundle start, progress: 0%
  1040. 2025-1-11 14:28:47-debug: // ---- build task 查询 Asset Bundle ----
  1041. 2025-1-11 14:28: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1042. 2025-1-11 14:28:47-debug: Number of other assets: 599
  1043. 2025-1-11 14:28:47-debug: Number of all scenes: 3
  1044. 2025-1-11 14:28:47-debug: Number of all scripts: 99
  1045. 2025-1-11 14:28:47-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  1046. 2025-1-11 14:28:47-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  1047. 2025-1-11 14:28:47-debug: 查询 Asset Bundle start, progress: 5%
  1048. 2025-1-11 14:28:47-debug: [Build Memory track]: 查询 Asset Bundle start:167.97MB, end 169.11MB, increase: 1.14MB
  1049. 2025-1-11 14:28:47-debug: // ---- build task 查询 Asset Bundle ----
  1050. 2025-1-11 14:28:47-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  1051. 2025-1-11 14:28:47-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  1052. 2025-1-11 14:28:47-debug: [Build Memory track]: 查询 Asset Bundle start:169.14MB, end 169.28MB, increase: 137.50KB
  1053. 2025-1-11 14:28:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1054. 2025-1-11 14:28:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1055. 2025-1-11 14:28:47-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1056. 2025-1-11 14:28:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.31MB, end 169.33MB, increase: 19.93KB
  1057. 2025-1-11 14:28:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  1058. 2025-1-11 14:28:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  1059. 2025-1-11 14:28:47-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1060. 2025-1-11 14:28:47-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1061. 2025-1-11 14:28:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.36MB, end 167.89MB, increase: -1506.05KB
  1062. 2025-1-11 14:28:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1063. 2025-1-11 14:28:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1064. 2025-1-11 14:28:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  1065. 2025-1-11 14:28:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  1066. 2025-1-11 14:28:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.93MB, end 168.06MB, increase: 137.48KB
  1067. 2025-1-11 14:28:47-debug: Query all assets info in project
  1068. 2025-1-11 14:28:47-debug: init custom config: keepNodeUuid: false, useCache: true
  1069. 2025-1-11 14:28:47-debug: 查询 Asset Bundle start, progress: 0%
  1070. 2025-1-11 14:28:47-debug: // ---- build task 查询 Asset Bundle ----
  1071. 2025-1-11 14:28: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1072. 2025-1-11 14:28:47-debug: Number of all scenes: 3
  1073. 2025-1-11 14:28:47-debug: Number of all scripts: 99
  1074. 2025-1-11 14:28:47-debug: Number of other assets: 599
  1075. 2025-1-11 14:28:47-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  1076. 2025-1-11 14:28:47-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  1077. 2025-1-11 14:28:47-debug: // ---- build task 查询 Asset Bundle ----
  1078. 2025-1-11 14:28:47-debug: [Build Memory track]: 查询 Asset Bundle start:168.55MB, end 168.01MB, increase: -551.47KB
  1079. 2025-1-11 14:28:47-debug: 查询 Asset Bundle start, progress: 5%
  1080. 2025-1-11 14:28:47-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  1081. 2025-1-11 14:28:47-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  1082. 2025-1-11 14:28:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1083. 2025-1-11 14:28:47-debug: [Build Memory track]: 查询 Asset Bundle start:168.05MB, end 168.18MB, increase: 136.05KB
  1084. 2025-1-11 14:28:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1085. 2025-1-11 14:28:47-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1086. 2025-1-11 14:28:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.21MB, end 168.23MB, increase: 20.11KB
  1087. 2025-1-11 14:28:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  1088. 2025-1-11 14:28:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  1089. 2025-1-11 14:28:47-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1090. 2025-1-11 14:28:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:168.27MB, end 168.28MB, increase: 17.91KB
  1091. 2025-1-11 14:28:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1092. 2025-1-11 14:28:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1093. 2025-1-11 14:28:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1094. 2025-1-11 14:28:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1095. 2025-1-11 14:28:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.32MB, end 168.46MB, increase: 142.28KB
  1096. 2025-1-11 14:28:54-debug: refresh db internal success
  1097. 2025-1-11 14:28:54-debug: refresh db assets success
  1098. 2025-1-11 14:28:54-debug: Run asset db hook engine-extends:afterRefresh ...
  1099. 2025-1-11 14:28:54-debug: Run asset db hook engine-extends:afterRefresh success!
  1100. 2025-1-11 14:28:54-debug: asset-db:refresh-all-database (75ms)
  1101. 2025-1-11 14:28:54-debug: asset-db:worker-effect-data-processing (1ms)
  1102. 2025-1-11 14:28:54-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1103. 2025-1-11 14:29:26-debug: Query all assets info in project
  1104. 2025-1-11 14:29:26-debug: init custom config: keepNodeUuid: false, useCache: true
  1105. 2025-1-11 14:29:26-debug: 查询 Asset Bundle start, progress: 0%
  1106. 2025-1-11 14:29:26-debug: // ---- build task 查询 Asset Bundle ----
  1107. 2025-1-11 14:29:26-debug: Number of all scenes: 3
  1108. 2025-1-11 14:29:26-debug: Number of other assets: 599
  1109. 2025-1-11 14:29:26-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1110. 2025-1-11 14:29:26-debug: Number of all scripts: 99
  1111. 2025-1-11 14:29:26-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1112. 2025-1-11 14:29:26-debug: [Build Memory track]: 查询 Asset Bundle start:169.50MB, end 170.64MB, increase: 1.14MB
  1113. 2025-1-11 14:29:26-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  1114. 2025-1-11 14:29:26-debug: 查询 Asset Bundle start, progress: 5%
  1115. 2025-1-11 14:29:26-debug: // ---- build task 查询 Asset Bundle ----
  1116. 2025-1-11 14:29:26-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  1117. 2025-1-11 14:29:26-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  1118. 2025-1-11 14:29:26-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1119. 2025-1-11 14:29:26-debug: [Build Memory track]: 查询 Asset Bundle start:170.67MB, end 169.38MB, increase: -1324.07KB
  1120. 2025-1-11 14:29:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1121. 2025-1-11 14:29:26-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1122. 2025-1-11 14:29:26-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.41MB, end 169.43MB, increase: 18.61KB
  1123. 2025-1-11 14:29:26-debug: // ---- build task 填充脚本数据到 settings.json ----
  1124. 2025-1-11 14:29:26-debug: 填充脚本数据到 settings.json start, progress: 12%
  1125. 2025-1-11 14:29:26-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1126. 2025-1-11 14:29:26-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1127. 2025-1-11 14:29:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1128. 2025-1-11 14:29:26-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.46MB, end 169.49MB, increase: 30.93KB
  1129. 2025-1-11 14:29:26-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1130. 2025-1-11 14:29:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1131. 2025-1-11 14:29:26-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1132. 2025-1-11 14:29:26-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.53MB, end 169.66MB, increase: 140.48KB
  1133. 2025-1-11 14:30:04-debug: refresh db internal success
  1134. 2025-1-11 14:30:04-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  1135. 2025-1-11 14:30:04-debug: refresh db assets success
  1136. 2025-1-11 14:30:04-debug: Run asset db hook engine-extends:afterRefresh ...
  1137. 2025-1-11 14:30:04-debug: Run asset db hook engine-extends:afterRefresh success!
  1138. 2025-1-11 14:30:04-debug: asset-db:refresh-all-database (80ms)
  1139. 2025-1-11 14:30:04-debug: asset-db:worker-effect-data-processing (1ms)
  1140. 2025-1-11 14:30:04-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1141. 2025-1-11 14:30:05-debug: Query all assets info in project
  1142. 2025-1-11 14:30:05-debug: init custom config: keepNodeUuid: false, useCache: true
  1143. 2025-1-11 14:30:05-debug: 查询 Asset Bundle start, progress: 0%
  1144. 2025-1-11 14:30:05-debug: // ---- build task 查询 Asset Bundle ----
  1145. 2025-1-11 14:30:05-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1146. 2025-1-11 14:30:05-debug: Number of all scripts: 99
  1147. 2025-1-11 14:30:05-debug: Number of other assets: 599
  1148. 2025-1-11 14:30:05-debug: Number of all scenes: 3
  1149. 2025-1-11 14:30:05-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1150. 2025-1-11 14:30:05-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  1151. 2025-1-11 14:30:05-debug: // ---- build task 查询 Asset Bundle ----
  1152. 2025-1-11 14:30:05-debug: [Build Memory track]: 查询 Asset Bundle start:171.35MB, end 171.43MB, increase: 83.11KB
  1153. 2025-1-11 14:30:05-debug: 查询 Asset Bundle start, progress: 5%
  1154. 2025-1-11 14:30:05-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  1155. 2025-1-11 14:30:05-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  1156. 2025-1-11 14:30:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1157. 2025-1-11 14:30:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1158. 2025-1-11 14:30:05-debug: [Build Memory track]: 查询 Asset Bundle start:171.46MB, end 170.73MB, increase: -750.69KB
  1159. 2025-1-11 14:30:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1160. 2025-1-11 14:30:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1161. 2025-1-11 14:30:05-debug: // ---- build task 填充脚本数据到 settings.json ----
  1162. 2025-1-11 14:30:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.76MB, end 170.79MB, increase: 30.03KB
  1163. 2025-1-11 14:30:05-debug: 填充脚本数据到 settings.json start, progress: 12%
  1164. 2025-1-11 14:30:05-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1165. 2025-1-11 14:30:05-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1166. 2025-1-11 14:30:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1167. 2025-1-11 14:30:05-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.82MB, end 170.85MB, increase: 29.75KB
  1168. 2025-1-11 14:30:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1169. 2025-1-11 14:30:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1170. 2025-1-11 14:30:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1171. 2025-1-11 14:30:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.89MB, end 171.02MB, increase: 133.30KB
  1172. 2025-1-11 14:30:06-debug: Query all assets info in project
  1173. 2025-1-11 14:30:06-debug: init custom config: keepNodeUuid: false, useCache: true
  1174. 2025-1-11 14:30:06-debug: Query all assets info in project
  1175. 2025-1-11 14:30:06-debug: // ---- build task 查询 Asset Bundle ----
  1176. 2025-1-11 14:30:06-debug: 查询 Asset Bundle start, progress: 0%
  1177. 2025-1-11 14:30: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1178. 2025-1-11 14:30:06-debug: Number of all scripts: 99
  1179. 2025-1-11 14:30:06-debug: Number of other assets: 599
  1180. 2025-1-11 14:30:06-debug: Number of all scenes: 3
  1181. 2025-1-11 14:30:06-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1182. 2025-1-11 14:30:06-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  1183. 2025-1-11 14:30:06-debug: [Build Memory track]: 查询 Asset Bundle start:171.51MB, end 171.04MB, increase: -480.80KB
  1184. 2025-1-11 14:30:06-debug: // ---- build task 查询 Asset Bundle ----
  1185. 2025-1-11 14:30:06-debug: 查询 Asset Bundle start, progress: 5%
  1186. 2025-1-11 14:30:06-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1187. 2025-1-11 14:30:06-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1188. 2025-1-11 14:30:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1189. 2025-1-11 14:30:06-debug: [Build Memory track]: 查询 Asset Bundle start:171.08MB, end 171.22MB, increase: 143.95KB
  1190. 2025-1-11 14:30:06-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1191. 2025-1-11 14:30:06-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1192. 2025-1-11 14:30:06-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.25MB, end 171.27MB, increase: 21.46KB
  1193. 2025-1-11 14:30:06-debug: 填充脚本数据到 settings.json start, progress: 12%
  1194. 2025-1-11 14:30:06-debug: // ---- build task 填充脚本数据到 settings.json ----
  1195. 2025-1-11 14:30:06-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1196. 2025-1-11 14:30:06-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.30MB, end 171.32MB, increase: 18.24KB
  1197. 2025-1-11 14:30:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1198. 2025-1-11 14:30:06-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1199. 2025-1-11 14:30:06-debug: init custom config: keepNodeUuid: false, useCache: true
  1200. 2025-1-11 14:30:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1201. 2025-1-11 14:30:06-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1202. 2025-1-11 14:30:06-debug: // ---- build task 查询 Asset Bundle ----
  1203. 2025-1-11 14:30:06-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.36MB, end 171.67MB, increase: 322.79KB
  1204. 2025-1-11 14:30:06-debug: 查询 Asset Bundle start, progress: 0%
  1205. 2025-1-11 14:30: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1206. 2025-1-11 14:30:06-debug: Number of all scenes: 3
  1207. 2025-1-11 14:30:06-debug: Number of all scripts: 99
  1208. 2025-1-11 14:30:06-debug: Number of other assets: 599
  1209. 2025-1-11 14:30:06-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1210. 2025-1-11 14:30:06-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  1211. 2025-1-11 14:30:06-debug: [Build Memory track]: 查询 Asset Bundle start:171.90MB, end 171.30MB, increase: -613.10KB
  1212. 2025-1-11 14:30:06-debug: 查询 Asset Bundle start, progress: 5%
  1213. 2025-1-11 14:30:06-debug: // ---- build task 查询 Asset Bundle ----
  1214. 2025-1-11 14:30:06-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  1215. 2025-1-11 14:30:06-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  1216. 2025-1-11 14:30:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1217. 2025-1-11 14:30:06-debug: [Build Memory track]: 查询 Asset Bundle start:171.33MB, end 171.47MB, increase: 137.29KB
  1218. 2025-1-11 14:30:06-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1219. 2025-1-11 14:30:06-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1220. 2025-1-11 14:30:06-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.50MB, end 171.52MB, increase: 18.68KB
  1221. 2025-1-11 14:30:06-debug: // ---- build task 填充脚本数据到 settings.json ----
  1222. 2025-1-11 14:30:06-debug: 填充脚本数据到 settings.json start, progress: 12%
  1223. 2025-1-11 14:30:06-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1224. 2025-1-11 14:30:06-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.55MB, end 171.57MB, increase: 19.93KB
  1225. 2025-1-11 14:30:06-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1226. 2025-1-11 14:30:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1227. 2025-1-11 14:30:06-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1228. 2025-1-11 14:30:06-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  1229. 2025-1-11 14:30:06-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.60MB, end 171.73MB, increase: 131.01KB
  1230. 2025-1-11 14:30:16-debug: refresh db internal success
  1231. 2025-1-11 14:30:16-debug: refresh db assets success
  1232. 2025-1-11 14:30:16-debug: Run asset db hook engine-extends:afterRefresh ...
  1233. 2025-1-11 14:30:16-debug: Run asset db hook engine-extends:afterRefresh success!
  1234. 2025-1-11 14:30:16-debug: asset-db:refresh-all-database (74ms)
  1235. 2025-1-11 14:30:16-debug: asset-db:worker-effect-data-processing (1ms)
  1236. 2025-1-11 14:30:16-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1237. 2025-1-11 14:30:25-debug: refresh db internal success
  1238. 2025-1-11 14:30:25-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\Container_Manager.ts background: #aaff85; color: #000; color: #000;
  1239. 2025-1-11 14:30:25-debug: refresh db assets success
  1240. 2025-1-11 14:30:25-debug: Run asset db hook engine-extends:afterRefresh ...
  1241. 2025-1-11 14:30:25-debug: Run asset db hook engine-extends:afterRefresh success!
  1242. 2025-1-11 14:30:25-debug: asset-db:refresh-all-database (102ms)
  1243. 2025-1-11 14:30:26-debug: Query all assets info in project
  1244. 2025-1-11 14:30:26-debug: init custom config: keepNodeUuid: false, useCache: true
  1245. 2025-1-11 14:30:26-debug: 查询 Asset Bundle start, progress: 0%
  1246. 2025-1-11 14:30:26-debug: // ---- build task 查询 Asset Bundle ----
  1247. 2025-1-11 14:30:26-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1248. 2025-1-11 14:30:26-debug: Number of all scenes: 3
  1249. 2025-1-11 14:30:26-debug: Number of all scripts: 99
  1250. 2025-1-11 14:30:26-debug: Number of other assets: 599
  1251. 2025-1-11 14:30:26-debug: // ---- build task 查询 Asset Bundle ---- (13ms)
  1252. 2025-1-11 14:30:26-debug: run build task 查询 Asset Bundle success in 13 ms√, progress: 5%
  1253. 2025-1-11 14:30:26-debug: 查询 Asset Bundle start, progress: 5%
  1254. 2025-1-11 14:30:26-debug: [Build Memory track]: 查询 Asset Bundle start:161.23MB, end 159.76MB, increase: -1510.85KB
  1255. 2025-1-11 14:30:26-debug: // ---- build task 查询 Asset Bundle ----
  1256. 2025-1-11 14:30:26-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  1257. 2025-1-11 14:30:26-debug: [Build Memory track]: 查询 Asset Bundle start:159.79MB, end 159.94MB, increase: 152.91KB
  1258. 2025-1-11 14:30:26-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1259. 2025-1-11 14:30:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1260. 2025-1-11 14:30:26-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 10%
  1261. 2025-1-11 14:30:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  1262. 2025-1-11 14:30:26-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 12%
  1263. 2025-1-11 14:30:26-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:159.97MB, end 160.00MB, increase: 31.15KB
  1264. 2025-1-11 14:30:26-debug: // ---- build task 填充脚本数据到 settings.json ----
  1265. 2025-1-11 14:30:26-debug: 填充脚本数据到 settings.json start, progress: 12%
  1266. 2025-1-11 14:30:26-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  1267. 2025-1-11 14:30:26-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  1268. 2025-1-11 14:30:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1269. 2025-1-11 14:30:26-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1270. 2025-1-11 14:30:26-debug: [Build Memory track]: 填充脚本数据到 settings.json start:160.04MB, end 160.07MB, increase: 29.94KB
  1271. 2025-1-11 14:30:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (10ms)
  1272. 2025-1-11 14:30:26-debug: run build task 整理部分构建选项内数据到 settings.json success in 10 ms√, progress: 15%
  1273. 2025-1-11 14:30:26-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.10MB, end 160.23MB, increase: 133.89KB
  1274. 2025-1-11 14:30:27-debug: Query all assets info in project
  1275. 2025-1-11 14:30:27-debug: init custom config: keepNodeUuid: false, useCache: true
  1276. 2025-1-11 14:30:27-debug: 查询 Asset Bundle start, progress: 0%
  1277. 2025-1-11 14:30:27-debug: // ---- build task 查询 Asset Bundle ----
  1278. 2025-1-11 14:30:27-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1279. 2025-1-11 14:30:27-debug: Number of all scenes: 3
  1280. 2025-1-11 14:30:27-debug: Number of all scripts: 99
  1281. 2025-1-11 14:30:27-debug: Number of other assets: 599
  1282. 2025-1-11 14:30:27-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1283. 2025-1-11 14:30:27-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  1284. 2025-1-11 14:30:27-debug: // ---- build task 查询 Asset Bundle ----
  1285. 2025-1-11 14:30:27-debug: [Build Memory track]: 查询 Asset Bundle start:159.09MB, end 160.22MB, increase: 1.13MB
  1286. 2025-1-11 14:30:27-debug: 查询 Asset Bundle start, progress: 5%
  1287. 2025-1-11 14:30:27-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1288. 2025-1-11 14:30:27-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1289. 2025-1-11 14:30:27-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1290. 2025-1-11 14:30:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1291. 2025-1-11 14:30:27-debug: [Build Memory track]: 查询 Asset Bundle start:160.25MB, end 158.73MB, increase: -1556.77KB
  1292. 2025-1-11 14:30:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1293. 2025-1-11 14:30:27-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  1294. 2025-1-11 14:30:27-debug: // ---- build task 填充脚本数据到 settings.json ----
  1295. 2025-1-11 14:30:27-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:158.77MB, end 158.80MB, increase: 31.13KB
  1296. 2025-1-11 14:30:27-debug: 填充脚本数据到 settings.json start, progress: 12%
  1297. 2025-1-11 14:30:27-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1298. 2025-1-11 14:30:27-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1299. 2025-1-11 14:30:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1300. 2025-1-11 14:30:27-debug: [Build Memory track]: 填充脚本数据到 settings.json start:158.83MB, end 158.86MB, increase: 29.93KB
  1301. 2025-1-11 14:30:27-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1302. 2025-1-11 14:30:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1303. 2025-1-11 14:30:27-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1304. 2025-1-11 14:30:27-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:158.89MB, end 159.02MB, increase: 131.37KB
  1305. 2025-1-11 14:30:27-debug: Query all assets info in project
  1306. 2025-1-11 14:30:27-debug: init custom config: keepNodeUuid: false, useCache: true
  1307. 2025-1-11 14:30:27-debug: 查询 Asset Bundle start, progress: 0%
  1308. 2025-1-11 14:30:27-debug: // ---- build task 查询 Asset Bundle ----
  1309. 2025-1-11 14:30:27-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1310. 2025-1-11 14:30:27-debug: Number of all scenes: 3
  1311. 2025-1-11 14:30:27-debug: Number of all scripts: 99
  1312. 2025-1-11 14:30:27-debug: Number of other assets: 599
  1313. 2025-1-11 14:30:27-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1314. 2025-1-11 14:30:27-debug: [Build Memory track]: 查询 Asset Bundle start:159.47MB, end 158.81MB, increase: -674.97KB
  1315. 2025-1-11 14:30:27-debug: 查询 Asset Bundle start, progress: 5%
  1316. 2025-1-11 14:30:27-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  1317. 2025-1-11 14:30:27-debug: // ---- build task 查询 Asset Bundle ----
  1318. 2025-1-11 14:30:27-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  1319. 2025-1-11 14:30:27-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  1320. 2025-1-11 14:30:27-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1321. 2025-1-11 14:30:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1322. 2025-1-11 14:30:27-debug: [Build Memory track]: 查询 Asset Bundle start:158.84MB, end 158.98MB, increase: 140.11KB
  1323. 2025-1-11 14:30:27-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1324. 2025-1-11 14:30:27-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:159.02MB, end 159.04MB, increase: 20.17KB
  1325. 2025-1-11 14:30:27-debug: // ---- build task 填充脚本数据到 settings.json ----
  1326. 2025-1-11 14:30:27-debug: 填充脚本数据到 settings.json start, progress: 12%
  1327. 2025-1-11 14:30:27-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1328. 2025-1-11 14:30:27-debug: [Build Memory track]: 填充脚本数据到 settings.json start:159.07MB, end 159.09MB, increase: 16.93KB
  1329. 2025-1-11 14:30:27-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1330. 2025-1-11 14:30:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1331. 2025-1-11 14:30:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  1332. 2025-1-11 14:30:27-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  1333. 2025-1-11 14:30:27-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:159.12MB, end 159.25MB, increase: 131.83KB
  1334. 2025-1-11 14:31:04-debug: Query all assets info in project
  1335. 2025-1-11 14:31:04-debug: init custom config: keepNodeUuid: false, useCache: true
  1336. 2025-1-11 14:31:04-debug: 查询 Asset Bundle start, progress: 0%
  1337. 2025-1-11 14:31:04-debug: // ---- build task 查询 Asset Bundle ----
  1338. 2025-1-11 14:31:04-debug: Number of all scenes: 3
  1339. 2025-1-11 14:31: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1340. 2025-1-11 14:31:04-debug: Number of all scripts: 99
  1341. 2025-1-11 14:31:04-debug: Number of other assets: 599
  1342. 2025-1-11 14:31:04-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1343. 2025-1-11 14:31:04-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  1344. 2025-1-11 14:31:04-debug: 查询 Asset Bundle start, progress: 5%
  1345. 2025-1-11 14:31:04-debug: [Build Memory track]: 查询 Asset Bundle start:158.83MB, end 159.08MB, increase: 264.05KB
  1346. 2025-1-11 14:31:04-debug: // ---- build task 查询 Asset Bundle ----
  1347. 2025-1-11 14:31:04-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1348. 2025-1-11 14:31:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1349. 2025-1-11 14:31:04-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1350. 2025-1-11 14:31:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1351. 2025-1-11 14:31:04-debug: [Build Memory track]: 查询 Asset Bundle start:159.12MB, end 159.25MB, increase: 136.70KB
  1352. 2025-1-11 14:31:04-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1353. 2025-1-11 14:31:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:159.29MB, end 159.30MB, increase: 18.63KB
  1354. 2025-1-11 14:31:04-debug: // ---- build task 填充脚本数据到 settings.json ----
  1355. 2025-1-11 14:31:04-debug: 填充脚本数据到 settings.json start, progress: 12%
  1356. 2025-1-11 14:31:04-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1357. 2025-1-11 14:31:04-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1358. 2025-1-11 14:31:04-debug: [Build Memory track]: 填充脚本数据到 settings.json start:159.34MB, end 159.37MB, increase: 33.59KB
  1359. 2025-1-11 14:31:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1360. 2025-1-11 14:31:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1361. 2025-1-11 14:31:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1362. 2025-1-11 14:31:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  1363. 2025-1-11 14:31:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:159.40MB, end 159.53MB, increase: 132.56KB
  1364. 2025-1-11 14:34:14-debug: refresh db internal success
  1365. 2025-1-11 14:34:14-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Main\Layout_Main.ts background: #aaff85; color: #000; color: #000;
  1366. 2025-1-11 14:34:14-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Main\UI_Main.ts background: #aaff85; color: #000; color: #000;
  1367. 2025-1-11 14:34:14-debug: refresh db assets success
  1368. 2025-1-11 14:34:14-debug: Run asset db hook engine-extends:afterRefresh ...
  1369. 2025-1-11 14:34:14-debug: Run asset db hook engine-extends:afterRefresh success!
  1370. 2025-1-11 14:34:14-debug: asset-db:refresh-all-database (79ms)
  1371. 2025-1-11 14:34:14-debug: asset-db:worker-effect-data-processing (1ms)
  1372. 2025-1-11 14:34:14-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1373. 2025-1-11 14:34:15-debug: Query all assets info in project
  1374. 2025-1-11 14:34:15-debug: init custom config: keepNodeUuid: false, useCache: true
  1375. 2025-1-11 14:34:15-debug: 查询 Asset Bundle start, progress: 0%
  1376. 2025-1-11 14:34:15-debug: // ---- build task 查询 Asset Bundle ----
  1377. 2025-1-11 14:34: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1378. 2025-1-11 14:34:15-debug: Number of other assets: 599
  1379. 2025-1-11 14:34:15-debug: Number of all scripts: 99
  1380. 2025-1-11 14:34:15-debug: Number of all scenes: 3
  1381. 2025-1-11 14:34:15-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  1382. 2025-1-11 14:34:15-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  1383. 2025-1-11 14:34:15-debug: [Build Memory track]: 查询 Asset Bundle start:161.01MB, end 161.10MB, increase: 95.37KB
  1384. 2025-1-11 14:34:15-debug: // ---- build task 查询 Asset Bundle ----
  1385. 2025-1-11 14:34:15-debug: 查询 Asset Bundle start, progress: 5%
  1386. 2025-1-11 14:34:15-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1387. 2025-1-11 14:34:15-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  1388. 2025-1-11 14:34:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1389. 2025-1-11 14:34:15-debug: [Build Memory track]: 查询 Asset Bundle start:161.14MB, end 161.27MB, increase: 137.54KB
  1390. 2025-1-11 14:34:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1391. 2025-1-11 14:34:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1392. 2025-1-11 14:34:15-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1393. 2025-1-11 14:34:15-debug: // ---- build task 填充脚本数据到 settings.json ----
  1394. 2025-1-11 14:34:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.44MB, end 160.47MB, increase: 31.18KB
  1395. 2025-1-11 14:34:15-debug: 填充脚本数据到 settings.json start, progress: 12%
  1396. 2025-1-11 14:34:15-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  1397. 2025-1-11 14:34:15-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  1398. 2025-1-11 14:34:15-debug: [Build Memory track]: 填充脚本数据到 settings.json start:160.50MB, end 160.53MB, increase: 29.88KB
  1399. 2025-1-11 14:34:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1400. 2025-1-11 14:34:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1401. 2025-1-11 14:34:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  1402. 2025-1-11 14:34:15-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  1403. 2025-1-11 14:34:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.56MB, end 160.69MB, increase: 133.57KB
  1404. 2025-1-11 14:34:26-debug: refresh db internal success
  1405. 2025-1-11 14:34:26-debug: refresh db assets success
  1406. 2025-1-11 14:34:26-debug: Run asset db hook engine-extends:afterRefresh ...
  1407. 2025-1-11 14:34:26-debug: Run asset db hook engine-extends:afterRefresh success!
  1408. 2025-1-11 14:34:26-debug: asset-db:refresh-all-database (73ms)
  1409. 2025-1-11 14:34:26-debug: asset-db:worker-effect-data-processing (1ms)
  1410. 2025-1-11 14:34:26-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1411. 2025-1-11 14:34:26-debug: Query all assets info in project
  1412. 2025-1-11 14:34:26-debug: init custom config: keepNodeUuid: false, useCache: true
  1413. 2025-1-11 14:34:26-debug: 查询 Asset Bundle start, progress: 0%
  1414. 2025-1-11 14:34:26-debug: // ---- build task 查询 Asset Bundle ----
  1415. 2025-1-11 14:34:26-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1416. 2025-1-11 14:34:26-debug: Number of all scripts: 99
  1417. 2025-1-11 14:34:26-debug: Number of other assets: 599
  1418. 2025-1-11 14:34:26-debug: Number of all scenes: 3
  1419. 2025-1-11 14:34:26-debug: [Build Memory track]: 查询 Asset Bundle start:162.03MB, end 162.30MB, increase: 272.80KB
  1420. 2025-1-11 14:34:26-debug: 查询 Asset Bundle start, progress: 5%
  1421. 2025-1-11 14:34:26-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  1422. 2025-1-11 14:34:26-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1423. 2025-1-11 14:34:26-debug: // ---- build task 查询 Asset Bundle ----
  1424. 2025-1-11 14:34:26-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  1425. 2025-1-11 14:34:26-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  1426. 2025-1-11 14:34:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1427. 2025-1-11 14:34:26-debug: [Build Memory track]: 查询 Asset Bundle start:162.33MB, end 162.47MB, increase: 137.23KB
  1428. 2025-1-11 14:34:26-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1429. 2025-1-11 14:34:26-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1430. 2025-1-11 14:34:26-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.50MB, end 162.52MB, increase: 18.61KB
  1431. 2025-1-11 14:34:26-debug: // ---- build task 填充脚本数据到 settings.json ----
  1432. 2025-1-11 14:34:26-debug: 填充脚本数据到 settings.json start, progress: 12%
  1433. 2025-1-11 14:34:26-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1434. 2025-1-11 14:34:26-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.55MB, end 162.57MB, increase: 19.21KB
  1435. 2025-1-11 14:34:26-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1436. 2025-1-11 14:34:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1437. 2025-1-11 14:34:26-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1438. 2025-1-11 14:34:26-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1439. 2025-1-11 14:34:26-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.61MB, end 161.87MB, increase: -756.24KB
  1440. 2025-1-11 14:34:44-debug: refresh db internal success
  1441. 2025-1-11 14:34:44-debug: Run asset db hook engine-extends:afterRefresh ...
  1442. 2025-1-11 14:34:44-debug: Run asset db hook engine-extends:afterRefresh success!
  1443. 2025-1-11 14:34:44-debug: refresh db assets success
  1444. 2025-1-11 14:34:44-debug: asset-db:refresh-all-database (81ms)
  1445. 2025-1-11 14:34:44-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1446. 2025-1-11 14:35:37-debug: refresh db internal success
  1447. 2025-1-11 14:35:37-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Main\UI_Main.ts background: #aaff85; color: #000; color: #000;
  1448. 2025-1-11 14:35:37-debug: refresh db assets success
  1449. 2025-1-11 14:35:37-debug: Run asset db hook engine-extends:afterRefresh ...
  1450. 2025-1-11 14:35:37-debug: Run asset db hook engine-extends:afterRefresh success!
  1451. 2025-1-11 14:35:37-debug: asset-db:refresh-all-database (77ms)
  1452. 2025-1-11 14:35:37-debug: asset-db:worker-effect-data-processing (1ms)
  1453. 2025-1-11 14:35:37-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1454. 2025-1-11 14:35:38-debug: Query all assets info in project
  1455. 2025-1-11 14:35:38-debug: init custom config: keepNodeUuid: false, useCache: true
  1456. 2025-1-11 14:35:38-debug: 查询 Asset Bundle start, progress: 0%
  1457. 2025-1-11 14:35:38-debug: // ---- build task 查询 Asset Bundle ----
  1458. 2025-1-11 14:35:38-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1459. 2025-1-11 14:35:38-debug: Number of all scenes: 3
  1460. 2025-1-11 14:35:38-debug: Number of other assets: 599
  1461. 2025-1-11 14:35:38-debug: Number of all scripts: 99
  1462. 2025-1-11 14:35:38-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1463. 2025-1-11 14:35:38-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  1464. 2025-1-11 14:35:38-debug: // ---- build task 查询 Asset Bundle ----
  1465. 2025-1-11 14:35:38-debug: [Build Memory track]: 查询 Asset Bundle start:165.18MB, end 165.30MB, increase: 120.80KB
  1466. 2025-1-11 14:35:38-debug: 查询 Asset Bundle start, progress: 5%
  1467. 2025-1-11 14:35:38-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  1468. 2025-1-11 14:35:38-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  1469. 2025-1-11 14:35:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1470. 2025-1-11 14:35:38-debug: [Build Memory track]: 查询 Asset Bundle start:165.33MB, end 165.47MB, increase: 137.00KB
  1471. 2025-1-11 14:35:38-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1472. 2025-1-11 14:35:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1473. 2025-1-11 14:35:38-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1474. 2025-1-11 14:35:38-debug: // ---- build task 填充脚本数据到 settings.json ----
  1475. 2025-1-11 14:35:38-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.50MB, end 165.53MB, increase: 31.65KB
  1476. 2025-1-11 14:35:38-debug: 填充脚本数据到 settings.json start, progress: 12%
  1477. 2025-1-11 14:35:38-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1478. 2025-1-11 14:35:38-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.57MB, end 165.59MB, increase: 27.21KB
  1479. 2025-1-11 14:35:38-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1480. 2025-1-11 14:35:38-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1481. 2025-1-11 14:35:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1482. 2025-1-11 14:35:38-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1483. 2025-1-11 14:35:38-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.63MB, end 165.76MB, increase: 140.13KB
  1484. 2025-1-11 14:35:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1485. 2025-1-11 14:35:47-debug: refresh db internal success
  1486. 2025-1-11 14:35:47-debug: refresh db assets success
  1487. 2025-1-11 14:35:47-debug: Run asset db hook engine-extends:afterRefresh ...
  1488. 2025-1-11 14:35:47-debug: Run asset db hook engine-extends:afterRefresh success!
  1489. 2025-1-11 14:35:47-debug: asset-db:refresh-all-database (77ms)
  1490. 2025-1-11 14:35:47-debug: asset-db:worker-effect-data-processing (1ms)
  1491. 2025-1-11 14:35:47-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1492. 2025-1-11 14:37:31-debug: refresh db internal success
  1493. 2025-1-11 14:37:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Main\Layout_Main.ts background: #aaff85; color: #000; color: #000;
  1494. 2025-1-11 14:37:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Main\UI_Main.ts background: #aaff85; color: #000; color: #000;
  1495. 2025-1-11 14:37:31-debug: refresh db assets success
  1496. 2025-1-11 14:37:31-debug: Run asset db hook engine-extends:afterRefresh ...
  1497. 2025-1-11 14:37:31-debug: Run asset db hook engine-extends:afterRefresh success!
  1498. 2025-1-11 14:37:31-debug: asset-db:refresh-all-database (82ms)
  1499. 2025-1-11 14:37:31-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1500. 2025-1-11 14:37:31-debug: Query all assets info in project
  1501. 2025-1-11 14:37:31-debug: init custom config: keepNodeUuid: false, useCache: true
  1502. 2025-1-11 14:37:31-debug: 查询 Asset Bundle start, progress: 0%
  1503. 2025-1-11 14:37:31-debug: // ---- build task 查询 Asset Bundle ----
  1504. 2025-1-11 14:37:31-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1505. 2025-1-11 14:37:31-debug: Number of all scenes: 3
  1506. 2025-1-11 14:37:31-debug: Number of other assets: 599
  1507. 2025-1-11 14:37:31-debug: Number of all scripts: 99
  1508. 2025-1-11 14:37:31-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1509. 2025-1-11 14:37:31-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  1510. 2025-1-11 14:37:31-debug: [Build Memory track]: 查询 Asset Bundle start:168.67MB, end 167.66MB, increase: -1034.95KB
  1511. 2025-1-11 14:37:31-debug: 查询 Asset Bundle start, progress: 5%
  1512. 2025-1-11 14:37:31-debug: // ---- build task 查询 Asset Bundle ----
  1513. 2025-1-11 14:37:31-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  1514. 2025-1-11 14:37:31-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 10%
  1515. 2025-1-11 14:37:31-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1516. 2025-1-11 14:37:31-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1517. 2025-1-11 14:37:31-debug: [Build Memory track]: 查询 Asset Bundle start:167.69MB, end 167.82MB, increase: 138.11KB
  1518. 2025-1-11 14:37:31-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1519. 2025-1-11 14:37:31-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1520. 2025-1-11 14:37:31-debug: // ---- build task 填充脚本数据到 settings.json ----
  1521. 2025-1-11 14:37:31-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.86MB, end 167.89MB, increase: 31.18KB
  1522. 2025-1-11 14:37:31-debug: 填充脚本数据到 settings.json start, progress: 12%
  1523. 2025-1-11 14:37:31-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1524. 2025-1-11 14:37:31-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.92MB, end 167.94MB, increase: 18.24KB
  1525. 2025-1-11 14:37:31-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1526. 2025-1-11 14:37:31-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1527. 2025-1-11 14:37:31-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  1528. 2025-1-11 14:37:31-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  1529. 2025-1-11 14:37:31-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.97MB, end 168.11MB, increase: 139.43KB
  1530. 2025-1-11 14:37:32-debug: Query all assets info in project
  1531. 2025-1-11 14:37:32-debug: init custom config: keepNodeUuid: false, useCache: true
  1532. 2025-1-11 14:37:32-debug: 查询 Asset Bundle start, progress: 0%
  1533. 2025-1-11 14:37:32-debug: // ---- build task 查询 Asset Bundle ----
  1534. 2025-1-11 14:37: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1535. 2025-1-11 14:37:32-debug: Number of all scenes: 3
  1536. 2025-1-11 14:37:32-debug: Number of all scripts: 99
  1537. 2025-1-11 14:37:32-debug: Number of other assets: 599
  1538. 2025-1-11 14:37:32-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  1539. 2025-1-11 14:37:32-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  1540. 2025-1-11 14:37:32-debug: // ---- build task 查询 Asset Bundle ----
  1541. 2025-1-11 14:37:32-debug: [Build Memory track]: 查询 Asset Bundle start:168.78MB, end 168.09MB, increase: -705.93KB
  1542. 2025-1-11 14:37:32-debug: 查询 Asset Bundle start, progress: 5%
  1543. 2025-1-11 14:37:32-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  1544. 2025-1-11 14:37:32-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  1545. 2025-1-11 14:37:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1546. 2025-1-11 14:37:32-debug: [Build Memory track]: 查询 Asset Bundle start:168.12MB, end 168.25MB, increase: 137.06KB
  1547. 2025-1-11 14:37:32-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1548. 2025-1-11 14:37:32-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1549. 2025-1-11 14:37:32-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.29MB, end 168.31MB, increase: 20.49KB
  1550. 2025-1-11 14:37:32-debug: 填充脚本数据到 settings.json start, progress: 12%
  1551. 2025-1-11 14:37:32-debug: // ---- build task 填充脚本数据到 settings.json ----
  1552. 2025-1-11 14:37:32-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1553. 2025-1-11 14:37:32-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1554. 2025-1-11 14:37:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1555. 2025-1-11 14:37:32-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1556. 2025-1-11 14:37:32-debug: [Build Memory track]: 填充脚本数据到 settings.json start:168.34MB, end 168.37MB, increase: 28.29KB
  1557. 2025-1-11 14:37:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1558. 2025-1-11 14:37:32-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  1559. 2025-1-11 14:37:32-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.40MB, end 168.54MB, increase: 136.46KB
  1560. 2025-1-11 14:37:39-debug: Query all assets info in project
  1561. 2025-1-11 14:37:39-debug: init custom config: keepNodeUuid: false, useCache: true
  1562. 2025-1-11 14:37:39-debug: 查询 Asset Bundle start, progress: 0%
  1563. 2025-1-11 14:37:39-debug: // ---- build task 查询 Asset Bundle ----
  1564. 2025-1-11 14:37: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1565. 2025-1-11 14:37:39-debug: Number of all scenes: 3
  1566. 2025-1-11 14:37:39-debug: Number of all scripts: 99
  1567. 2025-1-11 14:37:39-debug: Number of other assets: 599
  1568. 2025-1-11 14:37:39-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  1569. 2025-1-11 14:37:39-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  1570. 2025-1-11 14:37:39-debug: [Build Memory track]: 查询 Asset Bundle start:168.57MB, end 167.91MB, increase: -679.85KB
  1571. 2025-1-11 14:37:39-debug: 查询 Asset Bundle start, progress: 5%
  1572. 2025-1-11 14:37:39-debug: // ---- build task 查询 Asset Bundle ----
  1573. 2025-1-11 14:37:39-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1574. 2025-1-11 14:37:39-debug: [Build Memory track]: 查询 Asset Bundle start:167.94MB, end 168.08MB, increase: 136.97KB
  1575. 2025-1-11 14:37:39-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1576. 2025-1-11 14:37:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1577. 2025-1-11 14:37:39-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1578. 2025-1-11 14:37:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1579. 2025-1-11 14:37:39-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1580. 2025-1-11 14:37:39-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.11MB, end 168.14MB, increase: 30.54KB
  1581. 2025-1-11 14:37:39-debug: 填充脚本数据到 settings.json start, progress: 12%
  1582. 2025-1-11 14:37:39-debug: // ---- build task 填充脚本数据到 settings.json ----
  1583. 2025-1-11 14:37:39-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1584. 2025-1-11 14:37:39-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1585. 2025-1-11 14:37:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1586. 2025-1-11 14:37:39-debug: [Build Memory track]: 填充脚本数据到 settings.json start:168.17MB, end 168.21MB, increase: 31.24KB
  1587. 2025-1-11 14:37:39-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1588. 2025-1-11 14:37:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  1589. 2025-1-11 14:37:39-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  1590. 2025-1-11 14:37:39-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.24MB, end 168.37MB, increase: 131.75KB
  1591. 2025-1-11 14:37:59-debug: refresh db internal success
  1592. 2025-1-11 14:37:59-debug: refresh db assets success
  1593. 2025-1-11 14:37:59-debug: Run asset db hook engine-extends:afterRefresh ...
  1594. 2025-1-11 14:37:59-debug: Run asset db hook engine-extends:afterRefresh success!
  1595. 2025-1-11 14:37:59-debug: asset-db:refresh-all-database (77ms)
  1596. 2025-1-11 14:37:59-debug: asset-db:worker-effect-data-processing (1ms)
  1597. 2025-1-11 14:37:59-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1598. 2025-1-11 14:38:45-debug: Query all assets info in project
  1599. 2025-1-11 14:38:45-debug: init custom config: keepNodeUuid: false, useCache: true
  1600. 2025-1-11 14:38:45-debug: 查询 Asset Bundle start, progress: 0%
  1601. 2025-1-11 14:38:45-debug: // ---- build task 查询 Asset Bundle ----
  1602. 2025-1-11 14:38: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1603. 2025-1-11 14:38:45-debug: Number of all scenes: 3
  1604. 2025-1-11 14:38:45-debug: Number of all scripts: 99
  1605. 2025-1-11 14:38:45-debug: Number of other assets: 599
  1606. 2025-1-11 14:38:45-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  1607. 2025-1-11 14:38:45-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  1608. 2025-1-11 14:38:45-debug: 查询 Asset Bundle start, progress: 5%
  1609. 2025-1-11 14:38:45-debug: // ---- build task 查询 Asset Bundle ----
  1610. 2025-1-11 14:38:45-debug: [Build Memory track]: 查询 Asset Bundle start:169.20MB, end 169.45MB, increase: 253.98KB
  1611. 2025-1-11 14:38:45-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1612. 2025-1-11 14:38:45-debug: [Build Memory track]: 查询 Asset Bundle start:169.48MB, end 169.62MB, increase: 137.07KB
  1613. 2025-1-11 14:38:45-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1614. 2025-1-11 14:38:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1615. 2025-1-11 14:38:45-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1616. 2025-1-11 14:38:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1617. 2025-1-11 14:38:45-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1618. 2025-1-11 14:38:45-debug: // ---- build task 填充脚本数据到 settings.json ----
  1619. 2025-1-11 14:38:45-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.65MB, end 169.68MB, increase: 29.88KB
  1620. 2025-1-11 14:38:45-debug: 填充脚本数据到 settings.json start, progress: 12%
  1621. 2025-1-11 14:38:45-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  1622. 2025-1-11 14:38:45-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  1623. 2025-1-11 14:38:45-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.71MB, end 169.74MB, increase: 30.38KB
  1624. 2025-1-11 14:38:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1625. 2025-1-11 14:38:45-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1626. 2025-1-11 14:38:45-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1627. 2025-1-11 14:38:45-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.78MB, end 169.91MB, increase: 132.56KB
  1628. 2025-1-11 14:38:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1629. 2025-1-11 14:39:08-debug: Query all assets info in project
  1630. 2025-1-11 14:39:08-debug: init custom config: keepNodeUuid: false, useCache: true
  1631. 2025-1-11 14:39:08-debug: 查询 Asset Bundle start, progress: 0%
  1632. 2025-1-11 14:39:08-debug: // ---- build task 查询 Asset Bundle ----
  1633. 2025-1-11 14:39: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1634. 2025-1-11 14:39:08-debug: Number of other assets: 599
  1635. 2025-1-11 14:39:08-debug: Number of all scenes: 3
  1636. 2025-1-11 14:39:08-debug: Number of all scripts: 99
  1637. 2025-1-11 14:39:08-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  1638. 2025-1-11 14:39:08-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  1639. 2025-1-11 14:39:08-debug: // ---- build task 查询 Asset Bundle ----
  1640. 2025-1-11 14:39:08-debug: [Build Memory track]: 查询 Asset Bundle start:170.10MB, end 169.51MB, increase: -607.12KB
  1641. 2025-1-11 14:39:08-debug: 查询 Asset Bundle start, progress: 5%
  1642. 2025-1-11 14:39:08-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  1643. 2025-1-11 14:39:08-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  1644. 2025-1-11 14:39:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1645. 2025-1-11 14:39:08-debug: [Build Memory track]: 查询 Asset Bundle start:169.54MB, end 169.67MB, increase: 136.99KB
  1646. 2025-1-11 14:39:08-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1647. 2025-1-11 14:39:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  1648. 2025-1-11 14:39:08-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  1649. 2025-1-11 14:39:08-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.71MB, end 169.74MB, increase: 29.96KB
  1650. 2025-1-11 14:39:08-debug: // ---- build task 填充脚本数据到 settings.json ----
  1651. 2025-1-11 14:39:08-debug: 填充脚本数据到 settings.json start, progress: 12%
  1652. 2025-1-11 14:39:08-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  1653. 2025-1-11 14:39:08-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  1654. 2025-1-11 14:39:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1655. 2025-1-11 14:39:08-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.77MB, end 169.80MB, increase: 29.78KB
  1656. 2025-1-11 14:39:08-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1657. 2025-1-11 14:39:08-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1658. 2025-1-11 14:39:08-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1659. 2025-1-11 14:39:08-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.83MB, end 169.96MB, increase: 133.80KB
  1660. 2025-1-11 14:56:50-debug: Query all assets info in project
  1661. 2025-1-11 14:56:50-debug: init custom config: keepNodeUuid: false, useCache: true
  1662. 2025-1-11 14:56:50-debug: 查询 Asset Bundle start, progress: 0%
  1663. 2025-1-11 14:56:50-debug: // ---- build task 查询 Asset Bundle ----
  1664. 2025-1-11 14:56: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1665. 2025-1-11 14:56:50-debug: Number of all scenes: 3
  1666. 2025-1-11 14:56:50-debug: Number of all scripts: 99
  1667. 2025-1-11 14:56:50-debug: Number of other assets: 599
  1668. 2025-1-11 14:56:50-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1669. 2025-1-11 14:56:50-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  1670. 2025-1-11 14:56:50-debug: [Build Memory track]: 查询 Asset Bundle start:169.55MB, end 169.82MB, increase: 278.04KB
  1671. 2025-1-11 14:56:50-debug: 查询 Asset Bundle start, progress: 5%
  1672. 2025-1-11 14:56:50-debug: // ---- build task 查询 Asset Bundle ----
  1673. 2025-1-11 14:56:50-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  1674. 2025-1-11 14:56:50-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  1675. 2025-1-11 14:56:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1676. 2025-1-11 14:56:50-debug: [Build Memory track]: 查询 Asset Bundle start:169.85MB, end 169.99MB, increase: 138.02KB
  1677. 2025-1-11 14:56:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1678. 2025-1-11 14:56:50-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1679. 2025-1-11 14:56:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.02MB, end 170.04MB, increase: 18.61KB
  1680. 2025-1-11 14:56:50-debug: // ---- build task 填充脚本数据到 settings.json ----
  1681. 2025-1-11 14:56:50-debug: 填充脚本数据到 settings.json start, progress: 12%
  1682. 2025-1-11 14:56:50-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1683. 2025-1-11 14:56:50-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.07MB, end 170.09MB, increase: 19.82KB
  1684. 2025-1-11 14:56:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1685. 2025-1-11 14:56:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1686. 2025-1-11 14:56:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1687. 2025-1-11 14:56:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.12MB, end 170.25MB, increase: 130.89KB
  1688. 2025-1-11 14:56:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  1689. 2025-1-11 14:57:18-debug: Query all assets info in project
  1690. 2025-1-11 14:57:18-debug: init custom config: keepNodeUuid: false, useCache: true
  1691. 2025-1-11 14:57:18-debug: 查询 Asset Bundle start, progress: 0%
  1692. 2025-1-11 14:57:18-debug: // ---- build task 查询 Asset Bundle ----
  1693. 2025-1-11 14:57: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1694. 2025-1-11 14:57:18-debug: Number of all scenes: 3
  1695. 2025-1-11 14:57:18-debug: Number of all scripts: 99
  1696. 2025-1-11 14:57:18-debug: Number of other assets: 599
  1697. 2025-1-11 14:57:18-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  1698. 2025-1-11 14:57:18-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  1699. 2025-1-11 14:57:18-debug: // ---- build task 查询 Asset Bundle ----
  1700. 2025-1-11 14:57:18-debug: [Build Memory track]: 查询 Asset Bundle start:169.63MB, end 169.89MB, increase: 268.80KB
  1701. 2025-1-11 14:57:18-debug: 查询 Asset Bundle start, progress: 5%
  1702. 2025-1-11 14:57:18-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1703. 2025-1-11 14:57:18-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1704. 2025-1-11 14:57:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1705. 2025-1-11 14:57:18-debug: [Build Memory track]: 查询 Asset Bundle start:169.92MB, end 170.11MB, increase: 196.06KB
  1706. 2025-1-11 14:57:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1707. 2025-1-11 14:57:18-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1708. 2025-1-11 14:57:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.15MB, end 170.17MB, increase: 18.96KB
  1709. 2025-1-11 14:57:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  1710. 2025-1-11 14:57:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  1711. 2025-1-11 14:57:18-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1712. 2025-1-11 14:57:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.20MB, end 170.22MB, increase: 18.34KB
  1713. 2025-1-11 14:57:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1714. 2025-1-11 14:57:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1715. 2025-1-11 14:57:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  1716. 2025-1-11 14:57:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  1717. 2025-1-11 14:57:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.25MB, end 170.38MB, increase: 132.04KB
  1718. 2025-1-11 15:07:28-debug: Query all assets info in project
  1719. 2025-1-11 15:07:28-debug: init custom config: keepNodeUuid: false, useCache: true
  1720. 2025-1-11 15:07:28-debug: 查询 Asset Bundle start, progress: 0%
  1721. 2025-1-11 15:07:28-debug: // ---- build task 查询 Asset Bundle ----
  1722. 2025-1-11 15:07: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  1723. 2025-1-11 15:07:28-debug: Number of all scenes: 3
  1724. 2025-1-11 15:07:28-debug: Number of all scripts: 99
  1725. 2025-1-11 15:07:28-debug: Number of other assets: 599
  1726. 2025-1-11 15:07:28-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  1727. 2025-1-11 15:07:28-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  1728. 2025-1-11 15:07:28-debug: 查询 Asset Bundle start, progress: 5%
  1729. 2025-1-11 15:07:28-debug: [Build Memory track]: 查询 Asset Bundle start:170.47MB, end 169.85MB, increase: -640.86KB
  1730. 2025-1-11 15:07:28-debug: // ---- build task 查询 Asset Bundle ----
  1731. 2025-1-11 15:07:28-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  1732. 2025-1-11 15:07:28-debug: [Build Memory track]: 查询 Asset Bundle start:169.88MB, end 170.01MB, increase: 135.64KB
  1733. 2025-1-11 15:07:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1734. 2025-1-11 15:07:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  1735. 2025-1-11 15:07:28-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  1736. 2025-1-11 15:07:28-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  1737. 2025-1-11 15:07:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.05MB, end 170.07MB, increase: 20.33KB
  1738. 2025-1-11 15:07:28-debug: 填充脚本数据到 settings.json start, progress: 12%
  1739. 2025-1-11 15:07:28-debug: // ---- build task 填充脚本数据到 settings.json ----
  1740. 2025-1-11 15:07:28-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.10MB, end 170.12MB, increase: 17.30KB
  1741. 2025-1-11 15:07:28-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  1742. 2025-1-11 15:07:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  1743. 2025-1-11 15:07:28-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  1744. 2025-1-11 15:07:28-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  1745. 2025-1-11 15:07:28-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  1746. 2025-1-11 15:07:28-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.15MB, end 170.28MB, increase: 135.15KB
  1747. 2025-1-11 15:09:52-debug: refresh db internal success
  1748. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友 background: #aaff85; color: #000; color: #000;
  1749. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具 background: #aaff85; color: #000; color: #000;
  1750. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1.png background: #aaff85; color: #000; color: #000;
  1751. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1@2x.png background: #aaff85; color: #000; color: #000;
  1752. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\2@2x.png background: #aaff85; color: #000; color: #000;
  1753. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\3@2x.png background: #aaff85; color: #000; color: #000;
  1754. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\4@2x.png background: #aaff85; color: #000; color: #000;
  1755. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1.png@6c48a background: #aaff85; color: #000; color: #000;
  1756. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1757. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\5@2x.png background: #aaff85; color: #000; color: #000;
  1758. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\4@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1759. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1760. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\x按钮@2x@2x.png background: #aaff85; color: #000; color: #000;
  1761. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\个人可获得奖励@2x.png background: #aaff85; color: #000; color: #000;
  1762. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1763. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\二阶奖励@2x.png background: #aaff85; color: #000; color: #000;
  1764. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请@2x.png background: #aaff85; color: #000; color: #000;
  1765. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\5@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1766. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请个人可获得奖励@2x.png background: #aaff85; color: #000; color: #000;
  1767. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\x按钮@2x@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1768. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\个人可获得奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1769. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\二阶奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1770. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\刷新@2x.png background: #aaff85; color: #000; color: #000;
  1771. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层2拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  1772. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层3拷贝3@2x.png background: #aaff85; color: #000; color: #000;
  1773. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1774. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层878@2x.png background: #aaff85; color: #000; color: #000;
  1775. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请个人可获得奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1776. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\大背景拷贝@2x.png background: #aaff85; color: #000; color: #000;
  1777. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\刷新@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1778. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形7@2x.png background: #aaff85; color: #000; color: #000;
  1779. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层2拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1780. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层3拷贝3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1781. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形8@2x.png background: #aaff85; color: #000; color: #000;
  1782. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\进度条@2x.png background: #aaff85; color: #000; color: #000;
  1783. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层878@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1784. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形7@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1785. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\邀请好友@2x.png background: #aaff85; color: #000; color: #000;
  1786. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\领取奖励@2x.png background: #aaff85; color: #000; color: #000;
  1787. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形8@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1788. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\进度条@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1789. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\大背景拷贝@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1790. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\(随机道具X3)@2x.png background: #aaff85; color: #000; color: #000;
  1791. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\图层27拷贝2@2x@2x.png background: #aaff85; color: #000; color: #000;
  1792. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌卡@2x.png background: #aaff85; color: #000; color: #000;
  1793. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\邀请好友@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1794. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  1795. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\领取奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1796. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\消除印章@2x.png background: #aaff85; color: #000; color: #000;
  1797. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\(随机道具X3)@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1798. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\图层27拷贝2@2x@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1799. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\清空@2x.png background: #aaff85; color: #000; color: #000;
  1800. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌卡@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1801. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\组30拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  1802. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res background: #aaff85; color: #000; color: #000;
  1803. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1804. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\消除印章@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1805. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\清空@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1806. 2025-1-11 15:09:52-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\组30拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1807. 2025-1-11 15:09:52-debug: refresh db assets success
  1808. 2025-1-11 15:09:52-debug: Run asset db hook engine-extends:afterRefresh ...
  1809. 2025-1-11 15:09:52-debug: Run asset db hook engine-extends:afterRefresh success!
  1810. 2025-1-11 15:09:52-debug: asset-db:refresh-all-database (520ms)
  1811. 2025-1-11 15:09:52-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1812. 2025-1-11 15:09:52-debug: asset-db:worker-effect-data-processing (2ms)
  1813. 2025-1-11 15:10:15-debug: refresh db internal success
  1814. 2025-1-11 15:10:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友 background: #aaff85; color: #000; color: #000;
  1815. 2025-1-11 15:10:15-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具 background: #aaff85; color: #000; color: #000;
  1816. 2025-1-11 15:10:15-debug: refresh db assets success
  1817. 2025-1-11 15:10:15-debug: Run asset db hook engine-extends:afterRefresh ...
  1818. 2025-1-11 15:10:15-debug: Run asset db hook engine-extends:afterRefresh success!
  1819. 2025-1-11 15:10:15-debug: asset-db:refresh-all-database (99ms)
  1820. 2025-1-11 15:10:15-debug: asset-db:worker-effect-data-processing (1ms)
  1821. 2025-1-11 15:10:15-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1822. 2025-1-11 15:10:18-debug: refresh db internal success
  1823. 2025-1-11 15:10:18-debug: refresh db assets success
  1824. 2025-1-11 15:10:18-debug: Run asset db hook engine-extends:afterRefresh ...
  1825. 2025-1-11 15:10:18-debug: Run asset db hook engine-extends:afterRefresh success!
  1826. 2025-1-11 15:10:18-debug: asset-db:refresh-all-database (84ms)
  1827. 2025-1-11 15:10:18-debug: asset-db:worker-effect-data-processing (1ms)
  1828. 2025-1-11 15:10:18-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1829. 2025-1-11 15:10:41-debug: refresh db internal success
  1830. 2025-1-11 15:10:41-debug: refresh db assets success
  1831. 2025-1-11 15:10:41-debug: Run asset db hook engine-extends:afterRefresh ...
  1832. 2025-1-11 15:10:41-debug: Run asset db hook engine-extends:afterRefresh success!
  1833. 2025-1-11 15:10:41-debug: asset-db:refresh-all-database (231ms)
  1834. 2025-1-11 15:10:41-debug: asset-db:worker-effect-data-processing (1ms)
  1835. 2025-1-11 15:10:41-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  1836. 2025-1-11 15:10:58-debug: refresh db internal success
  1837. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到 background: #aaff85; color: #000; color: #000;
  1838. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮 background: #aaff85; color: #000; color: #000;
  1839. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\0dba2c7bc5186f11f4ba107130f51df85a56e6bb6f5b-nNDpn7_fw1200.png background: #aaff85; color: #000; color: #000;
  1840. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\图层27拷贝2@2x拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  1841. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\大背景@2x.png background: #aaff85; color: #000; color: #000;
  1842. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到1.png background: #aaff85; color: #000; color: #000;
  1843. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到2.png background: #aaff85; color: #000; color: #000;
  1844. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\0dba2c7bc5186f11f4ba107130f51df85a56e6bb6f5b-nNDpn7_fw1200.png@6c48a background: #aaff85; color: #000; color: #000;
  1845. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到1.png@6c48a background: #aaff85; color: #000; color: #000;
  1846. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\图层27拷贝2@2x拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1847. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\底图@2x.png background: #aaff85; color: #000; color: #000;
  1848. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\洗牌拷贝3@2x.png background: #aaff85; color: #000; color: #000;
  1849. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第一天@2x.png background: #aaff85; color: #000; color: #000;
  1850. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到2.png@6c48a background: #aaff85; color: #000; color: #000;
  1851. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天.png background: #aaff85; color: #000; color: #000;
  1852. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\大背景@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1853. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天@2x.png background: #aaff85; color: #000; color: #000;
  1854. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\洗牌拷贝3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1855. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第一天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1856. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\底图@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1857. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第三天@2x.png background: #aaff85; color: #000; color: #000;
  1858. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第二天@2x.png background: #aaff85; color: #000; color: #000;
  1859. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第五天@2x.png background: #aaff85; color: #000; color: #000;
  1860. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1861. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天.png@6c48a background: #aaff85; color: #000; color: #000;
  1862. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第六天@2x.png background: #aaff85; color: #000; color: #000;
  1863. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第三天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1864. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第二天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1865. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第四天@2x.png background: #aaff85; color: #000; color: #000;
  1866. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\组30拷贝3@2x.png background: #aaff85; color: #000; color: #000;
  1867. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\免费领取@2x.png background: #aaff85; color: #000; color: #000;
  1868. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第五天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1869. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3@2x.png background: #aaff85; color: #000; color: #000;
  1870. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第六天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1871. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第四天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1872. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3拷贝@2x.png background: #aaff85; color: #000; color: #000;
  1873. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\打勾(2)@2x.png background: #aaff85; color: #000; color: #000;
  1874. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\免费领取@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1875. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\组30拷贝3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1876. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\椭圆642@2x.png background: #aaff85; color: #000; color: #000;
  1877. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\看视频翻倍领取@2x.png background: #aaff85; color: #000; color: #000;
  1878. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1879. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\返回@2x.png background: #aaff85; color: #000; color: #000;
  1880. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\打勾(2)@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1881. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3拷贝@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1882. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res background: #aaff85; color: #000; color: #000;
  1883. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\椭圆642@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1884. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\看视频翻倍领取@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1885. 2025-1-11 15:10:58-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\返回@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1886. 2025-1-11 15:10:58-debug: refresh db assets success
  1887. 2025-1-11 15:10:58-debug: Run asset db hook engine-extends:afterRefresh ...
  1888. 2025-1-11 15:10:58-debug: Run asset db hook engine-extends:afterRefresh success!
  1889. 2025-1-11 15:10:58-debug: asset-db:refresh-all-database (276ms)
  1890. 2025-1-11 15:10:58-debug: asset-db:worker-effect-data-processing (2ms)
  1891. 2025-1-11 15:10:58-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  1892. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\3@2x.png background: #aaff85; color: #000; color: #000;
  1893. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1.png background: #aaff85; color: #000; color: #000;
  1894. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\4@2x.png background: #aaff85; color: #000; color: #000;
  1895. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1@2x.png background: #aaff85; color: #000; color: #000;
  1896. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\2@2x.png background: #aaff85; color: #000; color: #000;
  1897. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1898. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\4@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1899. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1900. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1901. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1.png@6c48a background: #aaff85; color: #000; color: #000;
  1902. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1903. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1904. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1905. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\4@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1906. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\1.png@f9941 background: #aaff85; color: #000; color: #000;
  1907. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\5@2x.png background: #aaff85; color: #000; color: #000;
  1908. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\x按钮@2x@2x.png background: #aaff85; color: #000; color: #000;
  1909. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\个人可获得奖励@2x.png background: #aaff85; color: #000; color: #000;
  1910. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\二阶奖励@2x.png background: #aaff85; color: #000; color: #000;
  1911. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请@2x.png background: #aaff85; color: #000; color: #000;
  1912. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\5@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1913. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\x按钮@2x@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1914. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\个人可获得奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1915. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\5@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1916. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\二阶奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1917. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\x按钮@2x@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1918. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\个人可获得奖励@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1919. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\二阶奖励@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1920. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1921. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1922. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请个人可获得奖励@2x.png background: #aaff85; color: #000; color: #000;
  1923. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\刷新@2x.png background: #aaff85; color: #000; color: #000;
  1924. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层3拷贝3@2x.png background: #aaff85; color: #000; color: #000;
  1925. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层2拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  1926. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层878@2x.png background: #aaff85; color: #000; color: #000;
  1927. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请个人可获得奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1928. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\刷新@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1929. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层3拷贝3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1930. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层2拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1931. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\再邀请个人可获得奖励@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1932. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\刷新@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1933. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层2拷贝2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1934. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层3拷贝3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1935. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层878@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1936. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\图层878@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1937. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\大背景拷贝@2x.png background: #aaff85; color: #000; color: #000;
  1938. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形7@2x.png background: #aaff85; color: #000; color: #000;
  1939. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形8@2x.png background: #aaff85; color: #000; color: #000;
  1940. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\进度条@2x.png background: #aaff85; color: #000; color: #000;
  1941. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\邀请好友@2x.png background: #aaff85; color: #000; color: #000;
  1942. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形7@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1943. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\大背景拷贝@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1944. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形8@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1945. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\进度条@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1946. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形8@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1947. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形7@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1948. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\大背景拷贝@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1949. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\邀请好友@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1950. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\进度条@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1951. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\邀请好友@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1952. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\(随机道具X3)@2x.png background: #aaff85; color: #000; color: #000;
  1953. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\领取奖励@2x.png background: #aaff85; color: #000; color: #000;
  1954. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\(随机道具X3)@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1955. 2025-1-11 15:12:28-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\领取奖励@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1956. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\(随机道具X3)@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1957. 2025-1-11 15:12:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\领取奖励@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1958. 2025-1-11 15:12:28-debug: asset-db:reimport-asset9dd81dd8-97a0-40b9-b266-42eaec830d13 (492ms)
  1959. 2025-1-11 15:12:28-debug: asset-db:reimport-asset69431418-45d6-4de0-b758-0625f21184c2 (503ms)
  1960. 2025-1-11 15:12:28-debug: asset-db:reimport-asset118586c0-38a3-4fc2-b5f1-66d5d3d2a2c2 (484ms)
  1961. 2025-1-11 15:12:28-debug: asset-db:reimport-asset27fb87c9-cfd8-40c2-a2d0-7d40dee3bcab (475ms)
  1962. 2025-1-11 15:12:28-debug: asset-db:reimport-asset633cf545-6ee4-4c81-a12f-74cb7a204444 (463ms)
  1963. 2025-1-11 15:12:28-debug: asset-db:reimport-asseteec3474a-20d8-4a26-9aa6-05a51b402584 (442ms)
  1964. 2025-1-11 15:12:28-debug: asset-db:reimport-asset49fe79c3-8fc6-4e88-ab72-6f9164d7ceb3 (411ms)
  1965. 2025-1-11 15:12:28-debug: asset-db:reimport-asset7ecebea6-6daa-4892-a397-57f0df200ebf (456ms)
  1966. 2025-1-11 15:12:28-debug: asset-db:reimport-asset4c1d7ca0-6605-45ca-a220-2e27eef3174b (383ms)
  1967. 2025-1-11 15:12:28-debug: asset-db:reimport-asset4113af12-bd72-4986-b23b-ca30843dd59f (399ms)
  1968. 2025-1-11 15:12:28-debug: asset-db:reimport-asset81d773d1-f239-4502-88c7-f9d7806b6abe (352ms)
  1969. 2025-1-11 15:12:28-debug: asset-db:reimport-assetc0c842be-d6cb-4395-8592-9d3d04914745 (427ms)
  1970. 2025-1-11 15:12:28-debug: asset-db:reimport-asset8d4c66f3-ec11-4b7e-8669-96a478504942 (367ms)
  1971. 2025-1-11 15:12:28-debug: asset-db:reimport-assetdde85328-bdc9-458c-acef-8e400d9a5202 (335ms)
  1972. 2025-1-11 15:12:28-debug: asset-db:reimport-asset54dee3ed-5433-42e1-a03c-209240d08c05 (305ms)
  1973. 2025-1-11 15:12:28-debug: asset-db:reimport-asset8706fd8a-c0a5-4a6f-b320-bebff48d291e (290ms)
  1974. 2025-1-11 15:12:28-debug: asset-db:reimport-asset037b9bbd-59a8-4e77-8edd-bced1b4bf0fe (256ms)
  1975. 2025-1-11 15:12:28-debug: asset-db:reimport-asset4a7c7372-59a9-4053-b808-bb1a31ac0cd6 (274ms)
  1976. 2025-1-11 15:12:28-debug: asset-db:reimport-asseta4f8f382-fcf1-4bf8-8f75-60e1dbe1537e (321ms)
  1977. 2025-1-11 15:12:28-debug: asset-db:reimport-asset0bfd2af4-7dab-4033-9fdc-49e5faa2be08 (210ms)
  1978. 2025-1-11 15:12:28-debug: asset-db:reimport-assetd28a0004-9ef5-4630-bf09-44925fd2e39f (242ms)
  1979. 2025-1-11 15:12:28-debug: asset-db:reimport-asset84d9fbea-73fc-4698-a2b7-f54d1969446d (226ms)
  1980. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\图层27拷贝2@2x@2x.png background: #aaff85; color: #000; color: #000;
  1981. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\消除印章@2x.png background: #aaff85; color: #000; color: #000;
  1982. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌卡@2x.png background: #aaff85; color: #000; color: #000;
  1983. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\清空@2x.png background: #aaff85; color: #000; color: #000;
  1984. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  1985. 2025-1-11 15:12:36-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\图层27拷贝2@2x@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1986. 2025-1-11 15:12:36-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\消除印章@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1987. 2025-1-11 15:12:36-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\清空@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1988. 2025-1-11 15:12:36-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌卡@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1989. 2025-1-11 15:12:36-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1990. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\消除印章@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1991. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\图层27拷贝2@2x@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1992. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\清空@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1993. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌拷贝2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1994. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\洗牌卡@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1995. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\组30拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  1996. 2025-1-11 15:12:36-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\组30拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  1997. 2025-1-11 15:12:36-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\道具\组30拷贝2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  1998. 2025-1-11 15:12:36-debug: asset-db:reimport-asset80dc31af-5dd5-4be2-90a4-c2fc869e2fa4 (106ms)
  1999. 2025-1-11 15:12:36-debug: asset-db:reimport-assetc0f1c93a-b7a3-4ed5-a0be-535981af938b (96ms)
  2000. 2025-1-11 15:12:36-debug: asset-db:reimport-asset757da675-7b1b-4119-90f3-4ed5661a6e1a (87ms)
  2001. 2025-1-11 15:12:36-debug: asset-db:reimport-assetc7d0f3c8-afa7-42f4-968d-b470ceeedca7 (58ms)
  2002. 2025-1-11 15:12:36-debug: asset-db:reimport-assetca256c7b-7641-4bd4-ad79-6fa7cc565dd8 (65ms)
  2003. 2025-1-11 15:12:36-debug: asset-db:reimport-assetc5a15fd0-0309-4e48-a721-fde9f5622a71 (77ms)
  2004. 2025-1-11 15:12:59-debug: refresh db internal success
  2005. 2025-1-11 15:12:59-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到 background: #aaff85; color: #000; color: #000;
  2006. 2025-1-11 15:12:59-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮 background: #aaff85; color: #000; color: #000;
  2007. 2025-1-11 15:12:59-debug: refresh db assets success
  2008. 2025-1-11 15:12:59-debug: Run asset db hook engine-extends:afterRefresh ...
  2009. 2025-1-11 15:12:59-debug: Run asset db hook engine-extends:afterRefresh success!
  2010. 2025-1-11 15:12:59-debug: asset-db:refresh-all-database (93ms)
  2011. 2025-1-11 15:12:59-debug: asset-db:worker-effect-data-processing (1ms)
  2012. 2025-1-11 15:12:59-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2013. 2025-1-11 15:13:01-debug: refresh db internal success
  2014. 2025-1-11 15:13:01-debug: refresh db assets success
  2015. 2025-1-11 15:13:01-debug: Run asset db hook engine-extends:afterRefresh ...
  2016. 2025-1-11 15:13:01-debug: Run asset db hook engine-extends:afterRefresh success!
  2017. 2025-1-11 15:13:01-debug: asset-db:refresh-all-database (95ms)
  2018. 2025-1-11 15:13:01-debug: asset-db:worker-effect-data-processing (1ms)
  2019. 2025-1-11 15:13:01-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2020. 2025-1-11 15:13:38-debug: refresh db internal success
  2021. 2025-1-11 15:13:38-debug: refresh db assets success
  2022. 2025-1-11 15:13:38-debug: Run asset db hook engine-extends:afterRefresh success!
  2023. 2025-1-11 15:13:38-debug: Run asset db hook engine-extends:afterRefresh ...
  2024. 2025-1-11 15:13:38-debug: asset-db:refresh-all-database (85ms)
  2025. 2025-1-11 15:13:38-debug: asset-db:worker-effect-data-processing (1ms)
  2026. 2025-1-11 15:13:38-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2027. 2025-1-11 15:13:44-debug: refresh db internal success
  2028. 2025-1-11 15:13:44-debug: refresh db assets success
  2029. 2025-1-11 15:13:44-debug: Run asset db hook engine-extends:afterRefresh ...
  2030. 2025-1-11 15:13:44-debug: Run asset db hook engine-extends:afterRefresh success!
  2031. 2025-1-11 15:13:44-debug: asset-db:refresh-all-database (81ms)
  2032. 2025-1-11 15:13:44-debug: asset-db:worker-effect-data-processing (1ms)
  2033. 2025-1-11 15:13:44-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2034. 2025-1-11 15:13:48-debug: refresh db internal success
  2035. 2025-1-11 15:13:48-debug: refresh db assets success
  2036. 2025-1-11 15:13:48-debug: Run asset db hook engine-extends:afterRefresh ...
  2037. 2025-1-11 15:13:48-debug: Run asset db hook engine-extends:afterRefresh success!
  2038. 2025-1-11 15:13:48-debug: asset-db:refresh-all-database (86ms)
  2039. 2025-1-11 15:13:48-debug: asset-db:worker-effect-data-processing (1ms)
  2040. 2025-1-11 15:13:48-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2041. 2025-1-11 15:13:51-debug: refresh db internal success
  2042. 2025-1-11 15:13:51-debug: refresh db assets success
  2043. 2025-1-11 15:13:51-debug: Run asset db hook engine-extends:afterRefresh ...
  2044. 2025-1-11 15:13:51-debug: Run asset db hook engine-extends:afterRefresh success!
  2045. 2025-1-11 15:13:51-debug: asset-db:refresh-all-database (76ms)
  2046. 2025-1-11 15:13:51-debug: asset-db:worker-effect-data-processing (1ms)
  2047. 2025-1-11 15:13:51-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2048. 2025-1-11 15:17:22-debug: refresh db internal success
  2049. 2025-1-11 15:17:22-debug: refresh db assets success
  2050. 2025-1-11 15:17:22-debug: Run asset db hook engine-extends:afterRefresh ...
  2051. 2025-1-11 15:17:22-debug: Run asset db hook engine-extends:afterRefresh success!
  2052. 2025-1-11 15:17:22-debug: asset-db:refresh-all-database (85ms)
  2053. 2025-1-11 15:17:22-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2054. 2025-1-11 15:17:22-debug: asset-db:worker-effect-data-processing (1ms)
  2055. 2025-1-11 15:17:24-debug: refresh db internal success
  2056. 2025-1-11 15:17:24-debug: refresh db assets success
  2057. 2025-1-11 15:17:24-debug: Run asset db hook engine-extends:afterRefresh ...
  2058. 2025-1-11 15:17:24-debug: Run asset db hook engine-extends:afterRefresh success!
  2059. 2025-1-11 15:17:24-debug: asset-db:refresh-all-database (78ms)
  2060. 2025-1-11 15:17:24-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2061. 2025-1-11 15:20:03-debug: refresh db internal success
  2062. 2025-1-11 15:20:03-debug: refresh db assets success
  2063. 2025-1-11 15:20:03-debug: Run asset db hook engine-extends:afterRefresh ...
  2064. 2025-1-11 15:20:03-debug: Run asset db hook engine-extends:afterRefresh success!
  2065. 2025-1-11 15:20:03-debug: asset-db:refresh-all-database (82ms)
  2066. 2025-1-11 15:20:03-debug: asset-db:worker-effect-data-processing (1ms)
  2067. 2025-1-11 15:20:03-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2068. 2025-1-11 15:20:05-debug: refresh db internal success
  2069. 2025-1-11 15:20:05-debug: refresh db assets success
  2070. 2025-1-11 15:20:05-debug: Run asset db hook engine-extends:afterRefresh success!
  2071. 2025-1-11 15:20:05-debug: Run asset db hook engine-extends:afterRefresh ...
  2072. 2025-1-11 15:20:05-debug: asset-db:refresh-all-database (76ms)
  2073. 2025-1-11 15:20:05-debug: asset-db:worker-effect-data-processing (1ms)
  2074. 2025-1-11 15:20:05-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2075. 2025-1-11 15:21:05-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形8@2x.png background: #aaff85; color: #000; color: #000;
  2076. 2025-1-11 15:21:05-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形8@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2077. 2025-1-11 15:21:05-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\邀请好友\矩形8@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2078. 2025-1-11 15:21:05-debug: asset-db:reimport-asset4a7c7372-59a9-4053-b808-bb1a31ac0cd6 (18ms)
  2079. 2025-1-11 15:22:49-debug: refresh db internal success
  2080. 2025-1-11 15:22:49-debug: refresh db assets success
  2081. 2025-1-11 15:22:49-debug: Run asset db hook engine-extends:afterRefresh ...
  2082. 2025-1-11 15:22:49-debug: Run asset db hook engine-extends:afterRefresh success!
  2083. 2025-1-11 15:22:49-debug: asset-db:refresh-all-database (87ms)
  2084. 2025-1-11 15:22:49-debug: asset-db:worker-effect-data-processing (1ms)
  2085. 2025-1-11 15:22:49-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2086. 2025-1-11 15:22:52-debug: refresh db internal success
  2087. 2025-1-11 15:22:52-debug: refresh db assets success
  2088. 2025-1-11 15:22:52-debug: Run asset db hook engine-extends:afterRefresh ...
  2089. 2025-1-11 15:22:52-debug: Run asset db hook engine-extends:afterRefresh success!
  2090. 2025-1-11 15:22:52-debug: asset-db:refresh-all-database (77ms)
  2091. 2025-1-11 15:22:52-debug: asset-db:worker-effect-data-processing (1ms)
  2092. 2025-1-11 15:22:52-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2093. 2025-1-11 15:26:53-debug: refresh db internal success
  2094. 2025-1-11 15:26:53-debug: refresh db assets success
  2095. 2025-1-11 15:26:53-debug: Run asset db hook engine-extends:afterRefresh success!
  2096. 2025-1-11 15:26:53-debug: Run asset db hook engine-extends:afterRefresh ...
  2097. 2025-1-11 15:26:53-debug: asset-db:refresh-all-database (87ms)
  2098. 2025-1-11 15:26:53-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2099. 2025-1-11 15:28:23-debug: refresh db internal success
  2100. 2025-1-11 15:28:23-debug: refresh db assets success
  2101. 2025-1-11 15:28:23-debug: Run asset db hook engine-extends:afterRefresh ...
  2102. 2025-1-11 15:28:23-debug: Run asset db hook engine-extends:afterRefresh success!
  2103. 2025-1-11 15:28:23-debug: asset-db:refresh-all-database (85ms)
  2104. 2025-1-11 15:28:23-debug: asset-db:worker-effect-data-processing (1ms)
  2105. 2025-1-11 15:28:23-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2106. 2025-1-11 15:28:41-debug: refresh db internal success
  2107. 2025-1-11 15:28:41-debug: refresh db assets success
  2108. 2025-1-11 15:28:41-debug: Run asset db hook engine-extends:afterRefresh ...
  2109. 2025-1-11 15:28:41-debug: Run asset db hook engine-extends:afterRefresh success!
  2110. 2025-1-11 15:28:41-debug: asset-db:refresh-all-database (115ms)
  2111. 2025-1-11 15:28:41-debug: asset-db:worker-effect-data-processing (1ms)
  2112. 2025-1-11 15:28:41-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2113. 2025-1-11 15:28:50-debug: refresh db internal success
  2114. 2025-1-11 15:28:50-debug: refresh db assets success
  2115. 2025-1-11 15:28:50-debug: Run asset db hook engine-extends:afterRefresh ...
  2116. 2025-1-11 15:28:50-debug: Run asset db hook engine-extends:afterRefresh success!
  2117. 2025-1-11 15:28:50-debug: asset-db:refresh-all-database (131ms)
  2118. 2025-1-11 15:28:50-debug: asset-db:worker-effect-data-processing (4ms)
  2119. 2025-1-11 15:28:50-debug: asset-db-hook-engine-extends-afterRefresh (5ms)
  2120. 2025-1-11 15:29:45-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite...
  2121. 2025-1-11 15:29:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite background: #aaff85; color: #000; color: #000;
  2122. 2025-1-11 15:29:45-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui success
  2123. 2025-1-11 15:29:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui background: #aaff85; color: #000; color: #000;
  2124. 2025-1-11 15:29:48-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab...
  2125. 2025-1-11 15:29:48-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  2126. 2025-1-11 15:29:48-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite success
  2127. 2025-1-11 15:29:48-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite background: #aaff85; color: #000; color: #000;
  2128. 2025-1-11 15:30:14-debug: refresh db internal success
  2129. 2025-1-11 15:30:14-debug: refresh db assets success
  2130. 2025-1-11 15:30:14-debug: Run asset db hook engine-extends:afterRefresh ...
  2131. 2025-1-11 15:30:14-debug: Run asset db hook engine-extends:afterRefresh success!
  2132. 2025-1-11 15:30:14-debug: asset-db:refresh-all-database (83ms)
  2133. 2025-1-11 15:30:14-debug: asset-db:worker-effect-data-processing (1ms)
  2134. 2025-1-11 15:30:14-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2135. 2025-1-11 15:30:16-debug: refresh db internal success
  2136. 2025-1-11 15:30:17-debug: Run asset db hook engine-extends:afterRefresh success!
  2137. 2025-1-11 15:30:17-debug: refresh db assets success
  2138. 2025-1-11 15:30:17-debug: Run asset db hook engine-extends:afterRefresh ...
  2139. 2025-1-11 15:30:17-debug: asset-db:refresh-all-database (80ms)
  2140. 2025-1-11 15:30:17-debug: asset-db:worker-effect-data-processing (1ms)
  2141. 2025-1-11 15:30:17-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2142. 2025-1-11 15:30:19-debug: refresh db internal success
  2143. 2025-1-11 15:30:19-debug: refresh db assets success
  2144. 2025-1-11 15:30:19-debug: Run asset db hook engine-extends:afterRefresh success!
  2145. 2025-1-11 15:30:19-debug: Run asset db hook engine-extends:afterRefresh ...
  2146. 2025-1-11 15:30:19-debug: asset-db:refresh-all-database (79ms)
  2147. 2025-1-11 15:30:19-debug: asset-db:worker-effect-data-processing (1ms)
  2148. 2025-1-11 15:30:19-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2149. 2025-1-11 15:30:22-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  2150. 2025-1-11 15:30:22-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (29ms)
  2151. 2025-1-11 15:30:22-debug: refresh db internal success
  2152. 2025-1-11 15:30:22-debug: refresh db assets success
  2153. 2025-1-11 15:30:22-debug: Run asset db hook engine-extends:afterRefresh ...
  2154. 2025-1-11 15:30:22-debug: Run asset db hook engine-extends:afterRefresh success!
  2155. 2025-1-11 15:30:22-debug: asset-db:refresh-all-database (77ms)
  2156. 2025-1-11 15:30:22-debug: asset-db:worker-effect-data-processing (1ms)
  2157. 2025-1-11 15:30:22-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2158. 2025-1-11 15:30:26-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  2159. 2025-1-11 15:30:26-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (18ms)
  2160. 2025-1-11 15:30:26-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  2161. 2025-1-11 15:30:26-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (23ms)
  2162. 2025-1-11 15:30:27-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  2163. 2025-1-11 15:30:27-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (20ms)
  2164. 2025-1-11 15:31:09-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign...
  2165. 2025-1-11 15:31:09-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign background: #aaff85; color: #000; color: #000;
  2166. 2025-1-11 15:31:09-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui success
  2167. 2025-1-11 15:31:09-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui background: #aaff85; color: #000; color: #000;
  2168. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\图层27拷贝2@2x拷贝2@2x.png background: #aaff85; color: #000; color: #000;
  2169. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\0dba2c7bc5186f11f4ba107130f51df85a56e6bb6f5b-nNDpn7_fw1200.png background: #aaff85; color: #000; color: #000;
  2170. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到1.png background: #aaff85; color: #000; color: #000;
  2171. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到2.png background: #aaff85; color: #000; color: #000;
  2172. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\大背景@2x.png background: #aaff85; color: #000; color: #000;
  2173. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\图层27拷贝2@2x拷贝2@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2174. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到1.png@6c48a background: #aaff85; color: #000; color: #000;
  2175. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到2.png@6c48a background: #aaff85; color: #000; color: #000;
  2176. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\大背景@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2177. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\0dba2c7bc5186f11f4ba107130f51df85a56e6bb6f5b-nNDpn7_fw1200.png@6c48a background: #aaff85; color: #000; color: #000;
  2178. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\图层27拷贝2@2x拷贝2@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2179. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到1.png@f9941 background: #aaff85; color: #000; color: #000;
  2180. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\已签到2.png@f9941 background: #aaff85; color: #000; color: #000;
  2181. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\0dba2c7bc5186f11f4ba107130f51df85a56e6bb6f5b-nNDpn7_fw1200.png@f9941 background: #aaff85; color: #000; color: #000;
  2182. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\大背景@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2183. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\洗牌拷贝3@2x.png background: #aaff85; color: #000; color: #000;
  2184. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\底图@2x.png background: #aaff85; color: #000; color: #000;
  2185. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第一天@2x.png background: #aaff85; color: #000; color: #000;
  2186. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天.png background: #aaff85; color: #000; color: #000;
  2187. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天@2x.png background: #aaff85; color: #000; color: #000;
  2188. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\底图@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2189. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\洗牌拷贝3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2190. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第一天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2191. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\洗牌拷贝3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2192. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\底图@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2193. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天.png@6c48a background: #aaff85; color: #000; color: #000;
  2194. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第一天@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2195. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2196. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天.png@f9941 background: #aaff85; color: #000; color: #000;
  2197. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第七天@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2198. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第三天@2x.png background: #aaff85; color: #000; color: #000;
  2199. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第二天@2x.png background: #aaff85; color: #000; color: #000;
  2200. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第五天@2x.png background: #aaff85; color: #000; color: #000;
  2201. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第四天@2x.png background: #aaff85; color: #000; color: #000;
  2202. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第六天@2x.png background: #aaff85; color: #000; color: #000;
  2203. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第二天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2204. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第三天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2205. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第二天@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2206. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第三天@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2207. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第四天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2208. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第五天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2209. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第六天@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2210. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第四天@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2211. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第五天@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2212. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\第六天@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2213. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\组30拷贝3@2x.png background: #aaff85; color: #000; color: #000;
  2214. 2025-1-11 15:31:45-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\组30拷贝3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2215. 2025-1-11 15:31:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\组30拷贝3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2216. 2025-1-11 15:31:45-debug: asset-db:reimport-assetac53ed4f-cfa5-4386-bbe4-1de21033b926 (353ms)
  2217. 2025-1-11 15:31:45-debug: asset-db:reimport-asset5dce8013-0c69-4458-b6a7-375c1d5423e5 (342ms)
  2218. 2025-1-11 15:31:45-debug: asset-db:reimport-asset470ce41e-74c7-4acd-b266-65f23439142d (317ms)
  2219. 2025-1-11 15:31:45-debug: asset-db:reimport-asset06f530d0-50fd-4ffa-bd8b-a53ecc49466d (304ms)
  2220. 2025-1-11 15:31:45-debug: asset-db:reimport-assetdbae7eef-7a28-4468-b874-316e80bed9df (323ms)
  2221. 2025-1-11 15:31:45-debug: asset-db:reimport-assete7bef88b-df05-40e1-a2c9-9062d52747ad (290ms)
  2222. 2025-1-11 15:31:45-debug: asset-db:reimport-asset188580d0-9d6c-4b77-9694-66cb957fd1fb (275ms)
  2223. 2025-1-11 15:31:45-debug: asset-db:reimport-asset57ccf3a2-d2b1-4d1f-8ccb-e48b8e3d056d (333ms)
  2224. 2025-1-11 15:31:45-debug: asset-db:reimport-asset711b5085-c5b7-4316-a3ab-a0439b231d4c (262ms)
  2225. 2025-1-11 15:31:45-debug: asset-db:reimport-assetb288ad43-44f5-45d2-a6c3-d3bd3897ebf2 (249ms)
  2226. 2025-1-11 15:31:45-debug: asset-db:reimport-asset18d6441c-26ae-4fd2-9e8a-02a38afe7c71 (282ms)
  2227. 2025-1-11 15:31:45-debug: asset-db:reimport-assetc5820efa-3f9c-41dd-b58c-e12678d8705a (235ms)
  2228. 2025-1-11 15:31:45-debug: asset-db:reimport-assetc85cf380-aad0-4448-8cb0-37e75ba57dac (217ms)
  2229. 2025-1-11 15:31:45-debug: asset-db:reimport-assetb508123f-b72d-4531-aea5-2551cc016364 (225ms)
  2230. 2025-1-11 15:31:45-debug: asset-db:reimport-asset22529e55-262f-41ec-9061-03b065e84877 (206ms)
  2231. 2025-1-11 15:31:45-debug: asset-db:reimport-asset15ca7125-33f6-42e0-ad97-0e3e1f951d21 (194ms)
  2232. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\免费领取@2x.png background: #aaff85; color: #000; color: #000;
  2233. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3@2x.png background: #aaff85; color: #000; color: #000;
  2234. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3拷贝@2x.png background: #aaff85; color: #000; color: #000;
  2235. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\打勾(2)@2x.png background: #aaff85; color: #000; color: #000;
  2236. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\椭圆642@2x.png background: #aaff85; color: #000; color: #000;
  2237. 2025-1-11 15:31:50-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2238. 2025-1-11 15:31:50-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\打勾(2)@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2239. 2025-1-11 15:31:50-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\免费领取@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2240. 2025-1-11 15:31:50-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3拷贝@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2241. 2025-1-11 15:31:50-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\椭圆642@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2242. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2243. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\免费领取@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2244. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\打勾(2)@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2245. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\图层3拷贝@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2246. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\椭圆642@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2247. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\看视频翻倍领取@2x.png background: #aaff85; color: #000; color: #000;
  2248. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\返回@2x.png background: #aaff85; color: #000; color: #000;
  2249. 2025-1-11 15:31:50-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\返回@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2250. 2025-1-11 15:31:50-debug: %cReImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\看视频翻倍领取@2x.png@6c48a background: #aaff85; color: #000; color: #000;
  2251. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\看视频翻倍领取@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2252. 2025-1-11 15:31:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\res\签到\按钮\返回@2x.png@f9941 background: #aaff85; color: #000; color: #000;
  2253. 2025-1-11 15:31:50-debug: asset-db:reimport-assetd49b8724-b30b-42c9-b9b3-1ebca28f4467 (114ms)
  2254. 2025-1-11 15:31:50-debug: asset-db:reimport-asset5ea09658-87d5-4fef-8113-8918a2240a49 (104ms)
  2255. 2025-1-11 15:31:50-debug: asset-db:reimport-assetb9fd8b62-c7a2-4150-aedf-1f378f72abf6 (81ms)
  2256. 2025-1-11 15:31:50-debug: asset-db:reimport-asset56677846-180b-4c05-86f4-2d5f654b6bc5 (89ms)
  2257. 2025-1-11 15:31:50-debug: asset-db:reimport-asset14963b59-eb73-4238-bef1-a860da08f3d2 (95ms)
  2258. 2025-1-11 15:31:50-debug: asset-db:reimport-asset99db6491-65af-463f-8d3b-a375e11a5c7b (66ms)
  2259. 2025-1-11 15:31:50-debug: asset-db:reimport-asset1326ea0c-c982-4de4-9ec3-112d853d1b06 (73ms)
  2260. 2025-1-11 15:32:08-debug: refresh db internal success
  2261. 2025-1-11 15:32:08-debug: refresh db assets success
  2262. 2025-1-11 15:32:08-debug: Run asset db hook engine-extends:afterRefresh ...
  2263. 2025-1-11 15:32:08-debug: Run asset db hook engine-extends:afterRefresh success!
  2264. 2025-1-11 15:32:08-debug: asset-db:refresh-all-database (85ms)
  2265. 2025-1-11 15:32:08-debug: asset-db:worker-effect-data-processing (1ms)
  2266. 2025-1-11 15:32:08-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2267. 2025-1-11 15:32:14-debug: refresh db internal success
  2268. 2025-1-11 15:32:14-debug: refresh db assets success
  2269. 2025-1-11 15:32:14-debug: Run asset db hook engine-extends:afterRefresh ...
  2270. 2025-1-11 15:32:14-debug: Run asset db hook engine-extends:afterRefresh success!
  2271. 2025-1-11 15:32:14-debug: asset-db:refresh-all-database (83ms)
  2272. 2025-1-11 15:32:14-debug: asset-db:worker-effect-data-processing (2ms)
  2273. 2025-1-11 15:32:14-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2274. 2025-1-11 15:34:15-debug: refresh db internal success
  2275. 2025-1-11 15:34:15-debug: refresh db assets success
  2276. 2025-1-11 15:34:15-debug: Run asset db hook engine-extends:afterRefresh ...
  2277. 2025-1-11 15:34:15-debug: Run asset db hook engine-extends:afterRefresh success!
  2278. 2025-1-11 15:34:15-debug: asset-db:refresh-all-database (84ms)
  2279. 2025-1-11 15:34:19-debug: refresh db internal success
  2280. 2025-1-11 15:34:19-debug: refresh db assets success
  2281. 2025-1-11 15:34:19-debug: Run asset db hook engine-extends:afterRefresh ...
  2282. 2025-1-11 15:34:19-debug: Run asset db hook engine-extends:afterRefresh success!
  2283. 2025-1-11 15:34:19-debug: asset-db:refresh-all-database (80ms)
  2284. 2025-1-11 15:35:25-debug: refresh db internal success
  2285. 2025-1-11 15:35:25-debug: refresh db assets success
  2286. 2025-1-11 15:35:25-debug: Run asset db hook engine-extends:afterRefresh ...
  2287. 2025-1-11 15:35:25-debug: Run asset db hook engine-extends:afterRefresh success!
  2288. 2025-1-11 15:35:25-debug: asset-db:refresh-all-database (85ms)
  2289. 2025-1-11 15:35:31-debug: refresh db internal success
  2290. 2025-1-11 15:35:31-debug: refresh db assets success
  2291. 2025-1-11 15:35:31-debug: Run asset db hook engine-extends:afterRefresh ...
  2292. 2025-1-11 15:35:31-debug: Run asset db hook engine-extends:afterRefresh success!
  2293. 2025-1-11 15:35:31-debug: asset-db:refresh-all-database (81ms)
  2294. 2025-1-11 15:35:31-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2295. 2025-1-11 15:36:00-debug: Query all assets info in project
  2296. 2025-1-11 15:36:00-debug: init custom config: keepNodeUuid: false, useCache: true
  2297. 2025-1-11 15:36:00-debug: 查询 Asset Bundle start, progress: 0%
  2298. 2025-1-11 15:36:00-debug: // ---- build task 查询 Asset Bundle ----
  2299. 2025-1-11 15:36: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2300. 2025-1-11 15:36:00-debug: Number of all scenes: 3
  2301. 2025-1-11 15:36:00-debug: Number of all scripts: 99
  2302. 2025-1-11 15:36:00-debug: Number of other assets: 753
  2303. 2025-1-11 15:36:00-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  2304. 2025-1-11 15:36:00-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  2305. 2025-1-11 15:36:00-debug: [Build Memory track]: 查询 Asset Bundle start:172.29MB, end 172.82MB, increase: 541.91KB
  2306. 2025-1-11 15:36:00-debug: // ---- build task 查询 Asset Bundle ----
  2307. 2025-1-11 15:36:00-debug: 查询 Asset Bundle start, progress: 5%
  2308. 2025-1-11 15:36:00-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2309. 2025-1-11 15:36:00-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2310. 2025-1-11 15:36:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2311. 2025-1-11 15:36:00-debug: [Build Memory track]: 查询 Asset Bundle start:172.85MB, end 172.17MB, increase: -693.31KB
  2312. 2025-1-11 15:36:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2313. 2025-1-11 15:36:00-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2314. 2025-1-11 15:36:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.20MB, end 172.22MB, increase: 18.40KB
  2315. 2025-1-11 15:36:00-debug: 填充脚本数据到 settings.json start, progress: 12%
  2316. 2025-1-11 15:36:00-debug: // ---- build task 填充脚本数据到 settings.json ----
  2317. 2025-1-11 15:36:00-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2318. 2025-1-11 15:36:00-debug: [Build Memory track]: 填充脚本数据到 settings.json start:172.26MB, end 172.27MB, increase: 19.50KB
  2319. 2025-1-11 15:36:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2320. 2025-1-11 15:36:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2321. 2025-1-11 15:36:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2322. 2025-1-11 15:36:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2323. 2025-1-11 15:36:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.31MB, end 172.44MB, increase: 133.69KB
  2324. 2025-1-11 15:40:08-debug: refresh db internal success
  2325. 2025-1-11 15:40:08-debug: refresh db assets success
  2326. 2025-1-11 15:40:08-debug: Run asset db hook engine-extends:afterRefresh ...
  2327. 2025-1-11 15:40:08-debug: Run asset db hook engine-extends:afterRefresh success!
  2328. 2025-1-11 15:40:08-debug: asset-db:refresh-all-database (82ms)
  2329. 2025-1-11 15:40:09-debug: refresh db internal success
  2330. 2025-1-11 15:40:09-debug: refresh db assets success
  2331. 2025-1-11 15:40:09-debug: Run asset db hook engine-extends:afterRefresh ...
  2332. 2025-1-11 15:40:09-debug: Run asset db hook engine-extends:afterRefresh success!
  2333. 2025-1-11 15:40:09-debug: asset-db:refresh-all-database (105ms)
  2334. 2025-1-11 15:40:09-debug: asset-db:worker-effect-data-processing (1ms)
  2335. 2025-1-11 15:40:09-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2336. 2025-1-11 15:40:28-debug: refresh db internal success
  2337. 2025-1-11 15:40:28-debug: refresh db assets success
  2338. 2025-1-11 15:40:28-debug: Run asset db hook engine-extends:afterRefresh ...
  2339. 2025-1-11 15:40:28-debug: Run asset db hook engine-extends:afterRefresh success!
  2340. 2025-1-11 15:40:28-debug: asset-db:refresh-all-database (82ms)
  2341. 2025-1-11 15:40:28-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2342. 2025-1-11 15:40:30-debug: refresh db internal success
  2343. 2025-1-11 15:40:30-debug: refresh db assets success
  2344. 2025-1-11 15:40:30-debug: Run asset db hook engine-extends:afterRefresh success!
  2345. 2025-1-11 15:40:30-debug: Run asset db hook engine-extends:afterRefresh ...
  2346. 2025-1-11 15:40:30-debug: asset-db:refresh-all-database (76ms)
  2347. 2025-1-11 15:40:30-debug: asset-db:worker-effect-data-processing (1ms)
  2348. 2025-1-11 15:40:30-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2349. 2025-1-11 15:46:10-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2350. 2025-1-11 15:46:11-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (21ms)
  2351. 2025-1-11 15:46:20-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2352. 2025-1-11 15:46:20-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (28ms)
  2353. 2025-1-11 15:46:20-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2354. 2025-1-11 15:46:20-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (28ms)
  2355. 2025-1-11 15:46:38-debug: refresh db internal success
  2356. 2025-1-11 15:46:38-debug: refresh db assets success
  2357. 2025-1-11 15:46:38-debug: Run asset db hook engine-extends:afterRefresh ...
  2358. 2025-1-11 15:46:38-debug: Run asset db hook engine-extends:afterRefresh success!
  2359. 2025-1-11 15:46:38-debug: asset-db:refresh-all-database (82ms)
  2360. 2025-1-11 15:46:38-debug: asset-db:worker-effect-data-processing (-1ms)
  2361. 2025-1-11 15:46:47-debug: refresh db internal success
  2362. 2025-1-11 15:46:48-debug: refresh db assets success
  2363. 2025-1-11 15:46:48-debug: Run asset db hook engine-extends:afterRefresh success!
  2364. 2025-1-11 15:46:48-debug: Run asset db hook engine-extends:afterRefresh ...
  2365. 2025-1-11 15:46:48-debug: asset-db:refresh-all-database (81ms)
  2366. 2025-1-11 15:49:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2367. 2025-1-11 15:49:00-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (14ms)
  2368. 2025-1-11 15:49:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2369. 2025-1-11 15:49:00-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (20ms)
  2370. 2025-1-11 15:51:34-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2371. 2025-1-11 15:51:34-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (26ms)
  2372. 2025-1-11 15:51:34-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2373. 2025-1-11 15:51:34-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (18ms)
  2374. 2025-1-11 15:54:15-debug: refresh db internal success
  2375. 2025-1-11 15:54:15-debug: refresh db assets success
  2376. 2025-1-11 15:54:15-debug: Run asset db hook engine-extends:afterRefresh ...
  2377. 2025-1-11 15:54:15-debug: Run asset db hook engine-extends:afterRefresh success!
  2378. 2025-1-11 15:54:15-debug: asset-db:refresh-all-database (82ms)
  2379. 2025-1-11 15:54:15-debug: asset-db:worker-effect-data-processing (1ms)
  2380. 2025-1-11 15:54:15-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2381. 2025-1-11 15:55:26-debug: refresh db internal success
  2382. 2025-1-11 15:55:26-debug: Run asset db hook engine-extends:afterRefresh ...
  2383. 2025-1-11 15:55:26-debug: Run asset db hook engine-extends:afterRefresh success!
  2384. 2025-1-11 15:55:26-debug: refresh db assets success
  2385. 2025-1-11 15:55:26-debug: asset-db:refresh-all-database (85ms)
  2386. 2025-1-11 15:55:26-debug: asset-db:worker-effect-data-processing (1ms)
  2387. 2025-1-11 15:55:26-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2388. 2025-1-11 15:55:28-debug: refresh db internal success
  2389. 2025-1-11 15:55:28-debug: refresh db assets success
  2390. 2025-1-11 15:55:28-debug: Run asset db hook engine-extends:afterRefresh ...
  2391. 2025-1-11 15:55:28-debug: Run asset db hook engine-extends:afterRefresh success!
  2392. 2025-1-11 15:55:28-debug: asset-db:worker-effect-data-processing (2ms)
  2393. 2025-1-11 15:55:28-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2394. 2025-1-11 15:55:28-debug: asset-db:refresh-all-database (75ms)
  2395. 2025-1-11 15:55:35-debug: refresh db internal success
  2396. 2025-1-11 15:55:35-debug: refresh db assets success
  2397. 2025-1-11 15:55:35-debug: Run asset db hook engine-extends:afterRefresh ...
  2398. 2025-1-11 15:55:35-debug: Run asset db hook engine-extends:afterRefresh success!
  2399. 2025-1-11 15:55:35-debug: asset-db:refresh-all-database (79ms)
  2400. 2025-1-11 15:55:35-debug: asset-db:worker-effect-data-processing (1ms)
  2401. 2025-1-11 15:55:35-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2402. 2025-1-11 15:55:37-debug: refresh db internal success
  2403. 2025-1-11 15:55:37-debug: refresh db assets success
  2404. 2025-1-11 15:55:37-debug: Run asset db hook engine-extends:afterRefresh ...
  2405. 2025-1-11 15:55:37-debug: Run asset db hook engine-extends:afterRefresh success!
  2406. 2025-1-11 15:55:37-debug: asset-db:refresh-all-database (76ms)
  2407. 2025-1-11 15:55:37-debug: asset-db:worker-effect-data-processing (1ms)
  2408. 2025-1-11 15:55:37-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2409. 2025-1-11 15:56:08-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab...
  2410. 2025-1-11 15:56:08-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  2411. 2025-1-11 15:56:08-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign success
  2412. 2025-1-11 15:56:08-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign background: #aaff85; color: #000; color: #000;
  2413. 2025-1-11 15:56:14-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2414. 2025-1-11 15:56:14-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (22ms)
  2415. 2025-1-11 15:56:14-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\hall\hall.scene background: #aaff85; color: #000; color: #000;
  2416. 2025-1-11 15:56:14-debug: asset-db:reimport-assetf9516261-6f5e-4b79-9676-880b100e9a8d (15ms)
  2417. 2025-1-11 15:58:42-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Layout_Sign.ts...
  2418. 2025-1-11 15:58:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Layout_Sign.ts background: #aaff85; color: #000; color: #000;
  2419. 2025-1-11 15:58:42-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign success
  2420. 2025-1-11 15:58:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign background: #aaff85; color: #000; color: #000;
  2421. 2025-1-11 15:58:43-debug: Query all assets info in project
  2422. 2025-1-11 15:58:43-debug: init custom config: keepNodeUuid: false, useCache: true
  2423. 2025-1-11 15:58:43-debug: 查询 Asset Bundle start, progress: 0%
  2424. 2025-1-11 15:58:43-debug: // ---- build task 查询 Asset Bundle ----
  2425. 2025-1-11 15:58:43-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2426. 2025-1-11 15:58:43-debug: Number of all scenes: 3
  2427. 2025-1-11 15:58:43-debug: Number of all scripts: 100
  2428. 2025-1-11 15:58:43-debug: Number of other assets: 754
  2429. 2025-1-11 15:58:43-debug: [Build Memory track]: 查询 Asset Bundle start:171.87MB, end 172.42MB, increase: 562.13KB
  2430. 2025-1-11 15:58:43-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2431. 2025-1-11 15:58:43-debug: 查询 Asset Bundle start, progress: 5%
  2432. 2025-1-11 15:58:43-debug: // ---- build task 查询 Asset Bundle ----
  2433. 2025-1-11 15:58:43-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2434. 2025-1-11 15:58:43-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  2435. 2025-1-11 15:58:43-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  2436. 2025-1-11 15:58:43-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2437. 2025-1-11 15:58:43-debug: [Build Memory track]: 查询 Asset Bundle start:172.45MB, end 172.61MB, increase: 161.43KB
  2438. 2025-1-11 15:58:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2439. 2025-1-11 15:58:43-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2440. 2025-1-11 15:58:43-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.64MB, end 171.81MB, increase: -850.22KB
  2441. 2025-1-11 15:58:43-debug: 填充脚本数据到 settings.json start, progress: 12%
  2442. 2025-1-11 15:58:43-debug: // ---- build task 填充脚本数据到 settings.json ----
  2443. 2025-1-11 15:58:43-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2444. 2025-1-11 15:58:43-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.84MB, end 171.86MB, increase: 17.63KB
  2445. 2025-1-11 15:58:43-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2446. 2025-1-11 15:58:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2447. 2025-1-11 15:58:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2448. 2025-1-11 15:58:43-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.89MB, end 172.02MB, increase: 136.94KB
  2449. 2025-1-11 15:58:43-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2450. 2025-1-11 15:58:44-debug: Query all assets info in project
  2451. 2025-1-11 15:58:44-debug: init custom config: keepNodeUuid: false, useCache: true
  2452. 2025-1-11 15:58:44-debug: 查询 Asset Bundle start, progress: 0%
  2453. 2025-1-11 15:58:44-debug: // ---- build task 查询 Asset Bundle ----
  2454. 2025-1-11 15:58: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2455. 2025-1-11 15:58:44-debug: Number of all scenes: 3
  2456. 2025-1-11 15:58:44-debug: Number of other assets: 754
  2457. 2025-1-11 15:58:44-debug: Number of all scripts: 100
  2458. 2025-1-11 15:58:44-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  2459. 2025-1-11 15:58:44-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  2460. 2025-1-11 15:58:44-debug: // ---- build task 查询 Asset Bundle ----
  2461. 2025-1-11 15:58:44-debug: [Build Memory track]: 查询 Asset Bundle start:172.50MB, end 172.21MB, increase: -295.54KB
  2462. 2025-1-11 15:58:44-debug: 查询 Asset Bundle start, progress: 5%
  2463. 2025-1-11 15:58:44-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  2464. 2025-1-11 15:58:44-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  2465. 2025-1-11 15:58:44-debug: [Build Memory track]: 查询 Asset Bundle start:172.25MB, end 172.40MB, increase: 160.44KB
  2466. 2025-1-11 15:58:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2467. 2025-1-11 15:58:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2468. 2025-1-11 15:58:44-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2469. 2025-1-11 15:58:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.43MB, end 172.45MB, increase: 18.03KB
  2470. 2025-1-11 15:58:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  2471. 2025-1-11 15:58:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  2472. 2025-1-11 15:58:44-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2473. 2025-1-11 15:58:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:172.48MB, end 172.50MB, increase: 18.14KB
  2474. 2025-1-11 15:58:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2475. 2025-1-11 15:58:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2476. 2025-1-11 15:58:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2477. 2025-1-11 15:58:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2478. 2025-1-11 15:58:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.53MB, end 172.67MB, increase: 137.39KB
  2479. 2025-1-11 15:58:50-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts...
  2480. 2025-1-11 15:58:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  2481. 2025-1-11 15:58:50-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign success
  2482. 2025-1-11 15:58:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign background: #aaff85; color: #000; color: #000;
  2483. 2025-1-11 15:58:51-debug: Query all assets info in project
  2484. 2025-1-11 15:58:51-debug: init custom config: keepNodeUuid: false, useCache: true
  2485. 2025-1-11 15:58:51-debug: 查询 Asset Bundle start, progress: 0%
  2486. 2025-1-11 15:58:51-debug: // ---- build task 查询 Asset Bundle ----
  2487. 2025-1-11 15:58: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2488. 2025-1-11 15:58:51-debug: Number of other assets: 754
  2489. 2025-1-11 15:58:51-debug: Number of all scripts: 101
  2490. 2025-1-11 15:58:51-debug: Number of all scenes: 3
  2491. 2025-1-11 15:58:51-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2492. 2025-1-11 15:58:51-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  2493. 2025-1-11 15:58:51-debug: [Build Memory track]: 查询 Asset Bundle start:172.94MB, end 173.41MB, increase: 480.49KB
  2494. 2025-1-11 15:58:51-debug: 查询 Asset Bundle start, progress: 5%
  2495. 2025-1-11 15:58:51-debug: // ---- build task 查询 Asset Bundle ----
  2496. 2025-1-11 15:58:51-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  2497. 2025-1-11 15:58:51-debug: [Build Memory track]: 查询 Asset Bundle start:173.44MB, end 172.75MB, increase: -705.15KB
  2498. 2025-1-11 15:58:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2499. 2025-1-11 15:58:51-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  2500. 2025-1-11 15:58:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2501. 2025-1-11 15:58:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2502. 2025-1-11 15:58:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2503. 2025-1-11 15:58:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.79MB, end 172.81MB, increase: 29.00KB
  2504. 2025-1-11 15:58:51-debug: 填充脚本数据到 settings.json start, progress: 12%
  2505. 2025-1-11 15:58:51-debug: // ---- build task 填充脚本数据到 settings.json ----
  2506. 2025-1-11 15:58:51-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2507. 2025-1-11 15:58:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2508. 2025-1-11 15:58:51-debug: [Build Memory track]: 填充脚本数据到 settings.json start:172.85MB, end 172.86MB, increase: 17.14KB
  2509. 2025-1-11 15:58:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2510. 2025-1-11 15:58:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2511. 2025-1-11 15:58:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2512. 2025-1-11 15:58:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.91MB, end 173.05MB, increase: 146.25KB
  2513. 2025-1-11 15:58:51-debug: Query all assets info in project
  2514. 2025-1-11 15:58:51-debug: init custom config: keepNodeUuid: false, useCache: true
  2515. 2025-1-11 15:58:51-debug: 查询 Asset Bundle start, progress: 0%
  2516. 2025-1-11 15:58:51-debug: // ---- build task 查询 Asset Bundle ----
  2517. 2025-1-11 15:58: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2518. 2025-1-11 15:58:51-debug: Number of all scenes: 3
  2519. 2025-1-11 15:58:51-debug: Number of other assets: 754
  2520. 2025-1-11 15:58:51-debug: Number of all scripts: 101
  2521. 2025-1-11 15:58:51-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  2522. 2025-1-11 15:58:51-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  2523. 2025-1-11 15:58:51-debug: [Build Memory track]: 查询 Asset Bundle start:173.56MB, end 173.18MB, increase: -385.81KB
  2524. 2025-1-11 15:58:51-debug: // ---- build task 查询 Asset Bundle ----
  2525. 2025-1-11 15:58:51-debug: 查询 Asset Bundle start, progress: 5%
  2526. 2025-1-11 15:58:51-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  2527. 2025-1-11 15:58:51-debug: [Build Memory track]: 查询 Asset Bundle start:173.22MB, end 173.37MB, increase: 160.42KB
  2528. 2025-1-11 15:58:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2529. 2025-1-11 15:58:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2530. 2025-1-11 15:58:51-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  2531. 2025-1-11 15:58:51-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2532. 2025-1-11 15:58:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.41MB, end 173.42MB, increase: 18.34KB
  2533. 2025-1-11 15:58:51-debug: 填充脚本数据到 settings.json start, progress: 12%
  2534. 2025-1-11 15:58:51-debug: // ---- build task 填充脚本数据到 settings.json ----
  2535. 2025-1-11 15:58:51-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2536. 2025-1-11 15:58:51-debug: [Build Memory track]: 填充脚本数据到 settings.json start:173.46MB, end 173.47MB, increase: 17.76KB
  2537. 2025-1-11 15:58:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2538. 2025-1-11 15:58:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2539. 2025-1-11 15:58:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2540. 2025-1-11 15:58:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2541. 2025-1-11 15:58:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.50MB, end 173.63MB, increase: 131.18KB
  2542. 2025-1-11 15:58:53-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  2543. 2025-1-11 15:59:22-debug: refresh db internal success
  2544. 2025-1-11 15:59:22-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Layout_Sign.ts background: #aaff85; color: #000; color: #000;
  2545. 2025-1-11 15:59:22-debug: refresh db assets success
  2546. 2025-1-11 15:59:22-debug: Run asset db hook engine-extends:afterRefresh ...
  2547. 2025-1-11 15:59:22-debug: Run asset db hook engine-extends:afterRefresh success!
  2548. 2025-1-11 15:59:22-debug: asset-db:refresh-all-database (251ms)
  2549. 2025-1-11 15:59:22-debug: asset-db:worker-effect-data-processing (2ms)
  2550. 2025-1-11 15:59:22-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2551. 2025-1-11 15:59:23-debug: Query all assets info in project
  2552. 2025-1-11 15:59:23-debug: init custom config: keepNodeUuid: false, useCache: true
  2553. 2025-1-11 15:59:23-debug: 查询 Asset Bundle start, progress: 0%
  2554. 2025-1-11 15:59:23-debug: // ---- build task 查询 Asset Bundle ----
  2555. 2025-1-11 15:59:23-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2556. 2025-1-11 15:59:23-debug: Number of all scenes: 3
  2557. 2025-1-11 15:59:23-debug: Number of all scripts: 101
  2558. 2025-1-11 15:59:23-debug: Number of other assets: 754
  2559. 2025-1-11 15:59:23-debug: // ---- build task 查询 Asset Bundle ---- (13ms)
  2560. 2025-1-11 15:59:23-debug: run build task 查询 Asset Bundle success in 13 ms√, progress: 5%
  2561. 2025-1-11 15:59:23-debug: [Build Memory track]: 查询 Asset Bundle start:175.38MB, end 175.63MB, increase: 253.67KB
  2562. 2025-1-11 15:59:23-debug: 查询 Asset Bundle start, progress: 5%
  2563. 2025-1-11 15:59:23-debug: // ---- build task 查询 Asset Bundle ----
  2564. 2025-1-11 15:59:23-debug: // ---- build task 查询 Asset Bundle ---- (34ms)
  2565. 2025-1-11 15:59:23-debug: run build task 查询 Asset Bundle success in 34 ms√, progress: 10%
  2566. 2025-1-11 15:59:23-debug: [Build Memory track]: 查询 Asset Bundle start:175.66MB, end 158.58MB, increase: -17490.63KB
  2567. 2025-1-11 15:59:23-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2568. 2025-1-11 15:59:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2569. 2025-1-11 15:59:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (11ms)
  2570. 2025-1-11 15:59:23-debug: run build task 整理部分构建选项内数据到 settings.json success in 11 ms√, progress: 12%
  2571. 2025-1-11 15:59:23-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:158.61MB, end 158.65MB, increase: 32.77KB
  2572. 2025-1-11 15:59:23-debug: // ---- build task 填充脚本数据到 settings.json ----
  2573. 2025-1-11 15:59:23-debug: 填充脚本数据到 settings.json start, progress: 12%
  2574. 2025-1-11 15:59:23-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2575. 2025-1-11 15:59:23-debug: [Build Memory track]: 填充脚本数据到 settings.json start:158.68MB, end 158.72MB, increase: 42.20KB
  2576. 2025-1-11 15:59:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2577. 2025-1-11 15:59:23-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2578. 2025-1-11 15:59:23-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2579. 2025-1-11 15:59:23-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  2580. 2025-1-11 15:59:23-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  2581. 2025-1-11 15:59:23-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:158.75MB, end 158.90MB, increase: 151.33KB
  2582. 2025-1-11 15:59:24-debug: Query all assets info in project
  2583. 2025-1-11 15:59:24-debug: init custom config: keepNodeUuid: false, useCache: true
  2584. 2025-1-11 15:59:24-debug: 查询 Asset Bundle start, progress: 0%
  2585. 2025-1-11 15:59:24-debug: // ---- build task 查询 Asset Bundle ----
  2586. 2025-1-11 15:59: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2587. 2025-1-11 15:59:24-debug: Number of all scenes: 3
  2588. 2025-1-11 15:59:24-debug: Number of other assets: 754
  2589. 2025-1-11 15:59:24-debug: Number of all scripts: 101
  2590. 2025-1-11 15:59:24-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  2591. 2025-1-11 15:59:24-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  2592. 2025-1-11 15:59:24-debug: [Build Memory track]: 查询 Asset Bundle start:159.41MB, end 159.08MB, increase: -342.72KB
  2593. 2025-1-11 15:59:24-debug: 查询 Asset Bundle start, progress: 5%
  2594. 2025-1-11 15:59:24-debug: // ---- build task 查询 Asset Bundle ----
  2595. 2025-1-11 15:59:24-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  2596. 2025-1-11 15:59:24-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2597. 2025-1-11 15:59:24-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2598. 2025-1-11 15:59:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2599. 2025-1-11 15:59:24-debug: [Build Memory track]: 查询 Asset Bundle start:159.11MB, end 159.34MB, increase: 235.02KB
  2600. 2025-1-11 15:59:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2601. 2025-1-11 15:59:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2602. 2025-1-11 15:59:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2603. 2025-1-11 15:59:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:159.37MB, end 159.41MB, increase: 36.14KB
  2604. 2025-1-11 15:59:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  2605. 2025-1-11 15:59:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  2606. 2025-1-11 15:59:24-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2607. 2025-1-11 15:59:24-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2608. 2025-1-11 15:59:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:159.44MB, end 159.47MB, increase: 26.87KB
  2609. 2025-1-11 15:59:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2610. 2025-1-11 15:59:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2611. 2025-1-11 15:59:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2612. 2025-1-11 15:59:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2613. 2025-1-11 15:59:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:159.50MB, end 159.63MB, increase: 132.12KB
  2614. 2025-1-11 16:00:51-debug: refresh db internal success
  2615. 2025-1-11 16:00:51-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  2616. 2025-1-11 16:00:51-debug: refresh db assets success
  2617. 2025-1-11 16:00:51-debug: Run asset db hook engine-extends:afterRefresh ...
  2618. 2025-1-11 16:00:51-debug: Run asset db hook engine-extends:afterRefresh success!
  2619. 2025-1-11 16:00:51-debug: asset-db:refresh-all-database (89ms)
  2620. 2025-1-11 16:00:51-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2621. 2025-1-11 16:00:52-debug: Query all assets info in project
  2622. 2025-1-11 16:00:52-debug: init custom config: keepNodeUuid: false, useCache: true
  2623. 2025-1-11 16:00:52-debug: 查询 Asset Bundle start, progress: 0%
  2624. 2025-1-11 16:00:52-debug: // ---- build task 查询 Asset Bundle ----
  2625. 2025-1-11 16: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2626. 2025-1-11 16:00:52-debug: Number of all scenes: 3
  2627. 2025-1-11 16:00:52-debug: Number of other assets: 754
  2628. 2025-1-11 16:00:52-debug: Number of all scripts: 101
  2629. 2025-1-11 16:00:52-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2630. 2025-1-11 16:00:52-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  2631. 2025-1-11 16:00:52-debug: [Build Memory track]: 查询 Asset Bundle start:160.79MB, end 160.58MB, increase: -216.06KB
  2632. 2025-1-11 16:00:52-debug: 查询 Asset Bundle start, progress: 5%
  2633. 2025-1-11 16:00:52-debug: // ---- build task 查询 Asset Bundle ----
  2634. 2025-1-11 16:00:52-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2635. 2025-1-11 16:00:52-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2636. 2025-1-11 16:00:52-debug: [Build Memory track]: 查询 Asset Bundle start:160.61MB, end 160.77MB, increase: 161.34KB
  2637. 2025-1-11 16:00:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2638. 2025-1-11 16:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2639. 2025-1-11 16:00:52-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2640. 2025-1-11 16:00:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.80MB, end 160.82MB, increase: 17.95KB
  2641. 2025-1-11 16:00:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  2642. 2025-1-11 16:00:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  2643. 2025-1-11 16:00:52-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2644. 2025-1-11 16:00:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:160.85MB, end 160.88MB, increase: 29.81KB
  2645. 2025-1-11 16:00:52-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2646. 2025-1-11 16:00:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2647. 2025-1-11 16:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2648. 2025-1-11 16:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2649. 2025-1-11 16:00:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2650. 2025-1-11 16:00:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.91MB, end 161.04MB, increase: 130.63KB
  2651. 2025-1-11 16:00:52-debug: Query all assets info in project
  2652. 2025-1-11 16:00:52-debug: init custom config: keepNodeUuid: false, useCache: true
  2653. 2025-1-11 16:00:52-debug: 查询 Asset Bundle start, progress: 0%
  2654. 2025-1-11 16:00:52-debug: // ---- build task 查询 Asset Bundle ----
  2655. 2025-1-11 16: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2656. 2025-1-11 16:00:52-debug: Number of all scripts: 101
  2657. 2025-1-11 16:00:52-debug: Number of other assets: 754
  2658. 2025-1-11 16:00:52-debug: Number of all scenes: 3
  2659. 2025-1-11 16:00:52-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2660. 2025-1-11 16:00:52-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  2661. 2025-1-11 16:00:52-debug: // ---- build task 查询 Asset Bundle ----
  2662. 2025-1-11 16:00:52-debug: [Build Memory track]: 查询 Asset Bundle start:161.51MB, end 161.01MB, increase: -508.90KB
  2663. 2025-1-11 16:00:52-debug: 查询 Asset Bundle start, progress: 5%
  2664. 2025-1-11 16:00:52-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  2665. 2025-1-11 16:00:52-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  2666. 2025-1-11 16:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2667. 2025-1-11 16:00:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2668. 2025-1-11 16:00:52-debug: [Build Memory track]: 查询 Asset Bundle start:161.05MB, end 161.21MB, increase: 167.29KB
  2669. 2025-1-11 16:00:52-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2670. 2025-1-11 16:00:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.24MB, end 161.26MB, increase: 18.00KB
  2671. 2025-1-11 16:00:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  2672. 2025-1-11 16:00:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  2673. 2025-1-11 16:00:52-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2674. 2025-1-11 16:00:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.29MB, end 161.31MB, increase: 18.03KB
  2675. 2025-1-11 16:00:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2676. 2025-1-11 16:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2677. 2025-1-11 16:00:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  2678. 2025-1-11 16:00:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  2679. 2025-1-11 16:00:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.34MB, end 161.51MB, increase: 174.62KB
  2680. 2025-1-11 16:01:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  2681. 2025-1-11 16:01:00-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (22ms)
  2682. 2025-1-11 16:01:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  2683. 2025-1-11 16:01:00-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (16ms)
  2684. 2025-1-11 16:01:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  2685. 2025-1-11 16:01:00-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (20ms)
  2686. 2025-1-11 16:01:00-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  2687. 2025-1-11 16:01:00-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (16ms)
  2688. 2025-1-11 16:01:26-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Layout_Invite.ts...
  2689. 2025-1-11 16:01:26-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Layout_Invite.ts background: #aaff85; color: #000; color: #000;
  2690. 2025-1-11 16:01:26-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite success
  2691. 2025-1-11 16:01:26-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite background: #aaff85; color: #000; color: #000;
  2692. 2025-1-11 16:01:27-debug: Query all assets info in project
  2693. 2025-1-11 16:01:27-debug: init custom config: keepNodeUuid: false, useCache: true
  2694. 2025-1-11 16:01:27-debug: 查询 Asset Bundle start, progress: 0%
  2695. 2025-1-11 16:01:27-debug: // ---- build task 查询 Asset Bundle ----
  2696. 2025-1-11 16:01:27-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2697. 2025-1-11 16:01:27-debug: Number of all scenes: 3
  2698. 2025-1-11 16:01:27-debug: Number of other assets: 754
  2699. 2025-1-11 16:01:27-debug: Number of all scripts: 102
  2700. 2025-1-11 16:01:27-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2701. 2025-1-11 16:01:27-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  2702. 2025-1-11 16:01:27-debug: // ---- build task 查询 Asset Bundle ----
  2703. 2025-1-11 16:01:27-debug: [Build Memory track]: 查询 Asset Bundle start:163.48MB, end 162.63MB, increase: -872.18KB
  2704. 2025-1-11 16:01:27-debug: 查询 Asset Bundle start, progress: 5%
  2705. 2025-1-11 16:01:27-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2706. 2025-1-11 16:01:27-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2707. 2025-1-11 16:01:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2708. 2025-1-11 16:01:27-debug: [Build Memory track]: 查询 Asset Bundle start:162.66MB, end 162.82MB, increase: 160.52KB
  2709. 2025-1-11 16:01:27-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2710. 2025-1-11 16:01:27-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2711. 2025-1-11 16:01:27-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.85MB, end 162.87MB, increase: 20.15KB
  2712. 2025-1-11 16:01:27-debug: 填充脚本数据到 settings.json start, progress: 12%
  2713. 2025-1-11 16:01:27-debug: // ---- build task 填充脚本数据到 settings.json ----
  2714. 2025-1-11 16:01:27-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2715. 2025-1-11 16:01:27-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.91MB, end 162.92MB, increase: 18.11KB
  2716. 2025-1-11 16:01:27-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2717. 2025-1-11 16:01:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2718. 2025-1-11 16:01:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2719. 2025-1-11 16:01:27-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  2720. 2025-1-11 16:01:27-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.95MB, end 163.08MB, increase: 130.79KB
  2721. 2025-1-11 16:01:27-debug: Query all assets info in project
  2722. 2025-1-11 16:01:27-debug: init custom config: keepNodeUuid: false, useCache: true
  2723. 2025-1-11 16:01:27-debug: 查询 Asset Bundle start, progress: 0%
  2724. 2025-1-11 16:01:27-debug: // ---- build task 查询 Asset Bundle ----
  2725. 2025-1-11 16:01:27-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2726. 2025-1-11 16:01:27-debug: Number of all scenes: 3
  2727. 2025-1-11 16:01:27-debug: Number of all scripts: 102
  2728. 2025-1-11 16:01:27-debug: Number of other assets: 754
  2729. 2025-1-11 16:01:27-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2730. 2025-1-11 16:01:27-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  2731. 2025-1-11 16:01:27-debug: [Build Memory track]: 查询 Asset Bundle start:162.69MB, end 163.17MB, increase: 492.67KB
  2732. 2025-1-11 16:01:27-debug: 查询 Asset Bundle start, progress: 5%
  2733. 2025-1-11 16:01:27-debug: // ---- build task 查询 Asset Bundle ----
  2734. 2025-1-11 16:01:27-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2735. 2025-1-11 16:01:27-debug: [Build Memory track]: 查询 Asset Bundle start:163.20MB, end 162.54MB, increase: -674.71KB
  2736. 2025-1-11 16:01:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2737. 2025-1-11 16:01:27-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2738. 2025-1-11 16:01:27-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2739. 2025-1-11 16:01:27-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2740. 2025-1-11 16:01:27-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.57MB, end 162.59MB, increase: 20.28KB
  2741. 2025-1-11 16:01:27-debug: 填充脚本数据到 settings.json start, progress: 12%
  2742. 2025-1-11 16:01:27-debug: // ---- build task 填充脚本数据到 settings.json ----
  2743. 2025-1-11 16:01:27-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2744. 2025-1-11 16:01:27-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.63MB, end 162.64MB, increase: 18.43KB
  2745. 2025-1-11 16:01:27-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2746. 2025-1-11 16:01:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2747. 2025-1-11 16:01:27-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2748. 2025-1-11 16:01:27-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  2749. 2025-1-11 16:01:27-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.67MB, end 162.81MB, increase: 135.12KB
  2750. 2025-1-11 16:01:37-debug: start refresh asset from D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\UI_Invite.ts...
  2751. 2025-1-11 16:01:37-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\UI_Invite.ts background: #aaff85; color: #000; color: #000;
  2752. 2025-1-11 16:01:37-debug: refresh asset D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite success
  2753. 2025-1-11 16:01:37-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite background: #aaff85; color: #000; color: #000;
  2754. 2025-1-11 16:01:38-debug: Query all assets info in project
  2755. 2025-1-11 16:01:38-debug: init custom config: keepNodeUuid: false, useCache: true
  2756. 2025-1-11 16:01:38-debug: 查询 Asset Bundle start, progress: 0%
  2757. 2025-1-11 16:01:38-debug: // ---- build task 查询 Asset Bundle ----
  2758. 2025-1-11 16:01:38-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2759. 2025-1-11 16:01:38-debug: Number of all scenes: 3
  2760. 2025-1-11 16:01:38-debug: Number of all scripts: 103
  2761. 2025-1-11 16:01:38-debug: Number of other assets: 754
  2762. 2025-1-11 16:01:38-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2763. 2025-1-11 16:01:38-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  2764. 2025-1-11 16:01:38-debug: [Build Memory track]: 查询 Asset Bundle start:164.15MB, end 163.25MB, increase: -923.77KB
  2765. 2025-1-11 16:01:38-debug: // ---- build task 查询 Asset Bundle ----
  2766. 2025-1-11 16:01:38-debug: 查询 Asset Bundle start, progress: 5%
  2767. 2025-1-11 16:01:38-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  2768. 2025-1-11 16:01:38-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  2769. 2025-1-11 16:01:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2770. 2025-1-11 16:01:38-debug: [Build Memory track]: 查询 Asset Bundle start:163.28MB, end 163.44MB, increase: 161.75KB
  2771. 2025-1-11 16:01:38-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2772. 2025-1-11 16:01:38-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2773. 2025-1-11 16:01:38-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.47MB, end 163.49MB, increase: 17.96KB
  2774. 2025-1-11 16:01:38-debug: 填充脚本数据到 settings.json start, progress: 12%
  2775. 2025-1-11 16:01:38-debug: // ---- build task 填充脚本数据到 settings.json ----
  2776. 2025-1-11 16:01:38-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2777. 2025-1-11 16:01:38-debug: [Build Memory track]: 填充脚本数据到 settings.json start:163.52MB, end 163.54MB, increase: 18.14KB
  2778. 2025-1-11 16:01:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2779. 2025-1-11 16:01:38-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2780. 2025-1-11 16:01:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  2781. 2025-1-11 16:01:38-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  2782. 2025-1-11 16:01:38-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.57MB, end 162.99MB, increase: -593.14KB
  2783. 2025-1-11 16:01:38-debug: Query all assets info in project
  2784. 2025-1-11 16:01:38-debug: init custom config: keepNodeUuid: false, useCache: true
  2785. 2025-1-11 16:01:38-debug: 查询 Asset Bundle start, progress: 0%
  2786. 2025-1-11 16:01:38-debug: // ---- build task 查询 Asset Bundle ----
  2787. 2025-1-11 16:01:38-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2788. 2025-1-11 16:01:38-debug: Number of all scripts: 103
  2789. 2025-1-11 16:01:38-debug: Number of other assets: 754
  2790. 2025-1-11 16:01:38-debug: Number of all scenes: 3
  2791. 2025-1-11 16:01:38-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  2792. 2025-1-11 16:01:38-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  2793. 2025-1-11 16:01:38-debug: [Build Memory track]: 查询 Asset Bundle start:163.45MB, end 163.11MB, increase: -352.66KB
  2794. 2025-1-11 16:01:38-debug: 查询 Asset Bundle start, progress: 5%
  2795. 2025-1-11 16:01:38-debug: // ---- build task 查询 Asset Bundle ----
  2796. 2025-1-11 16:01:38-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2797. 2025-1-11 16:01:38-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2798. 2025-1-11 16:01:38-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2799. 2025-1-11 16:01:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2800. 2025-1-11 16:01:38-debug: [Build Memory track]: 查询 Asset Bundle start:163.14MB, end 163.30MB, increase: 161.54KB
  2801. 2025-1-11 16:01:38-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  2802. 2025-1-11 16:01:38-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.33MB, end 163.35MB, increase: 17.99KB
  2803. 2025-1-11 16:01:38-debug: // ---- build task 填充脚本数据到 settings.json ----
  2804. 2025-1-11 16:01:38-debug: 填充脚本数据到 settings.json start, progress: 12%
  2805. 2025-1-11 16:01:38-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  2806. 2025-1-11 16:01:38-debug: [Build Memory track]: 填充脚本数据到 settings.json start:163.38MB, end 163.40MB, increase: 18.11KB
  2807. 2025-1-11 16:01:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2808. 2025-1-11 16:01:38-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2809. 2025-1-11 16:01:38-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2810. 2025-1-11 16:01:38-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  2811. 2025-1-11 16:01:38-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.43MB, end 163.56MB, increase: 130.79KB
  2812. 2025-1-11 16:01:39-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  2813. 2025-1-11 16:02:03-debug: refresh db internal success
  2814. 2025-1-11 16:02:03-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Layout_Invite.ts background: #aaff85; color: #000; color: #000;
  2815. 2025-1-11 16:02:03-debug: refresh db assets success
  2816. 2025-1-11 16:02:03-debug: Run asset db hook engine-extends:afterRefresh ...
  2817. 2025-1-11 16:02:03-debug: Run asset db hook engine-extends:afterRefresh success!
  2818. 2025-1-11 16:02:03-debug: asset-db:refresh-all-database (281ms)
  2819. 2025-1-11 16:02:03-debug: asset-db:worker-effect-data-processing (1ms)
  2820. 2025-1-11 16:02:03-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2821. 2025-1-11 16:02:04-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  2822. 2025-1-11 16:02:04-debug: Query all assets info in project
  2823. 2025-1-11 16:02:04-debug: init custom config: keepNodeUuid: false, useCache: true
  2824. 2025-1-11 16:02:04-debug: 查询 Asset Bundle start, progress: 0%
  2825. 2025-1-11 16:02:04-debug: // ---- build task 查询 Asset Bundle ----
  2826. 2025-1-11 16:02: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2827. 2025-1-11 16:02:04-debug: Number of all scenes: 3
  2828. 2025-1-11 16:02:04-debug: Number of all scripts: 103
  2829. 2025-1-11 16:02:04-debug: Number of other assets: 754
  2830. 2025-1-11 16:02:04-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  2831. 2025-1-11 16:02:04-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  2832. 2025-1-11 16:02:04-debug: // ---- build task 查询 Asset Bundle ----
  2833. 2025-1-11 16:02:04-debug: [Build Memory track]: 查询 Asset Bundle start:166.32MB, end 165.36MB, increase: -988.73KB
  2834. 2025-1-11 16:02:04-debug: 查询 Asset Bundle start, progress: 5%
  2835. 2025-1-11 16:02:04-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2836. 2025-1-11 16:02:04-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2837. 2025-1-11 16:02:04-debug: [Build Memory track]: 查询 Asset Bundle start:165.39MB, end 165.55MB, increase: 160.66KB
  2838. 2025-1-11 16:02:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2839. 2025-1-11 16:02:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2840. 2025-1-11 16:02:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2841. 2025-1-11 16:02:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  2842. 2025-1-11 16:02:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.58MB, end 165.61MB, increase: 30.27KB
  2843. 2025-1-11 16:02:04-debug: 填充脚本数据到 settings.json start, progress: 12%
  2844. 2025-1-11 16:02:04-debug: // ---- build task 填充脚本数据到 settings.json ----
  2845. 2025-1-11 16:02:04-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  2846. 2025-1-11 16:02:04-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  2847. 2025-1-11 16:02:04-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.64MB, end 165.67MB, increase: 28.86KB
  2848. 2025-1-11 16:02:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2849. 2025-1-11 16:02:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2850. 2025-1-11 16:02:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  2851. 2025-1-11 16:02:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  2852. 2025-1-11 16:02:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.70MB, end 165.83MB, increase: 130.54KB
  2853. 2025-1-11 16:02:05-debug: Query all assets info in project
  2854. 2025-1-11 16:02:05-debug: init custom config: keepNodeUuid: false, useCache: true
  2855. 2025-1-11 16:02:05-debug: 查询 Asset Bundle start, progress: 0%
  2856. 2025-1-11 16:02:05-debug: // ---- build task 查询 Asset Bundle ----
  2857. 2025-1-11 16:02:05-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2858. 2025-1-11 16:02:05-debug: Number of all scripts: 103
  2859. 2025-1-11 16:02:05-debug: Number of other assets: 754
  2860. 2025-1-11 16:02:05-debug: Number of all scenes: 3
  2861. 2025-1-11 16:02:05-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  2862. 2025-1-11 16:02:05-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  2863. 2025-1-11 16:02:05-debug: [Build Memory track]: 查询 Asset Bundle start:166.28MB, end 165.84MB, increase: -455.16KB
  2864. 2025-1-11 16:02:05-debug: 查询 Asset Bundle start, progress: 5%
  2865. 2025-1-11 16:02:05-debug: // ---- build task 查询 Asset Bundle ----
  2866. 2025-1-11 16:02:05-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  2867. 2025-1-11 16:02:05-debug: [Build Memory track]: 查询 Asset Bundle start:165.87MB, end 166.03MB, increase: 163.43KB
  2868. 2025-1-11 16:02:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2869. 2025-1-11 16:02:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2870. 2025-1-11 16:02:05-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  2871. 2025-1-11 16:02:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  2872. 2025-1-11 16:02:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.06MB, end 166.09MB, increase: 29.14KB
  2873. 2025-1-11 16:02:05-debug: // ---- build task 填充脚本数据到 settings.json ----
  2874. 2025-1-11 16:02:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  2875. 2025-1-11 16:02:05-debug: 填充脚本数据到 settings.json start, progress: 12%
  2876. 2025-1-11 16:02:05-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2877. 2025-1-11 16:02:05-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2878. 2025-1-11 16:02:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2879. 2025-1-11 16:02:05-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.12MB, end 166.15MB, increase: 28.34KB
  2880. 2025-1-11 16:02:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2881. 2025-1-11 16:02:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  2882. 2025-1-11 16:02:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  2883. 2025-1-11 16:02:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.18MB, end 166.31MB, increase: 131.98KB
  2884. 2025-1-11 16:02:38-debug: refresh db internal success
  2885. 2025-1-11 16:02:38-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\UI_Invite.ts background: #aaff85; color: #000; color: #000;
  2886. 2025-1-11 16:02:38-debug: refresh db assets success
  2887. 2025-1-11 16:02:38-debug: Run asset db hook engine-extends:afterRefresh ...
  2888. 2025-1-11 16:02:38-debug: Run asset db hook engine-extends:afterRefresh success!
  2889. 2025-1-11 16:02:38-debug: asset-db:refresh-all-database (89ms)
  2890. 2025-1-11 16:02:38-debug: asset-db:worker-effect-data-processing (2ms)
  2891. 2025-1-11 16:02:38-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2892. 2025-1-11 16:02:39-debug: Query all assets info in project
  2893. 2025-1-11 16:02:39-debug: init custom config: keepNodeUuid: false, useCache: true
  2894. 2025-1-11 16:02:39-debug: // ---- build task 查询 Asset Bundle ----
  2895. 2025-1-11 16:02:39-debug: 查询 Asset Bundle start, progress: 0%
  2896. 2025-1-11 16:02: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2897. 2025-1-11 16:02:39-debug: Number of all scenes: 3
  2898. 2025-1-11 16:02:39-debug: Number of all scripts: 103
  2899. 2025-1-11 16:02:39-debug: Number of other assets: 754
  2900. 2025-1-11 16:02:39-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  2901. 2025-1-11 16:02:39-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  2902. 2025-1-11 16:02:39-debug: 查询 Asset Bundle start, progress: 5%
  2903. 2025-1-11 16:02:39-debug: // ---- build task 查询 Asset Bundle ----
  2904. 2025-1-11 16:02:39-debug: [Build Memory track]: 查询 Asset Bundle start:168.09MB, end 168.08MB, increase: -13.48KB
  2905. 2025-1-11 16:02:39-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  2906. 2025-1-11 16:02:39-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  2907. 2025-1-11 16:02:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2908. 2025-1-11 16:02:39-debug: [Build Memory track]: 查询 Asset Bundle start:168.11MB, end 168.27MB, increase: 165.81KB
  2909. 2025-1-11 16:02:39-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2910. 2025-1-11 16:02:39-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2911. 2025-1-11 16:02:39-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.30MB, end 168.33MB, increase: 28.68KB
  2912. 2025-1-11 16:02:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2913. 2025-1-11 16:02:39-debug: // ---- build task 填充脚本数据到 settings.json ----
  2914. 2025-1-11 16:02:39-debug: 填充脚本数据到 settings.json start, progress: 12%
  2915. 2025-1-11 16:02:39-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2916. 2025-1-11 16:02:39-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2917. 2025-1-11 16:02:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2918. 2025-1-11 16:02:39-debug: [Build Memory track]: 填充脚本数据到 settings.json start:168.36MB, end 168.39MB, increase: 29.89KB
  2919. 2025-1-11 16:02:39-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2920. 2025-1-11 16:02:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  2921. 2025-1-11 16:02:39-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  2922. 2025-1-11 16:02:39-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.42MB, end 166.91MB, increase: -1554.81KB
  2923. 2025-1-11 16:02:40-debug: Query all assets info in project
  2924. 2025-1-11 16:02:40-debug: init custom config: keepNodeUuid: false, useCache: true
  2925. 2025-1-11 16:02:40-debug: 查询 Asset Bundle start, progress: 0%
  2926. 2025-1-11 16:02:40-debug: // ---- build task 查询 Asset Bundle ----
  2927. 2025-1-11 16:02:40-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2928. 2025-1-11 16:02:40-debug: Number of all scenes: 3
  2929. 2025-1-11 16:02:40-debug: Number of other assets: 754
  2930. 2025-1-11 16:02:40-debug: Number of all scripts: 103
  2931. 2025-1-11 16:02:40-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  2932. 2025-1-11 16:02:40-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  2933. 2025-1-11 16:02:40-debug: // ---- build task 查询 Asset Bundle ----
  2934. 2025-1-11 16:02:40-debug: [Build Memory track]: 查询 Asset Bundle start:167.38MB, end 166.97MB, increase: -425.52KB
  2935. 2025-1-11 16:02:40-debug: 查询 Asset Bundle start, progress: 5%
  2936. 2025-1-11 16:02:40-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2937. 2025-1-11 16:02:40-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2938. 2025-1-11 16:02:40-debug: [Build Memory track]: 查询 Asset Bundle start:167.00MB, end 167.16MB, increase: 162.78KB
  2939. 2025-1-11 16:02:40-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2940. 2025-1-11 16:02:40-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2941. 2025-1-11 16:02:40-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2942. 2025-1-11 16:02:40-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2943. 2025-1-11 16:02:40-debug: // ---- build task 填充脚本数据到 settings.json ----
  2944. 2025-1-11 16:02:40-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.19MB, end 167.22MB, increase: 28.41KB
  2945. 2025-1-11 16:02:40-debug: 填充脚本数据到 settings.json start, progress: 12%
  2946. 2025-1-11 16:02:40-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  2947. 2025-1-11 16:02:40-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  2948. 2025-1-11 16:02:40-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2949. 2025-1-11 16:02:40-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.25MB, end 167.28MB, increase: 30.38KB
  2950. 2025-1-11 16:02:40-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  2951. 2025-1-11 16:02:40-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  2952. 2025-1-11 16:02:40-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  2953. 2025-1-11 16:02:40-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.31MB, end 167.44MB, increase: 130.50KB
  2954. 2025-1-11 16:02:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  2955. 2025-1-11 16:02:45-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (18ms)
  2956. 2025-1-11 16:02:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  2957. 2025-1-11 16:02:45-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (16ms)
  2958. 2025-1-11 16:02:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  2959. 2025-1-11 16:02:45-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (12ms)
  2960. 2025-1-11 16:02:55-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  2961. 2025-1-11 16:03:00-debug: refresh db internal success
  2962. 2025-1-11 16:03:00-debug: refresh db assets success
  2963. 2025-1-11 16:03:00-debug: Run asset db hook engine-extends:afterRefresh ...
  2964. 2025-1-11 16:03:00-debug: Run asset db hook engine-extends:afterRefresh success!
  2965. 2025-1-11 16:03:00-debug: asset-db:refresh-all-database (85ms)
  2966. 2025-1-11 16:03:00-debug: asset-db:worker-effect-data-processing (1ms)
  2967. 2025-1-11 16:03:00-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  2968. 2025-1-11 16:03:01-warn: 为更好地打开脚本,请在 {preferences} -> {program} -> {scriptEditor} 里配置打开脚本的应用程序
  2969. 2025-1-11 16:03:24-debug: refresh db internal success
  2970. 2025-1-11 16:03:24-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Hall\Layout_Hall.ts background: #aaff85; color: #000; color: #000;
  2971. 2025-1-11 16:03:24-debug: refresh db assets success
  2972. 2025-1-11 16:03:24-debug: Run asset db hook engine-extends:afterRefresh ...
  2973. 2025-1-11 16:03:24-debug: Run asset db hook engine-extends:afterRefresh success!
  2974. 2025-1-11 16:03:24-debug: asset-db:refresh-all-database (87ms)
  2975. 2025-1-11 16:03:24-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  2976. 2025-1-11 16:03:24-debug: asset-db:worker-effect-data-processing (1ms)
  2977. 2025-1-11 16:03:25-debug: Query all assets info in project
  2978. 2025-1-11 16:03:25-debug: init custom config: keepNodeUuid: false, useCache: true
  2979. 2025-1-11 16:03:25-debug: 查询 Asset Bundle start, progress: 0%
  2980. 2025-1-11 16:03:25-debug: // ---- build task 查询 Asset Bundle ----
  2981. 2025-1-11 16:03: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  2982. 2025-1-11 16:03:25-debug: Number of all scenes: 3
  2983. 2025-1-11 16:03:25-debug: Number of all scripts: 103
  2984. 2025-1-11 16:03:25-debug: Number of other assets: 754
  2985. 2025-1-11 16:03:25-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  2986. 2025-1-11 16:03:25-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  2987. 2025-1-11 16:03:25-debug: [Build Memory track]: 查询 Asset Bundle start:171.73MB, end 171.70MB, increase: -35.81KB
  2988. 2025-1-11 16:03:25-debug: // ---- build task 查询 Asset Bundle ----
  2989. 2025-1-11 16:03:25-debug: 查询 Asset Bundle start, progress: 5%
  2990. 2025-1-11 16:03:25-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  2991. 2025-1-11 16:03:25-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  2992. 2025-1-11 16:03:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  2993. 2025-1-11 16:03:25-debug: [Build Memory track]: 查询 Asset Bundle start:171.73MB, end 171.89MB, increase: 161.54KB
  2994. 2025-1-11 16:03:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  2995. 2025-1-11 16:03:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  2996. 2025-1-11 16:03:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  2997. 2025-1-11 16:03:25-debug: // ---- build task 填充脚本数据到 settings.json ----
  2998. 2025-1-11 16:03:25-debug: 填充脚本数据到 settings.json start, progress: 12%
  2999. 2025-1-11 16:03:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.92MB, end 171.95MB, increase: 29.89KB
  3000. 2025-1-11 16:03:25-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3001. 2025-1-11 16:03:25-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3002. 2025-1-11 16:03:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3003. 2025-1-11 16:03:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3004. 2025-1-11 16:03:25-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.98MB, end 172.01MB, increase: 27.64KB
  3005. 2025-1-11 16:03:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3006. 2025-1-11 16:03:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3007. 2025-1-11 16:03:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.04MB, end 170.59MB, increase: -1481.23KB
  3008. 2025-1-11 16:03:25-debug: Query all assets info in project
  3009. 2025-1-11 16:03:25-debug: init custom config: keepNodeUuid: false, useCache: true
  3010. 2025-1-11 16:03:25-debug: 查询 Asset Bundle start, progress: 0%
  3011. 2025-1-11 16:03:25-debug: // ---- build task 查询 Asset Bundle ----
  3012. 2025-1-11 16:03: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3013. 2025-1-11 16:03:25-debug: Number of all scenes: 3
  3014. 2025-1-11 16:03:25-debug: Number of other assets: 754
  3015. 2025-1-11 16:03:25-debug: Number of all scripts: 103
  3016. 2025-1-11 16:03:25-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  3017. 2025-1-11 16:03:25-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  3018. 2025-1-11 16:03:25-debug: // ---- build task 查询 Asset Bundle ----
  3019. 2025-1-11 16:03:25-debug: [Build Memory track]: 查询 Asset Bundle start:171.06MB, end 170.65MB, increase: -422.62KB
  3020. 2025-1-11 16:03:25-debug: 查询 Asset Bundle start, progress: 5%
  3021. 2025-1-11 16:03:25-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3022. 2025-1-11 16:03:25-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3023. 2025-1-11 16:03:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3024. 2025-1-11 16:03:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3025. 2025-1-11 16:03:25-debug: [Build Memory track]: 查询 Asset Bundle start:170.68MB, end 170.83MB, increase: 156.87KB
  3026. 2025-1-11 16:03:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3027. 2025-1-11 16:03:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3028. 2025-1-11 16:03:25-debug: // ---- build task 填充脚本数据到 settings.json ----
  3029. 2025-1-11 16:03:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.86MB, end 170.89MB, increase: 28.32KB
  3030. 2025-1-11 16:03:25-debug: 填充脚本数据到 settings.json start, progress: 12%
  3031. 2025-1-11 16:03:25-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3032. 2025-1-11 16:03:25-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3033. 2025-1-11 16:03:25-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.92MB, end 170.95MB, increase: 27.42KB
  3034. 2025-1-11 16:03:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3035. 2025-1-11 16:03:25-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3036. 2025-1-11 16:03:25-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3037. 2025-1-11 16:03:25-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3038. 2025-1-11 16:03:25-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.98MB, end 171.11MB, increase: 133.21KB
  3039. 2025-1-11 16:03:47-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Hall\Hall.prefab background: #aaff85; color: #000; color: #000;
  3040. 2025-1-11 16:03:47-debug: asset-db:reimport-assete0830e04-5351-46ec-a738-db981ae5aed6 (23ms)
  3041. 2025-1-11 16:03:47-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Hall\Hall.prefab background: #aaff85; color: #000; color: #000;
  3042. 2025-1-11 16:03:47-debug: asset-db:reimport-assete0830e04-5351-46ec-a738-db981ae5aed6 (22ms)
  3043. 2025-1-11 16:05:09-debug: refresh db internal success
  3044. 2025-1-11 16:05:09-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Hall\Layout_Hall.ts background: #aaff85; color: #000; color: #000;
  3045. 2025-1-11 16:05:09-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Hall\UI_Hall.ts background: #aaff85; color: #000; color: #000;
  3046. 2025-1-11 16:05:09-debug: refresh db assets success
  3047. 2025-1-11 16:05:09-debug: Run asset db hook engine-extends:afterRefresh ...
  3048. 2025-1-11 16:05:09-debug: Run asset db hook engine-extends:afterRefresh success!
  3049. 2025-1-11 16:05:09-debug: asset-db:refresh-all-database (237ms)
  3050. 2025-1-11 16:05:09-debug: asset-db:worker-effect-data-processing (1ms)
  3051. 2025-1-11 16:05:09-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3052. 2025-1-11 16:05:11-debug: Query all assets info in project
  3053. 2025-1-11 16:05:11-debug: init custom config: keepNodeUuid: false, useCache: true
  3054. 2025-1-11 16:05:11-debug: // ---- build task 查询 Asset Bundle ----
  3055. 2025-1-11 16:05:11-debug: 查询 Asset Bundle start, progress: 0%
  3056. 2025-1-11 16:05: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3057. 2025-1-11 16:05:11-debug: Number of all scripts: 103
  3058. 2025-1-11 16:05:11-debug: Number of other assets: 754
  3059. 2025-1-11 16:05:11-debug: Number of all scenes: 3
  3060. 2025-1-11 16:05:11-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  3061. 2025-1-11 16:05:11-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  3062. 2025-1-11 16:05:11-debug: [Build Memory track]: 查询 Asset Bundle start:174.24MB, end 174.25MB, increase: 14.15KB
  3063. 2025-1-11 16:05:11-debug: // ---- build task 查询 Asset Bundle ----
  3064. 2025-1-11 16:05:11-debug: 查询 Asset Bundle start, progress: 5%
  3065. 2025-1-11 16:05:11-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  3066. 2025-1-11 16:05:11-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  3067. 2025-1-11 16:05:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3068. 2025-1-11 16:05:11-debug: [Build Memory track]: 查询 Asset Bundle start:174.28MB, end 174.44MB, increase: 156.13KB
  3069. 2025-1-11 16:05:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3070. 2025-1-11 16:05:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.47MB, end 174.49MB, increase: 17.50KB
  3071. 2025-1-11 16:05:11-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3072. 2025-1-11 16:05:11-debug: // ---- build task 填充脚本数据到 settings.json ----
  3073. 2025-1-11 16:05:11-debug: 填充脚本数据到 settings.json start, progress: 12%
  3074. 2025-1-11 16:05:11-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3075. 2025-1-11 16:05:11-debug: [Build Memory track]: 填充脚本数据到 settings.json start:174.52MB, end 174.53MB, increase: 16.43KB
  3076. 2025-1-11 16:05:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3077. 2025-1-11 16:05:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3078. 2025-1-11 16:05:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3079. 2025-1-11 16:05:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.56MB, end 174.69MB, increase: 132.68KB
  3080. 2025-1-11 16:05:11-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  3081. 2025-1-11 16:05:16-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Hall\Hall.prefab background: #aaff85; color: #000; color: #000;
  3082. 2025-1-11 16:05:16-debug: asset-db:reimport-assete0830e04-5351-46ec-a738-db981ae5aed6 (16ms)
  3083. 2025-1-11 16:05:17-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Hall\Hall.prefab background: #aaff85; color: #000; color: #000;
  3084. 2025-1-11 16:05:17-debug: asset-db:reimport-assete0830e04-5351-46ec-a738-db981ae5aed6 (11ms)
  3085. 2025-1-11 16:05:17-debug: Query all assets info in project
  3086. 2025-1-11 16:05:17-debug: init custom config: keepNodeUuid: false, useCache: true
  3087. 2025-1-11 16:05:17-debug: 查询 Asset Bundle start, progress: 0%
  3088. 2025-1-11 16:05:17-debug: // ---- build task 查询 Asset Bundle ----
  3089. 2025-1-11 16:05: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3090. 2025-1-11 16:05:17-debug: Number of all scripts: 103
  3091. 2025-1-11 16:05:17-debug: Number of other assets: 754
  3092. 2025-1-11 16:05:17-debug: Number of all scenes: 3
  3093. 2025-1-11 16:05:18-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  3094. 2025-1-11 16:05:18-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  3095. 2025-1-11 16:05:18-debug: // ---- build task 查询 Asset Bundle ----
  3096. 2025-1-11 16:05:18-debug: 查询 Asset Bundle start, progress: 5%
  3097. 2025-1-11 16:05:18-debug: [Build Memory track]: 查询 Asset Bundle start:174.26MB, end 173.51MB, increase: -766.57KB
  3098. 2025-1-11 16:05:18-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3099. 2025-1-11 16:05:18-debug: [Build Memory track]: 查询 Asset Bundle start:173.55MB, end 173.70MB, increase: 157.99KB
  3100. 2025-1-11 16:05:18-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3101. 2025-1-11 16:05:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3102. 2025-1-11 16:05:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3103. 2025-1-11 16:05:18-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3104. 2025-1-11 16:05:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.73MB, end 173.75MB, increase: 18.79KB
  3105. 2025-1-11 16:05:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  3106. 2025-1-11 16:05:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  3107. 2025-1-11 16:05:18-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3108. 2025-1-11 16:05:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:173.78MB, end 173.80MB, increase: 18.03KB
  3109. 2025-1-11 16:05:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3110. 2025-1-11 16:05:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3111. 2025-1-11 16:05:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3112. 2025-1-11 16:05:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3113. 2025-1-11 16:05:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.83MB, end 173.97MB, increase: 141.38KB
  3114. 2025-1-11 16:05:32-debug: refresh db internal success
  3115. 2025-1-11 16:05:32-debug: refresh db assets success
  3116. 2025-1-11 16:05:32-debug: Run asset db hook engine-extends:afterRefresh success!
  3117. 2025-1-11 16:05:32-debug: Run asset db hook engine-extends:afterRefresh ...
  3118. 2025-1-11 16:05:32-debug: asset-db:refresh-all-database (207ms)
  3119. 2025-1-11 16:06:22-debug: refresh db internal success
  3120. 2025-1-11 16:06:22-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\UI_Invite.ts background: #aaff85; color: #000; color: #000;
  3121. 2025-1-11 16:06:22-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  3122. 2025-1-11 16:06:22-debug: refresh db assets success
  3123. 2025-1-11 16:06:22-debug: Run asset db hook engine-extends:afterRefresh ...
  3124. 2025-1-11 16:06:22-debug: Run asset db hook engine-extends:afterRefresh success!
  3125. 2025-1-11 16:06:22-debug: asset-db:refresh-all-database (83ms)
  3126. 2025-1-11 16:06:22-debug: asset-db:worker-effect-data-processing (-1ms)
  3127. 2025-1-11 16:06:24-debug: Query all assets info in project
  3128. 2025-1-11 16:06:24-debug: init custom config: keepNodeUuid: false, useCache: true
  3129. 2025-1-11 16:06:24-debug: 查询 Asset Bundle start, progress: 0%
  3130. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ----
  3131. 2025-1-11 16:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3132. 2025-1-11 16:06:24-debug: Number of all scripts: 103
  3133. 2025-1-11 16:06:24-debug: Number of other assets: 754
  3134. 2025-1-11 16:06:24-debug: Number of all scenes: 3
  3135. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  3136. 2025-1-11 16:06:24-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  3137. 2025-1-11 16:06:24-debug: 查询 Asset Bundle start, progress: 5%
  3138. 2025-1-11 16:06:24-debug: [Build Memory track]: 查询 Asset Bundle start:161.67MB, end 161.05MB, increase: -636.61KB
  3139. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ----
  3140. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3141. 2025-1-11 16:06:24-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  3142. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3143. 2025-1-11 16:06:24-debug: [Build Memory track]: 查询 Asset Bundle start:161.08MB, end 161.23MB, increase: 158.06KB
  3144. 2025-1-11 16:06:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3145. 2025-1-11 16:06:24-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3146. 2025-1-11 16:06:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.26MB, end 161.28MB, increase: 19.90KB
  3147. 2025-1-11 16:06:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  3148. 2025-1-11 16:06:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  3149. 2025-1-11 16:06:24-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3150. 2025-1-11 16:06:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.31MB, end 161.33MB, increase: 16.71KB
  3151. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3152. 2025-1-11 16:06:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3153. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  3154. 2025-1-11 16:06:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  3155. 2025-1-11 16:06:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.36MB, end 161.49MB, increase: 134.16KB
  3156. 2025-1-11 16:06:24-debug: Query all assets info in project
  3157. 2025-1-11 16:06:24-debug: init custom config: keepNodeUuid: false, useCache: true
  3158. 2025-1-11 16:06:24-debug: 查询 Asset Bundle start, progress: 0%
  3159. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ----
  3160. 2025-1-11 16:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3161. 2025-1-11 16:06:24-debug: Number of all scenes: 3
  3162. 2025-1-11 16:06:24-debug: Number of all scripts: 103
  3163. 2025-1-11 16:06:24-debug: Number of other assets: 754
  3164. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  3165. 2025-1-11 16:06:24-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  3166. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ----
  3167. 2025-1-11 16:06:24-debug: [Build Memory track]: 查询 Asset Bundle start:161.19MB, end 161.71MB, increase: 534.89KB
  3168. 2025-1-11 16:06:24-debug: 查询 Asset Bundle start, progress: 5%
  3169. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3170. 2025-1-11 16:06:24-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3171. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3172. 2025-1-11 16:06:24-debug: [Build Memory track]: 查询 Asset Bundle start:161.75MB, end 161.90MB, increase: 157.69KB
  3173. 2025-1-11 16:06:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3174. 2025-1-11 16:06:24-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3175. 2025-1-11 16:06:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.93MB, end 161.95MB, increase: 18.01KB
  3176. 2025-1-11 16:06:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  3177. 2025-1-11 16:06:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  3178. 2025-1-11 16:06:24-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3179. 2025-1-11 16:06:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.98MB, end 162.00MB, increase: 19.29KB
  3180. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3181. 2025-1-11 16:06:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3182. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3183. 2025-1-11 16:06:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.03MB, end 162.16MB, increase: 133.33KB
  3184. 2025-1-11 16:06:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3185. 2025-1-11 16:06:24-debug: Query all assets info in project
  3186. 2025-1-11 16:06:24-debug: init custom config: keepNodeUuid: false, useCache: true
  3187. 2025-1-11 16:06:24-debug: 查询 Asset Bundle start, progress: 0%
  3188. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ----
  3189. 2025-1-11 16:06:24-debug: Number of all scenes: 3
  3190. 2025-1-11 16:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3191. 2025-1-11 16:06:24-debug: Number of all scripts: 103
  3192. 2025-1-11 16:06:24-debug: Number of other assets: 754
  3193. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  3194. 2025-1-11 16:06:24-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  3195. 2025-1-11 16:06:24-debug: [Build Memory track]: 查询 Asset Bundle start:162.62MB, end 162.19MB, increase: -439.40KB
  3196. 2025-1-11 16:06:24-debug: 查询 Asset Bundle start, progress: 5%
  3197. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ----
  3198. 2025-1-11 16:06:24-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  3199. 2025-1-11 16:06:24-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  3200. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3201. 2025-1-11 16:06:24-debug: [Build Memory track]: 查询 Asset Bundle start:162.22MB, end 162.38MB, increase: 157.32KB
  3202. 2025-1-11 16:06:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3203. 2025-1-11 16:06:24-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3204. 2025-1-11 16:06:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.41MB, end 162.43MB, increase: 20.71KB
  3205. 2025-1-11 16:06:24-debug: // ---- build task 填充脚本数据到 settings.json ----
  3206. 2025-1-11 16:06:24-debug: 填充脚本数据到 settings.json start, progress: 12%
  3207. 2025-1-11 16:06:24-debug: // ---- build task 填充脚本数据到 settings.json ---- (-1ms)
  3208. 2025-1-11 16:06:24-debug: run build task 填充脚本数据到 settings.json success in -1 h -1 min -1 s√, progress: 13%
  3209. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3210. 2025-1-11 16:06:24-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.46MB, end 162.49MB, increase: 28.58KB
  3211. 2025-1-11 16:06:24-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3212. 2025-1-11 16:06:24-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3213. 2025-1-11 16:06:24-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3214. 2025-1-11 16:06:24-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.52MB, end 162.65MB, increase: 131.59KB
  3215. 2025-1-11 16:06:37-debug: refresh db internal success
  3216. 2025-1-11 16:06:37-debug: refresh db assets success
  3217. 2025-1-11 16:06:37-debug: Run asset db hook engine-extends:afterRefresh ...
  3218. 2025-1-11 16:06:37-debug: Run asset db hook engine-extends:afterRefresh success!
  3219. 2025-1-11 16:06:37-debug: asset-db:refresh-all-database (81ms)
  3220. 2025-1-11 16:06:37-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3221. 2025-1-11 16:06:46-debug: refresh db internal success
  3222. 2025-1-11 16:06:46-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\UI_Sign.ts background: #aaff85; color: #000; color: #000;
  3223. 2025-1-11 16:06:46-debug: refresh db assets success
  3224. 2025-1-11 16:06:46-debug: Run asset db hook engine-extends:afterRefresh ...
  3225. 2025-1-11 16:06:46-debug: Run asset db hook engine-extends:afterRefresh success!
  3226. 2025-1-11 16:06:46-debug: asset-db:refresh-all-database (84ms)
  3227. 2025-1-11 16:06:46-debug: asset-db:worker-effect-data-processing (-1ms)
  3228. 2025-1-11 16:06:46-debug: asset-db-hook-engine-extends-afterRefresh (-1ms)
  3229. 2025-1-11 16:06:46-debug: Query all assets info in project
  3230. 2025-1-11 16:06:46-debug: init custom config: keepNodeUuid: false, useCache: true
  3231. 2025-1-11 16:06:46-debug: 查询 Asset Bundle start, progress: 0%
  3232. 2025-1-11 16:06:46-debug: // ---- build task 查询 Asset Bundle ----
  3233. 2025-1-11 16:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3234. 2025-1-11 16:06:46-debug: Number of all scenes: 3
  3235. 2025-1-11 16:06:46-debug: Number of all scripts: 103
  3236. 2025-1-11 16:06:46-debug: Number of other assets: 754
  3237. 2025-1-11 16:06:46-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  3238. 2025-1-11 16:06:46-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  3239. 2025-1-11 16:06:46-debug: [Build Memory track]: 查询 Asset Bundle start:164.90MB, end 164.19MB, increase: -725.97KB
  3240. 2025-1-11 16:06:46-debug: 查询 Asset Bundle start, progress: 5%
  3241. 2025-1-11 16:06:46-debug: // ---- build task 查询 Asset Bundle ----
  3242. 2025-1-11 16:06:46-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  3243. 2025-1-11 16:06:46-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  3244. 2025-1-11 16:06:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3245. 2025-1-11 16:06:46-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3246. 2025-1-11 16:06:46-debug: [Build Memory track]: 查询 Asset Bundle start:164.22MB, end 164.37MB, increase: 158.54KB
  3247. 2025-1-11 16:06:46-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3248. 2025-1-11 16:06:46-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.41MB, end 164.42MB, increase: 18.91KB
  3249. 2025-1-11 16:06:46-debug: 填充脚本数据到 settings.json start, progress: 12%
  3250. 2025-1-11 16:06:46-debug: // ---- build task 填充脚本数据到 settings.json ----
  3251. 2025-1-11 16:06:46-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3252. 2025-1-11 16:06:46-debug: [Build Memory track]: 填充脚本数据到 settings.json start:164.46MB, end 164.47MB, increase: 18.31KB
  3253. 2025-1-11 16:06:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3254. 2025-1-11 16:06:46-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3255. 2025-1-11 16:06:46-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3256. 2025-1-11 16:06:46-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.51MB, end 164.63MB, increase: 130.15KB
  3257. 2025-1-11 16:06:46-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3258. 2025-1-11 16:06:47-debug: Query all assets info in project
  3259. 2025-1-11 16:06:47-debug: init custom config: keepNodeUuid: false, useCache: true
  3260. 2025-1-11 16:06:47-debug: 查询 Asset Bundle start, progress: 0%
  3261. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ----
  3262. 2025-1-11 16:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3263. 2025-1-11 16:06:47-debug: Number of all scripts: 103
  3264. 2025-1-11 16:06:47-debug: Number of other assets: 754
  3265. 2025-1-11 16:06:47-debug: Number of all scenes: 3
  3266. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  3267. 2025-1-11 16:06:47-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  3268. 2025-1-11 16:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:165.13MB, end 164.65MB, increase: -494.78KB
  3269. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ----
  3270. 2025-1-11 16:06:47-debug: 查询 Asset Bundle start, progress: 5%
  3271. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3272. 2025-1-11 16:06:47-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3273. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3274. 2025-1-11 16:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:164.68MB, end 164.83MB, increase: 157.57KB
  3275. 2025-1-11 16:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3276. 2025-1-11 16:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3277. 2025-1-11 16:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.86MB, end 164.88MB, increase: 18.28KB
  3278. 2025-1-11 16:06:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  3279. 2025-1-11 16:06:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  3280. 2025-1-11 16:06:47-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3281. 2025-1-11 16:06:47-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3282. 2025-1-11 16:06:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:164.91MB, end 164.94MB, increase: 31.35KB
  3283. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3284. 2025-1-11 16:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3285. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3286. 2025-1-11 16:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3287. 2025-1-11 16:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.98MB, end 165.12MB, increase: 142.93KB
  3288. 2025-1-11 16:06:47-debug: Query all assets info in project
  3289. 2025-1-11 16:06:47-debug: init custom config: keepNodeUuid: false, useCache: true
  3290. 2025-1-11 16:06:47-debug: 查询 Asset Bundle start, progress: 0%
  3291. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ----
  3292. 2025-1-11 16:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3293. 2025-1-11 16:06:47-debug: Number of all scenes: 3
  3294. 2025-1-11 16:06:47-debug: Number of other assets: 754
  3295. 2025-1-11 16:06:47-debug: Number of all scripts: 103
  3296. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  3297. 2025-1-11 16:06:47-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  3298. 2025-1-11 16:06:47-debug: 查询 Asset Bundle start, progress: 5%
  3299. 2025-1-11 16:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:165.57MB, end 165.11MB, increase: -477.11KB
  3300. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ----
  3301. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  3302. 2025-1-11 16:06:47-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  3303. 2025-1-11 16:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3304. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3305. 2025-1-11 16:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:165.14MB, end 165.29MB, increase: 157.68KB
  3306. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3307. 2025-1-11 16:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3308. 2025-1-11 16:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.32MB, end 165.35MB, increase: 28.69KB
  3309. 2025-1-11 16:06:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  3310. 2025-1-11 16:06:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  3311. 2025-1-11 16:06:47-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3312. 2025-1-11 16:06:47-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3313. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3314. 2025-1-11 16:06:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.38MB, end 165.41MB, increase: 28.72KB
  3315. 2025-1-11 16:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3316. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3317. 2025-1-11 16:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.45MB, end 165.57MB, increase: 131.79KB
  3318. 2025-1-11 16:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3319. 2025-1-11 16:06:47-debug: Query all assets info in project
  3320. 2025-1-11 16:06:47-debug: init custom config: keepNodeUuid: false, useCache: true
  3321. 2025-1-11 16:06:47-debug: 查询 Asset Bundle start, progress: 0%
  3322. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ----
  3323. 2025-1-11 16:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3324. 2025-1-11 16:06:47-debug: Number of all scenes: 3
  3325. 2025-1-11 16:06:47-debug: Number of all scripts: 103
  3326. 2025-1-11 16:06:47-debug: Number of other assets: 754
  3327. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3328. 2025-1-11 16:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:164.39MB, end 165.72MB, increase: 1.33MB
  3329. 2025-1-11 16:06:47-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  3330. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ----
  3331. 2025-1-11 16:06:47-debug: 查询 Asset Bundle start, progress: 5%
  3332. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  3333. 2025-1-11 16:06:47-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  3334. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3335. 2025-1-11 16:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:165.75MB, end 164.49MB, increase: -1291.71KB
  3336. 2025-1-11 16:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3337. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3338. 2025-1-11 16:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3339. 2025-1-11 16:06:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  3340. 2025-1-11 16:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.52MB, end 164.55MB, increase: 29.72KB
  3341. 2025-1-11 16:06:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  3342. 2025-1-11 16:06:47-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  3343. 2025-1-11 16:06:47-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  3344. 2025-1-11 16:06:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:164.58MB, end 164.66MB, increase: 82.04KB
  3345. 2025-1-11 16:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3346. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3347. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  3348. 2025-1-11 16:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  3349. 2025-1-11 16:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.69MB, end 164.83MB, increase: 138.03KB
  3350. 2025-1-11 16:06:47-debug: Query all assets info in project
  3351. 2025-1-11 16:06:47-debug: init custom config: keepNodeUuid: false, useCache: true
  3352. 2025-1-11 16:06:47-debug: 查询 Asset Bundle start, progress: 0%
  3353. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ----
  3354. 2025-1-11 16:06: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3355. 2025-1-11 16:06:47-debug: Number of all scenes: 3
  3356. 2025-1-11 16:06:47-debug: Number of all scripts: 103
  3357. 2025-1-11 16:06:47-debug: Number of other assets: 754
  3358. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  3359. 2025-1-11 16:06:47-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  3360. 2025-1-11 16:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:165.28MB, end 164.88MB, increase: -418.10KB
  3361. 2025-1-11 16:06:47-debug: 查询 Asset Bundle start, progress: 5%
  3362. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ----
  3363. 2025-1-11 16:06:47-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3364. 2025-1-11 16:06:47-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3365. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3366. 2025-1-11 16:06:47-debug: [Build Memory track]: 查询 Asset Bundle start:164.91MB, end 165.06MB, increase: 159.30KB
  3367. 2025-1-11 16:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3368. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3369. 2025-1-11 16:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3370. 2025-1-11 16:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.09MB, end 165.12MB, increase: 29.75KB
  3371. 2025-1-11 16:06:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  3372. 2025-1-11 16:06:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  3373. 2025-1-11 16:06:47-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3374. 2025-1-11 16:06:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.15MB, end 165.17MB, increase: 17.02KB
  3375. 2025-1-11 16:06:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3376. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3377. 2025-1-11 16:06:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3378. 2025-1-11 16:06:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3379. 2025-1-11 16:06:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.20MB, end 165.33MB, increase: 130.59KB
  3380. 2025-1-11 16:07:03-debug: refresh db internal success
  3381. 2025-1-11 16:07:03-debug: refresh db assets success
  3382. 2025-1-11 16:07:03-debug: Run asset db hook engine-extends:afterRefresh success!
  3383. 2025-1-11 16:07:03-debug: Run asset db hook engine-extends:afterRefresh ...
  3384. 2025-1-11 16:07:03-debug: asset-db:refresh-all-database (109ms)
  3385. 2025-1-11 16:07:03-debug: asset-db:worker-effect-data-processing (1ms)
  3386. 2025-1-11 16:07:03-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3387. 2025-1-11 16:07:07-debug: refresh db internal success
  3388. 2025-1-11 16:07:08-debug: Run asset db hook engine-extends:afterRefresh ...
  3389. 2025-1-11 16:07:08-debug: refresh db assets success
  3390. 2025-1-11 16:07:08-debug: Run asset db hook engine-extends:afterRefresh success!
  3391. 2025-1-11 16:07:08-debug: asset-db:refresh-all-database (79ms)
  3392. 2025-1-11 16:07:08-debug: asset-db:worker-effect-data-processing (1ms)
  3393. 2025-1-11 16:07:08-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3394. 2025-1-11 16:08:07-debug: refresh db internal success
  3395. 2025-1-11 16:08:07-debug: refresh db assets success
  3396. 2025-1-11 16:08:07-debug: Run asset db hook engine-extends:afterRefresh ...
  3397. 2025-1-11 16:08:07-debug: Run asset db hook engine-extends:afterRefresh success!
  3398. 2025-1-11 16:08:07-debug: asset-db:refresh-all-database (87ms)
  3399. 2025-1-11 16:08:07-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3400. 2025-1-11 16:08:14-debug: refresh db internal success
  3401. 2025-1-11 16:08:14-debug: refresh db assets success
  3402. 2025-1-11 16:08:14-debug: Run asset db hook engine-extends:afterRefresh ...
  3403. 2025-1-11 16:08:14-debug: Run asset db hook engine-extends:afterRefresh success!
  3404. 2025-1-11 16:08:14-debug: asset-db:refresh-all-database (82ms)
  3405. 2025-1-11 16:08:14-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3406. 2025-1-11 16:08:19-debug: refresh db internal success
  3407. 2025-1-11 16:08:19-debug: refresh db assets success
  3408. 2025-1-11 16:08:19-debug: Run asset db hook engine-extends:afterRefresh ...
  3409. 2025-1-11 16:08:19-debug: Run asset db hook engine-extends:afterRefresh success!
  3410. 2025-1-11 16:08:19-debug: asset-db:refresh-all-database (78ms)
  3411. 2025-1-11 16:08:19-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3412. 2025-1-11 16:08:45-debug: refresh db internal success
  3413. 2025-1-11 16:08:45-debug: Run asset db hook engine-extends:afterRefresh ...
  3414. 2025-1-11 16:08:45-debug: Run asset db hook engine-extends:afterRefresh success!
  3415. 2025-1-11 16:08:45-debug: refresh db assets success
  3416. 2025-1-11 16:08:45-debug: asset-db:refresh-all-database (82ms)
  3417. 2025-1-11 16:08:45-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3418. 2025-1-11 16:09:07-debug: refresh db internal success
  3419. 2025-1-11 16:09:07-debug: refresh db assets success
  3420. 2025-1-11 16:09:07-debug: Run asset db hook engine-extends:afterRefresh success!
  3421. 2025-1-11 16:09:07-debug: Run asset db hook engine-extends:afterRefresh ...
  3422. 2025-1-11 16:09:07-debug: asset-db:refresh-all-database (80ms)
  3423. 2025-1-11 16:09:07-debug: asset-db:worker-effect-data-processing (1ms)
  3424. 2025-1-11 16:09:07-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3425. 2025-1-11 16:09:09-debug: refresh db internal success
  3426. 2025-1-11 16:09:09-debug: refresh db assets success
  3427. 2025-1-11 16:09:09-debug: Run asset db hook engine-extends:afterRefresh success!
  3428. 2025-1-11 16:09:09-debug: Run asset db hook engine-extends:afterRefresh ...
  3429. 2025-1-11 16:09:09-debug: asset-db:refresh-all-database (78ms)
  3430. 2025-1-11 16:09:09-debug: asset-db:worker-effect-data-processing (1ms)
  3431. 2025-1-11 16:09:09-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3432. 2025-1-11 16:09:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  3433. 2025-1-11 16:09:28-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (14ms)
  3434. 2025-1-11 16:09:28-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  3435. 2025-1-11 16:09:28-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (11ms)
  3436. 2025-1-11 16:09:29-debug: Query all assets info in project
  3437. 2025-1-11 16:09:29-debug: init custom config: keepNodeUuid: false, useCache: true
  3438. 2025-1-11 16:09:29-debug: 查询 Asset Bundle start, progress: 0%
  3439. 2025-1-11 16:09:29-debug: // ---- build task 查询 Asset Bundle ----
  3440. 2025-1-11 16:09:29-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3441. 2025-1-11 16:09:29-debug: Number of all scenes: 3
  3442. 2025-1-11 16:09:29-debug: Number of all scripts: 103
  3443. 2025-1-11 16:09:29-debug: Number of other assets: 754
  3444. 2025-1-11 16:09:29-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3445. 2025-1-11 16:09:29-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  3446. 2025-1-11 16:09:29-debug: [Build Memory track]: 查询 Asset Bundle start:175.15MB, end 174.38MB, increase: -790.43KB
  3447. 2025-1-11 16:09:29-debug: // ---- build task 查询 Asset Bundle ----
  3448. 2025-1-11 16:09:29-debug: 查询 Asset Bundle start, progress: 5%
  3449. 2025-1-11 16:09:29-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3450. 2025-1-11 16:09:29-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3451. 2025-1-11 16:09:29-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3452. 2025-1-11 16:09:29-debug: [Build Memory track]: 查询 Asset Bundle start:174.41MB, end 174.57MB, increase: 158.36KB
  3453. 2025-1-11 16:09:29-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3454. 2025-1-11 16:09:29-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3455. 2025-1-11 16:09:29-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3456. 2025-1-11 16:09:29-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.60MB, end 174.63MB, increase: 29.75KB
  3457. 2025-1-11 16:09:29-debug: 填充脚本数据到 settings.json start, progress: 12%
  3458. 2025-1-11 16:09:29-debug: // ---- build task 填充脚本数据到 settings.json ----
  3459. 2025-1-11 16:09:29-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3460. 2025-1-11 16:09:29-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3461. 2025-1-11 16:09:29-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3462. 2025-1-11 16:09:29-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3463. 2025-1-11 16:09:29-debug: [Build Memory track]: 填充脚本数据到 settings.json start:174.66MB, end 174.68MB, increase: 27.53KB
  3464. 2025-1-11 16:09:29-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3465. 2025-1-11 16:09:29-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3466. 2025-1-11 16:09:29-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.72MB, end 174.84MB, increase: 131.36KB
  3467. 2025-1-11 16:09:37-debug: refresh db internal success
  3468. 2025-1-11 16:09:37-debug: refresh db assets success
  3469. 2025-1-11 16:09:37-debug: Run asset db hook engine-extends:afterRefresh ...
  3470. 2025-1-11 16:09:37-debug: Run asset db hook engine-extends:afterRefresh success!
  3471. 2025-1-11 16:09:37-debug: asset-db:refresh-all-database (200ms)
  3472. 2025-1-11 16:09:37-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3473. 2025-1-11 16:09:39-debug: refresh db internal success
  3474. 2025-1-11 16:09:39-debug: refresh db assets success
  3475. 2025-1-11 16:09:39-debug: Run asset db hook engine-extends:afterRefresh ...
  3476. 2025-1-11 16:09:39-debug: Run asset db hook engine-extends:afterRefresh success!
  3477. 2025-1-11 16:09:39-debug: asset-db:refresh-all-database (144ms)
  3478. 2025-1-11 16:09:39-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  3479. 2025-1-11 16:09:39-debug: asset-db:worker-effect-data-processing (1ms)
  3480. 2025-1-11 16:09:40-debug: refresh db internal success
  3481. 2025-1-11 16:09:40-debug: refresh db assets success
  3482. 2025-1-11 16:09:40-debug: Run asset db hook engine-extends:afterRefresh ...
  3483. 2025-1-11 16:09:40-debug: Run asset db hook engine-extends:afterRefresh success!
  3484. 2025-1-11 16:09:40-debug: asset-db:refresh-all-database (180ms)
  3485. 2025-1-11 16:09:40-debug: asset-db:worker-effect-data-processing (1ms)
  3486. 2025-1-11 16:09:40-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3487. 2025-1-11 16:09:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  3488. 2025-1-11 16:09:42-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (12ms)
  3489. 2025-1-11 16:09:42-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  3490. 2025-1-11 16:09:42-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (21ms)
  3491. 2025-1-11 16:09:44-debug: refresh db internal success
  3492. 2025-1-11 16:09:44-debug: refresh db assets success
  3493. 2025-1-11 16:09:44-debug: Run asset db hook engine-extends:afterRefresh ...
  3494. 2025-1-11 16:09:44-debug: Run asset db hook engine-extends:afterRefresh success!
  3495. 2025-1-11 16:09:44-debug: asset-db:refresh-all-database (74ms)
  3496. 2025-1-11 16:09:44-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3497. 2025-1-11 16:09:46-debug: refresh db internal success
  3498. 2025-1-11 16:09:46-debug: refresh db assets success
  3499. 2025-1-11 16:09:46-debug: Run asset db hook engine-extends:afterRefresh ...
  3500. 2025-1-11 16:09:46-debug: Run asset db hook engine-extends:afterRefresh success!
  3501. 2025-1-11 16:09:46-debug: asset-db:refresh-all-database (76ms)
  3502. 2025-1-11 16:09:46-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3503. 2025-1-11 16:09:48-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  3504. 2025-1-11 16:09:48-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (24ms)
  3505. 2025-1-11 16:09:48-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Invite\Invite.prefab background: #aaff85; color: #000; color: #000;
  3506. 2025-1-11 16:09:48-debug: asset-db:reimport-asset89aa8761-94af-47a6-8ecd-9304d51d099d (17ms)
  3507. 2025-1-11 16:09:49-debug: Query all assets info in project
  3508. 2025-1-11 16:09:49-debug: init custom config: keepNodeUuid: false, useCache: true
  3509. 2025-1-11 16:09:49-debug: 查询 Asset Bundle start, progress: 0%
  3510. 2025-1-11 16:09:49-debug: // ---- build task 查询 Asset Bundle ----
  3511. 2025-1-11 16:09: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3512. 2025-1-11 16:09:49-debug: Number of all scenes: 3
  3513. 2025-1-11 16:09:49-debug: Number of other assets: 754
  3514. 2025-1-11 16:09:49-debug: Number of all scripts: 103
  3515. 2025-1-11 16:09:49-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  3516. 2025-1-11 16:09:49-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  3517. 2025-1-11 16:09:49-debug: // ---- build task 查询 Asset Bundle ----
  3518. 2025-1-11 16:09:49-debug: [Build Memory track]: 查询 Asset Bundle start:162.10MB, end 163.45MB, increase: 1.35MB
  3519. 2025-1-11 16:09:49-debug: 查询 Asset Bundle start, progress: 5%
  3520. 2025-1-11 16:09:49-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3521. 2025-1-11 16:09:49-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3522. 2025-1-11 16:09:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3523. 2025-1-11 16:09:49-debug: [Build Memory track]: 查询 Asset Bundle start:163.48MB, end 163.64MB, increase: 157.75KB
  3524. 2025-1-11 16:09:49-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3525. 2025-1-11 16:09:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3526. 2025-1-11 16:09:49-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3527. 2025-1-11 16:09:49-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.67MB, end 163.70MB, increase: 27.86KB
  3528. 2025-1-11 16:09:49-debug: 填充脚本数据到 settings.json start, progress: 12%
  3529. 2025-1-11 16:09:49-debug: // ---- build task 填充脚本数据到 settings.json ----
  3530. 2025-1-11 16:09:49-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3531. 2025-1-11 16:09:49-debug: [Build Memory track]: 填充脚本数据到 settings.json start:163.73MB, end 163.76MB, increase: 29.46KB
  3532. 2025-1-11 16:09:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3533. 2025-1-11 16:09:49-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3534. 2025-1-11 16:09:49-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3535. 2025-1-11 16:09:49-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3536. 2025-1-11 16:09:49-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3537. 2025-1-11 16:09:49-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.79MB, end 163.92MB, increase: 135.29KB
  3538. 2025-1-11 16:09:56-debug: refresh db internal success
  3539. 2025-1-11 16:09:56-debug: refresh db assets success
  3540. 2025-1-11 16:09:56-debug: Run asset db hook engine-extends:afterRefresh ...
  3541. 2025-1-11 16:09:56-debug: Run asset db hook engine-extends:afterRefresh success!
  3542. 2025-1-11 16:09:56-debug: asset-db:refresh-all-database (245ms)
  3543. 2025-1-11 16:09:56-debug: asset-db:worker-effect-data-processing (1ms)
  3544. 2025-1-11 16:09:56-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3545. 2025-1-11 16:10:08-debug: refresh db internal success
  3546. 2025-1-11 16:10:08-debug: refresh db assets success
  3547. 2025-1-11 16:10:08-debug: Run asset db hook engine-extends:afterRefresh success!
  3548. 2025-1-11 16:10:08-debug: Run asset db hook engine-extends:afterRefresh ...
  3549. 2025-1-11 16:10:08-debug: asset-db:refresh-all-database (78ms)
  3550. 2025-1-11 16:10:10-debug: refresh db internal success
  3551. 2025-1-11 16:10:10-debug: refresh db assets success
  3552. 2025-1-11 16:10:10-debug: Run asset db hook engine-extends:afterRefresh ...
  3553. 2025-1-11 16:10:10-debug: Run asset db hook engine-extends:afterRefresh success!
  3554. 2025-1-11 16:10:10-debug: asset-db:refresh-all-database (77ms)
  3555. 2025-1-11 16:10:10-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3556. 2025-1-11 16:10:12-debug: refresh db internal success
  3557. 2025-1-11 16:10:12-debug: refresh db assets success
  3558. 2025-1-11 16:10:12-debug: Run asset db hook engine-extends:afterRefresh ...
  3559. 2025-1-11 16:10:12-debug: Run asset db hook engine-extends:afterRefresh success!
  3560. 2025-1-11 16:10:12-debug: asset-db:refresh-all-database (71ms)
  3561. 2025-1-11 16:10:13-debug: refresh db internal success
  3562. 2025-1-11 16:10:13-debug: refresh db assets success
  3563. 2025-1-11 16:10:13-debug: Run asset db hook engine-extends:afterRefresh ...
  3564. 2025-1-11 16:10:13-debug: Run asset db hook engine-extends:afterRefresh success!
  3565. 2025-1-11 16:10:13-debug: asset-db:refresh-all-database (90ms)
  3566. 2025-1-11 16:10:13-debug: asset-db:worker-effect-data-processing (-1ms)
  3567. 2025-1-11 16:10:13-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3568. 2025-1-11 16:10:16-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Rank\Rank.prefab background: #aaff85; color: #000; color: #000;
  3569. 2025-1-11 16:10:16-debug: asset-db:reimport-assetf0db94cb-5e23-49eb-9128-49f88bc45bc9 (13ms)
  3570. 2025-1-11 16:10:20-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Rank\Rank.prefab background: #aaff85; color: #000; color: #000;
  3571. 2025-1-11 16:10:20-debug: asset-db:reimport-assetf0db94cb-5e23-49eb-9128-49f88bc45bc9 (15ms)
  3572. 2025-1-11 16:10:20-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Rank\Rank.prefab background: #aaff85; color: #000; color: #000;
  3573. 2025-1-11 16:10:20-debug: asset-db:reimport-assetf0db94cb-5e23-49eb-9128-49f88bc45bc9 (26ms)
  3574. 2025-1-11 16:10:40-debug: refresh db internal success
  3575. 2025-1-11 16:10:40-debug: refresh db assets success
  3576. 2025-1-11 16:10:40-debug: Run asset db hook engine-extends:afterRefresh ...
  3577. 2025-1-11 16:10:40-debug: Run asset db hook engine-extends:afterRefresh success!
  3578. 2025-1-11 16:10:40-debug: asset-db:refresh-all-database (80ms)
  3579. 2025-1-11 16:10:40-debug: asset-db:worker-effect-data-processing (1ms)
  3580. 2025-1-11 16:10:40-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3581. 2025-1-11 16:10:41-debug: refresh db internal success
  3582. 2025-1-11 16:10:42-debug: refresh db assets success
  3583. 2025-1-11 16:10:42-debug: Run asset db hook engine-extends:afterRefresh ...
  3584. 2025-1-11 16:10:42-debug: Run asset db hook engine-extends:afterRefresh success!
  3585. 2025-1-11 16:10:42-debug: asset-db:refresh-all-database (82ms)
  3586. 2025-1-11 16:10:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Rank\Rank.prefab background: #aaff85; color: #000; color: #000;
  3587. 2025-1-11 16:10:45-debug: asset-db:reimport-assetf0db94cb-5e23-49eb-9128-49f88bc45bc9 (15ms)
  3588. 2025-1-11 16:10:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Rank\Rank.prefab background: #aaff85; color: #000; color: #000;
  3589. 2025-1-11 16:10:45-debug: asset-db:reimport-assetf0db94cb-5e23-49eb-9128-49f88bc45bc9 (17ms)
  3590. 2025-1-11 16:10:58-debug: refresh db internal success
  3591. 2025-1-11 16:10:58-debug: refresh db assets success
  3592. 2025-1-11 16:10:58-debug: Run asset db hook engine-extends:afterRefresh ...
  3593. 2025-1-11 16:10:58-debug: Run asset db hook engine-extends:afterRefresh success!
  3594. 2025-1-11 16:10:58-debug: asset-db:refresh-all-database (82ms)
  3595. 2025-1-11 16:10:58-debug: asset-db:worker-effect-data-processing (1ms)
  3596. 2025-1-11 16:10:58-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3597. 2025-1-11 16:11:01-debug: refresh db internal success
  3598. 2025-1-11 16:11:01-debug: refresh db assets success
  3599. 2025-1-11 16:11:01-debug: Run asset db hook engine-extends:afterRefresh ...
  3600. 2025-1-11 16:11:01-debug: Run asset db hook engine-extends:afterRefresh success!
  3601. 2025-1-11 16:11:01-debug: asset-db:refresh-all-database (76ms)
  3602. 2025-1-11 16:11:01-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3603. 2025-1-11 16:11:06-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\Settings.prefab background: #aaff85; color: #000; color: #000;
  3604. 2025-1-11 16:11:06-debug: asset-db:reimport-asset91d38668-d7e4-4c64-bd99-185cabe8e0fa (31ms)
  3605. 2025-1-11 16:11:06-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\Settings.prefab background: #aaff85; color: #000; color: #000;
  3606. 2025-1-11 16:11:06-debug: asset-db:reimport-asset91d38668-d7e4-4c64-bd99-185cabe8e0fa (20ms)
  3607. 2025-1-11 16:11:08-debug: refresh db internal success
  3608. 2025-1-11 16:11:08-debug: refresh db assets success
  3609. 2025-1-11 16:11:08-debug: Run asset db hook engine-extends:afterRefresh ...
  3610. 2025-1-11 16:11:08-debug: Run asset db hook engine-extends:afterRefresh success!
  3611. 2025-1-11 16:11:08-debug: asset-db:refresh-all-database (80ms)
  3612. 2025-1-11 16:11:08-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3613. 2025-1-11 16:11:08-debug: asset-db:worker-effect-data-processing (1ms)
  3614. 2025-1-11 16:11:10-debug: refresh db internal success
  3615. 2025-1-11 16:11:10-debug: refresh db assets success
  3616. 2025-1-11 16:11:10-debug: Run asset db hook engine-extends:afterRefresh ...
  3617. 2025-1-11 16:11:10-debug: Run asset db hook engine-extends:afterRefresh success!
  3618. 2025-1-11 16:11:10-debug: asset-db:refresh-all-database (75ms)
  3619. 2025-1-11 16:11:10-debug: asset-db:worker-effect-data-processing (1ms)
  3620. 2025-1-11 16:11:10-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3621. 2025-1-11 16:11:12-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\Settings.prefab background: #aaff85; color: #000; color: #000;
  3622. 2025-1-11 16:11:12-debug: asset-db:reimport-asset91d38668-d7e4-4c64-bd99-185cabe8e0fa (26ms)
  3623. 2025-1-11 16:11:12-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\Settings.prefab background: #aaff85; color: #000; color: #000;
  3624. 2025-1-11 16:11:12-debug: asset-db:reimport-asset91d38668-d7e4-4c64-bd99-185cabe8e0fa (20ms)
  3625. 2025-1-11 16:11:15-debug: refresh db internal success
  3626. 2025-1-11 16:11:15-debug: refresh db assets success
  3627. 2025-1-11 16:11:15-debug: Run asset db hook engine-extends:afterRefresh success!
  3628. 2025-1-11 16:11:15-debug: Run asset db hook engine-extends:afterRefresh ...
  3629. 2025-1-11 16:11:15-debug: asset-db:refresh-all-database (76ms)
  3630. 2025-1-11 16:11:15-debug: asset-db:worker-effect-data-processing (1ms)
  3631. 2025-1-11 16:11:15-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3632. 2025-1-11 16:11:16-debug: refresh db internal success
  3633. 2025-1-11 16:11:16-debug: refresh db assets success
  3634. 2025-1-11 16:11:16-debug: Run asset db hook engine-extends:afterRefresh ...
  3635. 2025-1-11 16:11:16-debug: Run asset db hook engine-extends:afterRefresh success!
  3636. 2025-1-11 16:11:16-debug: asset-db:refresh-all-database (82ms)
  3637. 2025-1-11 16:11:16-debug: asset-db:worker-effect-data-processing (1ms)
  3638. 2025-1-11 16:11:16-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3639. 2025-1-11 16:11:18-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\Settings.prefab background: #aaff85; color: #000; color: #000;
  3640. 2025-1-11 16:11:18-debug: asset-db:reimport-asset91d38668-d7e4-4c64-bd99-185cabe8e0fa (16ms)
  3641. 2025-1-11 16:11:18-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\Settings.prefab background: #aaff85; color: #000; color: #000;
  3642. 2025-1-11 16:11:18-debug: asset-db:reimport-asset91d38668-d7e4-4c64-bd99-185cabe8e0fa (11ms)
  3643. 2025-1-11 16:11:19-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Settings\Settings.prefab background: #aaff85; color: #000; color: #000;
  3644. 2025-1-11 16:11:19-debug: asset-db:reimport-asset91d38668-d7e4-4c64-bd99-185cabe8e0fa (13ms)
  3645. 2025-1-11 16:11:28-debug: refresh db internal success
  3646. 2025-1-11 16:11:28-debug: refresh db assets success
  3647. 2025-1-11 16:11:28-debug: Run asset db hook engine-extends:afterRefresh ...
  3648. 2025-1-11 16:11:28-debug: Run asset db hook engine-extends:afterRefresh success!
  3649. 2025-1-11 16:11:28-debug: asset-db:refresh-all-database (79ms)
  3650. 2025-1-11 16:11:28-debug: asset-db:worker-effect-data-processing (1ms)
  3651. 2025-1-11 16:11:28-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3652. 2025-1-11 16:11:31-debug: refresh db internal success
  3653. 2025-1-11 16:11:31-debug: refresh db assets success
  3654. 2025-1-11 16:11:31-debug: Run asset db hook engine-extends:afterRefresh ...
  3655. 2025-1-11 16:11:31-debug: Run asset db hook engine-extends:afterRefresh success!
  3656. 2025-1-11 16:11:31-debug: asset-db:refresh-all-database (76ms)
  3657. 2025-1-11 16:11:31-debug: asset-db:worker-effect-data-processing (1ms)
  3658. 2025-1-11 16:11:31-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3659. 2025-1-11 16:11:32-debug: refresh db internal success
  3660. 2025-1-11 16:11:32-debug: refresh db assets success
  3661. 2025-1-11 16:11:32-debug: Run asset db hook engine-extends:afterRefresh ...
  3662. 2025-1-11 16:11:32-debug: Run asset db hook engine-extends:afterRefresh success!
  3663. 2025-1-11 16:11:32-debug: asset-db:refresh-all-database (75ms)
  3664. 2025-1-11 16:11:32-debug: asset-db:worker-effect-data-processing (1ms)
  3665. 2025-1-11 16:11:32-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3666. 2025-1-11 16:11:33-debug: refresh db internal success
  3667. 2025-1-11 16:11:33-debug: refresh db assets success
  3668. 2025-1-11 16:11:33-debug: Run asset db hook engine-extends:afterRefresh ...
  3669. 2025-1-11 16:11:33-debug: Run asset db hook engine-extends:afterRefresh success!
  3670. 2025-1-11 16:11:33-debug: asset-db:worker-effect-data-processing (1ms)
  3671. 2025-1-11 16:11:33-debug: asset-db:refresh-all-database (89ms)
  3672. 2025-1-11 16:11:33-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3673. 2025-1-11 16:11:41-debug: refresh db internal success
  3674. 2025-1-11 16:11:41-debug: refresh db assets success
  3675. 2025-1-11 16:11:41-debug: Run asset db hook engine-extends:afterRefresh success!
  3676. 2025-1-11 16:11:41-debug: Run asset db hook engine-extends:afterRefresh ...
  3677. 2025-1-11 16:11:41-debug: asset-db:refresh-all-database (77ms)
  3678. 2025-1-11 16:11:41-debug: asset-db:worker-effect-data-processing (1ms)
  3679. 2025-1-11 16:11:41-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3680. 2025-1-11 16:11:42-debug: refresh db internal success
  3681. 2025-1-11 16:11:42-debug: refresh db assets success
  3682. 2025-1-11 16:11:42-debug: Run asset db hook engine-extends:afterRefresh ...
  3683. 2025-1-11 16:11:42-debug: Run asset db hook engine-extends:afterRefresh success!
  3684. 2025-1-11 16:11:42-debug: asset-db:refresh-all-database (79ms)
  3685. 2025-1-11 16:11:42-debug: asset-db:worker-effect-data-processing (1ms)
  3686. 2025-1-11 16:11:42-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  3687. 2025-1-11 16:11:44-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  3688. 2025-1-11 16:11:44-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (16ms)
  3689. 2025-1-11 16:11:44-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  3690. 2025-1-11 16:11:44-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (21ms)
  3691. 2025-1-11 16:11:44-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  3692. 2025-1-11 16:11:44-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (23ms)
  3693. 2025-1-11 16:11:56-debug: Query all assets info in project
  3694. 2025-1-11 16:11:56-debug: init custom config: keepNodeUuid: false, useCache: true
  3695. 2025-1-11 16:11:56-debug: 查询 Asset Bundle start, progress: 0%
  3696. 2025-1-11 16:11:56-debug: // ---- build task 查询 Asset Bundle ----
  3697. 2025-1-11 16:11:56-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3698. 2025-1-11 16:11:56-debug: Number of all scripts: 103
  3699. 2025-1-11 16:11:56-debug: Number of other assets: 754
  3700. 2025-1-11 16:11:56-debug: Number of all scenes: 3
  3701. 2025-1-11 16:11:56-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  3702. 2025-1-11 16:11:56-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  3703. 2025-1-11 16:11:56-debug: [Build Memory track]: 查询 Asset Bundle start:166.39MB, end 162.60MB, increase: -3879.15KB
  3704. 2025-1-11 16:11:56-debug: 查询 Asset Bundle start, progress: 5%
  3705. 2025-1-11 16:11:56-debug: // ---- build task 查询 Asset Bundle ----
  3706. 2025-1-11 16:11:56-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3707. 2025-1-11 16:11:56-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3708. 2025-1-11 16:11:56-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3709. 2025-1-11 16:11:56-debug: [Build Memory track]: 查询 Asset Bundle start:162.63MB, end 162.79MB, increase: 159.00KB
  3710. 2025-1-11 16:11:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3711. 2025-1-11 16:11:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3712. 2025-1-11 16:11:56-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.82MB, end 162.85MB, increase: 29.84KB
  3713. 2025-1-11 16:11:56-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3714. 2025-1-11 16:11:56-debug: 填充脚本数据到 settings.json start, progress: 12%
  3715. 2025-1-11 16:11:56-debug: // ---- build task 填充脚本数据到 settings.json ----
  3716. 2025-1-11 16:11:56-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3717. 2025-1-11 16:11:56-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.88MB, end 162.90MB, increase: 17.25KB
  3718. 2025-1-11 16:11:56-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3719. 2025-1-11 16:11:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3720. 2025-1-11 16:11:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  3721. 2025-1-11 16:11:56-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  3722. 2025-1-11 16:11:56-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.93MB, end 163.06MB, increase: 134.69KB
  3723. 2025-1-11 16:12:29-debug: refresh db internal success
  3724. 2025-1-11 16:12:29-debug: refresh db assets success
  3725. 2025-1-11 16:12:29-debug: Run asset db hook engine-extends:afterRefresh ...
  3726. 2025-1-11 16:12:29-debug: Run asset db hook engine-extends:afterRefresh success!
  3727. 2025-1-11 16:12:29-debug: asset-db:refresh-all-database (203ms)
  3728. 2025-1-11 16:12:29-debug: asset-db:worker-effect-data-processing (1ms)
  3729. 2025-1-11 16:12:29-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  3730. 2025-1-11 16:12:38-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  3731. 2025-1-11 16:12:38-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (24ms)
  3732. 2025-1-11 16:12:38-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\module_game\ui\UI_Sign\Sign.prefab background: #aaff85; color: #000; color: #000;
  3733. 2025-1-11 16:12:38-debug: asset-db:reimport-asset8a648367-d6db-4a15-ac4c-cc0e2d930660 (20ms)
  3734. 2025-1-11 16:12:39-debug: Query all assets info in project
  3735. 2025-1-11 16:12:39-debug: init custom config: keepNodeUuid: false, useCache: true
  3736. 2025-1-11 16:12:39-debug: 查询 Asset Bundle start, progress: 0%
  3737. 2025-1-11 16:12:39-debug: // ---- build task 查询 Asset Bundle ----
  3738. 2025-1-11 16:12: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3739. 2025-1-11 16:12:39-debug: Number of other assets: 754
  3740. 2025-1-11 16:12:39-debug: Number of all scripts: 103
  3741. 2025-1-11 16:12:39-debug: Number of all scenes: 3
  3742. 2025-1-11 16:12:39-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  3743. 2025-1-11 16:12:39-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  3744. 2025-1-11 16:12:39-debug: // ---- build task 查询 Asset Bundle ----
  3745. 2025-1-11 16:12:39-debug: [Build Memory track]: 查询 Asset Bundle start:164.18MB, end 164.63MB, increase: 455.41KB
  3746. 2025-1-11 16:12:39-debug: 查询 Asset Bundle start, progress: 5%
  3747. 2025-1-11 16:12:39-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3748. 2025-1-11 16:12:39-debug: [Build Memory track]: 查询 Asset Bundle start:164.66MB, end 164.81MB, increase: 157.43KB
  3749. 2025-1-11 16:12:39-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3750. 2025-1-11 16:12:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3751. 2025-1-11 16:12:39-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3752. 2025-1-11 16:12:39-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3753. 2025-1-11 16:12:39-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.84MB, end 164.86MB, increase: 18.29KB
  3754. 2025-1-11 16:12:39-debug: 填充脚本数据到 settings.json start, progress: 12%
  3755. 2025-1-11 16:12:39-debug: // ---- build task 填充脚本数据到 settings.json ----
  3756. 2025-1-11 16:12:39-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3757. 2025-1-11 16:12:39-debug: [Build Memory track]: 填充脚本数据到 settings.json start:164.89MB, end 164.91MB, increase: 17.63KB
  3758. 2025-1-11 16:12:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3759. 2025-1-11 16:12:39-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3760. 2025-1-11 16:12:39-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  3761. 2025-1-11 16:12:39-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.94MB, end 164.30MB, increase: -654.83KB
  3762. 2025-1-11 16:12:39-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  3763. 2025-1-11 16:13:25-debug: refresh db internal success
  3764. 2025-1-11 16:13:25-debug: refresh db assets success
  3765. 2025-1-11 16:13:25-debug: Run asset db hook engine-extends:afterRefresh ...
  3766. 2025-1-11 16:13:25-debug: Run asset db hook engine-extends:afterRefresh success!
  3767. 2025-1-11 16:13:25-debug: asset-db:refresh-all-database (261ms)
  3768. 2025-1-11 16:13:25-debug: asset-db:worker-effect-data-processing (2ms)
  3769. 2025-1-11 16:13:25-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  3770. 2025-1-11 16:13:32-debug: Query all assets info in project
  3771. 2025-1-11 16:13:32-debug: init custom config: keepNodeUuid: false, useCache: true
  3772. 2025-1-11 16:13:32-debug: 查询 Asset Bundle start, progress: 0%
  3773. 2025-1-11 16:13:32-debug: // ---- build task 查询 Asset Bundle ----
  3774. 2025-1-11 16:13: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3775. 2025-1-11 16:13:32-debug: Number of all scenes: 3
  3776. 2025-1-11 16:13:32-debug: Number of other assets: 754
  3777. 2025-1-11 16:13:32-debug: Number of all scripts: 103
  3778. 2025-1-11 16:13:32-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3779. 2025-1-11 16:13:32-debug: [Build Memory track]: 查询 Asset Bundle start:166.49MB, end 166.18MB, increase: -320.98KB
  3780. 2025-1-11 16:13:32-debug: 查询 Asset Bundle start, progress: 5%
  3781. 2025-1-11 16:13:32-debug: // ---- build task 查询 Asset Bundle ----
  3782. 2025-1-11 16:13:32-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  3783. 2025-1-11 16:13:32-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3784. 2025-1-11 16:13:32-debug: [Build Memory track]: 查询 Asset Bundle start:166.21MB, end 166.37MB, increase: 157.39KB
  3785. 2025-1-11 16:13:32-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3786. 2025-1-11 16:13:32-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3787. 2025-1-11 16:13:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3788. 2025-1-11 16:13:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3789. 2025-1-11 16:13:32-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3790. 2025-1-11 16:13:32-debug: // ---- build task 填充脚本数据到 settings.json ----
  3791. 2025-1-11 16:13:32-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.40MB, end 166.43MB, increase: 29.17KB
  3792. 2025-1-11 16:13:32-debug: 填充脚本数据到 settings.json start, progress: 12%
  3793. 2025-1-11 16:13:32-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3794. 2025-1-11 16:13:32-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.46MB, end 166.49MB, increase: 28.78KB
  3795. 2025-1-11 16:13:32-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3796. 2025-1-11 16:13:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3797. 2025-1-11 16:13:32-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3798. 2025-1-11 16:13:32-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3799. 2025-1-11 16:13:32-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3800. 2025-1-11 16:13:32-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.52MB, end 166.65MB, increase: 133.99KB
  3801. 2025-1-11 16:14:15-debug: Query all assets info in project
  3802. 2025-1-11 16:14:15-debug: init custom config: keepNodeUuid: false, useCache: true
  3803. 2025-1-11 16:14:15-debug: 查询 Asset Bundle start, progress: 0%
  3804. 2025-1-11 16:14:15-debug: // ---- build task 查询 Asset Bundle ----
  3805. 2025-1-11 16:14:15-debug: Number of all scenes: 3
  3806. 2025-1-11 16:14: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3807. 2025-1-11 16:14:15-debug: Number of other assets: 754
  3808. 2025-1-11 16:14:15-debug: Number of all scripts: 103
  3809. 2025-1-11 16:14:15-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  3810. 2025-1-11 16:14:15-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  3811. 2025-1-11 16:14:15-debug: [Build Memory track]: 查询 Asset Bundle start:166.69MB, end 166.34MB, increase: -356.50KB
  3812. 2025-1-11 16:14:15-debug: 查询 Asset Bundle start, progress: 5%
  3813. 2025-1-11 16:14:15-debug: // ---- build task 查询 Asset Bundle ----
  3814. 2025-1-11 16:14:15-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3815. 2025-1-11 16:14:15-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3816. 2025-1-11 16:14:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3817. 2025-1-11 16:14:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3818. 2025-1-11 16:14:15-debug: [Build Memory track]: 查询 Asset Bundle start:166.37MB, end 166.52MB, increase: 158.11KB
  3819. 2025-1-11 16:14:15-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3820. 2025-1-11 16:14:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.56MB, end 166.57MB, increase: 18.26KB
  3821. 2025-1-11 16:14:15-debug: // ---- build task 填充脚本数据到 settings.json ----
  3822. 2025-1-11 16:14:15-debug: 填充脚本数据到 settings.json start, progress: 12%
  3823. 2025-1-11 16:14:15-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  3824. 2025-1-11 16:14:15-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  3825. 2025-1-11 16:14:15-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.61MB, end 166.63MB, increase: 28.35KB
  3826. 2025-1-11 16:14:15-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3827. 2025-1-11 16:14:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3828. 2025-1-11 16:14:15-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3829. 2025-1-11 16:14:15-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3830. 2025-1-11 16:14:15-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.66MB, end 166.79MB, increase: 133.39KB
  3831. 2025-1-11 16:20:16-debug: Query all assets info in project
  3832. 2025-1-11 16:20:16-debug: init custom config: keepNodeUuid: false, useCache: true
  3833. 2025-1-11 16:20:16-debug: 查询 Asset Bundle start, progress: 0%
  3834. 2025-1-11 16:20:16-debug: // ---- build task 查询 Asset Bundle ----
  3835. 2025-1-11 16:20: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3836. 2025-1-11 16:20:16-debug: Number of all scenes: 3
  3837. 2025-1-11 16:20:16-debug: Number of all scripts: 103
  3838. 2025-1-11 16:20:16-debug: Number of other assets: 754
  3839. 2025-1-11 16:20:16-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  3840. 2025-1-11 16:20:16-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  3841. 2025-1-11 16:20:16-debug: // ---- build task 查询 Asset Bundle ----
  3842. 2025-1-11 16:20:16-debug: [Build Memory track]: 查询 Asset Bundle start:166.77MB, end 166.34MB, increase: -436.21KB
  3843. 2025-1-11 16:20:16-debug: 查询 Asset Bundle start, progress: 5%
  3844. 2025-1-11 16:20:16-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3845. 2025-1-11 16:20:16-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3846. 2025-1-11 16:20:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3847. 2025-1-11 16:20:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3848. 2025-1-11 16:20:16-debug: [Build Memory track]: 查询 Asset Bundle start:166.37MB, end 166.52MB, increase: 157.54KB
  3849. 2025-1-11 16:20:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3850. 2025-1-11 16:20:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  3851. 2025-1-11 16:20:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.56MB, end 166.58MB, increase: 29.31KB
  3852. 2025-1-11 16:20:16-debug: 填充脚本数据到 settings.json start, progress: 12%
  3853. 2025-1-11 16:20:16-debug: // ---- build task 填充脚本数据到 settings.json ----
  3854. 2025-1-11 16:20:16-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  3855. 2025-1-11 16:20:16-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  3856. 2025-1-11 16:20:16-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.62MB, end 166.64MB, increase: 27.54KB
  3857. 2025-1-11 16:20:16-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3858. 2025-1-11 16:20:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3859. 2025-1-11 16:20:16-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3860. 2025-1-11 16:20:16-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3861. 2025-1-11 16:20:16-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.67MB, end 166.81MB, increase: 141.96KB
  3862. 2025-1-11 16:21:17-debug: Query all assets info in project
  3863. 2025-1-11 16:21:17-debug: init custom config: keepNodeUuid: false, useCache: true
  3864. 2025-1-11 16:21:17-debug: 查询 Asset Bundle start, progress: 0%
  3865. 2025-1-11 16:21:17-debug: // ---- build task 查询 Asset Bundle ----
  3866. 2025-1-11 16: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3867. 2025-1-11 16:21:17-debug: Number of all scripts: 103
  3868. 2025-1-11 16:21:17-debug: Number of other assets: 754
  3869. 2025-1-11 16:21:17-debug: Number of all scenes: 3
  3870. 2025-1-11 16:21:17-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  3871. 2025-1-11 16:21:17-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  3872. 2025-1-11 16:21:17-debug: [Build Memory track]: 查询 Asset Bundle start:166.38MB, end 166.84MB, increase: 473.24KB
  3873. 2025-1-11 16:21:17-debug: 查询 Asset Bundle start, progress: 5%
  3874. 2025-1-11 16:21:17-debug: // ---- build task 查询 Asset Bundle ----
  3875. 2025-1-11 16:21:17-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  3876. 2025-1-11 16:21:17-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  3877. 2025-1-11 16:21:17-debug: [Build Memory track]: 查询 Asset Bundle start:166.88MB, end 166.25MB, increase: -639.30KB
  3878. 2025-1-11 16:21:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3879. 2025-1-11 16:21:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3880. 2025-1-11 16:21:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3881. 2025-1-11 16:21:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3882. 2025-1-11 16:21:17-debug: // ---- build task 填充脚本数据到 settings.json ----
  3883. 2025-1-11 16:21:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.28MB, end 166.31MB, increase: 30.21KB
  3884. 2025-1-11 16:21:17-debug: 填充脚本数据到 settings.json start, progress: 12%
  3885. 2025-1-11 16:21:17-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3886. 2025-1-11 16:21:17-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3887. 2025-1-11 16:21:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3888. 2025-1-11 16:21:17-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.34MB, end 166.37MB, increase: 27.22KB
  3889. 2025-1-11 16:21:17-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3890. 2025-1-11 16:21:17-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3891. 2025-1-11 16:21:17-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3892. 2025-1-11 16:21:17-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.40MB, end 166.53MB, increase: 131.73KB
  3893. 2025-1-11 16:21:42-debug: Query all assets info in project
  3894. 2025-1-11 16:21:42-debug: init custom config: keepNodeUuid: false, useCache: true
  3895. 2025-1-11 16:21:42-debug: 查询 Asset Bundle start, progress: 0%
  3896. 2025-1-11 16:21:42-debug: // ---- build task 查询 Asset Bundle ----
  3897. 2025-1-11 16:21: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3898. 2025-1-11 16:21:42-debug: Number of all scenes: 3
  3899. 2025-1-11 16:21:42-debug: Number of all scripts: 103
  3900. 2025-1-11 16:21:42-debug: Number of other assets: 754
  3901. 2025-1-11 16:21:42-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  3902. 2025-1-11 16:21:42-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  3903. 2025-1-11 16:21:42-debug: 查询 Asset Bundle start, progress: 5%
  3904. 2025-1-11 16:21:42-debug: // ---- build task 查询 Asset Bundle ----
  3905. 2025-1-11 16:21:42-debug: [Build Memory track]: 查询 Asset Bundle start:167.03MB, end 166.67MB, increase: -366.62KB
  3906. 2025-1-11 16:21:42-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  3907. 2025-1-11 16:21:42-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  3908. 2025-1-11 16:21:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3909. 2025-1-11 16:21:42-debug: [Build Memory track]: 查询 Asset Bundle start:166.71MB, end 166.86MB, increase: 157.59KB
  3910. 2025-1-11 16:21:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3911. 2025-1-11 16:21:42-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  3912. 2025-1-11 16:21:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.89MB, end 166.91MB, increase: 17.87KB
  3913. 2025-1-11 16:21:42-debug: 填充脚本数据到 settings.json start, progress: 12%
  3914. 2025-1-11 16:21:42-debug: // ---- build task 填充脚本数据到 settings.json ----
  3915. 2025-1-11 16:21:42-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  3916. 2025-1-11 16:21:42-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.94MB, end 166.96MB, increase: 17.93KB
  3917. 2025-1-11 16:21:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3918. 2025-1-11 16:21:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3919. 2025-1-11 16:21:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3920. 2025-1-11 16:21:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  3921. 2025-1-11 16:21:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.99MB, end 167.14MB, increase: 149.38KB
  3922. 2025-1-11 16:22:36-debug: Query all assets info in project
  3923. 2025-1-11 16:22:36-debug: init custom config: keepNodeUuid: false, useCache: true
  3924. 2025-1-11 16:22:36-debug: 查询 Asset Bundle start, progress: 0%
  3925. 2025-1-11 16:22:36-debug: // ---- build task 查询 Asset Bundle ----
  3926. 2025-1-11 16:22:36-debug: Number of all scenes: 3
  3927. 2025-1-11 16:22:36-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3928. 2025-1-11 16:22:36-debug: Number of other assets: 754
  3929. 2025-1-11 16:22:36-debug: Number of all scripts: 103
  3930. 2025-1-11 16:22:36-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  3931. 2025-1-11 16:22:36-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  3932. 2025-1-11 16:22:36-debug: // ---- build task 查询 Asset Bundle ----
  3933. 2025-1-11 16:22:36-debug: [Build Memory track]: 查询 Asset Bundle start:166.83MB, end 167.28MB, increase: 456.45KB
  3934. 2025-1-11 16:22:36-debug: 查询 Asset Bundle start, progress: 5%
  3935. 2025-1-11 16:22:36-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3936. 2025-1-11 16:22:36-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3937. 2025-1-11 16:22:36-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3938. 2025-1-11 16:22:36-debug: [Build Memory track]: 查询 Asset Bundle start:167.31MB, end 166.66MB, increase: -663.34KB
  3939. 2025-1-11 16:22:36-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3940. 2025-1-11 16:22:36-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3941. 2025-1-11 16:22:36-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  3942. 2025-1-11 16:22:36-debug: // ---- build task 填充脚本数据到 settings.json ----
  3943. 2025-1-11 16:22:36-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.69MB, end 166.72MB, increase: 29.81KB
  3944. 2025-1-11 16:22:36-debug: 填充脚本数据到 settings.json start, progress: 12%
  3945. 2025-1-11 16:22:36-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3946. 2025-1-11 16:22:36-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3947. 2025-1-11 16:22:36-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3948. 2025-1-11 16:22:36-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.75MB, end 166.78MB, increase: 27.35KB
  3949. 2025-1-11 16:22:36-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3950. 2025-1-11 16:22:36-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  3951. 2025-1-11 16:22:36-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  3952. 2025-1-11 16:22:36-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.81MB, end 166.94MB, increase: 131.70KB
  3953. 2025-1-11 16:22:42-debug: Query all assets info in project
  3954. 2025-1-11 16:22:42-debug: init custom config: keepNodeUuid: false, useCache: true
  3955. 2025-1-11 16:22:42-debug: 查询 Asset Bundle start, progress: 0%
  3956. 2025-1-11 16:22:42-debug: // ---- build task 查询 Asset Bundle ----
  3957. 2025-1-11 16:22:42-debug: Number of all scenes: 3
  3958. 2025-1-11 16:22:42-debug: Number of all scripts: 103
  3959. 2025-1-11 16:22: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3960. 2025-1-11 16:22:42-debug: Number of other assets: 754
  3961. 2025-1-11 16:22:42-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  3962. 2025-1-11 16:22:42-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  3963. 2025-1-11 16:22:42-debug: // ---- build task 查询 Asset Bundle ----
  3964. 2025-1-11 16:22:42-debug: [Build Memory track]: 查询 Asset Bundle start:166.70MB, end 167.18MB, increase: 490.89KB
  3965. 2025-1-11 16:22:42-debug: 查询 Asset Bundle start, progress: 5%
  3966. 2025-1-11 16:22:42-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  3967. 2025-1-11 16:22:42-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  3968. 2025-1-11 16:22:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3969. 2025-1-11 16:22:42-debug: [Build Memory track]: 查询 Asset Bundle start:167.21MB, end 167.38MB, increase: 167.06KB
  3970. 2025-1-11 16:22:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  3971. 2025-1-11 16:22:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  3972. 2025-1-11 16:22:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  3973. 2025-1-11 16:22:42-debug: // ---- build task 填充脚本数据到 settings.json ----
  3974. 2025-1-11 16:22:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.41MB, end 167.44MB, increase: 28.50KB
  3975. 2025-1-11 16:22:42-debug: 填充脚本数据到 settings.json start, progress: 12%
  3976. 2025-1-11 16:22:42-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  3977. 2025-1-11 16:22:42-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  3978. 2025-1-11 16:22:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  3979. 2025-1-11 16:22:42-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.47MB, end 167.50MB, increase: 30.08KB
  3980. 2025-1-11 16:22:42-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  3981. 2025-1-11 16:22:42-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  3982. 2025-1-11 16:22:42-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  3983. 2025-1-11 16:22:42-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.53MB, end 166.78MB, increase: -765.98KB
  3984. 2025-1-11 16:22:50-debug: Query all assets info in project
  3985. 2025-1-11 16:22:50-debug: init custom config: keepNodeUuid: false, useCache: true
  3986. 2025-1-11 16:22:50-debug: 查询 Asset Bundle start, progress: 0%
  3987. 2025-1-11 16:22:50-debug: // ---- build task 查询 Asset Bundle ----
  3988. 2025-1-11 16:22: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  3989. 2025-1-11 16:22:50-debug: Number of other assets: 754
  3990. 2025-1-11 16:22:50-debug: Number of all scripts: 103
  3991. 2025-1-11 16:22:50-debug: Number of all scenes: 3
  3992. 2025-1-11 16:22:50-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  3993. 2025-1-11 16:22:50-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  3994. 2025-1-11 16:22:50-debug: 查询 Asset Bundle start, progress: 5%
  3995. 2025-1-11 16:22:50-debug: // ---- build task 查询 Asset Bundle ----
  3996. 2025-1-11 16:22:50-debug: [Build Memory track]: 查询 Asset Bundle start:167.29MB, end 166.90MB, increase: -399.62KB
  3997. 2025-1-11 16:22:50-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  3998. 2025-1-11 16:22:50-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  3999. 2025-1-11 16:22:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4000. 2025-1-11 16:22:50-debug: [Build Memory track]: 查询 Asset Bundle start:166.93MB, end 167.08MB, increase: 156.86KB
  4001. 2025-1-11 16:22:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4002. 2025-1-11 16:22:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4003. 2025-1-11 16:22:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4004. 2025-1-11 16:22:50-debug: // ---- build task 填充脚本数据到 settings.json ----
  4005. 2025-1-11 16:22:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.11MB, end 167.14MB, increase: 28.22KB
  4006. 2025-1-11 16:22:50-debug: 填充脚本数据到 settings.json start, progress: 12%
  4007. 2025-1-11 16:22:50-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4008. 2025-1-11 16:22:50-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4009. 2025-1-11 16:22:50-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.17MB, end 167.20MB, increase: 30.12KB
  4010. 2025-1-11 16:22:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4011. 2025-1-11 16:22:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4012. 2025-1-11 16:22:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4013. 2025-1-11 16:22:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4014. 2025-1-11 16:22:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.23MB, end 167.36MB, increase: 130.18KB
  4015. 2025-1-11 16:23:03-debug: Query all assets info in project
  4016. 2025-1-11 16:23:03-debug: init custom config: keepNodeUuid: false, useCache: true
  4017. 2025-1-11 16:23:03-debug: 查询 Asset Bundle start, progress: 0%
  4018. 2025-1-11 16:23:03-debug: // ---- build task 查询 Asset Bundle ----
  4019. 2025-1-11 16:23: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4020. 2025-1-11 16:23:03-debug: Number of all scripts: 103
  4021. 2025-1-11 16:23:03-debug: Number of other assets: 754
  4022. 2025-1-11 16:23:03-debug: Number of all scenes: 3
  4023. 2025-1-11 16:23:03-debug: // ---- build task 查询 Asset Bundle ---- (18ms)
  4024. 2025-1-11 16:23:03-debug: run build task 查询 Asset Bundle success in 18 ms√, progress: 5%
  4025. 2025-1-11 16:23:03-debug: [Build Memory track]: 查询 Asset Bundle start:167.01MB, end 167.47MB, increase: 471.18KB
  4026. 2025-1-11 16:23:03-debug: // ---- build task 查询 Asset Bundle ----
  4027. 2025-1-11 16:23:03-debug: 查询 Asset Bundle start, progress: 5%
  4028. 2025-1-11 16:23:03-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  4029. 2025-1-11 16:23:03-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  4030. 2025-1-11 16:23:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4031. 2025-1-11 16:23:03-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4032. 2025-1-11 16:23:03-debug: [Build Memory track]: 查询 Asset Bundle start:167.50MB, end 167.65MB, increase: 156.23KB
  4033. 2025-1-11 16:23:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4034. 2025-1-11 16:23:03-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.69MB, end 167.71MB, increase: 28.46KB
  4035. 2025-1-11 16:23:03-debug: // ---- build task 填充脚本数据到 settings.json ----
  4036. 2025-1-11 16:23:03-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  4037. 2025-1-11 16:23:03-debug: 填充脚本数据到 settings.json start, progress: 12%
  4038. 2025-1-11 16:23:03-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4039. 2025-1-11 16:23:03-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4040. 2025-1-11 16:23:03-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4041. 2025-1-11 16:23:03-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.75MB, end 167.77MB, increase: 30.14KB
  4042. 2025-1-11 16:23:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4043. 2025-1-11 16:23:03-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4044. 2025-1-11 16:23:03-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4045. 2025-1-11 16:23:03-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.81MB, end 167.06MB, increase: -764.21KB
  4046. 2025-1-11 16:25:17-debug: refresh db internal success
  4047. 2025-1-11 16:25:17-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4048. 2025-1-11 16:25:17-debug: refresh db assets success
  4049. 2025-1-11 16:25:17-debug: Run asset db hook engine-extends:afterRefresh ...
  4050. 2025-1-11 16:25:17-debug: Run asset db hook engine-extends:afterRefresh success!
  4051. 2025-1-11 16:25:17-debug: asset-db:refresh-all-database (271ms)
  4052. 2025-1-11 16:25:17-debug: asset-db:worker-effect-data-processing (4ms)
  4053. 2025-1-11 16:25:17-debug: asset-db-hook-engine-extends-afterRefresh (4ms)
  4054. 2025-1-11 16:25:19-debug: Query all assets info in project
  4055. 2025-1-11 16:25:19-debug: init custom config: keepNodeUuid: false, useCache: true
  4056. 2025-1-11 16:25:19-debug: 查询 Asset Bundle start, progress: 0%
  4057. 2025-1-11 16:25:19-debug: // ---- build task 查询 Asset Bundle ----
  4058. 2025-1-11 16:25:19-debug: Number of all scenes: 3
  4059. 2025-1-11 16:25:19-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4060. 2025-1-11 16:25:19-debug: Number of other assets: 754
  4061. 2025-1-11 16:25:19-debug: Number of all scripts: 103
  4062. 2025-1-11 16:25:19-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  4063. 2025-1-11 16:25:19-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  4064. 2025-1-11 16:25:19-debug: 查询 Asset Bundle start, progress: 5%
  4065. 2025-1-11 16:25:19-debug: [Build Memory track]: 查询 Asset Bundle start:171.10MB, end 169.43MB, increase: -1712.34KB
  4066. 2025-1-11 16:25:19-debug: // ---- build task 查询 Asset Bundle ----
  4067. 2025-1-11 16:25:19-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4068. 2025-1-11 16:25:19-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4069. 2025-1-11 16:25:19-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4070. 2025-1-11 16:25:19-debug: [Build Memory track]: 查询 Asset Bundle start:169.46MB, end 169.61MB, increase: 158.35KB
  4071. 2025-1-11 16:25:19-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4072. 2025-1-11 16:25:19-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  4073. 2025-1-11 16:25:19-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.65MB, end 169.66MB, increase: 17.18KB
  4074. 2025-1-11 16:25:19-debug: // ---- build task 填充脚本数据到 settings.json ----
  4075. 2025-1-11 16:25:19-debug: 填充脚本数据到 settings.json start, progress: 12%
  4076. 2025-1-11 16:25:19-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4077. 2025-1-11 16:25:19-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.69MB, end 169.71MB, increase: 16.97KB
  4078. 2025-1-11 16:25:19-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4079. 2025-1-11 16:25:19-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4080. 2025-1-11 16:25:19-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4081. 2025-1-11 16:25:19-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4082. 2025-1-11 16:25:19-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.74MB, end 169.88MB, increase: 144.93KB
  4083. 2025-1-11 16:25:19-debug: Query all assets info in project
  4084. 2025-1-11 16:25:19-debug: init custom config: keepNodeUuid: false, useCache: true
  4085. 2025-1-11 16:25:19-debug: 查询 Asset Bundle start, progress: 0%
  4086. 2025-1-11 16:25:19-debug: // ---- build task 查询 Asset Bundle ----
  4087. 2025-1-11 16:25:19-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4088. 2025-1-11 16:25:19-debug: Number of all scenes: 3
  4089. 2025-1-11 16:25:19-debug: Number of all scripts: 103
  4090. 2025-1-11 16:25:19-debug: Number of other assets: 754
  4091. 2025-1-11 16:25:19-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  4092. 2025-1-11 16:25:19-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  4093. 2025-1-11 16:25:19-debug: [Build Memory track]: 查询 Asset Bundle start:168.74MB, end 168.56MB, increase: -191.29KB
  4094. 2025-1-11 16:25:19-debug: // ---- build task 查询 Asset Bundle ----
  4095. 2025-1-11 16:25:19-debug: 查询 Asset Bundle start, progress: 5%
  4096. 2025-1-11 16:25:19-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  4097. 2025-1-11 16:25:19-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4098. 2025-1-11 16:25:19-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4099. 2025-1-11 16:25:19-debug: [Build Memory track]: 查询 Asset Bundle start:168.59MB, end 168.74MB, increase: 158.38KB
  4100. 2025-1-11 16:25:19-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  4101. 2025-1-11 16:25:19-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  4102. 2025-1-11 16:25:19-debug: 填充脚本数据到 settings.json start, progress: 12%
  4103. 2025-1-11 16:25:19-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.77MB, end 168.79MB, increase: 17.91KB
  4104. 2025-1-11 16:25:19-debug: // ---- build task 填充脚本数据到 settings.json ----
  4105. 2025-1-11 16:25:19-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4106. 2025-1-11 16:25:19-debug: [Build Memory track]: 填充脚本数据到 settings.json start:168.82MB, end 168.84MB, increase: 18.11KB
  4107. 2025-1-11 16:25:19-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4108. 2025-1-11 16:25:19-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4109. 2025-1-11 16:25:19-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  4110. 2025-1-11 16:25:19-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  4111. 2025-1-11 16:25:19-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.87MB, end 169.00MB, increase: 130.69KB
  4112. 2025-1-11 16:26:31-debug: refresh db internal success
  4113. 2025-1-11 16:26:31-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4114. 2025-1-11 16:26:31-debug: refresh db assets success
  4115. 2025-1-11 16:26:31-debug: Run asset db hook engine-extends:afterRefresh ...
  4116. 2025-1-11 16:26:31-debug: Run asset db hook engine-extends:afterRefresh success!
  4117. 2025-1-11 16:26:31-debug: asset-db:refresh-all-database (259ms)
  4118. 2025-1-11 16:26:31-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4119. 2025-1-11 16:26:33-debug: Query all assets info in project
  4120. 2025-1-11 16:26:33-debug: init custom config: keepNodeUuid: false, useCache: true
  4121. 2025-1-11 16:26:33-debug: 查询 Asset Bundle start, progress: 0%
  4122. 2025-1-11 16:26:33-debug: // ---- build task 查询 Asset Bundle ----
  4123. 2025-1-11 16:26:33-debug: Number of all scripts: 103
  4124. 2025-1-11 16:26: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4125. 2025-1-11 16:26:33-debug: Number of other assets: 754
  4126. 2025-1-11 16:26:33-debug: Number of all scenes: 3
  4127. 2025-1-11 16:26:33-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  4128. 2025-1-11 16:26:33-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  4129. 2025-1-11 16:26:33-debug: [Build Memory track]: 查询 Asset Bundle start:171.67MB, end 170.70MB, increase: -997.38KB
  4130. 2025-1-11 16:26:33-debug: 查询 Asset Bundle start, progress: 5%
  4131. 2025-1-11 16:26:33-debug: // ---- build task 查询 Asset Bundle ----
  4132. 2025-1-11 16:26:33-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  4133. 2025-1-11 16:26:33-debug: [Build Memory track]: 查询 Asset Bundle start:170.73MB, end 170.88MB, increase: 156.56KB
  4134. 2025-1-11 16:26:33-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  4135. 2025-1-11 16:26:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4136. 2025-1-11 16:26:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4137. 2025-1-11 16:26:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4138. 2025-1-11 16:26:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.91MB, end 170.94MB, increase: 27.92KB
  4139. 2025-1-11 16:26:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4140. 2025-1-11 16:26:33-debug: // ---- build task 填充脚本数据到 settings.json ----
  4141. 2025-1-11 16:26:33-debug: 填充脚本数据到 settings.json start, progress: 12%
  4142. 2025-1-11 16:26:33-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4143. 2025-1-11 16:26:33-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.97MB, end 171.00MB, increase: 30.36KB
  4144. 2025-1-11 16:26:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4145. 2025-1-11 16:26:33-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4146. 2025-1-11 16:26:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4147. 2025-1-11 16:26:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4148. 2025-1-11 16:26:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.03MB, end 171.16MB, increase: 130.83KB
  4149. 2025-1-11 16:26:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  4150. 2025-1-11 16:26:33-debug: Query all assets info in project
  4151. 2025-1-11 16:26:33-debug: init custom config: keepNodeUuid: false, useCache: true
  4152. 2025-1-11 16:26:33-debug: 查询 Asset Bundle start, progress: 0%
  4153. 2025-1-11 16:26:33-debug: // ---- build task 查询 Asset Bundle ----
  4154. 2025-1-11 16:26: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4155. 2025-1-11 16:26:33-debug: Number of all scenes: 3
  4156. 2025-1-11 16:26:33-debug: Number of other assets: 754
  4157. 2025-1-11 16:26:33-debug: Number of all scripts: 103
  4158. 2025-1-11 16:26:33-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  4159. 2025-1-11 16:26:33-debug: [Build Memory track]: 查询 Asset Bundle start:171.64MB, end 171.16MB, increase: -489.93KB
  4160. 2025-1-11 16:26:33-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  4161. 2025-1-11 16:26:33-debug: // ---- build task 查询 Asset Bundle ----
  4162. 2025-1-11 16:26:33-debug: 查询 Asset Bundle start, progress: 5%
  4163. 2025-1-11 16:26:33-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  4164. 2025-1-11 16:26:33-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  4165. 2025-1-11 16:26:33-debug: [Build Memory track]: 查询 Asset Bundle start:171.19MB, end 171.34MB, increase: 158.75KB
  4166. 2025-1-11 16:26:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4167. 2025-1-11 16:26:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4168. 2025-1-11 16:26:33-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  4169. 2025-1-11 16:26:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.38MB, end 171.39MB, increase: 17.85KB
  4170. 2025-1-11 16:26:33-debug: // ---- build task 填充脚本数据到 settings.json ----
  4171. 2025-1-11 16:26:33-debug: 填充脚本数据到 settings.json start, progress: 12%
  4172. 2025-1-11 16:26:33-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4173. 2025-1-11 16:26:33-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4174. 2025-1-11 16:26:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4175. 2025-1-11 16:26:33-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.42MB, end 171.45MB, increase: 27.73KB
  4176. 2025-1-11 16:26:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4177. 2025-1-11 16:26:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4178. 2025-1-11 16:26:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4179. 2025-1-11 16:26:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.48MB, end 171.61MB, increase: 131.79KB
  4180. 2025-1-11 16:27:45-debug: refresh db internal success
  4181. 2025-1-11 16:27:45-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4182. 2025-1-11 16:27:45-debug: refresh db assets success
  4183. 2025-1-11 16:27:45-debug: Run asset db hook engine-extends:afterRefresh ...
  4184. 2025-1-11 16:27:45-debug: Run asset db hook engine-extends:afterRefresh success!
  4185. 2025-1-11 16:27:45-debug: asset-db:refresh-all-database (242ms)
  4186. 2025-1-11 16:27:45-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4187. 2025-1-11 16:27:47-debug: Query all assets info in project
  4188. 2025-1-11 16:27:47-debug: init custom config: keepNodeUuid: false, useCache: true
  4189. 2025-1-11 16:27:47-debug: 查询 Asset Bundle start, progress: 0%
  4190. 2025-1-11 16:27:47-debug: // ---- build task 查询 Asset Bundle ----
  4191. 2025-1-11 16:27: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4192. 2025-1-11 16:27:47-debug: Number of other assets: 754
  4193. 2025-1-11 16:27:47-debug: Number of all scripts: 103
  4194. 2025-1-11 16:27:47-debug: Number of all scenes: 3
  4195. 2025-1-11 16:27:47-debug: // ---- build task 查询 Asset Bundle ---- (13ms)
  4196. 2025-1-11 16:27:47-debug: run build task 查询 Asset Bundle success in 13 ms√, progress: 5%
  4197. 2025-1-11 16:27:47-debug: // ---- build task 查询 Asset Bundle ----
  4198. 2025-1-11 16:27:47-debug: [Build Memory track]: 查询 Asset Bundle start:172.83MB, end 173.05MB, increase: 217.07KB
  4199. 2025-1-11 16:27:47-debug: 查询 Asset Bundle start, progress: 5%
  4200. 2025-1-11 16:27:47-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4201. 2025-1-11 16:27:47-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4202. 2025-1-11 16:27:47-debug: [Build Memory track]: 查询 Asset Bundle start:173.08MB, end 173.23MB, increase: 157.03KB
  4203. 2025-1-11 16:27:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4204. 2025-1-11 16:27:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4205. 2025-1-11 16:27:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4206. 2025-1-11 16:27:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4207. 2025-1-11 16:27:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.26MB, end 173.29MB, increase: 29.67KB
  4208. 2025-1-11 16:27:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  4209. 2025-1-11 16:27:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  4210. 2025-1-11 16:27:47-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4211. 2025-1-11 16:27:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:173.32MB, end 173.34MB, increase: 17.39KB
  4212. 2025-1-11 16:27:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4213. 2025-1-11 16:27:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4214. 2025-1-11 16:27:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4215. 2025-1-11 16:27:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  4216. 2025-1-11 16:27:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.37MB, end 173.50MB, increase: 130.57KB
  4217. 2025-1-11 16:27:47-debug: Query all assets info in project
  4218. 2025-1-11 16:27:47-debug: init custom config: keepNodeUuid: false, useCache: true
  4219. 2025-1-11 16:27:47-debug: 查询 Asset Bundle start, progress: 0%
  4220. 2025-1-11 16:27:47-debug: // ---- build task 查询 Asset Bundle ----
  4221. 2025-1-11 16:27:47-debug: Number of all scenes: 3
  4222. 2025-1-11 16:27:47-debug: Number of all scripts: 103
  4223. 2025-1-11 16:27: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4224. 2025-1-11 16:27:47-debug: Number of other assets: 754
  4225. 2025-1-11 16:27:47-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  4226. 2025-1-11 16:27:47-debug: [Build Memory track]: 查询 Asset Bundle start:172.15MB, end 173.56MB, increase: 1.41MB
  4227. 2025-1-11 16:27:47-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  4228. 2025-1-11 16:27:47-debug: // ---- build task 查询 Asset Bundle ----
  4229. 2025-1-11 16:27:47-debug: 查询 Asset Bundle start, progress: 5%
  4230. 2025-1-11 16:27:47-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4231. 2025-1-11 16:27:47-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4232. 2025-1-11 16:27:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4233. 2025-1-11 16:27:47-debug: [Build Memory track]: 查询 Asset Bundle start:173.59MB, end 173.75MB, increase: 157.91KB
  4234. 2025-1-11 16:27:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4235. 2025-1-11 16:27:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.78MB, end 173.80MB, increase: 18.04KB
  4236. 2025-1-11 16:27:47-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  4237. 2025-1-11 16:27:47-debug: 填充脚本数据到 settings.json start, progress: 12%
  4238. 2025-1-11 16:27:47-debug: // ---- build task 填充脚本数据到 settings.json ----
  4239. 2025-1-11 16:27:47-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4240. 2025-1-11 16:27:47-debug: [Build Memory track]: 填充脚本数据到 settings.json start:173.83MB, end 173.85MB, increase: 17.96KB
  4241. 2025-1-11 16:27:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4242. 2025-1-11 16:27:47-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4243. 2025-1-11 16:27:47-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4244. 2025-1-11 16:27:47-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  4245. 2025-1-11 16:27:47-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.88MB, end 174.00MB, increase: 130.62KB
  4246. 2025-1-11 16:28:49-debug: refresh db internal success
  4247. 2025-1-11 16:28:49-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4248. 2025-1-11 16:28:49-debug: refresh db assets success
  4249. 2025-1-11 16:28:49-debug: Run asset db hook engine-extends:afterRefresh ...
  4250. 2025-1-11 16:28:49-debug: Run asset db hook engine-extends:afterRefresh success!
  4251. 2025-1-11 16:28:49-debug: asset-db:refresh-all-database (294ms)
  4252. 2025-1-11 16:28:49-debug: asset-db:worker-effect-data-processing (1ms)
  4253. 2025-1-11 16:28:49-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4254. 2025-1-11 16:28:51-debug: Query all assets info in project
  4255. 2025-1-11 16:28:51-debug: init custom config: keepNodeUuid: false, useCache: true
  4256. 2025-1-11 16:28:51-debug: 查询 Asset Bundle start, progress: 0%
  4257. 2025-1-11 16:28:51-debug: // ---- build task 查询 Asset Bundle ----
  4258. 2025-1-11 16:28: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4259. 2025-1-11 16:28:51-debug: Number of all scenes: 3
  4260. 2025-1-11 16:28:51-debug: Number of other assets: 754
  4261. 2025-1-11 16:28:51-debug: Number of all scripts: 103
  4262. 2025-1-11 16:28:51-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  4263. 2025-1-11 16:28:51-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  4264. 2025-1-11 16:28:51-debug: [Build Memory track]: 查询 Asset Bundle start:161.58MB, end 159.89MB, increase: -1731.62KB
  4265. 2025-1-11 16:28:51-debug: // ---- build task 查询 Asset Bundle ----
  4266. 2025-1-11 16:28:51-debug: 查询 Asset Bundle start, progress: 5%
  4267. 2025-1-11 16:28:51-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  4268. 2025-1-11 16:28:51-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  4269. 2025-1-11 16:28:51-debug: [Build Memory track]: 查询 Asset Bundle start:159.92MB, end 160.07MB, increase: 158.29KB
  4270. 2025-1-11 16:28:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4271. 2025-1-11 16:28:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4272. 2025-1-11 16:28:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4273. 2025-1-11 16:28:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4274. 2025-1-11 16:28:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.10MB, end 160.13MB, increase: 27.37KB
  4275. 2025-1-11 16:28:51-debug: 填充脚本数据到 settings.json start, progress: 12%
  4276. 2025-1-11 16:28:51-debug: // ---- build task 填充脚本数据到 settings.json ----
  4277. 2025-1-11 16:28:51-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4278. 2025-1-11 16:28:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4279. 2025-1-11 16:28:51-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4280. 2025-1-11 16:28:51-debug: [Build Memory track]: 填充脚本数据到 settings.json start:160.16MB, end 160.19MB, increase: 27.24KB
  4281. 2025-1-11 16:28:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4282. 2025-1-11 16:28:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4283. 2025-1-11 16:28:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4284. 2025-1-11 16:28:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.22MB, end 160.36MB, increase: 137.34KB
  4285. 2025-1-11 16:28:52-debug: Query all assets info in project
  4286. 2025-1-11 16:28:52-debug: init custom config: keepNodeUuid: false, useCache: true
  4287. 2025-1-11 16:28:52-debug: 查询 Asset Bundle start, progress: 0%
  4288. 2025-1-11 16:28:52-debug: // ---- build task 查询 Asset Bundle ----
  4289. 2025-1-11 16:28:52-debug: Number of all scenes: 3
  4290. 2025-1-11 16:28:52-debug: Number of all scripts: 103
  4291. 2025-1-11 16:28: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4292. 2025-1-11 16:28:52-debug: Number of other assets: 754
  4293. 2025-1-11 16:28:52-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  4294. 2025-1-11 16:28:52-debug: 查询 Asset Bundle start, progress: 5%
  4295. 2025-1-11 16:28:52-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  4296. 2025-1-11 16:28:52-debug: [Build Memory track]: 查询 Asset Bundle start:159.03MB, end 160.35MB, increase: 1.32MB
  4297. 2025-1-11 16:28:52-debug: // ---- build task 查询 Asset Bundle ----
  4298. 2025-1-11 16:28:52-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4299. 2025-1-11 16:28:52-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4300. 2025-1-11 16:28:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4301. 2025-1-11 16:28:52-debug: [Build Memory track]: 查询 Asset Bundle start:160.38MB, end 160.53MB, increase: 161.45KB
  4302. 2025-1-11 16:28:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4303. 2025-1-11 16:28:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4304. 2025-1-11 16:28:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4305. 2025-1-11 16:28:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  4306. 2025-1-11 16:28:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.57MB, end 160.59MB, increase: 27.06KB
  4307. 2025-1-11 16:28:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  4308. 2025-1-11 16:28:52-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4309. 2025-1-11 16:28:52-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4310. 2025-1-11 16:28:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:160.62MB, end 159.04MB, increase: -1626.20KB
  4311. 2025-1-11 16:28:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4312. 2025-1-11 16:28:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4313. 2025-1-11 16:28:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4314. 2025-1-11 16:28:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4315. 2025-1-11 16:28:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:159.07MB, end 159.20MB, increase: 138.32KB
  4316. 2025-1-11 16:30:59-debug: refresh db internal success
  4317. 2025-1-11 16:30:59-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4318. 2025-1-11 16:30:59-debug: refresh db assets success
  4319. 2025-1-11 16:30:59-debug: Run asset db hook engine-extends:afterRefresh ...
  4320. 2025-1-11 16:30:59-debug: Run asset db hook engine-extends:afterRefresh success!
  4321. 2025-1-11 16:30:59-debug: asset-db:refresh-all-database (249ms)
  4322. 2025-1-11 16:30:59-debug: asset-db:worker-effect-data-processing (2ms)
  4323. 2025-1-11 16:30:59-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4324. 2025-1-11 16:31:00-debug: Query all assets info in project
  4325. 2025-1-11 16:31:00-debug: init custom config: keepNodeUuid: false, useCache: true
  4326. 2025-1-11 16:31:00-debug: // ---- build task 查询 Asset Bundle ----
  4327. 2025-1-11 16:31:00-debug: 查询 Asset Bundle start, progress: 0%
  4328. 2025-1-11 16:31: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4329. 2025-1-11 16:31:00-debug: Number of all scenes: 3
  4330. 2025-1-11 16:31:00-debug: Number of all scripts: 103
  4331. 2025-1-11 16:31:00-debug: Number of other assets: 754
  4332. 2025-1-11 16:31:00-debug: // ---- build task 查询 Asset Bundle ---- (17ms)
  4333. 2025-1-11 16:31:00-debug: run build task 查询 Asset Bundle success in 17 ms√, progress: 5%
  4334. 2025-1-11 16:31:00-debug: [Build Memory track]: 查询 Asset Bundle start:163.10MB, end 161.39MB, increase: -1754.25KB
  4335. 2025-1-11 16:31:00-debug: 查询 Asset Bundle start, progress: 5%
  4336. 2025-1-11 16:31:00-debug: // ---- build task 查询 Asset Bundle ----
  4337. 2025-1-11 16:31:00-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 10%
  4338. 2025-1-11 16:31:00-debug: [Build Memory track]: 查询 Asset Bundle start:161.42MB, end 161.57MB, increase: 158.45KB
  4339. 2025-1-11 16:31:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4340. 2025-1-11 16:31:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4341. 2025-1-11 16:31:00-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  4342. 2025-1-11 16:31:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4343. 2025-1-11 16:31:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.60MB, end 161.63MB, increase: 29.96KB
  4344. 2025-1-11 16:31:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 12%
  4345. 2025-1-11 16:31:00-debug: 填充脚本数据到 settings.json start, progress: 12%
  4346. 2025-1-11 16:31:00-debug: // ---- build task 填充脚本数据到 settings.json ----
  4347. 2025-1-11 16:31:00-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4348. 2025-1-11 16:31:00-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.66MB, end 161.69MB, increase: 26.12KB
  4349. 2025-1-11 16:31:00-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4350. 2025-1-11 16:31:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4351. 2025-1-11 16:31:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4352. 2025-1-11 16:31:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (18ms)
  4353. 2025-1-11 16:31:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 18 ms√, progress: 15%
  4354. 2025-1-11 16:31:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.72MB, end 161.86MB, increase: 141.32KB
  4355. 2025-1-11 16:31:01-debug: Query all assets info in project
  4356. 2025-1-11 16:31:01-debug: init custom config: keepNodeUuid: false, useCache: true
  4357. 2025-1-11 16:31:01-debug: 查询 Asset Bundle start, progress: 0%
  4358. 2025-1-11 16:31:01-debug: // ---- build task 查询 Asset Bundle ----
  4359. 2025-1-11 16:31: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4360. 2025-1-11 16:31:01-debug: Number of all scenes: 3
  4361. 2025-1-11 16:31:01-debug: Number of other assets: 754
  4362. 2025-1-11 16:31:01-debug: Number of all scripts: 103
  4363. 2025-1-11 16:31:01-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  4364. 2025-1-11 16:31:01-debug: [Build Memory track]: 查询 Asset Bundle start:160.73MB, end 160.55MB, increase: -187.13KB
  4365. 2025-1-11 16:31:01-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  4366. 2025-1-11 16:31:01-debug: 查询 Asset Bundle start, progress: 5%
  4367. 2025-1-11 16:31:01-debug: // ---- build task 查询 Asset Bundle ----
  4368. 2025-1-11 16:31:01-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  4369. 2025-1-11 16:31:01-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  4370. 2025-1-11 16:31:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4371. 2025-1-11 16:31:01-debug: [Build Memory track]: 查询 Asset Bundle start:160.58MB, end 160.73MB, increase: 158.25KB
  4372. 2025-1-11 16:31:01-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4373. 2025-1-11 16:31:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4374. 2025-1-11 16:31:01-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4375. 2025-1-11 16:31:01-debug: // ---- build task 填充脚本数据到 settings.json ----
  4376. 2025-1-11 16:31:01-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.76MB, end 160.79MB, increase: 29.10KB
  4377. 2025-1-11 16:31:01-debug: 填充脚本数据到 settings.json start, progress: 12%
  4378. 2025-1-11 16:31:01-debug: // ---- build task 填充脚本数据到 settings.json ---- (4ms)
  4379. 2025-1-11 16:31:01-debug: run build task 填充脚本数据到 settings.json success in 4 ms√, progress: 13%
  4380. 2025-1-11 16:31:01-debug: [Build Memory track]: 填充脚本数据到 settings.json start:160.83MB, end 160.86MB, increase: 29.19KB
  4381. 2025-1-11 16:31:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4382. 2025-1-11 16:31:01-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4383. 2025-1-11 16:31:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4384. 2025-1-11 16:31:01-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4385. 2025-1-11 16:31:01-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.89MB, end 161.02MB, increase: 130.35KB
  4386. 2025-1-11 16:31:01-debug: Query all assets info in project
  4387. 2025-1-11 16:31:01-debug: init custom config: keepNodeUuid: false, useCache: true
  4388. 2025-1-11 16:31:01-debug: 查询 Asset Bundle start, progress: 0%
  4389. 2025-1-11 16:31:01-debug: // ---- build task 查询 Asset Bundle ----
  4390. 2025-1-11 16:31: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4391. 2025-1-11 16:31:01-debug: Number of all scripts: 103
  4392. 2025-1-11 16:31:01-debug: Number of other assets: 754
  4393. 2025-1-11 16:31:01-debug: Number of all scenes: 3
  4394. 2025-1-11 16:31:01-debug: // ---- build task 查询 Asset Bundle ---- (7ms)
  4395. 2025-1-11 16:31:01-debug: [Build Memory track]: 查询 Asset Bundle start:161.51MB, end 161.12MB, increase: -397.46KB
  4396. 2025-1-11 16:31:01-debug: run build task 查询 Asset Bundle success in 7 ms√, progress: 5%
  4397. 2025-1-11 16:31:01-debug: // ---- build task 查询 Asset Bundle ----
  4398. 2025-1-11 16:31:01-debug: 查询 Asset Bundle start, progress: 5%
  4399. 2025-1-11 16:31:01-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4400. 2025-1-11 16:31:01-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4401. 2025-1-11 16:31:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4402. 2025-1-11 16:31:01-debug: [Build Memory track]: 查询 Asset Bundle start:161.16MB, end 161.31MB, increase: 158.46KB
  4403. 2025-1-11 16:31:01-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4404. 2025-1-11 16:31:01-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4405. 2025-1-11 16:31:01-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.34MB, end 161.37MB, increase: 28.04KB
  4406. 2025-1-11 16:31:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4407. 2025-1-11 16:31:01-debug: // ---- build task 填充脚本数据到 settings.json ----
  4408. 2025-1-11 16:31:01-debug: 填充脚本数据到 settings.json start, progress: 12%
  4409. 2025-1-11 16:31:01-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4410. 2025-1-11 16:31:01-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4411. 2025-1-11 16:31:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4412. 2025-1-11 16:31:01-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.40MB, end 161.43MB, increase: 28.58KB
  4413. 2025-1-11 16:31:01-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4414. 2025-1-11 16:31:01-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4415. 2025-1-11 16:31:01-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.46MB, end 161.59MB, increase: 135.13KB
  4416. 2025-1-11 16:31:01-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4417. 2025-1-11 16:32:16-debug: refresh db internal success
  4418. 2025-1-11 16:32:16-debug: refresh db assets success
  4419. 2025-1-11 16:32:16-debug: Run asset db hook engine-extends:afterRefresh ...
  4420. 2025-1-11 16:32:16-debug: Run asset db hook engine-extends:afterRefresh success!
  4421. 2025-1-11 16:32:16-debug: asset-db:refresh-all-database (90ms)
  4422. 2025-1-11 16:32:16-debug: asset-db:worker-effect-data-processing (1ms)
  4423. 2025-1-11 16:32:16-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4424. 2025-1-11 16:32:28-debug: refresh db internal success
  4425. 2025-1-11 16:32:28-debug: refresh db assets success
  4426. 2025-1-11 16:32:28-debug: Run asset db hook engine-extends:afterRefresh ...
  4427. 2025-1-11 16:32:28-debug: Run asset db hook engine-extends:afterRefresh success!
  4428. 2025-1-11 16:32:28-debug: asset-db:refresh-all-database (86ms)
  4429. 2025-1-11 16:32:28-debug: asset-db:worker-effect-data-processing (1ms)
  4430. 2025-1-11 16:32:28-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4431. 2025-1-11 16:32:31-debug: refresh db internal success
  4432. 2025-1-11 16:32:31-debug: refresh db assets success
  4433. 2025-1-11 16:32:31-debug: Run asset db hook engine-extends:afterRefresh ...
  4434. 2025-1-11 16:32:31-debug: Run asset db hook engine-extends:afterRefresh success!
  4435. 2025-1-11 16:32:31-debug: asset-db:refresh-all-database (83ms)
  4436. 2025-1-11 16:32:31-debug: asset-db:worker-effect-data-processing (2ms)
  4437. 2025-1-11 16:32:31-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4438. 2025-1-11 16:32:51-debug: refresh db internal success
  4439. 2025-1-11 16:32:51-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4440. 2025-1-11 16:32:51-debug: refresh db assets success
  4441. 2025-1-11 16:32:51-debug: Run asset db hook engine-extends:afterRefresh ...
  4442. 2025-1-11 16:32:51-debug: Run asset db hook engine-extends:afterRefresh success!
  4443. 2025-1-11 16:32:51-debug: asset-db:refresh-all-database (271ms)
  4444. 2025-1-11 16:32:51-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4445. 2025-1-11 16:32:51-debug: asset-db:worker-effect-data-processing (1ms)
  4446. 2025-1-11 16:32:52-debug: Query all assets info in project
  4447. 2025-1-11 16:32:52-debug: init custom config: keepNodeUuid: false, useCache: true
  4448. 2025-1-11 16:32:52-debug: 查询 Asset Bundle start, progress: 0%
  4449. 2025-1-11 16:32:52-debug: // ---- build task 查询 Asset Bundle ----
  4450. 2025-1-11 16:32: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4451. 2025-1-11 16:32:52-debug: Number of all scenes: 3
  4452. 2025-1-11 16:32:52-debug: Number of all scripts: 103
  4453. 2025-1-11 16:32:52-debug: Number of other assets: 754
  4454. 2025-1-11 16:32:52-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  4455. 2025-1-11 16:32:52-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  4456. 2025-1-11 16:32:52-debug: [Build Memory track]: 查询 Asset Bundle start:166.17MB, end 167.49MB, increase: 1.32MB
  4457. 2025-1-11 16:32:52-debug: 查询 Asset Bundle start, progress: 5%
  4458. 2025-1-11 16:32:52-debug: // ---- build task 查询 Asset Bundle ----
  4459. 2025-1-11 16:32:52-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  4460. 2025-1-11 16:32:52-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 10%
  4461. 2025-1-11 16:32:52-debug: [Build Memory track]: 查询 Asset Bundle start:167.52MB, end 167.69MB, increase: 174.68KB
  4462. 2025-1-11 16:32:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4463. 2025-1-11 16:32:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4464. 2025-1-11 16:32:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  4465. 2025-1-11 16:32:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  4466. 2025-1-11 16:32:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  4467. 2025-1-11 16:32:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.72MB, end 167.75MB, increase: 27.26KB
  4468. 2025-1-11 16:32:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4469. 2025-1-11 16:32:52-debug: // ---- build task 填充脚本数据到 settings.json ---- (3ms)
  4470. 2025-1-11 16:32:52-debug: run build task 填充脚本数据到 settings.json success in 3 ms√, progress: 13%
  4471. 2025-1-11 16:32:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4472. 2025-1-11 16:32:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.81MB, end 166.15MB, increase: -1700.61KB
  4473. 2025-1-11 16:32:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4474. 2025-1-11 16:32:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4475. 2025-1-11 16:32:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4476. 2025-1-11 16:32:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.18MB, end 166.31MB, increase: 136.28KB
  4477. 2025-1-11 16:32:53-debug: Query all assets info in project
  4478. 2025-1-11 16:32:53-debug: init custom config: keepNodeUuid: false, useCache: true
  4479. 2025-1-11 16:32:53-debug: 查询 Asset Bundle start, progress: 0%
  4480. 2025-1-11 16:32:53-debug: // ---- build task 查询 Asset Bundle ----
  4481. 2025-1-11 16:32:53-debug: Number of all scenes: 3
  4482. 2025-1-11 16:32:53-debug: Number of all scripts: 103
  4483. 2025-1-11 16:32: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4484. 2025-1-11 16:32:53-debug: Number of other assets: 754
  4485. 2025-1-11 16:32:53-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  4486. 2025-1-11 16:32:53-debug: [Build Memory track]: 查询 Asset Bundle start:166.77MB, end 166.35MB, increase: -425.75KB
  4487. 2025-1-11 16:32:53-debug: // ---- build task 查询 Asset Bundle ----
  4488. 2025-1-11 16:32:53-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  4489. 2025-1-11 16:32:53-debug: 查询 Asset Bundle start, progress: 5%
  4490. 2025-1-11 16:32:53-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4491. 2025-1-11 16:32:53-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4492. 2025-1-11 16:32:53-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4493. 2025-1-11 16:32:53-debug: [Build Memory track]: 查询 Asset Bundle start:166.38MB, end 166.55MB, increase: 172.25KB
  4494. 2025-1-11 16:32:53-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4495. 2025-1-11 16:32:53-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4496. 2025-1-11 16:32:53-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  4497. 2025-1-11 16:32:53-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.58MB, end 166.61MB, increase: 27.53KB
  4498. 2025-1-11 16:32:53-debug: 填充脚本数据到 settings.json start, progress: 12%
  4499. 2025-1-11 16:32:53-debug: // ---- build task 填充脚本数据到 settings.json ----
  4500. 2025-1-11 16:32:53-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4501. 2025-1-11 16:32:53-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4502. 2025-1-11 16:32:53-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4503. 2025-1-11 16:32:53-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.64MB, end 166.67MB, increase: 28.18KB
  4504. 2025-1-11 16:32:53-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4505. 2025-1-11 16:32:53-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4506. 2025-1-11 16:32:53-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4507. 2025-1-11 16:32:53-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.70MB, end 166.83MB, increase: 132.56KB
  4508. 2025-1-11 16:33:06-debug: refresh db internal success
  4509. 2025-1-11 16:33:06-debug: refresh db assets success
  4510. 2025-1-11 16:33:06-debug: Run asset db hook engine-extends:afterRefresh success!
  4511. 2025-1-11 16:33:06-debug: Run asset db hook engine-extends:afterRefresh ...
  4512. 2025-1-11 16:33:06-debug: asset-db:refresh-all-database (92ms)
  4513. 2025-1-11 16:33:06-debug: asset-db:worker-effect-data-processing (1ms)
  4514. 2025-1-11 16:33:06-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4515. 2025-1-11 16:33:11-debug: Query all assets info in project
  4516. 2025-1-11 16:33:11-debug: init custom config: keepNodeUuid: false, useCache: true
  4517. 2025-1-11 16:33:11-debug: 查询 Asset Bundle start, progress: 0%
  4518. 2025-1-11 16:33:11-debug: // ---- build task 查询 Asset Bundle ----
  4519. 2025-1-11 16:33:11-debug: Number of all scenes: 3
  4520. 2025-1-11 16:33: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4521. 2025-1-11 16:33:11-debug: Number of all scripts: 103
  4522. 2025-1-11 16:33:11-debug: Number of other assets: 754
  4523. 2025-1-11 16:33:11-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  4524. 2025-1-11 16:33:11-debug: 查询 Asset Bundle start, progress: 5%
  4525. 2025-1-11 16:33:11-debug: [Build Memory track]: 查询 Asset Bundle start:168.28MB, end 167.83MB, increase: -453.44KB
  4526. 2025-1-11 16:33:11-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  4527. 2025-1-11 16:33:11-debug: // ---- build task 查询 Asset Bundle ----
  4528. 2025-1-11 16:33:11-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4529. 2025-1-11 16:33:11-debug: [Build Memory track]: 查询 Asset Bundle start:167.87MB, end 168.03MB, increase: 172.80KB
  4530. 2025-1-11 16:33:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4531. 2025-1-11 16:33:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4532. 2025-1-11 16:33:11-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4533. 2025-1-11 16:33:11-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4534. 2025-1-11 16:33:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.07MB, end 168.09MB, increase: 28.95KB
  4535. 2025-1-11 16:33:11-debug: // ---- build task 填充脚本数据到 settings.json ----
  4536. 2025-1-11 16:33:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4537. 2025-1-11 16:33:11-debug: 填充脚本数据到 settings.json start, progress: 12%
  4538. 2025-1-11 16:33:11-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4539. 2025-1-11 16:33:11-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4540. 2025-1-11 16:33:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4541. 2025-1-11 16:33:11-debug: [Build Memory track]: 填充脚本数据到 settings.json start:168.13MB, end 168.15MB, increase: 27.90KB
  4542. 2025-1-11 16:33:11-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4543. 2025-1-11 16:33:11-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4544. 2025-1-11 16:33:11-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  4545. 2025-1-11 16:33:11-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:168.18MB, end 168.31MB, increase: 130.90KB
  4546. 2025-1-11 16:34:47-debug: refresh db internal success
  4547. 2025-1-11 16:34:47-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4548. 2025-1-11 16:34:47-debug: refresh db assets success
  4549. 2025-1-11 16:34:47-debug: Run asset db hook engine-extends:afterRefresh ...
  4550. 2025-1-11 16:34:47-debug: Run asset db hook engine-extends:afterRefresh success!
  4551. 2025-1-11 16:34:47-debug: asset-db:refresh-all-database (246ms)
  4552. 2025-1-11 16:34:47-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4553. 2025-1-11 16:34:47-debug: asset-db:worker-effect-data-processing (1ms)
  4554. 2025-1-11 16:34:50-debug: Query all assets info in project
  4555. 2025-1-11 16:34:50-debug: init custom config: keepNodeUuid: false, useCache: true
  4556. 2025-1-11 16:34:50-debug: 查询 Asset Bundle start, progress: 0%
  4557. 2025-1-11 16:34:50-debug: // ---- build task 查询 Asset Bundle ----
  4558. 2025-1-11 16:34: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4559. 2025-1-11 16:34:50-debug: Number of all scenes: 3
  4560. 2025-1-11 16:34:50-debug: Number of other assets: 754
  4561. 2025-1-11 16:34:50-debug: Number of all scripts: 103
  4562. 2025-1-11 16:34:50-debug: // ---- build task 查询 Asset Bundle ---- (14ms)
  4563. 2025-1-11 16:34:50-debug: run build task 查询 Asset Bundle success in 14 ms√, progress: 5%
  4564. 2025-1-11 16:34:50-debug: [Build Memory track]: 查询 Asset Bundle start:170.07MB, end 169.35MB, increase: -743.86KB
  4565. 2025-1-11 16:34:50-debug: // ---- build task 查询 Asset Bundle ----
  4566. 2025-1-11 16:34:50-debug: 查询 Asset Bundle start, progress: 5%
  4567. 2025-1-11 16:34:50-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4568. 2025-1-11 16:34:50-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4569. 2025-1-11 16:34:50-debug: [Build Memory track]: 查询 Asset Bundle start:169.38MB, end 169.55MB, increase: 173.28KB
  4570. 2025-1-11 16:34:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4571. 2025-1-11 16:34:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4572. 2025-1-11 16:34:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4573. 2025-1-11 16:34:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4574. 2025-1-11 16:34:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.58MB, end 169.60MB, increase: 27.16KB
  4575. 2025-1-11 16:34:50-debug: // ---- build task 填充脚本数据到 settings.json ----
  4576. 2025-1-11 16:34:50-debug: 填充脚本数据到 settings.json start, progress: 12%
  4577. 2025-1-11 16:34:50-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4578. 2025-1-11 16:34:50-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4579. 2025-1-11 16:34:50-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.64MB, end 169.68MB, increase: 42.93KB
  4580. 2025-1-11 16:34:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4581. 2025-1-11 16:34:50-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4582. 2025-1-11 16:34:50-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4583. 2025-1-11 16:34:50-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  4584. 2025-1-11 16:34:50-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.71MB, end 169.84MB, increase: 132.63KB
  4585. 2025-1-11 16:34:52-debug: Query all assets info in project
  4586. 2025-1-11 16:34:52-debug: init custom config: keepNodeUuid: false, useCache: true
  4587. 2025-1-11 16:34:52-debug: 查询 Asset Bundle start, progress: 0%
  4588. 2025-1-11 16:34:52-debug: // ---- build task 查询 Asset Bundle ----
  4589. 2025-1-11 16:34: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4590. 2025-1-11 16:34:52-debug: Number of all scenes: 3
  4591. 2025-1-11 16:34:52-debug: Number of all scripts: 103
  4592. 2025-1-11 16:34:52-debug: Number of other assets: 754
  4593. 2025-1-11 16:34:52-debug: // ---- build task 查询 Asset Bundle ---- (15ms)
  4594. 2025-1-11 16:34:52-debug: run build task 查询 Asset Bundle success in 15 ms√, progress: 5%
  4595. 2025-1-11 16:34:52-debug: [Build Memory track]: 查询 Asset Bundle start:170.32MB, end 169.85MB, increase: -479.15KB
  4596. 2025-1-11 16:34:52-debug: // ---- build task 查询 Asset Bundle ----
  4597. 2025-1-11 16:34:52-debug: 查询 Asset Bundle start, progress: 5%
  4598. 2025-1-11 16:34:52-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4599. 2025-1-11 16:34:52-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4600. 2025-1-11 16:34:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4601. 2025-1-11 16:34:52-debug: [Build Memory track]: 查询 Asset Bundle start:169.88MB, end 170.05MB, increase: 172.98KB
  4602. 2025-1-11 16:34:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4603. 2025-1-11 16:34:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4604. 2025-1-11 16:34:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4605. 2025-1-11 16:34:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  4606. 2025-1-11 16:34:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.08MB, end 170.11MB, increase: 28.00KB
  4607. 2025-1-11 16:34:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  4608. 2025-1-11 16:34:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.14MB, end 170.16MB, increase: 17.63KB
  4609. 2025-1-11 16:34:52-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4610. 2025-1-11 16:34:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4611. 2025-1-11 16:34:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4612. 2025-1-11 16:34:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4613. 2025-1-11 16:34:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  4614. 2025-1-11 16:34:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.19MB, end 170.34MB, increase: 149.52KB
  4615. 2025-1-11 16:36:11-debug: refresh db internal success
  4616. 2025-1-11 16:36:11-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4617. 2025-1-11 16:36:11-debug: refresh db assets success
  4618. 2025-1-11 16:36:11-debug: Run asset db hook engine-extends:afterRefresh ...
  4619. 2025-1-11 16:36:11-debug: Run asset db hook engine-extends:afterRefresh success!
  4620. 2025-1-11 16:36:11-debug: asset-db:refresh-all-database (256ms)
  4621. 2025-1-11 16:36:11-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4622. 2025-1-11 16:36:13-debug: Query all assets info in project
  4623. 2025-1-11 16:36:13-debug: init custom config: keepNodeUuid: false, useCache: true
  4624. 2025-1-11 16:36:13-debug: // ---- build task 查询 Asset Bundle ----
  4625. 2025-1-11 16:36:13-debug: 查询 Asset Bundle start, progress: 0%
  4626. 2025-1-11 16:36: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4627. 2025-1-11 16:36:13-debug: Number of all scripts: 103
  4628. 2025-1-11 16:36:13-debug: Number of other assets: 754
  4629. 2025-1-11 16:36:13-debug: Number of all scenes: 3
  4630. 2025-1-11 16:36:13-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  4631. 2025-1-11 16:36:13-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  4632. 2025-1-11 16:36:13-debug: [Build Memory track]: 查询 Asset Bundle start:172.65MB, end 171.68MB, increase: -992.68KB
  4633. 2025-1-11 16:36:13-debug: // ---- build task 查询 Asset Bundle ----
  4634. 2025-1-11 16:36:13-debug: 查询 Asset Bundle start, progress: 5%
  4635. 2025-1-11 16:36:13-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  4636. 2025-1-11 16:36:13-debug: [Build Memory track]: 查询 Asset Bundle start:171.71MB, end 171.88MB, increase: 173.13KB
  4637. 2025-1-11 16:36:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4638. 2025-1-11 16:36:13-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4639. 2025-1-11 16:36:13-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  4640. 2025-1-11 16:36:13-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  4641. 2025-1-11 16:36:13-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.91MB, end 171.93MB, increase: 18.35KB
  4642. 2025-1-11 16:36:13-debug: 填充脚本数据到 settings.json start, progress: 12%
  4643. 2025-1-11 16:36:13-debug: // ---- build task 填充脚本数据到 settings.json ----
  4644. 2025-1-11 16:36:13-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4645. 2025-1-11 16:36:13-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.96MB, end 171.98MB, increase: 17.22KB
  4646. 2025-1-11 16:36:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4647. 2025-1-11 16:36:13-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4648. 2025-1-11 16:36:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  4649. 2025-1-11 16:36:13-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  4650. 2025-1-11 16:36:13-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.01MB, end 172.14MB, increase: 130.45KB
  4651. 2025-1-11 16:36:13-debug: Query all assets info in project
  4652. 2025-1-11 16:36:13-debug: init custom config: keepNodeUuid: false, useCache: true
  4653. 2025-1-11 16:36:13-debug: 查询 Asset Bundle start, progress: 0%
  4654. 2025-1-11 16:36:13-debug: // ---- build task 查询 Asset Bundle ----
  4655. 2025-1-11 16:36: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4656. 2025-1-11 16:36:13-debug: Number of all scenes: 3
  4657. 2025-1-11 16:36:13-debug: Number of other assets: 754
  4658. 2025-1-11 16:36:13-debug: Number of all scripts: 103
  4659. 2025-1-11 16:36:13-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  4660. 2025-1-11 16:36:13-debug: [Build Memory track]: 查询 Asset Bundle start:172.63MB, end 172.11MB, increase: -526.46KB
  4661. 2025-1-11 16:36:13-debug: // ---- build task 查询 Asset Bundle ----
  4662. 2025-1-11 16:36:13-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  4663. 2025-1-11 16:36:13-debug: 查询 Asset Bundle start, progress: 5%
  4664. 2025-1-11 16:36:13-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4665. 2025-1-11 16:36:13-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4666. 2025-1-11 16:36:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4667. 2025-1-11 16:36:13-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4668. 2025-1-11 16:36:13-debug: [Build Memory track]: 查询 Asset Bundle start:172.14MB, end 172.31MB, increase: 173.05KB
  4669. 2025-1-11 16:36:13-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  4670. 2025-1-11 16:36:13-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.34MB, end 172.36MB, increase: 18.10KB
  4671. 2025-1-11 16:36:13-debug: 填充脚本数据到 settings.json start, progress: 12%
  4672. 2025-1-11 16:36:13-debug: // ---- build task 填充脚本数据到 settings.json ----
  4673. 2025-1-11 16:36:13-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4674. 2025-1-11 16:36:13-debug: [Build Memory track]: 填充脚本数据到 settings.json start:172.39MB, end 172.41MB, increase: 19.15KB
  4675. 2025-1-11 16:36:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4676. 2025-1-11 16:36:13-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4677. 2025-1-11 16:36:13-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4678. 2025-1-11 16:36:13-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  4679. 2025-1-11 16:36:13-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.44MB, end 172.57MB, increase: 135.49KB
  4680. 2025-1-11 16:39:33-debug: refresh db internal success
  4681. 2025-1-11 16:39:33-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\GameCtl.ts background: #aaff85; color: #000; color: #000;
  4682. 2025-1-11 16:39:33-debug: refresh db assets success
  4683. 2025-1-11 16:39:33-debug: Run asset db hook engine-extends:afterRefresh ...
  4684. 2025-1-11 16:39:33-debug: Run asset db hook engine-extends:afterRefresh success!
  4685. 2025-1-11 16:39:33-debug: asset-db:refresh-all-database (288ms)
  4686. 2025-1-11 16:39:33-debug: asset-db:worker-effect-data-processing (1ms)
  4687. 2025-1-11 16:39:33-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4688. 2025-1-11 16:39:35-debug: Query all assets info in project
  4689. 2025-1-11 16:39:35-debug: init custom config: keepNodeUuid: false, useCache: true
  4690. 2025-1-11 16:39:35-debug: 查询 Asset Bundle start, progress: 0%
  4691. 2025-1-11 16:39:35-debug: // ---- build task 查询 Asset Bundle ----
  4692. 2025-1-11 16:39:35-debug: Number of all scenes: 3
  4693. 2025-1-11 16:39: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4694. 2025-1-11 16:39:35-debug: Number of all scripts: 103
  4695. 2025-1-11 16:39:35-debug: Number of other assets: 754
  4696. 2025-1-11 16:39:35-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  4697. 2025-1-11 16:39:35-debug: [Build Memory track]: 查询 Asset Bundle start:174.46MB, end 174.45MB, increase: -11.34KB
  4698. 2025-1-11 16:39:35-debug: 查询 Asset Bundle start, progress: 5%
  4699. 2025-1-11 16:39:35-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  4700. 2025-1-11 16:39:35-debug: // ---- build task 查询 Asset Bundle ----
  4701. 2025-1-11 16:39:35-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  4702. 2025-1-11 16:39:35-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  4703. 2025-1-11 16:39:35-debug: [Build Memory track]: 查询 Asset Bundle start:174.48MB, end 174.65MB, increase: 174.06KB
  4704. 2025-1-11 16:39:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4705. 2025-1-11 16:39:35-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4706. 2025-1-11 16:39:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4707. 2025-1-11 16:39:35-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4708. 2025-1-11 16:39:35-debug: // ---- build task 填充脚本数据到 settings.json ----
  4709. 2025-1-11 16:39:35-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.68MB, end 174.71MB, increase: 27.97KB
  4710. 2025-1-11 16:39:35-debug: 填充脚本数据到 settings.json start, progress: 12%
  4711. 2025-1-11 16:39:35-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4712. 2025-1-11 16:39:35-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4713. 2025-1-11 16:39:35-debug: [Build Memory track]: 填充脚本数据到 settings.json start:174.74MB, end 174.77MB, increase: 30.15KB
  4714. 2025-1-11 16:39:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4715. 2025-1-11 16:39:35-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4716. 2025-1-11 16:39:35-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4717. 2025-1-11 16:39:35-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4718. 2025-1-11 16:39:35-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.80MB, end 173.21MB, increase: -1628.43KB
  4719. 2025-1-11 16:40:04-debug: refresh db internal success
  4720. 2025-1-11 16:40:04-debug: refresh db assets success
  4721. 2025-1-11 16:40:04-debug: Run asset db hook engine-extends:afterRefresh success!
  4722. 2025-1-11 16:40:04-debug: Run asset db hook engine-extends:afterRefresh ...
  4723. 2025-1-11 16:40:04-debug: asset-db:refresh-all-database (270ms)
  4724. 2025-1-11 16:40:04-debug: asset-db:worker-effect-data-processing (2ms)
  4725. 2025-1-11 16:40:04-debug: asset-db-hook-engine-extends-afterRefresh (3ms)
  4726. 2025-1-11 16:40:36-debug: refresh db internal success
  4727. 2025-1-11 16:40:36-debug: refresh db assets success
  4728. 2025-1-11 16:40:36-debug: Run asset db hook engine-extends:afterRefresh success!
  4729. 2025-1-11 16:40:36-debug: Run asset db hook engine-extends:afterRefresh ...
  4730. 2025-1-11 16:40:36-debug: asset-db:refresh-all-database (221ms)
  4731. 2025-1-11 16:40:36-debug: asset-db:worker-effect-data-processing (1ms)
  4732. 2025-1-11 16:40:36-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4733. 2025-1-11 16:41:41-debug: refresh db internal success
  4734. 2025-1-11 16:41:41-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\Cube_Infor.ts background: #aaff85; color: #000; color: #000;
  4735. 2025-1-11 16:41:41-debug: Run asset db hook engine-extends:afterRefresh ...
  4736. 2025-1-11 16:41:41-debug: Run asset db hook engine-extends:afterRefresh success!
  4737. 2025-1-11 16:41:41-debug: refresh db assets success
  4738. 2025-1-11 16:41:41-debug: asset-db:refresh-all-database (217ms)
  4739. 2025-1-11 16:41:41-debug: asset-db:worker-effect-data-processing (1ms)
  4740. 2025-1-11 16:41:41-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4741. 2025-1-11 16:41:43-debug: Query all assets info in project
  4742. 2025-1-11 16:41:43-debug: init custom config: keepNodeUuid: false, useCache: true
  4743. 2025-1-11 16:41:43-debug: 查询 Asset Bundle start, progress: 0%
  4744. 2025-1-11 16:41:43-debug: // ---- build task 查询 Asset Bundle ----
  4745. 2025-1-11 16:41:43-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4746. 2025-1-11 16:41:43-debug: Number of all scenes: 3
  4747. 2025-1-11 16:41:43-debug: Number of all scripts: 103
  4748. 2025-1-11 16:41:43-debug: Number of other assets: 754
  4749. 2025-1-11 16:41:43-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  4750. 2025-1-11 16:41:43-debug: [Build Memory track]: 查询 Asset Bundle start:162.61MB, end 163.98MB, increase: 1.36MB
  4751. 2025-1-11 16:41:43-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  4752. 2025-1-11 16:41:43-debug: 查询 Asset Bundle start, progress: 5%
  4753. 2025-1-11 16:41:43-debug: // ---- build task 查询 Asset Bundle ----
  4754. 2025-1-11 16:41:43-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  4755. 2025-1-11 16:41:43-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 10%
  4756. 2025-1-11 16:41:43-debug: [Build Memory track]: 查询 Asset Bundle start:164.01MB, end 162.45MB, increase: -1594.26KB
  4757. 2025-1-11 16:41:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4758. 2025-1-11 16:41:43-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4759. 2025-1-11 16:41:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4760. 2025-1-11 16:41:43-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.48MB, end 162.51MB, increase: 27.20KB
  4761. 2025-1-11 16:41:43-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4762. 2025-1-11 16:41:43-debug: 填充脚本数据到 settings.json start, progress: 12%
  4763. 2025-1-11 16:41:43-debug: // ---- build task 填充脚本数据到 settings.json ----
  4764. 2025-1-11 16:41:43-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4765. 2025-1-11 16:41:43-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.54MB, end 162.57MB, increase: 27.62KB
  4766. 2025-1-11 16:41:43-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4767. 2025-1-11 16:41:43-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4768. 2025-1-11 16:41:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4769. 2025-1-11 16:41:43-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4770. 2025-1-11 16:41:43-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.60MB, end 162.73MB, increase: 136.84KB
  4771. 2025-1-11 16:41:43-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4772. 2025-1-11 16:41:55-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\prefab\cube.prefab background: #aaff85; color: #000; color: #000;
  4773. 2025-1-11 16:41:55-debug: asset-db:reimport-asset14646bb7-b778-497f-a0c8-cf225ff5078d (28ms)
  4774. 2025-1-11 16:41:56-debug: Query all assets info in project
  4775. 2025-1-11 16:41:56-debug: init custom config: keepNodeUuid: false, useCache: true
  4776. 2025-1-11 16:41:56-debug: 查询 Asset Bundle start, progress: 0%
  4777. 2025-1-11 16:41:56-debug: // ---- build task 查询 Asset Bundle ----
  4778. 2025-1-11 16:41:56-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4779. 2025-1-11 16:41:56-debug: Number of all scenes: 3
  4780. 2025-1-11 16:41:56-debug: Number of all scripts: 103
  4781. 2025-1-11 16:41:56-debug: Number of other assets: 754
  4782. 2025-1-11 16:41:56-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  4783. 2025-1-11 16:41:56-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  4784. 2025-1-11 16:41:56-debug: // ---- build task 查询 Asset Bundle ----
  4785. 2025-1-11 16:41:56-debug: 查询 Asset Bundle start, progress: 5%
  4786. 2025-1-11 16:41:56-debug: [Build Memory track]: 查询 Asset Bundle start:163.71MB, end 162.96MB, increase: -767.38KB
  4787. 2025-1-11 16:41:56-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  4788. 2025-1-11 16:41:56-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  4789. 2025-1-11 16:41:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4790. 2025-1-11 16:41:56-debug: [Build Memory track]: 查询 Asset Bundle start:162.99MB, end 163.16MB, increase: 173.70KB
  4791. 2025-1-11 16:41:56-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4792. 2025-1-11 16:41:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4793. 2025-1-11 16:41:56-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4794. 2025-1-11 16:41:56-debug: // ---- build task 填充脚本数据到 settings.json ----
  4795. 2025-1-11 16:41:56-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.19MB, end 163.22MB, increase: 29.95KB
  4796. 2025-1-11 16:41:56-debug: 填充脚本数据到 settings.json start, progress: 12%
  4797. 2025-1-11 16:41:56-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4798. 2025-1-11 16:41:56-debug: [Build Memory track]: 填充脚本数据到 settings.json start:163.25MB, end 163.31MB, increase: 62.13KB
  4799. 2025-1-11 16:41:56-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4800. 2025-1-11 16:41:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4801. 2025-1-11 16:41:56-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4802. 2025-1-11 16:41:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (7ms)
  4803. 2025-1-11 16:41:56-debug: run build task 整理部分构建选项内数据到 settings.json success in 7 ms√, progress: 15%
  4804. 2025-1-11 16:41:56-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.34MB, end 163.47MB, increase: 131.23KB
  4805. 2025-1-11 16:42:34-debug: Query all assets info in project
  4806. 2025-1-11 16:42:34-debug: init custom config: keepNodeUuid: false, useCache: true
  4807. 2025-1-11 16:42:34-debug: 查询 Asset Bundle start, progress: 0%
  4808. 2025-1-11 16:42:34-debug: // ---- build task 查询 Asset Bundle ----
  4809. 2025-1-11 16:42: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4810. 2025-1-11 16:42:34-debug: Number of all scripts: 103
  4811. 2025-1-11 16:42:34-debug: Number of other assets: 754
  4812. 2025-1-11 16:42:34-debug: Number of all scenes: 3
  4813. 2025-1-11 16:42:34-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  4814. 2025-1-11 16:42:34-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  4815. 2025-1-11 16:42:34-debug: // ---- build task 查询 Asset Bundle ----
  4816. 2025-1-11 16:42:34-debug: [Build Memory track]: 查询 Asset Bundle start:163.57MB, end 163.14MB, increase: -437.38KB
  4817. 2025-1-11 16:42:34-debug: 查询 Asset Bundle start, progress: 5%
  4818. 2025-1-11 16:42:34-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  4819. 2025-1-11 16:42:34-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  4820. 2025-1-11 16:42:34-debug: [Build Memory track]: 查询 Asset Bundle start:163.17MB, end 163.34MB, increase: 172.40KB
  4821. 2025-1-11 16:42:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4822. 2025-1-11 16:42:34-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4823. 2025-1-11 16:42:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4824. 2025-1-11 16:42:34-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.37MB, end 163.40MB, increase: 29.59KB
  4825. 2025-1-11 16:42:34-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4826. 2025-1-11 16:42:34-debug: 填充脚本数据到 settings.json start, progress: 12%
  4827. 2025-1-11 16:42:34-debug: // ---- build task 填充脚本数据到 settings.json ----
  4828. 2025-1-11 16:42:34-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4829. 2025-1-11 16:42:34-debug: [Build Memory track]: 填充脚本数据到 settings.json start:163.43MB, end 163.46MB, increase: 27.04KB
  4830. 2025-1-11 16:42:34-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4831. 2025-1-11 16:42:34-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4832. 2025-1-11 16:42:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4833. 2025-1-11 16:42:34-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4834. 2025-1-11 16:42:34-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:163.49MB, end 163.62MB, increase: 130.89KB
  4835. 2025-1-11 16:42:34-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  4836. 2025-1-11 16:43:03-debug: refresh db internal success
  4837. 2025-1-11 16:43:03-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  4838. 2025-1-11 16:43:04-debug: refresh db assets success
  4839. 2025-1-11 16:43:04-debug: Run asset db hook engine-extends:afterRefresh ...
  4840. 2025-1-11 16:43:04-debug: Run asset db hook engine-extends:afterRefresh success!
  4841. 2025-1-11 16:43:04-debug: asset-db:refresh-all-database (295ms)
  4842. 2025-1-11 16:43:04-debug: asset-db:worker-effect-data-processing (2ms)
  4843. 2025-1-11 16:43:04-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  4844. 2025-1-11 16:43:04-debug: Query all assets info in project
  4845. 2025-1-11 16:43:04-debug: init custom config: keepNodeUuid: false, useCache: true
  4846. 2025-1-11 16:43:04-debug: 查询 Asset Bundle start, progress: 0%
  4847. 2025-1-11 16:43:04-debug: // ---- build task 查询 Asset Bundle ----
  4848. 2025-1-11 16:43:04-debug: Number of all scenes: 3
  4849. 2025-1-11 16:43:04-debug: Number of all scripts: 103
  4850. 2025-1-11 16:43: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4851. 2025-1-11 16:43:04-debug: Number of other assets: 754
  4852. 2025-1-11 16:43:04-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  4853. 2025-1-11 16:43:04-debug: [Build Memory track]: 查询 Asset Bundle start:165.08MB, end 166.41MB, increase: 1.32MB
  4854. 2025-1-11 16:43:04-debug: 查询 Asset Bundle start, progress: 5%
  4855. 2025-1-11 16:43:04-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  4856. 2025-1-11 16:43:04-debug: // ---- build task 查询 Asset Bundle ----
  4857. 2025-1-11 16:43:04-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  4858. 2025-1-11 16:43:04-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  4859. 2025-1-11 16:43:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4860. 2025-1-11 16:43:04-debug: [Build Memory track]: 查询 Asset Bundle start:166.44MB, end 166.59MB, increase: 156.09KB
  4861. 2025-1-11 16:43:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4862. 2025-1-11 16:43:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4863. 2025-1-11 16:43:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.62MB, end 166.65MB, increase: 28.28KB
  4864. 2025-1-11 16:43:04-debug: 填充脚本数据到 settings.json start, progress: 12%
  4865. 2025-1-11 16:43:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4866. 2025-1-11 16:43:04-debug: // ---- build task 填充脚本数据到 settings.json ----
  4867. 2025-1-11 16:43:04-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4868. 2025-1-11 16:43:04-debug: [Build Memory track]: 填充脚本数据到 settings.json start:164.87MB, end 164.90MB, increase: 27.03KB
  4869. 2025-1-11 16:43:04-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4870. 2025-1-11 16:43:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4871. 2025-1-11 16:43:04-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4872. 2025-1-11 16:43:04-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  4873. 2025-1-11 16:43:04-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  4874. 2025-1-11 16:43:04-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.93MB, end 165.06MB, increase: 132.16KB
  4875. 2025-1-11 16:43:05-debug: Query all assets info in project
  4876. 2025-1-11 16:43:05-debug: init custom config: keepNodeUuid: false, useCache: true
  4877. 2025-1-11 16:43:05-debug: 查询 Asset Bundle start, progress: 0%
  4878. 2025-1-11 16:43:05-debug: // ---- build task 查询 Asset Bundle ----
  4879. 2025-1-11 16:43:05-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4880. 2025-1-11 16:43:05-debug: Number of all scenes: 3
  4881. 2025-1-11 16:43:05-debug: Number of all scripts: 103
  4882. 2025-1-11 16:43:05-debug: Number of other assets: 754
  4883. 2025-1-11 16:43:05-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  4884. 2025-1-11 16:43:05-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  4885. 2025-1-11 16:43:05-debug: 查询 Asset Bundle start, progress: 5%
  4886. 2025-1-11 16:43:05-debug: [Build Memory track]: 查询 Asset Bundle start:165.73MB, end 165.30MB, increase: -441.58KB
  4887. 2025-1-11 16:43:05-debug: // ---- build task 查询 Asset Bundle ----
  4888. 2025-1-11 16:43:05-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  4889. 2025-1-11 16:43:05-debug: [Build Memory track]: 查询 Asset Bundle start:165.33MB, end 165.48MB, increase: 158.01KB
  4890. 2025-1-11 16:43:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4891. 2025-1-11 16:43:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4892. 2025-1-11 16:43:05-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  4893. 2025-1-11 16:43:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4894. 2025-1-11 16:43:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4895. 2025-1-11 16:43:05-debug: // ---- build task 填充脚本数据到 settings.json ----
  4896. 2025-1-11 16:43:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.51MB, end 165.54MB, increase: 29.80KB
  4897. 2025-1-11 16:43:05-debug: 填充脚本数据到 settings.json start, progress: 12%
  4898. 2025-1-11 16:43:05-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4899. 2025-1-11 16:43:05-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4900. 2025-1-11 16:43:05-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.57MB, end 165.60MB, increase: 27.76KB
  4901. 2025-1-11 16:43:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4902. 2025-1-11 16:43:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4903. 2025-1-11 16:43:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  4904. 2025-1-11 16:43:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  4905. 2025-1-11 16:43:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.63MB, end 165.76MB, increase: 130.71KB
  4906. 2025-1-11 16:43:05-debug: Query all assets info in project
  4907. 2025-1-11 16:43:05-debug: init custom config: keepNodeUuid: false, useCache: true
  4908. 2025-1-11 16:43:05-debug: 查询 Asset Bundle start, progress: 0%
  4909. 2025-1-11 16:43:05-debug: // ---- build task 查询 Asset Bundle ----
  4910. 2025-1-11 16:43:05-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4911. 2025-1-11 16:43:05-debug: Number of all scenes: 3
  4912. 2025-1-11 16:43:05-debug: Number of all scripts: 103
  4913. 2025-1-11 16:43:05-debug: Number of other assets: 754
  4914. 2025-1-11 16:43:05-debug: // ---- build task 查询 Asset Bundle ---- (11ms)
  4915. 2025-1-11 16:43:05-debug: run build task 查询 Asset Bundle success in 11 ms√, progress: 5%
  4916. 2025-1-11 16:43:05-debug: // ---- build task 查询 Asset Bundle ----
  4917. 2025-1-11 16:43:05-debug: [Build Memory track]: 查询 Asset Bundle start:166.22MB, end 165.75MB, increase: -472.51KB
  4918. 2025-1-11 16:43:05-debug: 查询 Asset Bundle start, progress: 5%
  4919. 2025-1-11 16:43:05-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  4920. 2025-1-11 16:43:05-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  4921. 2025-1-11 16:43:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4922. 2025-1-11 16:43:05-debug: [Build Memory track]: 查询 Asset Bundle start:165.78MB, end 165.94MB, increase: 158.77KB
  4923. 2025-1-11 16:43:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4924. 2025-1-11 16:43:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  4925. 2025-1-11 16:43:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 12%
  4926. 2025-1-11 16:43:05-debug: // ---- build task 填充脚本数据到 settings.json ----
  4927. 2025-1-11 16:43:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.97MB, end 166.00MB, increase: 29.80KB
  4928. 2025-1-11 16:43:05-debug: 填充脚本数据到 settings.json start, progress: 12%
  4929. 2025-1-11 16:43:05-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  4930. 2025-1-11 16:43:05-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  4931. 2025-1-11 16:43:05-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.03MB, end 166.06MB, increase: 28.27KB
  4932. 2025-1-11 16:43:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4933. 2025-1-11 16:43:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4934. 2025-1-11 16:43:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  4935. 2025-1-11 16:43:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  4936. 2025-1-11 16:43:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.09MB, end 166.22MB, increase: 129.78KB
  4937. 2025-1-11 16:45:19-debug: refresh db internal success
  4938. 2025-1-11 16:45:19-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  4939. 2025-1-11 16:45:19-debug: refresh db assets success
  4940. 2025-1-11 16:45:19-debug: Run asset db hook engine-extends:afterRefresh ...
  4941. 2025-1-11 16:45:19-debug: Run asset db hook engine-extends:afterRefresh success!
  4942. 2025-1-11 16:45:19-debug: asset-db:refresh-all-database (85ms)
  4943. 2025-1-11 16:45:19-debug: asset-db:worker-effect-data-processing (1ms)
  4944. 2025-1-11 16:45:19-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  4945. 2025-1-11 16:45:20-debug: Query all assets info in project
  4946. 2025-1-11 16:45:20-debug: init custom config: keepNodeUuid: false, useCache: true
  4947. 2025-1-11 16:45:20-debug: 查询 Asset Bundle start, progress: 0%
  4948. 2025-1-11 16:45:20-debug: // ---- build task 查询 Asset Bundle ----
  4949. 2025-1-11 16:45:20-debug: Number of all scripts: 103
  4950. 2025-1-11 16:45:20-debug: Number of other assets: 754
  4951. 2025-1-11 16:45:20-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4952. 2025-1-11 16:45:20-debug: Number of all scenes: 3
  4953. 2025-1-11 16:45:20-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  4954. 2025-1-11 16:45:20-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  4955. 2025-1-11 16:45:20-debug: [Build Memory track]: 查询 Asset Bundle start:167.15MB, end 168.46MB, increase: 1.32MB
  4956. 2025-1-11 16:45:20-debug: 查询 Asset Bundle start, progress: 5%
  4957. 2025-1-11 16:45:20-debug: // ---- build task 查询 Asset Bundle ----
  4958. 2025-1-11 16:45:20-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  4959. 2025-1-11 16:45:20-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  4960. 2025-1-11 16:45:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4961. 2025-1-11 16:45:20-debug: [Build Memory track]: 查询 Asset Bundle start:168.49MB, end 167.02MB, increase: -1506.24KB
  4962. 2025-1-11 16:45:20-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4963. 2025-1-11 16:45:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  4964. 2025-1-11 16:45:20-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  4965. 2025-1-11 16:45:20-debug: 填充脚本数据到 settings.json start, progress: 12%
  4966. 2025-1-11 16:45:20-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.05MB, end 167.08MB, increase: 29.90KB
  4967. 2025-1-11 16:45:20-debug: // ---- build task 填充脚本数据到 settings.json ----
  4968. 2025-1-11 16:45:20-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  4969. 2025-1-11 16:45:20-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  4970. 2025-1-11 16:45:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4971. 2025-1-11 16:45:20-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  4972. 2025-1-11 16:45:20-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.11MB, end 167.14MB, increase: 27.61KB
  4973. 2025-1-11 16:45:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  4974. 2025-1-11 16:45:20-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  4975. 2025-1-11 16:45:20-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.17MB, end 167.30MB, increase: 132.63KB
  4976. 2025-1-11 16:45:20-debug: Query all assets info in project
  4977. 2025-1-11 16:45:20-debug: init custom config: keepNodeUuid: false, useCache: true
  4978. 2025-1-11 16:45:20-debug: 查询 Asset Bundle start, progress: 0%
  4979. 2025-1-11 16:45:20-debug: // ---- build task 查询 Asset Bundle ----
  4980. 2025-1-11 16:45:20-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  4981. 2025-1-11 16:45:20-debug: Number of all scenes: 3
  4982. 2025-1-11 16:45:20-debug: Number of all scripts: 103
  4983. 2025-1-11 16:45:20-debug: Number of other assets: 754
  4984. 2025-1-11 16:45:20-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  4985. 2025-1-11 16:45:20-debug: [Build Memory track]: 查询 Asset Bundle start:167.76MB, end 167.39MB, increase: -378.51KB
  4986. 2025-1-11 16:45:20-debug: // ---- build task 查询 Asset Bundle ----
  4987. 2025-1-11 16:45:20-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  4988. 2025-1-11 16:45:20-debug: 查询 Asset Bundle start, progress: 5%
  4989. 2025-1-11 16:45:20-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  4990. 2025-1-11 16:45:20-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  4991. 2025-1-11 16:45:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  4992. 2025-1-11 16:45:20-debug: [Build Memory track]: 查询 Asset Bundle start:167.43MB, end 167.58MB, increase: 156.88KB
  4993. 2025-1-11 16:45:20-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  4994. 2025-1-11 16:45:20-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  4995. 2025-1-11 16:45:20-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.61MB, end 167.63MB, increase: 17.99KB
  4996. 2025-1-11 16:45:20-debug: // ---- build task 填充脚本数据到 settings.json ----
  4997. 2025-1-11 16:45:20-debug: 填充脚本数据到 settings.json start, progress: 12%
  4998. 2025-1-11 16:45:20-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  4999. 2025-1-11 16:45:20-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.66MB, end 167.68MB, increase: 18.09KB
  5000. 2025-1-11 16:45:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5001. 2025-1-11 16:45:20-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5002. 2025-1-11 16:45:20-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5003. 2025-1-11 16:45:20-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5004. 2025-1-11 16:45:20-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.71MB, end 167.84MB, increase: 129.96KB
  5005. 2025-1-11 16:46:43-debug: refresh db internal success
  5006. 2025-1-11 16:46:43-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  5007. 2025-1-11 16:46:43-debug: refresh db assets success
  5008. 2025-1-11 16:46:43-debug: Run asset db hook engine-extends:afterRefresh ...
  5009. 2025-1-11 16:46:43-debug: Run asset db hook engine-extends:afterRefresh success!
  5010. 2025-1-11 16:46:43-debug: asset-db:worker-effect-data-processing (1ms)
  5011. 2025-1-11 16:46:43-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5012. 2025-1-11 16:46:43-debug: asset-db:refresh-all-database (86ms)
  5013. 2025-1-11 16:46:44-debug: Query all assets info in project
  5014. 2025-1-11 16:46:44-debug: init custom config: keepNodeUuid: false, useCache: true
  5015. 2025-1-11 16:46:44-debug: 查询 Asset Bundle start, progress: 0%
  5016. 2025-1-11 16:46:44-debug: // ---- build task 查询 Asset Bundle ----
  5017. 2025-1-11 16:46: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5018. 2025-1-11 16:46:44-debug: Number of all scenes: 3
  5019. 2025-1-11 16:46:44-debug: Number of other assets: 754
  5020. 2025-1-11 16:46:44-debug: Number of all scripts: 103
  5021. 2025-1-11 16:46:44-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  5022. 2025-1-11 16:46:44-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  5023. 2025-1-11 16:46:44-debug: [Build Memory track]: 查询 Asset Bundle start:170.14MB, end 170.10MB, increase: -42.08KB
  5024. 2025-1-11 16:46:44-debug: 查询 Asset Bundle start, progress: 5%
  5025. 2025-1-11 16:46:44-debug: // ---- build task 查询 Asset Bundle ----
  5026. 2025-1-11 16:46:44-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  5027. 2025-1-11 16:46:44-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  5028. 2025-1-11 16:46:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5029. 2025-1-11 16:46:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5030. 2025-1-11 16:46:44-debug: [Build Memory track]: 查询 Asset Bundle start:170.13MB, end 170.28MB, increase: 158.50KB
  5031. 2025-1-11 16:46:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5032. 2025-1-11 16:46:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  5033. 2025-1-11 16:46:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.32MB, end 170.35MB, increase: 29.55KB
  5034. 2025-1-11 16:46:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  5035. 2025-1-11 16:46:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  5036. 2025-1-11 16:46:44-debug: // ---- build task 填充脚本数据到 settings.json ---- (2ms)
  5037. 2025-1-11 16:46:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.38MB, end 170.40MB, increase: 28.53KB
  5038. 2025-1-11 16:46:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5039. 2025-1-11 16:46:44-debug: run build task 填充脚本数据到 settings.json success in 2 ms√, progress: 13%
  5040. 2025-1-11 16:46:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5041. 2025-1-11 16:46:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  5042. 2025-1-11 16:46:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  5043. 2025-1-11 16:46:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.44MB, end 168.91MB, increase: -1564.25KB
  5044. 2025-1-11 16:46:44-debug: Query all assets info in project
  5045. 2025-1-11 16:46:44-debug: init custom config: keepNodeUuid: false, useCache: true
  5046. 2025-1-11 16:46:44-debug: 查询 Asset Bundle start, progress: 0%
  5047. 2025-1-11 16:46:44-debug: // ---- build task 查询 Asset Bundle ----
  5048. 2025-1-11 16:46: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5049. 2025-1-11 16:46:44-debug: Number of other assets: 754
  5050. 2025-1-11 16:46:44-debug: Number of all scenes: 3
  5051. 2025-1-11 16:46:44-debug: Number of all scripts: 103
  5052. 2025-1-11 16:46:44-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  5053. 2025-1-11 16:46:44-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  5054. 2025-1-11 16:46:44-debug: [Build Memory track]: 查询 Asset Bundle start:169.39MB, end 169.02MB, increase: -372.20KB
  5055. 2025-1-11 16:46:44-debug: 查询 Asset Bundle start, progress: 5%
  5056. 2025-1-11 16:46:44-debug: // ---- build task 查询 Asset Bundle ----
  5057. 2025-1-11 16:46:44-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5058. 2025-1-11 16:46:44-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5059. 2025-1-11 16:46:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5060. 2025-1-11 16:46:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5061. 2025-1-11 16:46:44-debug: [Build Memory track]: 查询 Asset Bundle start:169.05MB, end 169.21MB, increase: 158.09KB
  5062. 2025-1-11 16:46:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5063. 2025-1-11 16:46:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.24MB, end 169.27MB, increase: 30.65KB
  5064. 2025-1-11 16:46:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  5065. 2025-1-11 16:46:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  5066. 2025-1-11 16:46:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5067. 2025-1-11 16:46:44-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5068. 2025-1-11 16:46:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.30MB, end 169.33MB, increase: 28.38KB
  5069. 2025-1-11 16:46:44-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5070. 2025-1-11 16:46:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5071. 2025-1-11 16:46:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5072. 2025-1-11 16:46:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5073. 2025-1-11 16:46:45-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.36MB, end 169.49MB, increase: 131.27KB
  5074. 2025-1-11 16:46:45-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5075. 2025-1-11 16:46:55-debug: refresh db internal success
  5076. 2025-1-11 16:46:55-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  5077. 2025-1-11 16:46:55-debug: refresh db assets success
  5078. 2025-1-11 16:46:55-debug: Run asset db hook engine-extends:afterRefresh ...
  5079. 2025-1-11 16:46:55-debug: Run asset db hook engine-extends:afterRefresh success!
  5080. 2025-1-11 16:46:55-debug: asset-db:refresh-all-database (84ms)
  5081. 2025-1-11 16:46:55-debug: asset-db:worker-effect-data-processing (1ms)
  5082. 2025-1-11 16:46:55-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  5083. 2025-1-11 16:46:56-debug: Query all assets info in project
  5084. 2025-1-11 16:46:56-debug: init custom config: keepNodeUuid: false, useCache: true
  5085. 2025-1-11 16:46:56-debug: 查询 Asset Bundle start, progress: 0%
  5086. 2025-1-11 16:46:56-debug: // ---- build task 查询 Asset Bundle ----
  5087. 2025-1-11 16:46:56-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5088. 2025-1-11 16:46:56-debug: Number of all scenes: 3
  5089. 2025-1-11 16:46:56-debug: Number of all scripts: 103
  5090. 2025-1-11 16:46:56-debug: Number of other assets: 754
  5091. 2025-1-11 16:46:56-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  5092. 2025-1-11 16:46:56-debug: [Build Memory track]: 查询 Asset Bundle start:170.91MB, end 172.23MB, increase: 1.32MB
  5093. 2025-1-11 16:46:56-debug: // ---- build task 查询 Asset Bundle ----
  5094. 2025-1-11 16:46:56-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  5095. 2025-1-11 16:46:56-debug: 查询 Asset Bundle start, progress: 5%
  5096. 2025-1-11 16:46:56-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  5097. 2025-1-11 16:46:56-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  5098. 2025-1-11 16:46:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5099. 2025-1-11 16:46:56-debug: [Build Memory track]: 查询 Asset Bundle start:172.26MB, end 172.41MB, increase: 157.31KB
  5100. 2025-1-11 16:46:56-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5101. 2025-1-11 16:46:56-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5102. 2025-1-11 16:46:56-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:172.44MB, end 172.46MB, increase: 17.61KB
  5103. 2025-1-11 16:46:56-debug: // ---- build task 填充脚本数据到 settings.json ----
  5104. 2025-1-11 16:46:56-debug: 填充脚本数据到 settings.json start, progress: 12%
  5105. 2025-1-11 16:46:56-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5106. 2025-1-11 16:46:56-debug: [Build Memory track]: 填充脚本数据到 settings.json start:172.49MB, end 172.51MB, increase: 19.45KB
  5107. 2025-1-11 16:46:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5108. 2025-1-11 16:46:56-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5109. 2025-1-11 16:46:56-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5110. 2025-1-11 16:46:56-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5111. 2025-1-11 16:46:56-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.73MB, end 170.86MB, increase: 129.01KB
  5112. 2025-1-11 16:46:57-debug: Query all assets info in project
  5113. 2025-1-11 16:46:57-debug: init custom config: keepNodeUuid: false, useCache: true
  5114. 2025-1-11 16:46:57-debug: 查询 Asset Bundle start, progress: 0%
  5115. 2025-1-11 16:46:57-debug: // ---- build task 查询 Asset Bundle ----
  5116. 2025-1-11 16:46:57-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5117. 2025-1-11 16:46:57-debug: Number of all scripts: 103
  5118. 2025-1-11 16:46:57-debug: Number of other assets: 754
  5119. 2025-1-11 16:46:57-debug: Number of all scenes: 3
  5120. 2025-1-11 16:46:57-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  5121. 2025-1-11 16:46:57-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  5122. 2025-1-11 16:46:57-debug: [Build Memory track]: 查询 Asset Bundle start:171.31MB, end 170.87MB, increase: -449.60KB
  5123. 2025-1-11 16:46:57-debug: // ---- build task 查询 Asset Bundle ----
  5124. 2025-1-11 16:46:57-debug: 查询 Asset Bundle start, progress: 5%
  5125. 2025-1-11 16:46:57-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5126. 2025-1-11 16:46:57-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5127. 2025-1-11 16:46:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5128. 2025-1-11 16:46:57-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5129. 2025-1-11 16:46:57-debug: [Build Memory track]: 查询 Asset Bundle start:170.90MB, end 171.05MB, increase: 156.95KB
  5130. 2025-1-11 16:46:57-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5131. 2025-1-11 16:46:57-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.09MB, end 171.11MB, increase: 28.04KB
  5132. 2025-1-11 16:46:57-debug: 填充脚本数据到 settings.json start, progress: 12%
  5133. 2025-1-11 16:46:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5134. 2025-1-11 16:46:57-debug: // ---- build task 填充脚本数据到 settings.json ----
  5135. 2025-1-11 16:46:57-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5136. 2025-1-11 16:46:57-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.14MB, end 171.17MB, increase: 28.65KB
  5137. 2025-1-11 16:46:57-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5138. 2025-1-11 16:46:57-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5139. 2025-1-11 16:46:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5140. 2025-1-11 16:46:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5141. 2025-1-11 16:46:57-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5142. 2025-1-11 16:46:57-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.20MB, end 171.33MB, increase: 131.12KB
  5143. 2025-1-11 16:46:57-debug: Query all assets info in project
  5144. 2025-1-11 16:46:57-debug: init custom config: keepNodeUuid: false, useCache: true
  5145. 2025-1-11 16:46:57-debug: 查询 Asset Bundle start, progress: 0%
  5146. 2025-1-11 16:46:57-debug: // ---- build task 查询 Asset Bundle ----
  5147. 2025-1-11 16:46:57-debug: Query preload assets/scripts from cc.config.json: 60f7195c-ec2a-45eb-ba94-8955f60e81d0,1c02ae6f-4492-4915-b8f8-7492a3b1e4cd,810e96e4-e456-4468-9b59-f4e8f39732c0,efe8e2a3-eace-427b-b4f1-cb8a937ec77d,e9aa9a3e-5b2b-4ac7-a2c7-073de2b2b24f,8bbdbcdd-5cd4-4100-b6d5-b7c9625b6107,50f4348b-c883-4e2f-8f11-ce233b859fa1,fda095cb-831d-4601-ad94-846013963de8,f92806d7-1768-443f-afe8-12bcde84d0f0,dd3a144d-ab7f-41f0-82b8-2e43a090d496,f0416e68-0200-4b77-a926-4f9d16e494da,511d2633-09a7-4bdd-ac42-f778032124b3,5d45aa00-e064-4938-b314-4265f0c2258c,9361fd90-ba52-4f84-aa93-6e878fd576ca,970b0598-bcb0-4714-91fb-2e81440dccd8,bcd64cc6-2dd9-43f6-abbe-66318d332032,d930590d-bb92-4cc8-8bd1-23cd027f9edf,a3cd009f-0ab0-420d-9278-b9fdab939bbc,6a2d0734-bd9e-4ddf-946e-caa52498cb75,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5148. 2025-1-11 16:46:57-debug: Number of all scenes: 3
  5149. 2025-1-11 16:46:57-debug: Number of other assets: 754
  5150. 2025-1-11 16:46:57-debug: Number of all scripts: 103
  5151. 2025-1-11 16:46:57-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5152. 2025-1-11 16:46:57-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  5153. 2025-1-11 16:46:57-debug: // ---- build task 查询 Asset Bundle ----
  5154. 2025-1-11 16:46:57-debug: [Build Memory track]: 查询 Asset Bundle start:171.79MB, end 171.33MB, increase: -472.62KB
  5155. 2025-1-11 16:46:57-debug: 查询 Asset Bundle start, progress: 5%
  5156. 2025-1-11 16:46:57-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  5157. 2025-1-11 16:46:57-debug: [Build Memory track]: 查询 Asset Bundle start:171.36MB, end 171.51MB, increase: 157.27KB
  5158. 2025-1-11 16:46:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5159. 2025-1-11 16:46:57-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  5160. 2025-1-11 16:46:57-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5161. 2025-1-11 16:46:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5162. 2025-1-11 16:46:57-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5163. 2025-1-11 16:46:57-debug: // ---- build task 填充脚本数据到 settings.json ----
  5164. 2025-1-11 16:46:57-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.54MB, end 171.57MB, increase: 28.34KB
  5165. 2025-1-11 16:46:57-debug: 填充脚本数据到 settings.json start, progress: 12%
  5166. 2025-1-11 16:46:57-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5167. 2025-1-11 16:46:57-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5168. 2025-1-11 16:46:57-debug: [Build Memory track]: 填充脚本数据到 settings.json start:171.60MB, end 171.63MB, increase: 28.77KB
  5169. 2025-1-11 16:46:57-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5170. 2025-1-11 16:46:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5171. 2025-1-11 16:46:57-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5172. 2025-1-11 16:46:57-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5173. 2025-1-11 16:46:57-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:171.66MB, end 171.79MB, increase: 130.90KB
  5174. 2025-1-11 16:47:02-debug: refresh db internal success
  5175. 2025-1-11 16:47:02-debug: refresh db assets success
  5176. 2025-1-11 16:47:02-debug: Run asset db hook engine-extends:afterRefresh ...
  5177. 2025-1-11 16:47:02-debug: Run asset db hook engine-extends:afterRefresh success!
  5178. 2025-1-11 16:47:02-debug: asset-db:refresh-all-database (80ms)
  5179. 2025-1-11 16:47:02-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5180. 2025-1-11 16:49:04-debug: refresh db internal success
  5181. 2025-1-11 16:49:04-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  5182. 2025-1-11 16:49:04-debug: refresh db assets success
  5183. 2025-1-11 16:49:04-debug: Run asset db hook engine-extends:afterRefresh ...
  5184. 2025-1-11 16:49:04-debug: Run asset db hook engine-extends:afterRefresh success!
  5185. 2025-1-11 16:49:04-debug: asset-db:refresh-all-database (86ms)
  5186. 2025-1-11 16:49:04-debug: asset-db:worker-effect-data-processing (1ms)
  5187. 2025-1-11 16:49:04-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5188. 2025-1-11 16:49:05-debug: Query all assets info in project
  5189. 2025-1-11 16:49:05-debug: init custom config: keepNodeUuid: false, useCache: true
  5190. 2025-1-11 16:49:05-debug: 查询 Asset Bundle start, progress: 0%
  5191. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ----
  5192. 2025-1-11 16:49:05-debug: Number of all scenes: 3
  5193. 2025-1-11 16:49:05-debug: Number of all scripts: 103
  5194. 2025-1-11 16:49:05-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5195. 2025-1-11 16:49:05-debug: Number of other assets: 754
  5196. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  5197. 2025-1-11 16:49:05-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  5198. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ----
  5199. 2025-1-11 16:49:05-debug: [Build Memory track]: 查询 Asset Bundle start:173.88MB, end 174.37MB, increase: 508.25KB
  5200. 2025-1-11 16:49:05-debug: 查询 Asset Bundle start, progress: 5%
  5201. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5202. 2025-1-11 16:49:05-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5203. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5204. 2025-1-11 16:49:05-debug: [Build Memory track]: 查询 Asset Bundle start:174.40MB, end 174.56MB, increase: 157.30KB
  5205. 2025-1-11 16:49:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5206. 2025-1-11 16:49:05-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5207. 2025-1-11 16:49:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.59MB, end 174.61MB, increase: 18.06KB
  5208. 2025-1-11 16:49:05-debug: 填充脚本数据到 settings.json start, progress: 12%
  5209. 2025-1-11 16:49:05-debug: // ---- build task 填充脚本数据到 settings.json ----
  5210. 2025-1-11 16:49:05-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5211. 2025-1-11 16:49:05-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5212. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5213. 2025-1-11 16:49:05-debug: [Build Memory track]: 填充脚本数据到 settings.json start:174.64MB, end 174.66MB, increase: 27.78KB
  5214. 2025-1-11 16:49:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5215. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  5216. 2025-1-11 16:49:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  5217. 2025-1-11 16:49:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:174.69MB, end 174.83MB, increase: 143.09KB
  5218. 2025-1-11 16:49:05-debug: Query all assets info in project
  5219. 2025-1-11 16:49:05-debug: Query all assets info in project
  5220. 2025-1-11 16:49:05-debug: init custom config: keepNodeUuid: false, useCache: true
  5221. 2025-1-11 16:49:05-debug: init custom config: keepNodeUuid: false, useCache: true
  5222. 2025-1-11 16:49:05-debug: 查询 Asset Bundle start, progress: 0%
  5223. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ----
  5224. 2025-1-11 16:49:05-debug: 查询 Asset Bundle start, progress: 0%
  5225. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ----
  5226. 2025-1-11 16:49:05-debug: Number of all scenes: 3
  5227. 2025-1-11 16:49:05-debug: Number of other assets: 754
  5228. 2025-1-11 16:49:05-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5229. 2025-1-11 16:49:05-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5230. 2025-1-11 16:49:05-debug: Number of all scripts: 103
  5231. 2025-1-11 16:49:05-debug: Number of all scripts: 103
  5232. 2025-1-11 16:49:05-debug: Number of other assets: 754
  5233. 2025-1-11 16:49:05-debug: Number of all scenes: 3
  5234. 2025-1-11 16:49:05-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  5235. 2025-1-11 16:49:05-debug: [Build Memory track]: 查询 Asset Bundle start:174.14MB, end 175.02MB, increase: 898.93KB
  5236. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  5237. 2025-1-11 16:49:05-debug: run build task 查询 Asset Bundle success in √, progress: 5%
  5238. 2025-1-11 16:49:05-debug: [Build Memory track]: 查询 Asset Bundle start:175.05MB, end 175.06MB, increase: 13.20KB
  5239. 2025-1-11 16:49:05-debug: 查询 Asset Bundle start, progress: 5%
  5240. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ----
  5241. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ----
  5242. 2025-1-11 16:49:05-debug: 查询 Asset Bundle start, progress: 5%
  5243. 2025-1-11 16:49:05-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  5244. 2025-1-11 16:49:05-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  5245. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5246. 2025-1-11 16:49:05-debug: [Build Memory track]: 查询 Asset Bundle start:175.09MB, end 175.38MB, increase: 292.87KB
  5247. 2025-1-11 16:49:05-debug: run build task 查询 Asset Bundle success in √, progress: 10%
  5248. 2025-1-11 16:49:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5249. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5250. 2025-1-11 16:49:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5251. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5252. 2025-1-11 16:49:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5253. 2025-1-11 16:49:05-debug: // ---- build task 填充脚本数据到 settings.json ----
  5254. 2025-1-11 16:49:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:175.45MB, end 175.48MB, increase: 31.73KB
  5255. 2025-1-11 16:49:05-debug: 填充脚本数据到 settings.json start, progress: 12%
  5256. 2025-1-11 16:49:05-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5257. 2025-1-11 16:49:05-debug: 填充脚本数据到 settings.json start, progress: 12%
  5258. 2025-1-11 16:49:05-debug: // ---- build task 填充脚本数据到 settings.json ----
  5259. 2025-1-11 16:49:05-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5260. 2025-1-11 16:49:05-debug: [Build Memory track]: 填充脚本数据到 settings.json start:175.55MB, end 175.57MB, increase: 26.48KB
  5261. 2025-1-11 16:49:05-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5262. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5263. 2025-1-11 16:49:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5264. 2025-1-11 16:49:05-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5265. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5266. 2025-1-11 16:49:05-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5267. 2025-1-11 16:49:05-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5268. 2025-1-11 16:49:05-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5269. 2025-1-11 16:49:05-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:175.64MB, end 175.80MB, increase: 167.10KB
  5270. 2025-1-11 16:49:05-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 15%
  5271. 2025-1-11 16:49:34-debug: refresh db internal success
  5272. 2025-1-11 16:49:34-debug: refresh db assets success
  5273. 2025-1-11 16:49:34-debug: Run asset db hook engine-extends:afterRefresh success!
  5274. 2025-1-11 16:49:34-debug: Run asset db hook engine-extends:afterRefresh ...
  5275. 2025-1-11 16:49:34-debug: asset-db:refresh-all-database (80ms)
  5276. 2025-1-11 16:49:34-debug: asset-db:worker-effect-data-processing (1ms)
  5277. 2025-1-11 16:49:34-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5278. 2025-1-11 16:51:43-debug: refresh db internal success
  5279. 2025-1-11 16:51:43-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  5280. 2025-1-11 16:51:43-debug: refresh db assets success
  5281. 2025-1-11 16:51:43-debug: Run asset db hook engine-extends:afterRefresh ...
  5282. 2025-1-11 16:51:43-debug: Run asset db hook engine-extends:afterRefresh success!
  5283. 2025-1-11 16:51:43-debug: asset-db:refresh-all-database (114ms)
  5284. 2025-1-11 16:51:44-debug: Query all assets info in project
  5285. 2025-1-11 16:51:44-debug: init custom config: keepNodeUuid: false, useCache: true
  5286. 2025-1-11 16:51:44-debug: 查询 Asset Bundle start, progress: 0%
  5287. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ----
  5288. 2025-1-11 16:51: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5289. 2025-1-11 16:51:44-debug: Number of other assets: 754
  5290. 2025-1-11 16:51:44-debug: Number of all scenes: 3
  5291. 2025-1-11 16:51:44-debug: Number of all scripts: 103
  5292. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  5293. 2025-1-11 16:51:44-debug: [Build Memory track]: 查询 Asset Bundle start:161.83MB, end 161.85MB, increase: 20.07KB
  5294. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ----
  5295. 2025-1-11 16:51:44-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  5296. 2025-1-11 16:51:44-debug: 查询 Asset Bundle start, progress: 5%
  5297. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  5298. 2025-1-11 16:51:44-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  5299. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5300. 2025-1-11 16:51:44-debug: [Build Memory track]: 查询 Asset Bundle start:161.88MB, end 162.04MB, increase: 158.21KB
  5301. 2025-1-11 16:51:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5302. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5303. 2025-1-11 16:51:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 12%
  5304. 2025-1-11 16:51:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  5305. 2025-1-11 16:51:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.07MB, end 162.10MB, increase: 29.80KB
  5306. 2025-1-11 16:51:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  5307. 2025-1-11 16:51:44-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5308. 2025-1-11 16:51:44-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5309. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5310. 2025-1-11 16:51:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.13MB, end 162.16MB, increase: 27.04KB
  5311. 2025-1-11 16:51:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5312. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  5313. 2025-1-11 16:51:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  5314. 2025-1-11 16:51:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.19MB, end 160.69MB, increase: -1535.12KB
  5315. 2025-1-11 16:51:44-debug: Query all assets info in project
  5316. 2025-1-11 16:51:44-debug: init custom config: keepNodeUuid: false, useCache: true
  5317. 2025-1-11 16:51:44-debug: 查询 Asset Bundle start, progress: 0%
  5318. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ----
  5319. 2025-1-11 16:51: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5320. 2025-1-11 16:51:44-debug: Number of all scenes: 3
  5321. 2025-1-11 16:51:44-debug: Number of all scripts: 103
  5322. 2025-1-11 16:51:44-debug: Number of other assets: 754
  5323. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  5324. 2025-1-11 16:51:44-debug: [Build Memory track]: 查询 Asset Bundle start:161.15MB, end 160.76MB, increase: -405.35KB
  5325. 2025-1-11 16:51:44-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  5326. 2025-1-11 16:51:44-debug: 查询 Asset Bundle start, progress: 5%
  5327. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ----
  5328. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5329. 2025-1-11 16:51:44-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5330. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5331. 2025-1-11 16:51:44-debug: [Build Memory track]: 查询 Asset Bundle start:160.79MB, end 160.94MB, increase: 156.07KB
  5332. 2025-1-11 16:51:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5333. 2025-1-11 16:51:44-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5334. 2025-1-11 16:51:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:160.97MB, end 160.99MB, increase: 18.85KB
  5335. 2025-1-11 16:51:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  5336. 2025-1-11 16:51:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  5337. 2025-1-11 16:51:44-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5338. 2025-1-11 16:51:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.02MB, end 161.04MB, increase: 18.16KB
  5339. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5340. 2025-1-11 16:51:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5341. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5342. 2025-1-11 16:51:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5343. 2025-1-11 16:51:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.07MB, end 161.20MB, increase: 128.99KB
  5344. 2025-1-11 16:51:44-debug: Query all assets info in project
  5345. 2025-1-11 16:51:44-debug: init custom config: keepNodeUuid: false, useCache: true
  5346. 2025-1-11 16:51:44-debug: 查询 Asset Bundle start, progress: 0%
  5347. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ----
  5348. 2025-1-11 16:51: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5349. 2025-1-11 16:51:44-debug: Number of all scenes: 3
  5350. 2025-1-11 16:51:44-debug: Number of other assets: 754
  5351. 2025-1-11 16:51:44-debug: Number of all scripts: 103
  5352. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  5353. 2025-1-11 16:51:44-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  5354. 2025-1-11 16:51:44-debug: [Build Memory track]: 查询 Asset Bundle start:161.66MB, end 161.24MB, increase: -435.27KB
  5355. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ----
  5356. 2025-1-11 16:51:44-debug: 查询 Asset Bundle start, progress: 5%
  5357. 2025-1-11 16:51:44-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5358. 2025-1-11 16:51:44-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5359. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5360. 2025-1-11 16:51:44-debug: [Build Memory track]: 查询 Asset Bundle start:161.27MB, end 161.42MB, increase: 156.30KB
  5361. 2025-1-11 16:51:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5362. 2025-1-11 16:51:44-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5363. 2025-1-11 16:51:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.45MB, end 161.47MB, increase: 18.35KB
  5364. 2025-1-11 16:51:44-debug: 填充脚本数据到 settings.json start, progress: 12%
  5365. 2025-1-11 16:51:44-debug: // ---- build task 填充脚本数据到 settings.json ----
  5366. 2025-1-11 16:51:44-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5367. 2025-1-11 16:51:44-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.50MB, end 161.52MB, increase: 18.48KB
  5368. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5369. 2025-1-11 16:51:44-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5370. 2025-1-11 16:51:44-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5371. 2025-1-11 16:51:44-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 15%
  5372. 2025-1-11 16:51:44-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.55MB, end 161.68MB, increase: 129.50KB
  5373. 2025-1-11 16:52:00-debug: Query all assets info in project
  5374. 2025-1-11 16:52:00-debug: init custom config: keepNodeUuid: false, useCache: true
  5375. 2025-1-11 16:52:00-debug: 查询 Asset Bundle start, progress: 0%
  5376. 2025-1-11 16:52:00-debug: // ---- build task 查询 Asset Bundle ----
  5377. 2025-1-11 16:52:00-debug: Number of all scripts: 103
  5378. 2025-1-11 16:52:00-debug: Number of other assets: 754
  5379. 2025-1-11 16:52: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5380. 2025-1-11 16:52:00-debug: Number of all scenes: 3
  5381. 2025-1-11 16:52:00-debug: // ---- build task 查询 Asset Bundle ---- (8ms)
  5382. 2025-1-11 16:52:00-debug: run build task 查询 Asset Bundle success in 8 ms√, progress: 5%
  5383. 2025-1-11 16:52:00-debug: [Build Memory track]: 查询 Asset Bundle start:161.71MB, end 161.24MB, increase: -484.58KB
  5384. 2025-1-11 16:52:00-debug: // ---- build task 查询 Asset Bundle ----
  5385. 2025-1-11 16:52:00-debug: 查询 Asset Bundle start, progress: 5%
  5386. 2025-1-11 16:52:00-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5387. 2025-1-11 16:52:00-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5388. 2025-1-11 16:52:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5389. 2025-1-11 16:52:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5390. 2025-1-11 16:52:00-debug: [Build Memory track]: 查询 Asset Bundle start:161.27MB, end 161.42MB, increase: 156.91KB
  5391. 2025-1-11 16:52:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5392. 2025-1-11 16:52:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.46MB, end 161.49MB, increase: 32.97KB
  5393. 2025-1-11 16:52:00-debug: // ---- build task 填充脚本数据到 settings.json ----
  5394. 2025-1-11 16:52:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5395. 2025-1-11 16:52:00-debug: 填充脚本数据到 settings.json start, progress: 12%
  5396. 2025-1-11 16:52:00-debug: // ---- build task 填充脚本数据到 settings.json ---- (-1ms)
  5397. 2025-1-11 16:52:00-debug: run build task 填充脚本数据到 settings.json success in -1 h -1 min -1 s√, progress: 13%
  5398. 2025-1-11 16:52:00-debug: [Build Memory track]: 填充脚本数据到 settings.json start:161.52MB, end 161.55MB, increase: 28.34KB
  5399. 2025-1-11 16:52:00-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5400. 2025-1-11 16:52:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5401. 2025-1-11 16:52:00-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5402. 2025-1-11 16:52:00-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5403. 2025-1-11 16:52:00-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.58MB, end 160.93MB, increase: -664.40KB
  5404. 2025-1-11 16:53:17-debug: refresh db internal success
  5405. 2025-1-11 16:53:17-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  5406. 2025-1-11 16:53:17-debug: refresh db assets success
  5407. 2025-1-11 16:53:17-debug: Run asset db hook engine-extends:afterRefresh ...
  5408. 2025-1-11 16:53:17-debug: Run asset db hook engine-extends:afterRefresh success!
  5409. 2025-1-11 16:53:17-debug: asset-db:refresh-all-database (86ms)
  5410. 2025-1-11 16:53:17-debug: asset-db:worker-effect-data-processing (1ms)
  5411. 2025-1-11 16:53:17-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5412. 2025-1-11 16:53:18-debug: Query all assets info in project
  5413. 2025-1-11 16:53:18-debug: init custom config: keepNodeUuid: false, useCache: true
  5414. 2025-1-11 16:53:18-debug: 查询 Asset Bundle start, progress: 0%
  5415. 2025-1-11 16:53:18-debug: // ---- build task 查询 Asset Bundle ----
  5416. 2025-1-11 16:53: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5417. 2025-1-11 16:53:18-debug: Number of all scripts: 103
  5418. 2025-1-11 16:53:18-debug: Number of other assets: 754
  5419. 2025-1-11 16:53:18-debug: Number of all scenes: 3
  5420. 2025-1-11 16:53:18-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  5421. 2025-1-11 16:53:18-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  5422. 2025-1-11 16:53:18-debug: [Build Memory track]: 查询 Asset Bundle start:163.25MB, end 162.58MB, increase: -689.62KB
  5423. 2025-1-11 16:53:18-debug: // ---- build task 查询 Asset Bundle ----
  5424. 2025-1-11 16:53:18-debug: 查询 Asset Bundle start, progress: 5%
  5425. 2025-1-11 16:53:18-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  5426. 2025-1-11 16:53:18-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  5427. 2025-1-11 16:53:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5428. 2025-1-11 16:53:18-debug: [Build Memory track]: 查询 Asset Bundle start:162.61MB, end 162.77MB, increase: 158.07KB
  5429. 2025-1-11 16:53:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5430. 2025-1-11 16:53:18-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5431. 2025-1-11 16:53:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.80MB, end 162.82MB, increase: 18.06KB
  5432. 2025-1-11 16:53:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  5433. 2025-1-11 16:53:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  5434. 2025-1-11 16:53:18-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5435. 2025-1-11 16:53:18-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5436. 2025-1-11 16:53:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5437. 2025-1-11 16:53:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5438. 2025-1-11 16:53:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.85MB, end 162.87MB, increase: 28.38KB
  5439. 2025-1-11 16:53:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5440. 2025-1-11 16:53:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5441. 2025-1-11 16:53:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.91MB, end 163.04MB, increase: 133.90KB
  5442. 2025-1-11 16:53:18-debug: Query all assets info in project
  5443. 2025-1-11 16:53:18-debug: init custom config: keepNodeUuid: false, useCache: true
  5444. 2025-1-11 16:53:18-debug: 查询 Asset Bundle start, progress: 0%
  5445. 2025-1-11 16:53:18-debug: // ---- build task 查询 Asset Bundle ----
  5446. 2025-1-11 16:53: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5447. 2025-1-11 16:53:18-debug: Number of all scenes: 3
  5448. 2025-1-11 16:53:18-debug: Number of all scripts: 103
  5449. 2025-1-11 16:53:18-debug: Number of other assets: 754
  5450. 2025-1-11 16:53:18-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5451. 2025-1-11 16:53:18-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  5452. 2025-1-11 16:53:18-debug: // ---- build task 查询 Asset Bundle ----
  5453. 2025-1-11 16:53:18-debug: [Build Memory track]: 查询 Asset Bundle start:162.70MB, end 164.01MB, increase: 1.32MB
  5454. 2025-1-11 16:53:18-debug: 查询 Asset Bundle start, progress: 5%
  5455. 2025-1-11 16:53:18-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5456. 2025-1-11 16:53:18-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5457. 2025-1-11 16:53:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5458. 2025-1-11 16:53:18-debug: [Build Memory track]: 查询 Asset Bundle start:164.04MB, end 164.20MB, increase: 156.91KB
  5459. 2025-1-11 16:53:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5460. 2025-1-11 16:53:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5461. 2025-1-11 16:53:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  5462. 2025-1-11 16:53:18-debug: // ---- build task 填充脚本数据到 settings.json ----
  5463. 2025-1-11 16:53:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.23MB, end 164.26MB, increase: 30.01KB
  5464. 2025-1-11 16:53:18-debug: 填充脚本数据到 settings.json start, progress: 12%
  5465. 2025-1-11 16:53:18-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5466. 2025-1-11 16:53:18-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5467. 2025-1-11 16:53:18-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5468. 2025-1-11 16:53:18-debug: [Build Memory track]: 填充脚本数据到 settings.json start:164.29MB, end 164.32MB, increase: 28.55KB
  5469. 2025-1-11 16:53:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5470. 2025-1-11 16:53:18-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (6ms)
  5471. 2025-1-11 16:53:18-debug: run build task 整理部分构建选项内数据到 settings.json success in 6 ms√, progress: 15%
  5472. 2025-1-11 16:53:18-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.35MB, end 162.73MB, increase: -1661.70KB
  5473. 2025-1-11 16:55:09-debug: refresh db internal success
  5474. 2025-1-11 16:55:09-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  5475. 2025-1-11 16:55:09-debug: refresh db assets success
  5476. 2025-1-11 16:55:09-debug: Run asset db hook engine-extends:afterRefresh ...
  5477. 2025-1-11 16:55:09-debug: Run asset db hook engine-extends:afterRefresh success!
  5478. 2025-1-11 16:55:09-debug: asset-db:refresh-all-database (82ms)
  5479. 2025-1-11 16:55:10-debug: Query all assets info in project
  5480. 2025-1-11 16:55:10-debug: init custom config: keepNodeUuid: false, useCache: true
  5481. 2025-1-11 16:55:10-debug: 查询 Asset Bundle start, progress: 0%
  5482. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ----
  5483. 2025-1-11 16:55: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5484. 2025-1-11 16:55:10-debug: Number of all scenes: 3
  5485. 2025-1-11 16:55:10-debug: Number of all scripts: 103
  5486. 2025-1-11 16:55:10-debug: Number of other assets: 754
  5487. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ---- (6ms)
  5488. 2025-1-11 16:55:10-debug: run build task 查询 Asset Bundle success in 6 ms√, progress: 5%
  5489. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ----
  5490. 2025-1-11 16:55:10-debug: [Build Memory track]: 查询 Asset Bundle start:165.06MB, end 165.51MB, increase: 458.04KB
  5491. 2025-1-11 16:55:10-debug: 查询 Asset Bundle start, progress: 5%
  5492. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ---- (13ms)
  5493. 2025-1-11 16:55:10-debug: run build task 查询 Asset Bundle success in 13 ms√, progress: 10%
  5494. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5495. 2025-1-11 16:55:10-debug: [Build Memory track]: 查询 Asset Bundle start:165.54MB, end 165.69MB, increase: 156.59KB
  5496. 2025-1-11 16:55:10-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5497. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5498. 2025-1-11 16:55:10-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 12%
  5499. 2025-1-11 16:55:10-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.87MB, end 164.90MB, increase: 29.84KB
  5500. 2025-1-11 16:55:10-debug: // ---- build task 填充脚本数据到 settings.json ----
  5501. 2025-1-11 16:55:10-debug: 填充脚本数据到 settings.json start, progress: 12%
  5502. 2025-1-11 16:55:10-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5503. 2025-1-11 16:55:10-debug: [Build Memory track]: 填充脚本数据到 settings.json start:164.93MB, end 164.96MB, increase: 28.67KB
  5504. 2025-1-11 16:55:10-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5505. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5506. 2025-1-11 16:55:10-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5507. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  5508. 2025-1-11 16:55:10-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  5509. 2025-1-11 16:55:10-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:164.99MB, end 165.13MB, increase: 142.10KB
  5510. 2025-1-11 16:55:10-debug: Query all assets info in project
  5511. 2025-1-11 16:55:10-debug: init custom config: keepNodeUuid: false, useCache: true
  5512. 2025-1-11 16:55:10-debug: 查询 Asset Bundle start, progress: 0%
  5513. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ----
  5514. 2025-1-11 16:55: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5515. 2025-1-11 16:55:10-debug: Number of all scripts: 103
  5516. 2025-1-11 16:55:10-debug: Number of other assets: 754
  5517. 2025-1-11 16:55:10-debug: Number of all scenes: 3
  5518. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  5519. 2025-1-11 16:55:10-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  5520. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ----
  5521. 2025-1-11 16:55:10-debug: [Build Memory track]: 查询 Asset Bundle start:165.58MB, end 166.09MB, increase: 523.16KB
  5522. 2025-1-11 16:55:10-debug: 查询 Asset Bundle start, progress: 5%
  5523. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ---- (1ms)
  5524. 2025-1-11 16:55:10-debug: run build task 查询 Asset Bundle success in 1 ms√, progress: 10%
  5525. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5526. 2025-1-11 16:55:10-debug: [Build Memory track]: 查询 Asset Bundle start:166.12MB, end 166.28MB, increase: 157.32KB
  5527. 2025-1-11 16:55:10-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5528. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5529. 2025-1-11 16:55:10-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5530. 2025-1-11 16:55:10-debug: // ---- build task 填充脚本数据到 settings.json ----
  5531. 2025-1-11 16:55:10-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.31MB, end 166.33MB, increase: 28.61KB
  5532. 2025-1-11 16:55:10-debug: 填充脚本数据到 settings.json start, progress: 12%
  5533. 2025-1-11 16:55:10-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5534. 2025-1-11 16:55:10-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5535. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5536. 2025-1-11 16:55:10-debug: [Build Memory track]: 填充脚本数据到 settings.json start:166.37MB, end 166.39MB, increase: 29.42KB
  5537. 2025-1-11 16:55:10-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5538. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5539. 2025-1-11 16:55:10-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5540. 2025-1-11 16:55:10-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:166.43MB, end 166.55MB, increase: 129.75KB
  5541. 2025-1-11 16:55:10-debug: Query all assets info in project
  5542. 2025-1-11 16:55:10-debug: init custom config: keepNodeUuid: false, useCache: true
  5543. 2025-1-11 16:55:10-debug: 查询 Asset Bundle start, progress: 0%
  5544. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ----
  5545. 2025-1-11 16:55: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5546. 2025-1-11 16:55:10-debug: Number of all scenes: 3
  5547. 2025-1-11 16:55:10-debug: Number of other assets: 754
  5548. 2025-1-11 16:55:10-debug: Number of all scripts: 103
  5549. 2025-1-11 16:55:10-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 5%
  5550. 2025-1-11 16:55:10-debug: [Build Memory track]: 查询 Asset Bundle start:165.24MB, end 166.57MB, increase: 1.32MB
  5551. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ----
  5552. 2025-1-11 16:55:10-debug: 查询 Asset Bundle start, progress: 5%
  5553. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  5554. 2025-1-11 16:55:10-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5555. 2025-1-11 16:55:10-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 10%
  5556. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5557. 2025-1-11 16:55:10-debug: [Build Memory track]: 查询 Asset Bundle start:166.60MB, end 165.13MB, increase: -1503.82KB
  5558. 2025-1-11 16:55:10-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5559. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5560. 2025-1-11 16:55:10-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5561. 2025-1-11 16:55:10-debug: // ---- build task 填充脚本数据到 settings.json ----
  5562. 2025-1-11 16:55:10-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.16MB, end 165.19MB, increase: 29.84KB
  5563. 2025-1-11 16:55:10-debug: 填充脚本数据到 settings.json start, progress: 12%
  5564. 2025-1-11 16:55:10-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5565. 2025-1-11 16:55:10-debug: [Build Memory track]: 填充脚本数据到 settings.json start:165.22MB, end 165.24MB, increase: 17.55KB
  5566. 2025-1-11 16:55:10-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5567. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5568. 2025-1-11 16:55:10-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5569. 2025-1-11 16:55:10-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5570. 2025-1-11 16:55:10-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:165.27MB, end 165.40MB, increase: 129.60KB
  5571. 2025-1-11 16:55:50-debug: refresh db internal success
  5572. 2025-1-11 16:55:50-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  5573. 2025-1-11 16:55:50-debug: refresh db assets success
  5574. 2025-1-11 16:55:50-debug: Run asset db hook engine-extends:afterRefresh ...
  5575. 2025-1-11 16:55:50-debug: Run asset db hook engine-extends:afterRefresh success!
  5576. 2025-1-11 16:55:50-debug: asset-db:refresh-all-database (87ms)
  5577. 2025-1-11 16:55:50-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  5578. 2025-1-11 16:55:50-debug: asset-db:worker-effect-data-processing (2ms)
  5579. 2025-1-11 16:55:51-debug: Query all assets info in project
  5580. 2025-1-11 16:55:51-debug: init custom config: keepNodeUuid: false, useCache: true
  5581. 2025-1-11 16:55:51-debug: 查询 Asset Bundle start, progress: 0%
  5582. 2025-1-11 16:55:51-debug: // ---- build task 查询 Asset Bundle ----
  5583. 2025-1-11 16:55: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5584. 2025-1-11 16:55:51-debug: Number of all scenes: 3
  5585. 2025-1-11 16:55:51-debug: Number of other assets: 754
  5586. 2025-1-11 16:55:51-debug: Number of all scripts: 103
  5587. 2025-1-11 16:55:51-debug: // ---- build task 查询 Asset Bundle ---- (12ms)
  5588. 2025-1-11 16:55:51-debug: run build task 查询 Asset Bundle success in 12 ms√, progress: 5%
  5589. 2025-1-11 16:55:51-debug: // ---- build task 查询 Asset Bundle ----
  5590. 2025-1-11 16:55:51-debug: 查询 Asset Bundle start, progress: 5%
  5591. 2025-1-11 16:55:51-debug: [Build Memory track]: 查询 Asset Bundle start:167.60MB, end 166.93MB, increase: -685.34KB
  5592. 2025-1-11 16:55:51-debug: // ---- build task 查询 Asset Bundle ---- (4ms)
  5593. 2025-1-11 16:55:51-debug: run build task 查询 Asset Bundle success in 4 ms√, progress: 10%
  5594. 2025-1-11 16:55:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5595. 2025-1-11 16:55:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5596. 2025-1-11 16:55:51-debug: [Build Memory track]: 查询 Asset Bundle start:166.96MB, end 167.11MB, increase: 156.22KB
  5597. 2025-1-11 16:55:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (43ms)
  5598. 2025-1-11 16:55:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 43 ms√, progress: 12%
  5599. 2025-1-11 16:55:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.15MB, end 167.17MB, increase: 29.86KB
  5600. 2025-1-11 16:55:51-debug: 填充脚本数据到 settings.json start, progress: 12%
  5601. 2025-1-11 16:55:51-debug: // ---- build task 填充脚本数据到 settings.json ----
  5602. 2025-1-11 16:55:51-debug: // ---- build task 填充脚本数据到 settings.json ---- (5ms)
  5603. 2025-1-11 16:55:51-debug: run build task 填充脚本数据到 settings.json success in 5 ms√, progress: 13%
  5604. 2025-1-11 16:55:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5605. 2025-1-11 16:55:51-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.21MB, end 167.23MB, increase: 28.60KB
  5606. 2025-1-11 16:55:51-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5607. 2025-1-11 16:55:51-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  5608. 2025-1-11 16:55:51-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.26MB, end 167.41MB, increase: 145.71KB
  5609. 2025-1-11 16:55:51-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  5610. 2025-1-11 16:55:52-debug: Query all assets info in project
  5611. 2025-1-11 16:55:52-debug: init custom config: keepNodeUuid: false, useCache: true
  5612. 2025-1-11 16:55:52-debug: 查询 Asset Bundle start, progress: 0%
  5613. 2025-1-11 16:55:52-debug: // ---- build task 查询 Asset Bundle ----
  5614. 2025-1-11 16:55: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5615. 2025-1-11 16:55:52-debug: Number of all scripts: 103
  5616. 2025-1-11 16:55:52-debug: Number of other assets: 754
  5617. 2025-1-11 16:55:52-debug: Number of all scenes: 3
  5618. 2025-1-11 16:55:52-debug: // ---- build task 查询 Asset Bundle ---- (10ms)
  5619. 2025-1-11 16:55:52-debug: run build task 查询 Asset Bundle success in 10 ms√, progress: 5%
  5620. 2025-1-11 16:55:52-debug: // ---- build task 查询 Asset Bundle ----
  5621. 2025-1-11 16:55:52-debug: [Build Memory track]: 查询 Asset Bundle start:167.03MB, end 167.52MB, increase: 497.69KB
  5622. 2025-1-11 16:55:52-debug: 查询 Asset Bundle start, progress: 5%
  5623. 2025-1-11 16:55:52-debug: // ---- build task 查询 Asset Bundle ---- (3ms)
  5624. 2025-1-11 16:55:52-debug: run build task 查询 Asset Bundle success in 3 ms√, progress: 10%
  5625. 2025-1-11 16:55:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5626. 2025-1-11 16:55:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5627. 2025-1-11 16:55:52-debug: [Build Memory track]: 查询 Asset Bundle start:167.55MB, end 167.70MB, increase: 157.23KB
  5628. 2025-1-11 16:55:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5629. 2025-1-11 16:55:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.73MB, end 167.76MB, increase: 28.70KB
  5630. 2025-1-11 16:55:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  5631. 2025-1-11 16:55:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5632. 2025-1-11 16:55:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  5633. 2025-1-11 16:55:52-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5634. 2025-1-11 16:55:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.79MB, end 167.82MB, increase: 27.68KB
  5635. 2025-1-11 16:55:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5636. 2025-1-11 16:55:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5637. 2025-1-11 16:55:52-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5638. 2025-1-11 16:55:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (5ms)
  5639. 2025-1-11 16:55:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 5 ms√, progress: 15%
  5640. 2025-1-11 16:55:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.85MB, end 167.17MB, increase: -697.45KB
  5641. 2025-1-11 16:55:52-debug: Query all assets info in project
  5642. 2025-1-11 16:55:52-debug: init custom config: keepNodeUuid: false, useCache: true
  5643. 2025-1-11 16:55:52-debug: 查询 Asset Bundle start, progress: 0%
  5644. 2025-1-11 16:55:52-debug: // ---- build task 查询 Asset Bundle ----
  5645. 2025-1-11 16:55: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5646. 2025-1-11 16:55:52-debug: Number of all scenes: 3
  5647. 2025-1-11 16:55:52-debug: Number of all scripts: 103
  5648. 2025-1-11 16:55:52-debug: Number of other assets: 754
  5649. 2025-1-11 16:55:52-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5650. 2025-1-11 16:55:52-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  5651. 2025-1-11 16:55:52-debug: [Build Memory track]: 查询 Asset Bundle start:167.63MB, end 167.33MB, increase: -302.25KB
  5652. 2025-1-11 16:55:52-debug: // ---- build task 查询 Asset Bundle ----
  5653. 2025-1-11 16:55:52-debug: 查询 Asset Bundle start, progress: 5%
  5654. 2025-1-11 16:55:52-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5655. 2025-1-11 16:55:52-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5656. 2025-1-11 16:55:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5657. 2025-1-11 16:55:52-debug: [Build Memory track]: 查询 Asset Bundle start:167.37MB, end 167.52MB, increase: 157.22KB
  5658. 2025-1-11 16:55:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5659. 2025-1-11 16:55:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5660. 2025-1-11 16:55:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5661. 2025-1-11 16:55:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.55MB, end 167.58MB, increase: 28.99KB
  5662. 2025-1-11 16:55:52-debug: 填充脚本数据到 settings.json start, progress: 12%
  5663. 2025-1-11 16:55:52-debug: // ---- build task 填充脚本数据到 settings.json ----
  5664. 2025-1-11 16:55:52-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5665. 2025-1-11 16:55:52-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5666. 2025-1-11 16:55:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5667. 2025-1-11 16:55:52-debug: [Build Memory track]: 填充脚本数据到 settings.json start:167.61MB, end 167.64MB, increase: 28.16KB
  5668. 2025-1-11 16:55:52-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5669. 2025-1-11 16:55:52-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  5670. 2025-1-11 16:55:52-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  5671. 2025-1-11 16:55:52-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:167.67MB, end 167.80MB, increase: 131.03KB
  5672. 2025-1-11 16:56:20-debug: refresh db internal success
  5673. 2025-1-11 16:56:20-debug: %cImport%c: D:\CocosCreatorProject\Idioms\idiom\assets\Scripts\CreateIdiom.ts background: #aaff85; color: #000; color: #000;
  5674. 2025-1-11 16:56:20-debug: refresh db assets success
  5675. 2025-1-11 16:56:20-debug: Run asset db hook engine-extends:afterRefresh ...
  5676. 2025-1-11 16:56:20-debug: Run asset db hook engine-extends:afterRefresh success!
  5677. 2025-1-11 16:56:20-debug: asset-db:refresh-all-database (99ms)
  5678. 2025-1-11 16:56:20-debug: asset-db-hook-engine-extends-afterRefresh (2ms)
  5679. 2025-1-11 16:56:20-debug: asset-db:worker-effect-data-processing (2ms)
  5680. 2025-1-11 16:56:22-debug: Query all assets info in project
  5681. 2025-1-11 16:56:22-debug: init custom config: keepNodeUuid: false, useCache: true
  5682. 2025-1-11 16:56:22-debug: // ---- build task 查询 Asset Bundle ----
  5683. 2025-1-11 16:56:22-debug: 查询 Asset Bundle start, progress: 0%
  5684. 2025-1-11 16:56:22-debug: Number of all scenes: 3
  5685. 2025-1-11 16:56:22-debug: Number of all scripts: 103
  5686. 2025-1-11 16:56:22-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5687. 2025-1-11 16:56:22-debug: Number of other assets: 754
  5688. 2025-1-11 16:56:22-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5689. 2025-1-11 16:56:22-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  5690. 2025-1-11 16:56:22-debug: // ---- build task 查询 Asset Bundle ----
  5691. 2025-1-11 16:56:22-debug: [Build Memory track]: 查询 Asset Bundle start:170.34MB, end 169.36MB, increase: -1009.66KB
  5692. 2025-1-11 16:56:22-debug: 查询 Asset Bundle start, progress: 5%
  5693. 2025-1-11 16:56:22-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5694. 2025-1-11 16:56:22-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5695. 2025-1-11 16:56:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5696. 2025-1-11 16:56:22-debug: [Build Memory track]: 查询 Asset Bundle start:169.39MB, end 169.54MB, increase: 156.36KB
  5697. 2025-1-11 16:56:22-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5698. 2025-1-11 16:56:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5699. 2025-1-11 16:56:22-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5700. 2025-1-11 16:56:22-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.57MB, end 169.60MB, increase: 28.99KB
  5701. 2025-1-11 16:56:22-debug: // ---- build task 填充脚本数据到 settings.json ----
  5702. 2025-1-11 16:56:22-debug: 填充脚本数据到 settings.json start, progress: 12%
  5703. 2025-1-11 16:56:22-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5704. 2025-1-11 16:56:22-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5705. 2025-1-11 16:56:22-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.63MB, end 169.66MB, increase: 29.09KB
  5706. 2025-1-11 16:56:22-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5707. 2025-1-11 16:56:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5708. 2025-1-11 16:56:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (3ms)
  5709. 2025-1-11 16:56:22-debug: run build task 整理部分构建选项内数据到 settings.json success in 3 ms√, progress: 15%
  5710. 2025-1-11 16:56:22-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.69MB, end 169.82MB, increase: 129.69KB
  5711. 2025-1-11 16:56:22-debug: Query all assets info in project
  5712. 2025-1-11 16:56:22-debug: init custom config: keepNodeUuid: false, useCache: true
  5713. 2025-1-11 16:56:22-debug: 查询 Asset Bundle start, progress: 0%
  5714. 2025-1-11 16:56:22-debug: // ---- build task 查询 Asset Bundle ----
  5715. 2025-1-11 16:56:22-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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5716. 2025-1-11 16:56:22-debug: Number of all scenes: 3
  5717. 2025-1-11 16:56:22-debug: Number of other assets: 754
  5718. 2025-1-11 16:56:22-debug: Number of all scripts: 103
  5719. 2025-1-11 16:56:22-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5720. 2025-1-11 16:56:22-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5721. 2025-1-11 16:56:22-debug: [Build Memory track]: 查询 Asset Bundle start:170.29MB, end 169.81MB, increase: -485.43KB
  5722. 2025-1-11 16:56:22-debug: 查询 Asset Bundle start, progress: 5%
  5723. 2025-1-11 16:56:22-debug: // ---- build task 查询 Asset Bundle ----
  5724. 2025-1-11 16:56:22-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5725. 2025-1-11 16:56:22-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5726. 2025-1-11 16:56:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5727. 2025-1-11 16:56:22-debug: [Build Memory track]: 查询 Asset Bundle start:169.84MB, end 170.00MB, increase: 156.33KB
  5728. 2025-1-11 16:56:22-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5729. 2025-1-11 16:56:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5730. 2025-1-11 16:56:22-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5731. 2025-1-11 16:56:22-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.03MB, end 170.06MB, increase: 28.69KB
  5732. 2025-1-11 16:56:22-debug: // ---- build task 填充脚本数据到 settings.json ----
  5733. 2025-1-11 16:56:22-debug: 填充脚本数据到 settings.json start, progress: 12%
  5734. 2025-1-11 16:56:22-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5735. 2025-1-11 16:56:22-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5736. 2025-1-11 16:56:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5737. 2025-1-11 16:56:22-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5738. 2025-1-11 16:56:22-debug: [Build Memory track]: 填充脚本数据到 settings.json start:170.09MB, end 170.11MB, increase: 26.74KB
  5739. 2025-1-11 16:56:22-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (4ms)
  5740. 2025-1-11 16:56:22-debug: run build task 整理部分构建选项内数据到 settings.json success in 4 ms√, progress: 15%
  5741. 2025-1-11 16:56:22-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:170.14MB, end 170.28MB, increase: 137.20KB
  5742. 2025-1-11 16:56:41-debug: Query all assets info in project
  5743. 2025-1-11 16:56:41-debug: init custom config: keepNodeUuid: false, useCache: true
  5744. 2025-1-11 16:56:41-debug: 查询 Asset Bundle start, progress: 0%
  5745. 2025-1-11 16:56:41-debug: // ---- build task 查询 Asset Bundle ----
  5746. 2025-1-11 16:56: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5747. 2025-1-11 16:56:41-debug: Number of other assets: 754
  5748. 2025-1-11 16:56:41-debug: Number of all scripts: 103
  5749. 2025-1-11 16:56:41-debug: Number of all scenes: 3
  5750. 2025-1-11 16:56:41-debug: // ---- build task 查询 Asset Bundle ---- (9ms)
  5751. 2025-1-11 16:56:41-debug: run build task 查询 Asset Bundle success in 9 ms√, progress: 5%
  5752. 2025-1-11 16:56:41-debug: // ---- build task 查询 Asset Bundle ----
  5753. 2025-1-11 16:56:41-debug: [Build Memory track]: 查询 Asset Bundle start:170.62MB, end 169.27MB, increase: -1383.12KB
  5754. 2025-1-11 16:56:41-debug: 查询 Asset Bundle start, progress: 5%
  5755. 2025-1-11 16:56:41-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5756. 2025-1-11 16:56:41-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5757. 2025-1-11 16:56:41-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5758. 2025-1-11 16:56:41-debug: [Build Memory track]: 查询 Asset Bundle start:169.30MB, end 169.45MB, increase: 155.99KB
  5759. 2025-1-11 16:56:41-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5760. 2025-1-11 16:56:41-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5761. 2025-1-11 16:56:41-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5762. 2025-1-11 16:56:41-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.49MB, end 169.51MB, increase: 29.48KB
  5763. 2025-1-11 16:56:41-debug: // ---- build task 填充脚本数据到 settings.json ----
  5764. 2025-1-11 16:56:41-debug: 填充脚本数据到 settings.json start, progress: 12%
  5765. 2025-1-11 16:56:41-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5766. 2025-1-11 16:56:41-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5767. 2025-1-11 16:56:41-debug: [Build Memory track]: 填充脚本数据到 settings.json start:169.55MB, end 169.57MB, increase: 27.49KB
  5768. 2025-1-11 16:56:41-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5769. 2025-1-11 16:56:41-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5770. 2025-1-11 16:56:41-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (8ms)
  5771. 2025-1-11 16:56:41-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:169.60MB, end 169.73MB, increase: 131.12KB
  5772. 2025-1-11 16:56:41-debug: run build task 整理部分构建选项内数据到 settings.json success in 8 ms√, progress: 15%
  5773. 2025-1-11 16:58:35-debug: refresh db internal success
  5774. 2025-1-11 16:58:35-debug: refresh db assets success
  5775. 2025-1-11 16:58:35-debug: Run asset db hook engine-extends:afterRefresh ...
  5776. 2025-1-11 16:58:35-debug: Run asset db hook engine-extends:afterRefresh success!
  5777. 2025-1-11 16:58:35-debug: asset-db:refresh-all-database (98ms)
  5778. 2025-1-11 16:58:35-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5779. 2025-1-11 16:59:05-debug: refresh db internal success
  5780. 2025-1-11 16:59:05-debug: refresh db assets success
  5781. 2025-1-11 16:59:05-debug: Run asset db hook engine-extends:afterRefresh ...
  5782. 2025-1-11 16:59:05-debug: Run asset db hook engine-extends:afterRefresh success!
  5783. 2025-1-11 16:59:05-debug: asset-db:refresh-all-database (93ms)
  5784. 2025-1-11 16:59:05-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5785. 2025-1-11 16:59:09-debug: refresh db internal success
  5786. 2025-1-11 16:59:09-debug: Run asset db hook engine-extends:afterRefresh success!
  5787. 2025-1-11 16:59:09-debug: Run asset db hook engine-extends:afterRefresh ...
  5788. 2025-1-11 16:59:09-debug: refresh db assets success
  5789. 2025-1-11 16:59:09-debug: asset-db:refresh-all-database (82ms)
  5790. 2025-1-11 16:59:09-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5791. 2025-1-11 17:01:45-debug: Query all assets info in project
  5792. 2025-1-11 17:01:45-debug: init custom config: keepNodeUuid: false, useCache: true
  5793. 2025-1-11 17:01:45-debug: 查询 Asset Bundle start, progress: 0%
  5794. 2025-1-11 17:01:45-debug: // ---- build task 查询 Asset Bundle ----
  5795. 2025-1-11 17:01:45-debug: Number of all scenes: 3
  5796. 2025-1-11 17:01:45-debug: Number of all scripts: 103
  5797. 2025-1-11 17:01: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5798. 2025-1-11 17:01:45-debug: Number of other assets: 754
  5799. 2025-1-11 17:01:45-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5800. 2025-1-11 17:01:45-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  5801. 2025-1-11 17:01:45-debug: 查询 Asset Bundle start, progress: 5%
  5802. 2025-1-11 17:01:45-debug: [Build Memory track]: 查询 Asset Bundle start:174.20MB, end 172.83MB, increase: -1408.65KB
  5803. 2025-1-11 17:01:45-debug: // ---- build task 查询 Asset Bundle ----
  5804. 2025-1-11 17:01:45-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5805. 2025-1-11 17:01:45-debug: [Build Memory track]: 查询 Asset Bundle start:172.86MB, end 173.01MB, increase: 157.56KB
  5806. 2025-1-11 17:01:45-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5807. 2025-1-11 17:01:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5808. 2025-1-11 17:01:45-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5809. 2025-1-11 17:01:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (1ms)
  5810. 2025-1-11 17:01:45-debug: run build task 整理部分构建选项内数据到 settings.json success in 1 ms√, progress: 12%
  5811. 2025-1-11 17:01:45-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.04MB, end 173.07MB, increase: 29.79KB
  5812. 2025-1-11 17:01:45-debug: // ---- build task 填充脚本数据到 settings.json ----
  5813. 2025-1-11 17:01:45-debug: 填充脚本数据到 settings.json start, progress: 12%
  5814. 2025-1-11 17:01:45-debug: // ---- build task 填充脚本数据到 settings.json ---- (1ms)
  5815. 2025-1-11 17:01:45-debug: run build task 填充脚本数据到 settings.json success in 1 ms√, progress: 13%
  5816. 2025-1-11 17:01:45-debug: [Build Memory track]: 填充脚本数据到 settings.json start:173.10MB, end 173.13MB, increase: 27.26KB
  5817. 2025-1-11 17:01:45-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5818. 2025-1-11 17:01:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5819. 2025-1-11 17:01:45-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5820. 2025-1-11 17:01:45-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5821. 2025-1-11 17:01:45-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:173.16MB, end 173.29MB, increase: 131.15KB
  5822. 2025-1-11 17:11:33-debug: refresh db internal success
  5823. 2025-1-11 17:11:34-debug: refresh db assets success
  5824. 2025-1-11 17:11:34-debug: Run asset db hook engine-extends:afterRefresh ...
  5825. 2025-1-11 17:11:34-debug: Run asset db hook engine-extends:afterRefresh success!
  5826. 2025-1-11 17:11:34-debug: asset-db:refresh-all-database (101ms)
  5827. 2025-1-11 17:11:40-debug: refresh db internal success
  5828. 2025-1-11 17:11:40-debug: refresh db assets success
  5829. 2025-1-11 17:11:40-debug: Run asset db hook engine-extends:afterRefresh success!
  5830. 2025-1-11 17:11:40-debug: Run asset db hook engine-extends:afterRefresh ...
  5831. 2025-1-11 17:11:40-debug: asset-db:refresh-all-database (106ms)
  5832. 2025-1-11 17:11:40-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5833. 2025-1-11 17:12:25-debug: refresh db internal success
  5834. 2025-1-11 17:12:25-debug: refresh db assets success
  5835. 2025-1-11 17:12:25-debug: Run asset db hook engine-extends:afterRefresh ...
  5836. 2025-1-11 17:12:25-debug: Run asset db hook engine-extends:afterRefresh success!
  5837. 2025-1-11 17:12:25-debug: asset-db:refresh-all-database (245ms)
  5838. 2025-1-11 17:12:25-debug: asset-db:worker-effect-data-processing (1ms)
  5839. 2025-1-11 17:12:25-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5840. 2025-1-11 17:12:33-debug: Query all assets info in project
  5841. 2025-1-11 17:12:33-debug: init custom config: keepNodeUuid: false, useCache: true
  5842. 2025-1-11 17:12:33-debug: 查询 Asset Bundle start, progress: 0%
  5843. 2025-1-11 17:12:33-debug: // ---- build task 查询 Asset Bundle ----
  5844. 2025-1-11 17:12: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,c27215d8-6835-4b68-bfbb-bdeac6100c04,b5d6115f-0370-4d7c-aad3-c194cc71cf98,4bb480dd-8384-4bc9-987f-de67cc53052a,d1346436-ac96-4271-b863-1f4fdead95b0,971bdb23-3ff6-43eb-b422-1c30165a3663,17debcc3-0a6b-4b8a-b00b-dc58b885581e,711ebe11-f673-4cd9-9a83-63c60ba54c5b,c0143906-9aed-447e-9436-2ae8512d1b6e,14da1725-c4c2-42b4-ab08-ee0aeb6898b3,081cab31-dccd-428e-8652-f2404cc81c47,78e0584a-4343-4727-8f37-e14e65c2a2db,ba21476f-2866-4f81-9c4d-6e359316e448,871c3b6c-7379-419d-bda3-794b239ab90d,ff9b0199-ce04-4cfe-86cc-6c719f08d6e4,de1c2107-70c8-4021-8459-6399f24d01c6,cbf30902-517f-40dc-af90-a550bac27cf1
  5845. 2025-1-11 17:12:33-debug: Number of all scenes: 3
  5846. 2025-1-11 17:12:33-debug: Number of all scripts: 103
  5847. 2025-1-11 17:12:33-debug: Number of other assets: 754
  5848. 2025-1-11 17:12:33-debug: // ---- build task 查询 Asset Bundle ---- (5ms)
  5849. 2025-1-11 17:12:33-debug: run build task 查询 Asset Bundle success in 5 ms√, progress: 5%
  5850. 2025-1-11 17:12:33-debug: // ---- build task 查询 Asset Bundle ----
  5851. 2025-1-11 17:12:33-debug: [Build Memory track]: 查询 Asset Bundle start:161.28MB, end 161.77MB, increase: 503.93KB
  5852. 2025-1-11 17:12:33-debug: 查询 Asset Bundle start, progress: 5%
  5853. 2025-1-11 17:12:33-debug: // ---- build task 查询 Asset Bundle ---- (2ms)
  5854. 2025-1-11 17:12:33-debug: run build task 查询 Asset Bundle success in 2 ms√, progress: 10%
  5855. 2025-1-11 17:12:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5856. 2025-1-11 17:12:33-debug: [Build Memory track]: 查询 Asset Bundle start:161.80MB, end 161.95MB, increase: 157.88KB
  5857. 2025-1-11 17:12:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 10%
  5858. 2025-1-11 17:12:33-debug: run build task 整理部分构建选项内数据到 settings.json success in √, progress: 12%
  5859. 2025-1-11 17:12:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:161.98MB, end 162.00MB, increase: 17.72KB
  5860. 2025-1-11 17:12:33-debug: // ---- build task 填充脚本数据到 settings.json ----
  5861. 2025-1-11 17:12:33-debug: 填充脚本数据到 settings.json start, progress: 12%
  5862. 2025-1-11 17:12:33-debug: run build task 填充脚本数据到 settings.json success in √, progress: 13%
  5863. 2025-1-11 17:12:33-debug: [Build Memory track]: 填充脚本数据到 settings.json start:162.03MB, end 162.05MB, increase: 17.95KB
  5864. 2025-1-11 17:12:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ----
  5865. 2025-1-11 17:12:33-debug: 整理部分构建选项内数据到 settings.json start, progress: 13%
  5866. 2025-1-11 17:12:33-debug: // ---- build task 整理部分构建选项内数据到 settings.json ---- (2ms)
  5867. 2025-1-11 17:12:33-debug: run build task 整理部分构建选项内数据到 settings.json success in 2 ms√, progress: 15%
  5868. 2025-1-11 17:12:33-debug: [Build Memory track]: 整理部分构建选项内数据到 settings.json start:162.08MB, end 161.34MB, increase: -758.55KB
  5869. 2025-1-11 17:12:51-debug: refresh db internal success
  5870. 2025-1-11 17:12:51-debug: Run asset db hook engine-extends:afterRefresh ...
  5871. 2025-1-11 17:12:51-debug: Run asset db hook engine-extends:afterRefresh success!
  5872. 2025-1-11 17:12:51-debug: refresh db assets success
  5873. 2025-1-11 17:12:51-debug: asset-db:refresh-all-database (84ms)
  5874. 2025-1-11 17:12:51-debug: asset-db:worker-effect-data-processing (1ms)
  5875. 2025-1-11 17:12:51-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5876. 2025-1-11 17:12:53-debug: refresh db internal success
  5877. 2025-1-11 17:12:53-debug: Run asset db hook engine-extends:afterRefresh ...
  5878. 2025-1-11 17:12:53-debug: Run asset db hook engine-extends:afterRefresh success!
  5879. 2025-1-11 17:12:53-debug: refresh db assets success
  5880. 2025-1-11 17:12:53-debug: asset-db:refresh-all-database (81ms)
  5881. 2025-1-11 17:12:53-debug: asset-db:worker-effect-data-processing (1ms)
  5882. 2025-1-11 17:12:53-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5883. 2025-1-11 17:12:54-debug: refresh db internal success
  5884. 2025-1-11 17:12:54-debug: refresh db assets success
  5885. 2025-1-11 17:12:54-debug: Run asset db hook engine-extends:afterRefresh ...
  5886. 2025-1-11 17:12:54-debug: Run asset db hook engine-extends:afterRefresh success!
  5887. 2025-1-11 17:12:54-debug: asset-db:refresh-all-database (77ms)
  5888. 2025-1-11 17:12:54-debug: asset-db:worker-effect-data-processing (1ms)
  5889. 2025-1-11 17:12:54-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5890. 2025-1-11 17:20:18-debug: refresh db internal success
  5891. 2025-1-11 17:20:18-debug: refresh db assets success
  5892. 2025-1-11 17:20:18-debug: Run asset db hook engine-extends:afterRefresh ...
  5893. 2025-1-11 17:20:18-debug: Run asset db hook engine-extends:afterRefresh success!
  5894. 2025-1-11 17:20:18-debug: asset-db:refresh-all-database (129ms)
  5895. 2025-1-11 17:20:18-debug: asset-db:worker-effect-data-processing (22ms)
  5896. 2025-1-11 17:20:18-debug: asset-db-hook-engine-extends-afterRefresh (22ms)
  5897. 2025-1-11 17:21:04-debug: refresh db internal success
  5898. 2025-1-11 17:21:04-debug: Run asset db hook engine-extends:afterRefresh success!
  5899. 2025-1-11 17:21:04-debug: Run asset db hook engine-extends:afterRefresh ...
  5900. 2025-1-11 17:21:04-debug: refresh db assets success
  5901. 2025-1-11 17:21:04-debug: asset-db:refresh-all-database (81ms)
  5902. 2025-1-11 17:21:04-debug: asset-db:worker-effect-data-processing (-1ms)
  5903. 2025-1-11 17:21:04-debug: asset-db-hook-engine-extends-afterRefresh (-1ms)
  5904. 2025-1-11 17:21:35-debug: refresh db internal success
  5905. 2025-1-11 17:21:35-debug: refresh db assets success
  5906. 2025-1-11 17:21:35-debug: Run asset db hook engine-extends:afterRefresh ...
  5907. 2025-1-11 17:21:35-debug: Run asset db hook engine-extends:afterRefresh success!
  5908. 2025-1-11 17:21:35-debug: asset-db:refresh-all-database (105ms)
  5909. 2025-1-11 17:21:35-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5910. 2025-1-11 17:22:04-debug: refresh db internal success
  5911. 2025-1-11 17:22:04-debug: refresh db assets success
  5912. 2025-1-11 17:22:04-debug: Run asset db hook engine-extends:afterRefresh ...
  5913. 2025-1-11 17:22:04-debug: Run asset db hook engine-extends:afterRefresh success!
  5914. 2025-1-11 17:22:04-debug: asset-db:refresh-all-database (110ms)
  5915. 2025-1-11 17:22:04-debug: asset-db:worker-effect-data-processing (1ms)
  5916. 2025-1-11 17:22:04-debug: asset-db-hook-engine-extends-afterRefresh (1ms)
  5917. 2025-1-11 17:22:19-debug: refresh db internal success
  5918. 2025-1-11 17:22:19-debug: refresh db assets success
  5919. 2025-1-11 17:22:19-debug: Run asset db hook engine-extends:afterRefresh ...
  5920. 2025-1-11 17:22:19-debug: Run asset db hook engine-extends:afterRefresh success!
  5921. 2025-1-11 17:22:19-debug: asset-db:refresh-all-database (83ms)
  5922. 2025-1-11 17:22:19-debug: asset-db:worker-effect-data-processing (1ms)
  5923. 2025-1-11 17:22:19-debug: asset-db-hook-engine-extends-afterRefresh (1ms)