game.prefab 97 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "game",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "game",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 98
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 266
  32. },
  33. {
  34. "__id__": 268
  35. },
  36. {
  37. "__id__": 270
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 272
  42. },
  43. "_lpos": {
  44. "__type__": "cc.Vec3",
  45. "x": 0,
  46. "y": 0,
  47. "z": 0
  48. },
  49. "_lrot": {
  50. "__type__": "cc.Quat",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0,
  54. "w": 1
  55. },
  56. "_lscale": {
  57. "__type__": "cc.Vec3",
  58. "x": 1,
  59. "y": 1,
  60. "z": 1
  61. },
  62. "_mobility": 0,
  63. "_layer": 33554432,
  64. "_euler": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_id": ""
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_name": "ScrollView",
  75. "_objFlags": 0,
  76. "__editorExtras__": {},
  77. "_parent": {
  78. "__id__": 1
  79. },
  80. "_children": [
  81. {
  82. "__id__": 3
  83. }
  84. ],
  85. "_active": true,
  86. "_components": [
  87. {
  88. "__id__": 89
  89. },
  90. {
  91. "__id__": 91
  92. },
  93. {
  94. "__id__": 93
  95. },
  96. {
  97. "__id__": 95
  98. }
  99. ],
  100. "_prefab": {
  101. "__id__": 97
  102. },
  103. "_lpos": {
  104. "__type__": "cc.Vec3",
  105. "x": 0,
  106. "y": -422,
  107. "z": 0
  108. },
  109. "_lrot": {
  110. "__type__": "cc.Quat",
  111. "x": 0,
  112. "y": 0,
  113. "z": 0,
  114. "w": 1
  115. },
  116. "_lscale": {
  117. "__type__": "cc.Vec3",
  118. "x": 1,
  119. "y": 1,
  120. "z": 1
  121. },
  122. "_mobility": 0,
  123. "_layer": 33554432,
  124. "_euler": {
  125. "__type__": "cc.Vec3",
  126. "x": 0,
  127. "y": 0,
  128. "z": 0
  129. },
  130. "_id": ""
  131. },
  132. {
  133. "__type__": "cc.Node",
  134. "_name": "view",
  135. "_objFlags": 0,
  136. "__editorExtras__": {},
  137. "_parent": {
  138. "__id__": 2
  139. },
  140. "_children": [
  141. {
  142. "__id__": 4
  143. }
  144. ],
  145. "_active": true,
  146. "_components": [
  147. {
  148. "__id__": 82
  149. },
  150. {
  151. "__id__": 84
  152. },
  153. {
  154. "__id__": 86
  155. }
  156. ],
  157. "_prefab": {
  158. "__id__": 88
  159. },
  160. "_lpos": {
  161. "__type__": "cc.Vec3",
  162. "x": 0,
  163. "y": 0,
  164. "z": 0
  165. },
  166. "_lrot": {
  167. "__type__": "cc.Quat",
  168. "x": 0,
  169. "y": 0,
  170. "z": 0,
  171. "w": 1
  172. },
  173. "_lscale": {
  174. "__type__": "cc.Vec3",
  175. "x": 1,
  176. "y": 1,
  177. "z": 1
  178. },
  179. "_mobility": 0,
  180. "_layer": 33554432,
  181. "_euler": {
  182. "__type__": "cc.Vec3",
  183. "x": 0,
  184. "y": 0,
  185. "z": 0
  186. },
  187. "_id": ""
  188. },
  189. {
  190. "__type__": "cc.Node",
  191. "_name": "content",
  192. "_objFlags": 0,
  193. "__editorExtras__": {},
  194. "_parent": {
  195. "__id__": 3
  196. },
  197. "_children": [
  198. {
  199. "__id__": 5
  200. },
  201. {
  202. "__id__": 11
  203. },
  204. {
  205. "__id__": 17
  206. },
  207. {
  208. "__id__": 23
  209. },
  210. {
  211. "__id__": 29
  212. },
  213. {
  214. "__id__": 35
  215. },
  216. {
  217. "__id__": 41
  218. },
  219. {
  220. "__id__": 47
  221. },
  222. {
  223. "__id__": 53
  224. },
  225. {
  226. "__id__": 59
  227. },
  228. {
  229. "__id__": 65
  230. },
  231. {
  232. "__id__": 71
  233. }
  234. ],
  235. "_active": true,
  236. "_components": [
  237. {
  238. "__id__": 77
  239. },
  240. {
  241. "__id__": 79
  242. }
  243. ],
  244. "_prefab": {
  245. "__id__": 81
  246. },
  247. "_lpos": {
  248. "__type__": "cc.Vec3",
  249. "x": -317.068,
  250. "y": 0,
  251. "z": 0
  252. },
  253. "_lrot": {
  254. "__type__": "cc.Quat",
  255. "x": 0,
  256. "y": 0,
  257. "z": 0,
  258. "w": 1
  259. },
  260. "_lscale": {
  261. "__type__": "cc.Vec3",
  262. "x": 1,
  263. "y": 1,
  264. "z": 1
  265. },
  266. "_mobility": 0,
  267. "_layer": 33554432,
  268. "_euler": {
  269. "__type__": "cc.Vec3",
  270. "x": 0,
  271. "y": 0,
  272. "z": 0
  273. },
  274. "_id": ""
  275. },
  276. {
  277. "__type__": "cc.Node",
  278. "_name": "0",
  279. "_objFlags": 0,
  280. "__editorExtras__": {},
  281. "_parent": {
  282. "__id__": 4
  283. },
  284. "_children": [],
  285. "_active": false,
  286. "_components": [
  287. {
  288. "__id__": 6
  289. },
  290. {
  291. "__id__": 8
  292. }
  293. ],
  294. "_prefab": {
  295. "__id__": 10
  296. },
  297. "_lpos": {
  298. "__type__": "cc.Vec3",
  299. "x": 59,
  300. "y": 0,
  301. "z": 0
  302. },
  303. "_lrot": {
  304. "__type__": "cc.Quat",
  305. "x": 0,
  306. "y": 0,
  307. "z": 0,
  308. "w": 1
  309. },
  310. "_lscale": {
  311. "__type__": "cc.Vec3",
  312. "x": 1,
  313. "y": 1,
  314. "z": 1
  315. },
  316. "_mobility": 0,
  317. "_layer": 33554432,
  318. "_euler": {
  319. "__type__": "cc.Vec3",
  320. "x": 0,
  321. "y": 0,
  322. "z": 0
  323. },
  324. "_id": ""
  325. },
  326. {
  327. "__type__": "cc.UITransform",
  328. "_name": "",
  329. "_objFlags": 0,
  330. "__editorExtras__": {},
  331. "node": {
  332. "__id__": 5
  333. },
  334. "_enabled": true,
  335. "__prefab": {
  336. "__id__": 7
  337. },
  338. "_contentSize": {
  339. "__type__": "cc.Size",
  340. "width": 98,
  341. "height": 98
  342. },
  343. "_anchorPoint": {
  344. "__type__": "cc.Vec2",
  345. "x": 0.5,
  346. "y": 0.5
  347. },
  348. "_id": ""
  349. },
  350. {
  351. "__type__": "cc.CompPrefabInfo",
  352. "fileId": "cfoYAycrVBUISM5VTDqfsn"
  353. },
  354. {
  355. "__type__": "cc.Sprite",
  356. "_name": "",
  357. "_objFlags": 0,
  358. "__editorExtras__": {},
  359. "node": {
  360. "__id__": 5
  361. },
  362. "_enabled": true,
  363. "__prefab": {
  364. "__id__": 9
  365. },
  366. "_customMaterial": null,
  367. "_srcBlendFactor": 2,
  368. "_dstBlendFactor": 4,
  369. "_color": {
  370. "__type__": "cc.Color",
  371. "r": 255,
  372. "g": 255,
  373. "b": 255,
  374. "a": 255
  375. },
  376. "_spriteFrame": {
  377. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  378. "__expectedType__": "cc.SpriteFrame"
  379. },
  380. "_type": 0,
  381. "_fillType": 0,
  382. "_sizeMode": 1,
  383. "_fillCenter": {
  384. "__type__": "cc.Vec2",
  385. "x": 0,
  386. "y": 0
  387. },
  388. "_fillStart": 0,
  389. "_fillRange": 0,
  390. "_isTrimmedMode": true,
  391. "_useGrayscale": false,
  392. "_atlas": null,
  393. "_id": ""
  394. },
  395. {
  396. "__type__": "cc.CompPrefabInfo",
  397. "fileId": "93WY7W3hVE7qj7A6ZoKzUt"
  398. },
  399. {
  400. "__type__": "cc.PrefabInfo",
  401. "root": {
  402. "__id__": 1
  403. },
  404. "asset": {
  405. "__id__": 0
  406. },
  407. "fileId": "c2hG+do+1Oa4nk/2wcvC/K",
  408. "instance": null,
  409. "targetOverrides": null,
  410. "nestedPrefabInstanceRoots": null
  411. },
  412. {
  413. "__type__": "cc.Node",
  414. "_name": "1",
  415. "_objFlags": 0,
  416. "__editorExtras__": {},
  417. "_parent": {
  418. "__id__": 4
  419. },
  420. "_children": [],
  421. "_active": false,
  422. "_components": [
  423. {
  424. "__id__": 12
  425. },
  426. {
  427. "__id__": 14
  428. }
  429. ],
  430. "_prefab": {
  431. "__id__": 16
  432. },
  433. "_lpos": {
  434. "__type__": "cc.Vec3",
  435. "x": 185,
  436. "y": 0,
  437. "z": 0
  438. },
  439. "_lrot": {
  440. "__type__": "cc.Quat",
  441. "x": 0,
  442. "y": 0,
  443. "z": 0,
  444. "w": 1
  445. },
  446. "_lscale": {
  447. "__type__": "cc.Vec3",
  448. "x": 1,
  449. "y": 1,
  450. "z": 1
  451. },
  452. "_mobility": 0,
  453. "_layer": 33554432,
  454. "_euler": {
  455. "__type__": "cc.Vec3",
  456. "x": 0,
  457. "y": 0,
  458. "z": 0
  459. },
  460. "_id": ""
  461. },
  462. {
  463. "__type__": "cc.UITransform",
  464. "_name": "",
  465. "_objFlags": 0,
  466. "__editorExtras__": {},
  467. "node": {
  468. "__id__": 11
  469. },
  470. "_enabled": true,
  471. "__prefab": {
  472. "__id__": 13
  473. },
  474. "_contentSize": {
  475. "__type__": "cc.Size",
  476. "width": 98,
  477. "height": 98
  478. },
  479. "_anchorPoint": {
  480. "__type__": "cc.Vec2",
  481. "x": 0.5,
  482. "y": 0.5
  483. },
  484. "_id": ""
  485. },
  486. {
  487. "__type__": "cc.CompPrefabInfo",
  488. "fileId": "76du8LroJMhoeOImy3r/jf"
  489. },
  490. {
  491. "__type__": "cc.Sprite",
  492. "_name": "",
  493. "_objFlags": 0,
  494. "__editorExtras__": {},
  495. "node": {
  496. "__id__": 11
  497. },
  498. "_enabled": true,
  499. "__prefab": {
  500. "__id__": 15
  501. },
  502. "_customMaterial": null,
  503. "_srcBlendFactor": 2,
  504. "_dstBlendFactor": 4,
  505. "_color": {
  506. "__type__": "cc.Color",
  507. "r": 255,
  508. "g": 255,
  509. "b": 255,
  510. "a": 255
  511. },
  512. "_spriteFrame": {
  513. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  514. "__expectedType__": "cc.SpriteFrame"
  515. },
  516. "_type": 0,
  517. "_fillType": 0,
  518. "_sizeMode": 1,
  519. "_fillCenter": {
  520. "__type__": "cc.Vec2",
  521. "x": 0,
  522. "y": 0
  523. },
  524. "_fillStart": 0,
  525. "_fillRange": 0,
  526. "_isTrimmedMode": true,
  527. "_useGrayscale": false,
  528. "_atlas": null,
  529. "_id": ""
  530. },
  531. {
  532. "__type__": "cc.CompPrefabInfo",
  533. "fileId": "45yryIXbVBdJuMgU3dsa5z"
  534. },
  535. {
  536. "__type__": "cc.PrefabInfo",
  537. "root": {
  538. "__id__": 1
  539. },
  540. "asset": {
  541. "__id__": 0
  542. },
  543. "fileId": "a3SOSeKB9HNbQEO9+SE8ft",
  544. "instance": null,
  545. "targetOverrides": null,
  546. "nestedPrefabInstanceRoots": null
  547. },
  548. {
  549. "__type__": "cc.Node",
  550. "_name": "2",
  551. "_objFlags": 0,
  552. "__editorExtras__": {},
  553. "_parent": {
  554. "__id__": 4
  555. },
  556. "_children": [],
  557. "_active": false,
  558. "_components": [
  559. {
  560. "__id__": 18
  561. },
  562. {
  563. "__id__": 20
  564. }
  565. ],
  566. "_prefab": {
  567. "__id__": 22
  568. },
  569. "_lpos": {
  570. "__type__": "cc.Vec3",
  571. "x": 311,
  572. "y": 0,
  573. "z": 0
  574. },
  575. "_lrot": {
  576. "__type__": "cc.Quat",
  577. "x": 0,
  578. "y": 0,
  579. "z": 0,
  580. "w": 1
  581. },
  582. "_lscale": {
  583. "__type__": "cc.Vec3",
  584. "x": 1,
  585. "y": 1,
  586. "z": 1
  587. },
  588. "_mobility": 0,
  589. "_layer": 33554432,
  590. "_euler": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 0,
  594. "z": 0
  595. },
  596. "_id": ""
  597. },
  598. {
  599. "__type__": "cc.UITransform",
  600. "_name": "",
  601. "_objFlags": 0,
  602. "__editorExtras__": {},
  603. "node": {
  604. "__id__": 17
  605. },
  606. "_enabled": true,
  607. "__prefab": {
  608. "__id__": 19
  609. },
  610. "_contentSize": {
  611. "__type__": "cc.Size",
  612. "width": 98,
  613. "height": 98
  614. },
  615. "_anchorPoint": {
  616. "__type__": "cc.Vec2",
  617. "x": 0.5,
  618. "y": 0.5
  619. },
  620. "_id": ""
  621. },
  622. {
  623. "__type__": "cc.CompPrefabInfo",
  624. "fileId": "06FDKkQTZPMq1xYoKNS+FR"
  625. },
  626. {
  627. "__type__": "cc.Sprite",
  628. "_name": "",
  629. "_objFlags": 0,
  630. "__editorExtras__": {},
  631. "node": {
  632. "__id__": 17
  633. },
  634. "_enabled": true,
  635. "__prefab": {
  636. "__id__": 21
  637. },
  638. "_customMaterial": null,
  639. "_srcBlendFactor": 2,
  640. "_dstBlendFactor": 4,
  641. "_color": {
  642. "__type__": "cc.Color",
  643. "r": 255,
  644. "g": 255,
  645. "b": 255,
  646. "a": 255
  647. },
  648. "_spriteFrame": {
  649. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  650. "__expectedType__": "cc.SpriteFrame"
  651. },
  652. "_type": 0,
  653. "_fillType": 0,
  654. "_sizeMode": 1,
  655. "_fillCenter": {
  656. "__type__": "cc.Vec2",
  657. "x": 0,
  658. "y": 0
  659. },
  660. "_fillStart": 0,
  661. "_fillRange": 0,
  662. "_isTrimmedMode": true,
  663. "_useGrayscale": false,
  664. "_atlas": null,
  665. "_id": ""
  666. },
  667. {
  668. "__type__": "cc.CompPrefabInfo",
  669. "fileId": "5ejJ7bcI9MbpLVCbA/8ryk"
  670. },
  671. {
  672. "__type__": "cc.PrefabInfo",
  673. "root": {
  674. "__id__": 1
  675. },
  676. "asset": {
  677. "__id__": 0
  678. },
  679. "fileId": "38U2zdwOBFiYU85lLyN0cF",
  680. "instance": null,
  681. "targetOverrides": null,
  682. "nestedPrefabInstanceRoots": null
  683. },
  684. {
  685. "__type__": "cc.Node",
  686. "_name": "3",
  687. "_objFlags": 0,
  688. "__editorExtras__": {},
  689. "_parent": {
  690. "__id__": 4
  691. },
  692. "_children": [],
  693. "_active": false,
  694. "_components": [
  695. {
  696. "__id__": 24
  697. },
  698. {
  699. "__id__": 26
  700. }
  701. ],
  702. "_prefab": {
  703. "__id__": 28
  704. },
  705. "_lpos": {
  706. "__type__": "cc.Vec3",
  707. "x": 437,
  708. "y": 0,
  709. "z": 0
  710. },
  711. "_lrot": {
  712. "__type__": "cc.Quat",
  713. "x": 0,
  714. "y": 0,
  715. "z": 0,
  716. "w": 1
  717. },
  718. "_lscale": {
  719. "__type__": "cc.Vec3",
  720. "x": 1,
  721. "y": 1,
  722. "z": 1
  723. },
  724. "_mobility": 0,
  725. "_layer": 33554432,
  726. "_euler": {
  727. "__type__": "cc.Vec3",
  728. "x": 0,
  729. "y": 0,
  730. "z": 0
  731. },
  732. "_id": ""
  733. },
  734. {
  735. "__type__": "cc.UITransform",
  736. "_name": "",
  737. "_objFlags": 0,
  738. "__editorExtras__": {},
  739. "node": {
  740. "__id__": 23
  741. },
  742. "_enabled": true,
  743. "__prefab": {
  744. "__id__": 25
  745. },
  746. "_contentSize": {
  747. "__type__": "cc.Size",
  748. "width": 98,
  749. "height": 98
  750. },
  751. "_anchorPoint": {
  752. "__type__": "cc.Vec2",
  753. "x": 0.5,
  754. "y": 0.5
  755. },
  756. "_id": ""
  757. },
  758. {
  759. "__type__": "cc.CompPrefabInfo",
  760. "fileId": "cb5svWCQ5Ero/H+NpzmA2O"
  761. },
  762. {
  763. "__type__": "cc.Sprite",
  764. "_name": "",
  765. "_objFlags": 0,
  766. "__editorExtras__": {},
  767. "node": {
  768. "__id__": 23
  769. },
  770. "_enabled": true,
  771. "__prefab": {
  772. "__id__": 27
  773. },
  774. "_customMaterial": null,
  775. "_srcBlendFactor": 2,
  776. "_dstBlendFactor": 4,
  777. "_color": {
  778. "__type__": "cc.Color",
  779. "r": 255,
  780. "g": 255,
  781. "b": 255,
  782. "a": 255
  783. },
  784. "_spriteFrame": {
  785. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  786. "__expectedType__": "cc.SpriteFrame"
  787. },
  788. "_type": 0,
  789. "_fillType": 0,
  790. "_sizeMode": 1,
  791. "_fillCenter": {
  792. "__type__": "cc.Vec2",
  793. "x": 0,
  794. "y": 0
  795. },
  796. "_fillStart": 0,
  797. "_fillRange": 0,
  798. "_isTrimmedMode": true,
  799. "_useGrayscale": false,
  800. "_atlas": null,
  801. "_id": ""
  802. },
  803. {
  804. "__type__": "cc.CompPrefabInfo",
  805. "fileId": "20w8wqTdFJPKeY9zw+WYAW"
  806. },
  807. {
  808. "__type__": "cc.PrefabInfo",
  809. "root": {
  810. "__id__": 1
  811. },
  812. "asset": {
  813. "__id__": 0
  814. },
  815. "fileId": "6eXud0+2VLsq2DUmnq9KFD",
  816. "instance": null,
  817. "targetOverrides": null,
  818. "nestedPrefabInstanceRoots": null
  819. },
  820. {
  821. "__type__": "cc.Node",
  822. "_name": "4",
  823. "_objFlags": 0,
  824. "__editorExtras__": {},
  825. "_parent": {
  826. "__id__": 4
  827. },
  828. "_children": [],
  829. "_active": false,
  830. "_components": [
  831. {
  832. "__id__": 30
  833. },
  834. {
  835. "__id__": 32
  836. }
  837. ],
  838. "_prefab": {
  839. "__id__": 34
  840. },
  841. "_lpos": {
  842. "__type__": "cc.Vec3",
  843. "x": 311,
  844. "y": 0,
  845. "z": 0
  846. },
  847. "_lrot": {
  848. "__type__": "cc.Quat",
  849. "x": 0,
  850. "y": 0,
  851. "z": 0,
  852. "w": 1
  853. },
  854. "_lscale": {
  855. "__type__": "cc.Vec3",
  856. "x": 1,
  857. "y": 1,
  858. "z": 1
  859. },
  860. "_mobility": 0,
  861. "_layer": 33554432,
  862. "_euler": {
  863. "__type__": "cc.Vec3",
  864. "x": 0,
  865. "y": 0,
  866. "z": 0
  867. },
  868. "_id": ""
  869. },
  870. {
  871. "__type__": "cc.UITransform",
  872. "_name": "",
  873. "_objFlags": 0,
  874. "__editorExtras__": {},
  875. "node": {
  876. "__id__": 29
  877. },
  878. "_enabled": true,
  879. "__prefab": {
  880. "__id__": 31
  881. },
  882. "_contentSize": {
  883. "__type__": "cc.Size",
  884. "width": 98,
  885. "height": 98
  886. },
  887. "_anchorPoint": {
  888. "__type__": "cc.Vec2",
  889. "x": 0.5,
  890. "y": 0.5
  891. },
  892. "_id": ""
  893. },
  894. {
  895. "__type__": "cc.CompPrefabInfo",
  896. "fileId": "597FrZK11BUZ33NnEUA2Wc"
  897. },
  898. {
  899. "__type__": "cc.Sprite",
  900. "_name": "",
  901. "_objFlags": 0,
  902. "__editorExtras__": {},
  903. "node": {
  904. "__id__": 29
  905. },
  906. "_enabled": true,
  907. "__prefab": {
  908. "__id__": 33
  909. },
  910. "_customMaterial": null,
  911. "_srcBlendFactor": 2,
  912. "_dstBlendFactor": 4,
  913. "_color": {
  914. "__type__": "cc.Color",
  915. "r": 255,
  916. "g": 255,
  917. "b": 255,
  918. "a": 255
  919. },
  920. "_spriteFrame": {
  921. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  922. "__expectedType__": "cc.SpriteFrame"
  923. },
  924. "_type": 0,
  925. "_fillType": 0,
  926. "_sizeMode": 1,
  927. "_fillCenter": {
  928. "__type__": "cc.Vec2",
  929. "x": 0,
  930. "y": 0
  931. },
  932. "_fillStart": 0,
  933. "_fillRange": 0,
  934. "_isTrimmedMode": true,
  935. "_useGrayscale": false,
  936. "_atlas": null,
  937. "_id": ""
  938. },
  939. {
  940. "__type__": "cc.CompPrefabInfo",
  941. "fileId": "b597jXWO9A3qpMEJAM3Xa1"
  942. },
  943. {
  944. "__type__": "cc.PrefabInfo",
  945. "root": {
  946. "__id__": 1
  947. },
  948. "asset": {
  949. "__id__": 0
  950. },
  951. "fileId": "33hh2vM6FL8LrEa8szNLpt",
  952. "instance": null,
  953. "targetOverrides": null,
  954. "nestedPrefabInstanceRoots": null
  955. },
  956. {
  957. "__type__": "cc.Node",
  958. "_name": "5",
  959. "_objFlags": 0,
  960. "__editorExtras__": {},
  961. "_parent": {
  962. "__id__": 4
  963. },
  964. "_children": [],
  965. "_active": false,
  966. "_components": [
  967. {
  968. "__id__": 36
  969. },
  970. {
  971. "__id__": 38
  972. }
  973. ],
  974. "_prefab": {
  975. "__id__": 40
  976. },
  977. "_lpos": {
  978. "__type__": "cc.Vec3",
  979. "x": 437,
  980. "y": 0,
  981. "z": 0
  982. },
  983. "_lrot": {
  984. "__type__": "cc.Quat",
  985. "x": 0,
  986. "y": 0,
  987. "z": 0,
  988. "w": 1
  989. },
  990. "_lscale": {
  991. "__type__": "cc.Vec3",
  992. "x": 1,
  993. "y": 1,
  994. "z": 1
  995. },
  996. "_mobility": 0,
  997. "_layer": 33554432,
  998. "_euler": {
  999. "__type__": "cc.Vec3",
  1000. "x": 0,
  1001. "y": 0,
  1002. "z": 0
  1003. },
  1004. "_id": ""
  1005. },
  1006. {
  1007. "__type__": "cc.UITransform",
  1008. "_name": "",
  1009. "_objFlags": 0,
  1010. "__editorExtras__": {},
  1011. "node": {
  1012. "__id__": 35
  1013. },
  1014. "_enabled": true,
  1015. "__prefab": {
  1016. "__id__": 37
  1017. },
  1018. "_contentSize": {
  1019. "__type__": "cc.Size",
  1020. "width": 98,
  1021. "height": 98
  1022. },
  1023. "_anchorPoint": {
  1024. "__type__": "cc.Vec2",
  1025. "x": 0.5,
  1026. "y": 0.5
  1027. },
  1028. "_id": ""
  1029. },
  1030. {
  1031. "__type__": "cc.CompPrefabInfo",
  1032. "fileId": "12ksFAhFdJMJKSm17RqL8E"
  1033. },
  1034. {
  1035. "__type__": "cc.Sprite",
  1036. "_name": "",
  1037. "_objFlags": 0,
  1038. "__editorExtras__": {},
  1039. "node": {
  1040. "__id__": 35
  1041. },
  1042. "_enabled": true,
  1043. "__prefab": {
  1044. "__id__": 39
  1045. },
  1046. "_customMaterial": null,
  1047. "_srcBlendFactor": 2,
  1048. "_dstBlendFactor": 4,
  1049. "_color": {
  1050. "__type__": "cc.Color",
  1051. "r": 255,
  1052. "g": 255,
  1053. "b": 255,
  1054. "a": 255
  1055. },
  1056. "_spriteFrame": {
  1057. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  1058. "__expectedType__": "cc.SpriteFrame"
  1059. },
  1060. "_type": 0,
  1061. "_fillType": 0,
  1062. "_sizeMode": 1,
  1063. "_fillCenter": {
  1064. "__type__": "cc.Vec2",
  1065. "x": 0,
  1066. "y": 0
  1067. },
  1068. "_fillStart": 0,
  1069. "_fillRange": 0,
  1070. "_isTrimmedMode": true,
  1071. "_useGrayscale": false,
  1072. "_atlas": null,
  1073. "_id": ""
  1074. },
  1075. {
  1076. "__type__": "cc.CompPrefabInfo",
  1077. "fileId": "4cU+WMUvZOwJ2ORpsHrvnt"
  1078. },
  1079. {
  1080. "__type__": "cc.PrefabInfo",
  1081. "root": {
  1082. "__id__": 1
  1083. },
  1084. "asset": {
  1085. "__id__": 0
  1086. },
  1087. "fileId": "4fRQ82/lZN/LQ9Hzub9eeZ",
  1088. "instance": null,
  1089. "targetOverrides": null,
  1090. "nestedPrefabInstanceRoots": null
  1091. },
  1092. {
  1093. "__type__": "cc.Node",
  1094. "_name": "6",
  1095. "_objFlags": 0,
  1096. "__editorExtras__": {},
  1097. "_parent": {
  1098. "__id__": 4
  1099. },
  1100. "_children": [],
  1101. "_active": false,
  1102. "_components": [
  1103. {
  1104. "__id__": 42
  1105. },
  1106. {
  1107. "__id__": 44
  1108. }
  1109. ],
  1110. "_prefab": {
  1111. "__id__": 46
  1112. },
  1113. "_lpos": {
  1114. "__type__": "cc.Vec3",
  1115. "x": 563,
  1116. "y": 0,
  1117. "z": 0
  1118. },
  1119. "_lrot": {
  1120. "__type__": "cc.Quat",
  1121. "x": 0,
  1122. "y": 0,
  1123. "z": 0,
  1124. "w": 1
  1125. },
  1126. "_lscale": {
  1127. "__type__": "cc.Vec3",
  1128. "x": 1,
  1129. "y": 1,
  1130. "z": 1
  1131. },
  1132. "_mobility": 0,
  1133. "_layer": 33554432,
  1134. "_euler": {
  1135. "__type__": "cc.Vec3",
  1136. "x": 0,
  1137. "y": 0,
  1138. "z": 0
  1139. },
  1140. "_id": ""
  1141. },
  1142. {
  1143. "__type__": "cc.UITransform",
  1144. "_name": "",
  1145. "_objFlags": 0,
  1146. "__editorExtras__": {},
  1147. "node": {
  1148. "__id__": 41
  1149. },
  1150. "_enabled": true,
  1151. "__prefab": {
  1152. "__id__": 43
  1153. },
  1154. "_contentSize": {
  1155. "__type__": "cc.Size",
  1156. "width": 98,
  1157. "height": 98
  1158. },
  1159. "_anchorPoint": {
  1160. "__type__": "cc.Vec2",
  1161. "x": 0.5,
  1162. "y": 0.5
  1163. },
  1164. "_id": ""
  1165. },
  1166. {
  1167. "__type__": "cc.CompPrefabInfo",
  1168. "fileId": "acFji3rpdKKZCiD7bDOw+w"
  1169. },
  1170. {
  1171. "__type__": "cc.Sprite",
  1172. "_name": "",
  1173. "_objFlags": 0,
  1174. "__editorExtras__": {},
  1175. "node": {
  1176. "__id__": 41
  1177. },
  1178. "_enabled": true,
  1179. "__prefab": {
  1180. "__id__": 45
  1181. },
  1182. "_customMaterial": null,
  1183. "_srcBlendFactor": 2,
  1184. "_dstBlendFactor": 4,
  1185. "_color": {
  1186. "__type__": "cc.Color",
  1187. "r": 255,
  1188. "g": 255,
  1189. "b": 255,
  1190. "a": 255
  1191. },
  1192. "_spriteFrame": {
  1193. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  1194. "__expectedType__": "cc.SpriteFrame"
  1195. },
  1196. "_type": 0,
  1197. "_fillType": 0,
  1198. "_sizeMode": 1,
  1199. "_fillCenter": {
  1200. "__type__": "cc.Vec2",
  1201. "x": 0,
  1202. "y": 0
  1203. },
  1204. "_fillStart": 0,
  1205. "_fillRange": 0,
  1206. "_isTrimmedMode": true,
  1207. "_useGrayscale": false,
  1208. "_atlas": null,
  1209. "_id": ""
  1210. },
  1211. {
  1212. "__type__": "cc.CompPrefabInfo",
  1213. "fileId": "73SXDeIwhKy52UihoJsgn6"
  1214. },
  1215. {
  1216. "__type__": "cc.PrefabInfo",
  1217. "root": {
  1218. "__id__": 1
  1219. },
  1220. "asset": {
  1221. "__id__": 0
  1222. },
  1223. "fileId": "4cKh0KbLFMGobmb3JoPJV+",
  1224. "instance": null,
  1225. "targetOverrides": null,
  1226. "nestedPrefabInstanceRoots": null
  1227. },
  1228. {
  1229. "__type__": "cc.Node",
  1230. "_name": "7",
  1231. "_objFlags": 0,
  1232. "__editorExtras__": {},
  1233. "_parent": {
  1234. "__id__": 4
  1235. },
  1236. "_children": [],
  1237. "_active": false,
  1238. "_components": [
  1239. {
  1240. "__id__": 48
  1241. },
  1242. {
  1243. "__id__": 50
  1244. }
  1245. ],
  1246. "_prefab": {
  1247. "__id__": 52
  1248. },
  1249. "_lpos": {
  1250. "__type__": "cc.Vec3",
  1251. "x": 689,
  1252. "y": 0,
  1253. "z": 0
  1254. },
  1255. "_lrot": {
  1256. "__type__": "cc.Quat",
  1257. "x": 0,
  1258. "y": 0,
  1259. "z": 0,
  1260. "w": 1
  1261. },
  1262. "_lscale": {
  1263. "__type__": "cc.Vec3",
  1264. "x": 1,
  1265. "y": 1,
  1266. "z": 1
  1267. },
  1268. "_mobility": 0,
  1269. "_layer": 33554432,
  1270. "_euler": {
  1271. "__type__": "cc.Vec3",
  1272. "x": 0,
  1273. "y": 0,
  1274. "z": 0
  1275. },
  1276. "_id": ""
  1277. },
  1278. {
  1279. "__type__": "cc.UITransform",
  1280. "_name": "",
  1281. "_objFlags": 0,
  1282. "__editorExtras__": {},
  1283. "node": {
  1284. "__id__": 47
  1285. },
  1286. "_enabled": true,
  1287. "__prefab": {
  1288. "__id__": 49
  1289. },
  1290. "_contentSize": {
  1291. "__type__": "cc.Size",
  1292. "width": 98,
  1293. "height": 98
  1294. },
  1295. "_anchorPoint": {
  1296. "__type__": "cc.Vec2",
  1297. "x": 0.5,
  1298. "y": 0.5
  1299. },
  1300. "_id": ""
  1301. },
  1302. {
  1303. "__type__": "cc.CompPrefabInfo",
  1304. "fileId": "a14fk87MxARbL0Q0tNkz2B"
  1305. },
  1306. {
  1307. "__type__": "cc.Sprite",
  1308. "_name": "",
  1309. "_objFlags": 0,
  1310. "__editorExtras__": {},
  1311. "node": {
  1312. "__id__": 47
  1313. },
  1314. "_enabled": true,
  1315. "__prefab": {
  1316. "__id__": 51
  1317. },
  1318. "_customMaterial": null,
  1319. "_srcBlendFactor": 2,
  1320. "_dstBlendFactor": 4,
  1321. "_color": {
  1322. "__type__": "cc.Color",
  1323. "r": 255,
  1324. "g": 255,
  1325. "b": 255,
  1326. "a": 255
  1327. },
  1328. "_spriteFrame": {
  1329. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  1330. "__expectedType__": "cc.SpriteFrame"
  1331. },
  1332. "_type": 0,
  1333. "_fillType": 0,
  1334. "_sizeMode": 1,
  1335. "_fillCenter": {
  1336. "__type__": "cc.Vec2",
  1337. "x": 0,
  1338. "y": 0
  1339. },
  1340. "_fillStart": 0,
  1341. "_fillRange": 0,
  1342. "_isTrimmedMode": true,
  1343. "_useGrayscale": false,
  1344. "_atlas": null,
  1345. "_id": ""
  1346. },
  1347. {
  1348. "__type__": "cc.CompPrefabInfo",
  1349. "fileId": "94YfZPQTpCS5l6CVgOcnej"
  1350. },
  1351. {
  1352. "__type__": "cc.PrefabInfo",
  1353. "root": {
  1354. "__id__": 1
  1355. },
  1356. "asset": {
  1357. "__id__": 0
  1358. },
  1359. "fileId": "58xsTHvYhIcpypN0j4QWxJ",
  1360. "instance": null,
  1361. "targetOverrides": null,
  1362. "nestedPrefabInstanceRoots": null
  1363. },
  1364. {
  1365. "__type__": "cc.Node",
  1366. "_name": "8",
  1367. "_objFlags": 0,
  1368. "__editorExtras__": {},
  1369. "_parent": {
  1370. "__id__": 4
  1371. },
  1372. "_children": [],
  1373. "_active": false,
  1374. "_components": [
  1375. {
  1376. "__id__": 54
  1377. },
  1378. {
  1379. "__id__": 56
  1380. }
  1381. ],
  1382. "_prefab": {
  1383. "__id__": 58
  1384. },
  1385. "_lpos": {
  1386. "__type__": "cc.Vec3",
  1387. "x": 815,
  1388. "y": 0,
  1389. "z": 0
  1390. },
  1391. "_lrot": {
  1392. "__type__": "cc.Quat",
  1393. "x": 0,
  1394. "y": 0,
  1395. "z": 0,
  1396. "w": 1
  1397. },
  1398. "_lscale": {
  1399. "__type__": "cc.Vec3",
  1400. "x": 1,
  1401. "y": 1,
  1402. "z": 1
  1403. },
  1404. "_mobility": 0,
  1405. "_layer": 33554432,
  1406. "_euler": {
  1407. "__type__": "cc.Vec3",
  1408. "x": 0,
  1409. "y": 0,
  1410. "z": 0
  1411. },
  1412. "_id": ""
  1413. },
  1414. {
  1415. "__type__": "cc.UITransform",
  1416. "_name": "",
  1417. "_objFlags": 0,
  1418. "__editorExtras__": {},
  1419. "node": {
  1420. "__id__": 53
  1421. },
  1422. "_enabled": true,
  1423. "__prefab": {
  1424. "__id__": 55
  1425. },
  1426. "_contentSize": {
  1427. "__type__": "cc.Size",
  1428. "width": 98,
  1429. "height": 98
  1430. },
  1431. "_anchorPoint": {
  1432. "__type__": "cc.Vec2",
  1433. "x": 0.5,
  1434. "y": 0.5
  1435. },
  1436. "_id": ""
  1437. },
  1438. {
  1439. "__type__": "cc.CompPrefabInfo",
  1440. "fileId": "b5u2LAHBdI9Im+0EOtIWvQ"
  1441. },
  1442. {
  1443. "__type__": "cc.Sprite",
  1444. "_name": "",
  1445. "_objFlags": 0,
  1446. "__editorExtras__": {},
  1447. "node": {
  1448. "__id__": 53
  1449. },
  1450. "_enabled": true,
  1451. "__prefab": {
  1452. "__id__": 57
  1453. },
  1454. "_customMaterial": null,
  1455. "_srcBlendFactor": 2,
  1456. "_dstBlendFactor": 4,
  1457. "_color": {
  1458. "__type__": "cc.Color",
  1459. "r": 255,
  1460. "g": 255,
  1461. "b": 255,
  1462. "a": 255
  1463. },
  1464. "_spriteFrame": {
  1465. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  1466. "__expectedType__": "cc.SpriteFrame"
  1467. },
  1468. "_type": 0,
  1469. "_fillType": 0,
  1470. "_sizeMode": 1,
  1471. "_fillCenter": {
  1472. "__type__": "cc.Vec2",
  1473. "x": 0,
  1474. "y": 0
  1475. },
  1476. "_fillStart": 0,
  1477. "_fillRange": 0,
  1478. "_isTrimmedMode": true,
  1479. "_useGrayscale": false,
  1480. "_atlas": null,
  1481. "_id": ""
  1482. },
  1483. {
  1484. "__type__": "cc.CompPrefabInfo",
  1485. "fileId": "65gKtUaQlNXqLvwd3Bfrko"
  1486. },
  1487. {
  1488. "__type__": "cc.PrefabInfo",
  1489. "root": {
  1490. "__id__": 1
  1491. },
  1492. "asset": {
  1493. "__id__": 0
  1494. },
  1495. "fileId": "b7gHZkjQ9DCajvE+lrwAcb",
  1496. "instance": null,
  1497. "targetOverrides": null,
  1498. "nestedPrefabInstanceRoots": null
  1499. },
  1500. {
  1501. "__type__": "cc.Node",
  1502. "_name": "9",
  1503. "_objFlags": 0,
  1504. "__editorExtras__": {},
  1505. "_parent": {
  1506. "__id__": 4
  1507. },
  1508. "_children": [],
  1509. "_active": false,
  1510. "_components": [
  1511. {
  1512. "__id__": 60
  1513. },
  1514. {
  1515. "__id__": 62
  1516. }
  1517. ],
  1518. "_prefab": {
  1519. "__id__": 64
  1520. },
  1521. "_lpos": {
  1522. "__type__": "cc.Vec3",
  1523. "x": 941,
  1524. "y": 0,
  1525. "z": 0
  1526. },
  1527. "_lrot": {
  1528. "__type__": "cc.Quat",
  1529. "x": 0,
  1530. "y": 0,
  1531. "z": 0,
  1532. "w": 1
  1533. },
  1534. "_lscale": {
  1535. "__type__": "cc.Vec3",
  1536. "x": 1,
  1537. "y": 1,
  1538. "z": 1
  1539. },
  1540. "_mobility": 0,
  1541. "_layer": 33554432,
  1542. "_euler": {
  1543. "__type__": "cc.Vec3",
  1544. "x": 0,
  1545. "y": 0,
  1546. "z": 0
  1547. },
  1548. "_id": ""
  1549. },
  1550. {
  1551. "__type__": "cc.UITransform",
  1552. "_name": "",
  1553. "_objFlags": 0,
  1554. "__editorExtras__": {},
  1555. "node": {
  1556. "__id__": 59
  1557. },
  1558. "_enabled": true,
  1559. "__prefab": {
  1560. "__id__": 61
  1561. },
  1562. "_contentSize": {
  1563. "__type__": "cc.Size",
  1564. "width": 98,
  1565. "height": 98
  1566. },
  1567. "_anchorPoint": {
  1568. "__type__": "cc.Vec2",
  1569. "x": 0.5,
  1570. "y": 0.5
  1571. },
  1572. "_id": ""
  1573. },
  1574. {
  1575. "__type__": "cc.CompPrefabInfo",
  1576. "fileId": "ddwQMrcAJECJw9TdYRrCCA"
  1577. },
  1578. {
  1579. "__type__": "cc.Sprite",
  1580. "_name": "",
  1581. "_objFlags": 0,
  1582. "__editorExtras__": {},
  1583. "node": {
  1584. "__id__": 59
  1585. },
  1586. "_enabled": true,
  1587. "__prefab": {
  1588. "__id__": 63
  1589. },
  1590. "_customMaterial": null,
  1591. "_srcBlendFactor": 2,
  1592. "_dstBlendFactor": 4,
  1593. "_color": {
  1594. "__type__": "cc.Color",
  1595. "r": 255,
  1596. "g": 255,
  1597. "b": 255,
  1598. "a": 255
  1599. },
  1600. "_spriteFrame": {
  1601. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  1602. "__expectedType__": "cc.SpriteFrame"
  1603. },
  1604. "_type": 0,
  1605. "_fillType": 0,
  1606. "_sizeMode": 1,
  1607. "_fillCenter": {
  1608. "__type__": "cc.Vec2",
  1609. "x": 0,
  1610. "y": 0
  1611. },
  1612. "_fillStart": 0,
  1613. "_fillRange": 0,
  1614. "_isTrimmedMode": true,
  1615. "_useGrayscale": false,
  1616. "_atlas": null,
  1617. "_id": ""
  1618. },
  1619. {
  1620. "__type__": "cc.CompPrefabInfo",
  1621. "fileId": "c46jSUcUFKDLp//8aVKITy"
  1622. },
  1623. {
  1624. "__type__": "cc.PrefabInfo",
  1625. "root": {
  1626. "__id__": 1
  1627. },
  1628. "asset": {
  1629. "__id__": 0
  1630. },
  1631. "fileId": "bdGHedXhhGiIdIGBEyqH8R",
  1632. "instance": null,
  1633. "targetOverrides": null,
  1634. "nestedPrefabInstanceRoots": null
  1635. },
  1636. {
  1637. "__type__": "cc.Node",
  1638. "_name": "10",
  1639. "_objFlags": 0,
  1640. "__editorExtras__": {},
  1641. "_parent": {
  1642. "__id__": 4
  1643. },
  1644. "_children": [],
  1645. "_active": false,
  1646. "_components": [
  1647. {
  1648. "__id__": 66
  1649. },
  1650. {
  1651. "__id__": 68
  1652. }
  1653. ],
  1654. "_prefab": {
  1655. "__id__": 70
  1656. },
  1657. "_lpos": {
  1658. "__type__": "cc.Vec3",
  1659. "x": 1067,
  1660. "y": 0,
  1661. "z": 0
  1662. },
  1663. "_lrot": {
  1664. "__type__": "cc.Quat",
  1665. "x": 0,
  1666. "y": 0,
  1667. "z": 0,
  1668. "w": 1
  1669. },
  1670. "_lscale": {
  1671. "__type__": "cc.Vec3",
  1672. "x": 1,
  1673. "y": 1,
  1674. "z": 1
  1675. },
  1676. "_mobility": 0,
  1677. "_layer": 33554432,
  1678. "_euler": {
  1679. "__type__": "cc.Vec3",
  1680. "x": 0,
  1681. "y": 0,
  1682. "z": 0
  1683. },
  1684. "_id": ""
  1685. },
  1686. {
  1687. "__type__": "cc.UITransform",
  1688. "_name": "",
  1689. "_objFlags": 0,
  1690. "__editorExtras__": {},
  1691. "node": {
  1692. "__id__": 65
  1693. },
  1694. "_enabled": true,
  1695. "__prefab": {
  1696. "__id__": 67
  1697. },
  1698. "_contentSize": {
  1699. "__type__": "cc.Size",
  1700. "width": 98,
  1701. "height": 98
  1702. },
  1703. "_anchorPoint": {
  1704. "__type__": "cc.Vec2",
  1705. "x": 0.5,
  1706. "y": 0.5
  1707. },
  1708. "_id": ""
  1709. },
  1710. {
  1711. "__type__": "cc.CompPrefabInfo",
  1712. "fileId": "78/qXgZABG6YXPg1GsMLsL"
  1713. },
  1714. {
  1715. "__type__": "cc.Sprite",
  1716. "_name": "",
  1717. "_objFlags": 0,
  1718. "__editorExtras__": {},
  1719. "node": {
  1720. "__id__": 65
  1721. },
  1722. "_enabled": true,
  1723. "__prefab": {
  1724. "__id__": 69
  1725. },
  1726. "_customMaterial": null,
  1727. "_srcBlendFactor": 2,
  1728. "_dstBlendFactor": 4,
  1729. "_color": {
  1730. "__type__": "cc.Color",
  1731. "r": 255,
  1732. "g": 255,
  1733. "b": 255,
  1734. "a": 255
  1735. },
  1736. "_spriteFrame": {
  1737. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  1738. "__expectedType__": "cc.SpriteFrame"
  1739. },
  1740. "_type": 0,
  1741. "_fillType": 0,
  1742. "_sizeMode": 1,
  1743. "_fillCenter": {
  1744. "__type__": "cc.Vec2",
  1745. "x": 0,
  1746. "y": 0
  1747. },
  1748. "_fillStart": 0,
  1749. "_fillRange": 0,
  1750. "_isTrimmedMode": true,
  1751. "_useGrayscale": false,
  1752. "_atlas": null,
  1753. "_id": ""
  1754. },
  1755. {
  1756. "__type__": "cc.CompPrefabInfo",
  1757. "fileId": "19LcwU8ElE3Knyt6Ifb4c8"
  1758. },
  1759. {
  1760. "__type__": "cc.PrefabInfo",
  1761. "root": {
  1762. "__id__": 1
  1763. },
  1764. "asset": {
  1765. "__id__": 0
  1766. },
  1767. "fileId": "8eBWEwbbFDA4BzBC8KwWbp",
  1768. "instance": null,
  1769. "targetOverrides": null,
  1770. "nestedPrefabInstanceRoots": null
  1771. },
  1772. {
  1773. "__type__": "cc.Node",
  1774. "_name": "11",
  1775. "_objFlags": 0,
  1776. "__editorExtras__": {},
  1777. "_parent": {
  1778. "__id__": 4
  1779. },
  1780. "_children": [],
  1781. "_active": false,
  1782. "_components": [
  1783. {
  1784. "__id__": 72
  1785. },
  1786. {
  1787. "__id__": 74
  1788. }
  1789. ],
  1790. "_prefab": {
  1791. "__id__": 76
  1792. },
  1793. "_lpos": {
  1794. "__type__": "cc.Vec3",
  1795. "x": 1445,
  1796. "y": 0,
  1797. "z": 0
  1798. },
  1799. "_lrot": {
  1800. "__type__": "cc.Quat",
  1801. "x": 0,
  1802. "y": 0,
  1803. "z": 0,
  1804. "w": 1
  1805. },
  1806. "_lscale": {
  1807. "__type__": "cc.Vec3",
  1808. "x": 1,
  1809. "y": 1,
  1810. "z": 1
  1811. },
  1812. "_mobility": 0,
  1813. "_layer": 33554432,
  1814. "_euler": {
  1815. "__type__": "cc.Vec3",
  1816. "x": 0,
  1817. "y": 0,
  1818. "z": 0
  1819. },
  1820. "_id": ""
  1821. },
  1822. {
  1823. "__type__": "cc.UITransform",
  1824. "_name": "",
  1825. "_objFlags": 0,
  1826. "__editorExtras__": {},
  1827. "node": {
  1828. "__id__": 71
  1829. },
  1830. "_enabled": true,
  1831. "__prefab": {
  1832. "__id__": 73
  1833. },
  1834. "_contentSize": {
  1835. "__type__": "cc.Size",
  1836. "width": 98,
  1837. "height": 98
  1838. },
  1839. "_anchorPoint": {
  1840. "__type__": "cc.Vec2",
  1841. "x": 0.5,
  1842. "y": 0.5
  1843. },
  1844. "_id": ""
  1845. },
  1846. {
  1847. "__type__": "cc.CompPrefabInfo",
  1848. "fileId": "bc7HGinjZBQ5nW03CQM8df"
  1849. },
  1850. {
  1851. "__type__": "cc.Sprite",
  1852. "_name": "",
  1853. "_objFlags": 0,
  1854. "__editorExtras__": {},
  1855. "node": {
  1856. "__id__": 71
  1857. },
  1858. "_enabled": true,
  1859. "__prefab": {
  1860. "__id__": 75
  1861. },
  1862. "_customMaterial": null,
  1863. "_srcBlendFactor": 2,
  1864. "_dstBlendFactor": 4,
  1865. "_color": {
  1866. "__type__": "cc.Color",
  1867. "r": 255,
  1868. "g": 255,
  1869. "b": 255,
  1870. "a": 255
  1871. },
  1872. "_spriteFrame": {
  1873. "__uuid__": "dedc996d-c421-461b-82ae-ece1a3978bf8@f9941",
  1874. "__expectedType__": "cc.SpriteFrame"
  1875. },
  1876. "_type": 0,
  1877. "_fillType": 0,
  1878. "_sizeMode": 1,
  1879. "_fillCenter": {
  1880. "__type__": "cc.Vec2",
  1881. "x": 0,
  1882. "y": 0
  1883. },
  1884. "_fillStart": 0,
  1885. "_fillRange": 0,
  1886. "_isTrimmedMode": true,
  1887. "_useGrayscale": false,
  1888. "_atlas": null,
  1889. "_id": ""
  1890. },
  1891. {
  1892. "__type__": "cc.CompPrefabInfo",
  1893. "fileId": "edoGVD7KVL/pWkEoMgZw1p"
  1894. },
  1895. {
  1896. "__type__": "cc.PrefabInfo",
  1897. "root": {
  1898. "__id__": 1
  1899. },
  1900. "asset": {
  1901. "__id__": 0
  1902. },
  1903. "fileId": "492hYErbRE2Llvj6Y/1cUY",
  1904. "instance": null,
  1905. "targetOverrides": null,
  1906. "nestedPrefabInstanceRoots": null
  1907. },
  1908. {
  1909. "__type__": "cc.UITransform",
  1910. "_name": "",
  1911. "_objFlags": 0,
  1912. "__editorExtras__": {},
  1913. "node": {
  1914. "__id__": 4
  1915. },
  1916. "_enabled": true,
  1917. "__prefab": {
  1918. "__id__": 78
  1919. },
  1920. "_contentSize": {
  1921. "__type__": "cc.Size",
  1922. "width": -8,
  1923. "height": 400
  1924. },
  1925. "_anchorPoint": {
  1926. "__type__": "cc.Vec2",
  1927. "x": 0,
  1928. "y": 0.5
  1929. },
  1930. "_id": ""
  1931. },
  1932. {
  1933. "__type__": "cc.CompPrefabInfo",
  1934. "fileId": "99zgkUGPJLaZfwMzFEBHyy"
  1935. },
  1936. {
  1937. "__type__": "cc.Layout",
  1938. "_name": "",
  1939. "_objFlags": 0,
  1940. "__editorExtras__": {},
  1941. "node": {
  1942. "__id__": 4
  1943. },
  1944. "_enabled": true,
  1945. "__prefab": {
  1946. "__id__": 80
  1947. },
  1948. "_resizeMode": 1,
  1949. "_layoutType": 1,
  1950. "_cellSize": {
  1951. "__type__": "cc.Size",
  1952. "width": 40,
  1953. "height": 40
  1954. },
  1955. "_startAxis": 0,
  1956. "_paddingLeft": 10,
  1957. "_paddingRight": 10,
  1958. "_paddingTop": 0,
  1959. "_paddingBottom": 0,
  1960. "_spacingX": 28,
  1961. "_spacingY": 0,
  1962. "_verticalDirection": 1,
  1963. "_horizontalDirection": 0,
  1964. "_constraint": 0,
  1965. "_constraintNum": 2,
  1966. "_affectedByScale": false,
  1967. "_isAlign": true,
  1968. "_id": ""
  1969. },
  1970. {
  1971. "__type__": "cc.CompPrefabInfo",
  1972. "fileId": "c9yE7X6TtCzpEr8DUzFnm6"
  1973. },
  1974. {
  1975. "__type__": "cc.PrefabInfo",
  1976. "root": {
  1977. "__id__": 1
  1978. },
  1979. "asset": {
  1980. "__id__": 0
  1981. },
  1982. "fileId": "a28JgdEzFCy611Kbz2A2Tn",
  1983. "instance": null,
  1984. "targetOverrides": null,
  1985. "nestedPrefabInstanceRoots": null
  1986. },
  1987. {
  1988. "__type__": "cc.UITransform",
  1989. "_name": "",
  1990. "_objFlags": 0,
  1991. "__editorExtras__": {},
  1992. "node": {
  1993. "__id__": 3
  1994. },
  1995. "_enabled": true,
  1996. "__prefab": {
  1997. "__id__": 83
  1998. },
  1999. "_contentSize": {
  2000. "__type__": "cc.Size",
  2001. "width": 640,
  2002. "height": 160
  2003. },
  2004. "_anchorPoint": {
  2005. "__type__": "cc.Vec2",
  2006. "x": 0.5,
  2007. "y": 0.5
  2008. },
  2009. "_id": ""
  2010. },
  2011. {
  2012. "__type__": "cc.CompPrefabInfo",
  2013. "fileId": "a9vY/wsnVLPZQq3H/dn60q"
  2014. },
  2015. {
  2016. "__type__": "cc.Mask",
  2017. "_name": "",
  2018. "_objFlags": 0,
  2019. "__editorExtras__": {},
  2020. "node": {
  2021. "__id__": 3
  2022. },
  2023. "_enabled": true,
  2024. "__prefab": {
  2025. "__id__": 85
  2026. },
  2027. "_type": 0,
  2028. "_inverted": false,
  2029. "_segments": 64,
  2030. "_alphaThreshold": 0.1,
  2031. "_id": ""
  2032. },
  2033. {
  2034. "__type__": "cc.CompPrefabInfo",
  2035. "fileId": "b2mkqqCVFD0qXtt/FPP0XA"
  2036. },
  2037. {
  2038. "__type__": "cc.Graphics",
  2039. "_name": "",
  2040. "_objFlags": 0,
  2041. "__editorExtras__": {},
  2042. "node": {
  2043. "__id__": 3
  2044. },
  2045. "_enabled": true,
  2046. "__prefab": {
  2047. "__id__": 87
  2048. },
  2049. "_customMaterial": null,
  2050. "_srcBlendFactor": 2,
  2051. "_dstBlendFactor": 4,
  2052. "_color": {
  2053. "__type__": "cc.Color",
  2054. "r": 255,
  2055. "g": 255,
  2056. "b": 255,
  2057. "a": 255
  2058. },
  2059. "_lineWidth": 1,
  2060. "_strokeColor": {
  2061. "__type__": "cc.Color",
  2062. "r": 0,
  2063. "g": 0,
  2064. "b": 0,
  2065. "a": 255
  2066. },
  2067. "_lineJoin": 2,
  2068. "_lineCap": 0,
  2069. "_fillColor": {
  2070. "__type__": "cc.Color",
  2071. "r": 255,
  2072. "g": 255,
  2073. "b": 255,
  2074. "a": 0
  2075. },
  2076. "_miterLimit": 10,
  2077. "_id": ""
  2078. },
  2079. {
  2080. "__type__": "cc.CompPrefabInfo",
  2081. "fileId": "82ZFYTYBtA04q0iMw5DxAN"
  2082. },
  2083. {
  2084. "__type__": "cc.PrefabInfo",
  2085. "root": {
  2086. "__id__": 1
  2087. },
  2088. "asset": {
  2089. "__id__": 0
  2090. },
  2091. "fileId": "d5RcNhU6RHO7h2GjzsVHVj",
  2092. "instance": null,
  2093. "targetOverrides": null,
  2094. "nestedPrefabInstanceRoots": null
  2095. },
  2096. {
  2097. "__type__": "cc.UITransform",
  2098. "_name": "",
  2099. "_objFlags": 0,
  2100. "__editorExtras__": {},
  2101. "node": {
  2102. "__id__": 2
  2103. },
  2104. "_enabled": true,
  2105. "__prefab": {
  2106. "__id__": 90
  2107. },
  2108. "_contentSize": {
  2109. "__type__": "cc.Size",
  2110. "width": 685,
  2111. "height": 166
  2112. },
  2113. "_anchorPoint": {
  2114. "__type__": "cc.Vec2",
  2115. "x": 0.5,
  2116. "y": 0.5
  2117. },
  2118. "_id": ""
  2119. },
  2120. {
  2121. "__type__": "cc.CompPrefabInfo",
  2122. "fileId": "d56oOuv5VAh42g88apSdKT"
  2123. },
  2124. {
  2125. "__type__": "cc.Sprite",
  2126. "_name": "",
  2127. "_objFlags": 0,
  2128. "__editorExtras__": {},
  2129. "node": {
  2130. "__id__": 2
  2131. },
  2132. "_enabled": true,
  2133. "__prefab": {
  2134. "__id__": 92
  2135. },
  2136. "_customMaterial": null,
  2137. "_srcBlendFactor": 2,
  2138. "_dstBlendFactor": 4,
  2139. "_color": {
  2140. "__type__": "cc.Color",
  2141. "r": 255,
  2142. "g": 255,
  2143. "b": 255,
  2144. "a": 255
  2145. },
  2146. "_spriteFrame": {
  2147. "__uuid__": "0efdb1bb-4ad8-466f-a889-81995e08a571@f9941",
  2148. "__expectedType__": "cc.SpriteFrame"
  2149. },
  2150. "_type": 1,
  2151. "_fillType": 0,
  2152. "_sizeMode": 2,
  2153. "_fillCenter": {
  2154. "__type__": "cc.Vec2",
  2155. "x": 0,
  2156. "y": 0
  2157. },
  2158. "_fillStart": 0,
  2159. "_fillRange": 0,
  2160. "_isTrimmedMode": true,
  2161. "_useGrayscale": false,
  2162. "_atlas": null,
  2163. "_id": ""
  2164. },
  2165. {
  2166. "__type__": "cc.CompPrefabInfo",
  2167. "fileId": "1c8iEX26FCF66StqFamjC5"
  2168. },
  2169. {
  2170. "__type__": "cc.ScrollView",
  2171. "_name": "",
  2172. "_objFlags": 0,
  2173. "__editorExtras__": {},
  2174. "node": {
  2175. "__id__": 2
  2176. },
  2177. "_enabled": true,
  2178. "__prefab": {
  2179. "__id__": 94
  2180. },
  2181. "bounceDuration": 0.23,
  2182. "brake": 0.75,
  2183. "elastic": true,
  2184. "inertia": true,
  2185. "horizontal": true,
  2186. "vertical": false,
  2187. "cancelInnerEvents": true,
  2188. "scrollEvents": [],
  2189. "_content": {
  2190. "__id__": 4
  2191. },
  2192. "_horizontalScrollBar": null,
  2193. "_verticalScrollBar": null,
  2194. "_id": ""
  2195. },
  2196. {
  2197. "__type__": "cc.CompPrefabInfo",
  2198. "fileId": "45dB5RBQRHSaoVZ3elTJZZ"
  2199. },
  2200. {
  2201. "__type__": "cc.Widget",
  2202. "_name": "",
  2203. "_objFlags": 0,
  2204. "__editorExtras__": {},
  2205. "node": {
  2206. "__id__": 2
  2207. },
  2208. "_enabled": true,
  2209. "__prefab": {
  2210. "__id__": 96
  2211. },
  2212. "_alignFlags": 4,
  2213. "_target": null,
  2214. "_left": 0,
  2215. "_right": 0,
  2216. "_top": 0,
  2217. "_bottom": 135,
  2218. "_horizontalCenter": 0,
  2219. "_verticalCenter": 0,
  2220. "_isAbsLeft": true,
  2221. "_isAbsRight": true,
  2222. "_isAbsTop": true,
  2223. "_isAbsBottom": true,
  2224. "_isAbsHorizontalCenter": true,
  2225. "_isAbsVerticalCenter": true,
  2226. "_originalWidth": 0,
  2227. "_originalHeight": 0,
  2228. "_alignMode": 2,
  2229. "_lockFlags": 0,
  2230. "_id": ""
  2231. },
  2232. {
  2233. "__type__": "cc.CompPrefabInfo",
  2234. "fileId": "e78gPvJcdDs4ak9k7bWJov"
  2235. },
  2236. {
  2237. "__type__": "cc.PrefabInfo",
  2238. "root": {
  2239. "__id__": 1
  2240. },
  2241. "asset": {
  2242. "__id__": 0
  2243. },
  2244. "fileId": "a4jbH/YNpNkIAekMSbD0Vz",
  2245. "instance": null,
  2246. "targetOverrides": null,
  2247. "nestedPrefabInstanceRoots": null
  2248. },
  2249. {
  2250. "__type__": "cc.Node",
  2251. "_name": "mask",
  2252. "_objFlags": 0,
  2253. "__editorExtras__": {},
  2254. "_parent": {
  2255. "__id__": 1
  2256. },
  2257. "_children": [
  2258. {
  2259. "__id__": 99
  2260. }
  2261. ],
  2262. "_active": true,
  2263. "_components": [
  2264. {
  2265. "__id__": 255
  2266. },
  2267. {
  2268. "__id__": 257
  2269. },
  2270. {
  2271. "__id__": 259
  2272. },
  2273. {
  2274. "__id__": 261
  2275. },
  2276. {
  2277. "__id__": 263
  2278. }
  2279. ],
  2280. "_prefab": {
  2281. "__id__": 265
  2282. },
  2283. "_lpos": {
  2284. "__type__": "cc.Vec3",
  2285. "x": 0,
  2286. "y": 56,
  2287. "z": 0
  2288. },
  2289. "_lrot": {
  2290. "__type__": "cc.Quat",
  2291. "x": 0,
  2292. "y": 0,
  2293. "z": 0,
  2294. "w": 1
  2295. },
  2296. "_lscale": {
  2297. "__type__": "cc.Vec3",
  2298. "x": 1,
  2299. "y": 1,
  2300. "z": 1
  2301. },
  2302. "_mobility": 0,
  2303. "_layer": 33554432,
  2304. "_euler": {
  2305. "__type__": "cc.Vec3",
  2306. "x": 0,
  2307. "y": 0,
  2308. "z": 0
  2309. },
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.Node",
  2314. "_name": "bg",
  2315. "_objFlags": 0,
  2316. "__editorExtras__": {},
  2317. "_parent": {
  2318. "__id__": 98
  2319. },
  2320. "_children": [
  2321. {
  2322. "__id__": 100
  2323. },
  2324. {
  2325. "__id__": 106
  2326. },
  2327. {
  2328. "__id__": 112
  2329. },
  2330. {
  2331. "__id__": 118
  2332. },
  2333. {
  2334. "__id__": 124
  2335. },
  2336. {
  2337. "__id__": 132
  2338. },
  2339. {
  2340. "__id__": 142
  2341. },
  2342. {
  2343. "__id__": 152
  2344. },
  2345. {
  2346. "__id__": 162
  2347. },
  2348. {
  2349. "__id__": 172
  2350. },
  2351. {
  2352. "__id__": 182
  2353. },
  2354. {
  2355. "__id__": 192
  2356. },
  2357. {
  2358. "__id__": 202
  2359. },
  2360. {
  2361. "__id__": 212
  2362. },
  2363. {
  2364. "__id__": 222
  2365. },
  2366. {
  2367. "__id__": 232
  2368. },
  2369. {
  2370. "__id__": 242
  2371. }
  2372. ],
  2373. "_active": true,
  2374. "_components": [
  2375. {
  2376. "__id__": 250
  2377. },
  2378. {
  2379. "__id__": 252
  2380. }
  2381. ],
  2382. "_prefab": {
  2383. "__id__": 254
  2384. },
  2385. "_lpos": {
  2386. "__type__": "cc.Vec3",
  2387. "x": 0,
  2388. "y": 0,
  2389. "z": 0
  2390. },
  2391. "_lrot": {
  2392. "__type__": "cc.Quat",
  2393. "x": 0,
  2394. "y": 0,
  2395. "z": 0,
  2396. "w": 1
  2397. },
  2398. "_lscale": {
  2399. "__type__": "cc.Vec3",
  2400. "x": 1,
  2401. "y": 1,
  2402. "z": 1
  2403. },
  2404. "_mobility": 0,
  2405. "_layer": 33554432,
  2406. "_euler": {
  2407. "__type__": "cc.Vec3",
  2408. "x": 0,
  2409. "y": 0,
  2410. "z": 0
  2411. },
  2412. "_id": ""
  2413. },
  2414. {
  2415. "__type__": "cc.Node",
  2416. "_name": "7.1.2_qiziy",
  2417. "_objFlags": 0,
  2418. "__editorExtras__": {},
  2419. "_parent": {
  2420. "__id__": 99
  2421. },
  2422. "_children": [],
  2423. "_active": true,
  2424. "_components": [
  2425. {
  2426. "__id__": 101
  2427. },
  2428. {
  2429. "__id__": 103
  2430. }
  2431. ],
  2432. "_prefab": {
  2433. "__id__": 105
  2434. },
  2435. "_lpos": {
  2436. "__type__": "cc.Vec3",
  2437. "x": -115.246,
  2438. "y": -47.665,
  2439. "z": 0
  2440. },
  2441. "_lrot": {
  2442. "__type__": "cc.Quat",
  2443. "x": 0,
  2444. "y": 0,
  2445. "z": -0.04972137386865785,
  2446. "w": 0.9987631275635946
  2447. },
  2448. "_lscale": {
  2449. "__type__": "cc.Vec3",
  2450. "x": 1,
  2451. "y": 1,
  2452. "z": 1
  2453. },
  2454. "_mobility": 0,
  2455. "_layer": 33554432,
  2456. "_euler": {
  2457. "__type__": "cc.Vec3",
  2458. "x": 0,
  2459. "y": 0,
  2460. "z": -5.7
  2461. },
  2462. "_id": ""
  2463. },
  2464. {
  2465. "__type__": "cc.UITransform",
  2466. "_name": "",
  2467. "_objFlags": 0,
  2468. "__editorExtras__": {},
  2469. "node": {
  2470. "__id__": 100
  2471. },
  2472. "_enabled": true,
  2473. "__prefab": {
  2474. "__id__": 102
  2475. },
  2476. "_contentSize": {
  2477. "__type__": "cc.Size",
  2478. "width": 100,
  2479. "height": 100
  2480. },
  2481. "_anchorPoint": {
  2482. "__type__": "cc.Vec2",
  2483. "x": 0.5,
  2484. "y": 0.5
  2485. },
  2486. "_id": ""
  2487. },
  2488. {
  2489. "__type__": "cc.CompPrefabInfo",
  2490. "fileId": "adUj8jB/5CI4X14dr3OYgr"
  2491. },
  2492. {
  2493. "__type__": "sp.Skeleton",
  2494. "_name": "",
  2495. "_objFlags": 0,
  2496. "__editorExtras__": {},
  2497. "node": {
  2498. "__id__": 100
  2499. },
  2500. "_enabled": true,
  2501. "__prefab": {
  2502. "__id__": 104
  2503. },
  2504. "_customMaterial": null,
  2505. "_srcBlendFactor": 2,
  2506. "_dstBlendFactor": 4,
  2507. "_color": {
  2508. "__type__": "cc.Color",
  2509. "r": 255,
  2510. "g": 255,
  2511. "b": 255,
  2512. "a": 255
  2513. },
  2514. "_skeletonData": {
  2515. "__uuid__": "84f1d052-4910-44c5-931c-318b1b2e5d48",
  2516. "__expectedType__": "sp.SkeletonData"
  2517. },
  2518. "defaultSkin": "default",
  2519. "defaultAnimation": "",
  2520. "_premultipliedAlpha": true,
  2521. "_timeScale": 1,
  2522. "_preCacheMode": 0,
  2523. "_cacheMode": 0,
  2524. "_sockets": [],
  2525. "_useTint": false,
  2526. "_debugMesh": false,
  2527. "_debugBones": false,
  2528. "_debugSlots": false,
  2529. "_enableBatch": false,
  2530. "loop": true,
  2531. "_id": ""
  2532. },
  2533. {
  2534. "__type__": "cc.CompPrefabInfo",
  2535. "fileId": "c1dn9exElAzaFR5FDwLj5c"
  2536. },
  2537. {
  2538. "__type__": "cc.PrefabInfo",
  2539. "root": {
  2540. "__id__": 1
  2541. },
  2542. "asset": {
  2543. "__id__": 0
  2544. },
  2545. "fileId": "ebn3vdtMhE4aWUQ+PEBMrK",
  2546. "instance": null,
  2547. "targetOverrides": null,
  2548. "nestedPrefabInstanceRoots": null
  2549. },
  2550. {
  2551. "__type__": "cc.Node",
  2552. "_name": "7.1.2_baiyi",
  2553. "_objFlags": 0,
  2554. "__editorExtras__": {},
  2555. "_parent": {
  2556. "__id__": 99
  2557. },
  2558. "_children": [],
  2559. "_active": true,
  2560. "_components": [
  2561. {
  2562. "__id__": 107
  2563. },
  2564. {
  2565. "__id__": 109
  2566. }
  2567. ],
  2568. "_prefab": {
  2569. "__id__": 111
  2570. },
  2571. "_lpos": {
  2572. "__type__": "cc.Vec3",
  2573. "x": 174.797,
  2574. "y": -109.275,
  2575. "z": 0
  2576. },
  2577. "_lrot": {
  2578. "__type__": "cc.Quat",
  2579. "x": 0,
  2580. "y": 0,
  2581. "z": 0,
  2582. "w": 1
  2583. },
  2584. "_lscale": {
  2585. "__type__": "cc.Vec3",
  2586. "x": 1,
  2587. "y": 1,
  2588. "z": 1
  2589. },
  2590. "_mobility": 0,
  2591. "_layer": 33554432,
  2592. "_euler": {
  2593. "__type__": "cc.Vec3",
  2594. "x": 0,
  2595. "y": 0,
  2596. "z": 0
  2597. },
  2598. "_id": ""
  2599. },
  2600. {
  2601. "__type__": "cc.UITransform",
  2602. "_name": "",
  2603. "_objFlags": 0,
  2604. "__editorExtras__": {},
  2605. "node": {
  2606. "__id__": 106
  2607. },
  2608. "_enabled": true,
  2609. "__prefab": {
  2610. "__id__": 108
  2611. },
  2612. "_contentSize": {
  2613. "__type__": "cc.Size",
  2614. "width": 100,
  2615. "height": 100
  2616. },
  2617. "_anchorPoint": {
  2618. "__type__": "cc.Vec2",
  2619. "x": 0.5,
  2620. "y": 0.5
  2621. },
  2622. "_id": ""
  2623. },
  2624. {
  2625. "__type__": "cc.CompPrefabInfo",
  2626. "fileId": "0bOpfSXoVIXbljC9XL1Ep3"
  2627. },
  2628. {
  2629. "__type__": "sp.Skeleton",
  2630. "_name": "",
  2631. "_objFlags": 0,
  2632. "__editorExtras__": {},
  2633. "node": {
  2634. "__id__": 106
  2635. },
  2636. "_enabled": true,
  2637. "__prefab": {
  2638. "__id__": 110
  2639. },
  2640. "_customMaterial": null,
  2641. "_srcBlendFactor": 2,
  2642. "_dstBlendFactor": 4,
  2643. "_color": {
  2644. "__type__": "cc.Color",
  2645. "r": 255,
  2646. "g": 255,
  2647. "b": 255,
  2648. "a": 255
  2649. },
  2650. "_skeletonData": {
  2651. "__uuid__": "39f1e363-c5c3-4cab-8cbf-a743a1382da1",
  2652. "__expectedType__": "sp.SkeletonData"
  2653. },
  2654. "defaultSkin": "default",
  2655. "defaultAnimation": "animation",
  2656. "_premultipliedAlpha": true,
  2657. "_timeScale": 1,
  2658. "_preCacheMode": 0,
  2659. "_cacheMode": 0,
  2660. "_sockets": [],
  2661. "_useTint": false,
  2662. "_debugMesh": false,
  2663. "_debugBones": false,
  2664. "_debugSlots": false,
  2665. "_enableBatch": false,
  2666. "loop": true,
  2667. "_id": ""
  2668. },
  2669. {
  2670. "__type__": "cc.CompPrefabInfo",
  2671. "fileId": "e4NLFGxzBKzYbeco2w59Vl"
  2672. },
  2673. {
  2674. "__type__": "cc.PrefabInfo",
  2675. "root": {
  2676. "__id__": 1
  2677. },
  2678. "asset": {
  2679. "__id__": 0
  2680. },
  2681. "fileId": "0avmSuOIVKbqXqTubw3eD/",
  2682. "instance": null,
  2683. "targetOverrides": null,
  2684. "nestedPrefabInstanceRoots": null
  2685. },
  2686. {
  2687. "__type__": "cc.Node",
  2688. "_name": "7.1.2_huiyi",
  2689. "_objFlags": 0,
  2690. "__editorExtras__": {},
  2691. "_parent": {
  2692. "__id__": 99
  2693. },
  2694. "_children": [],
  2695. "_active": true,
  2696. "_components": [
  2697. {
  2698. "__id__": 113
  2699. },
  2700. {
  2701. "__id__": 115
  2702. }
  2703. ],
  2704. "_prefab": {
  2705. "__id__": 117
  2706. },
  2707. "_lpos": {
  2708. "__type__": "cc.Vec3",
  2709. "x": 16.291,
  2710. "y": 31.974,
  2711. "z": 0
  2712. },
  2713. "_lrot": {
  2714. "__type__": "cc.Quat",
  2715. "x": 0,
  2716. "y": 0,
  2717. "z": 0,
  2718. "w": 1
  2719. },
  2720. "_lscale": {
  2721. "__type__": "cc.Vec3",
  2722. "x": 1,
  2723. "y": 1,
  2724. "z": 1
  2725. },
  2726. "_mobility": 0,
  2727. "_layer": 33554432,
  2728. "_euler": {
  2729. "__type__": "cc.Vec3",
  2730. "x": 0,
  2731. "y": 0,
  2732. "z": 0
  2733. },
  2734. "_id": ""
  2735. },
  2736. {
  2737. "__type__": "cc.UITransform",
  2738. "_name": "",
  2739. "_objFlags": 0,
  2740. "__editorExtras__": {},
  2741. "node": {
  2742. "__id__": 112
  2743. },
  2744. "_enabled": true,
  2745. "__prefab": {
  2746. "__id__": 114
  2747. },
  2748. "_contentSize": {
  2749. "__type__": "cc.Size",
  2750. "width": 100,
  2751. "height": 100
  2752. },
  2753. "_anchorPoint": {
  2754. "__type__": "cc.Vec2",
  2755. "x": 0.5,
  2756. "y": 0.5
  2757. },
  2758. "_id": ""
  2759. },
  2760. {
  2761. "__type__": "cc.CompPrefabInfo",
  2762. "fileId": "e0zoIPHLZON5l58BtbSaW2"
  2763. },
  2764. {
  2765. "__type__": "sp.Skeleton",
  2766. "_name": "",
  2767. "_objFlags": 0,
  2768. "__editorExtras__": {},
  2769. "node": {
  2770. "__id__": 112
  2771. },
  2772. "_enabled": true,
  2773. "__prefab": {
  2774. "__id__": 116
  2775. },
  2776. "_customMaterial": null,
  2777. "_srcBlendFactor": 2,
  2778. "_dstBlendFactor": 4,
  2779. "_color": {
  2780. "__type__": "cc.Color",
  2781. "r": 255,
  2782. "g": 255,
  2783. "b": 255,
  2784. "a": 255
  2785. },
  2786. "_skeletonData": {
  2787. "__uuid__": "c2ac7409-d3bc-4e5b-9e06-d4d79a41ceb5",
  2788. "__expectedType__": "sp.SkeletonData"
  2789. },
  2790. "defaultSkin": "default",
  2791. "defaultAnimation": "animation",
  2792. "_premultipliedAlpha": true,
  2793. "_timeScale": 1,
  2794. "_preCacheMode": 0,
  2795. "_cacheMode": 0,
  2796. "_sockets": [],
  2797. "_useTint": false,
  2798. "_debugMesh": false,
  2799. "_debugBones": false,
  2800. "_debugSlots": false,
  2801. "_enableBatch": false,
  2802. "loop": true,
  2803. "_id": ""
  2804. },
  2805. {
  2806. "__type__": "cc.CompPrefabInfo",
  2807. "fileId": "b1qGeUMGlGT6KKLH2ACnbk"
  2808. },
  2809. {
  2810. "__type__": "cc.PrefabInfo",
  2811. "root": {
  2812. "__id__": 1
  2813. },
  2814. "asset": {
  2815. "__id__": 0
  2816. },
  2817. "fileId": "73qWXeJX9CBqt6eSTph6f/",
  2818. "instance": null,
  2819. "targetOverrides": null,
  2820. "nestedPrefabInstanceRoots": null
  2821. },
  2822. {
  2823. "__type__": "cc.Node",
  2824. "_name": "7.1.2_qiziz",
  2825. "_objFlags": 0,
  2826. "__editorExtras__": {},
  2827. "_parent": {
  2828. "__id__": 99
  2829. },
  2830. "_children": [],
  2831. "_active": true,
  2832. "_components": [
  2833. {
  2834. "__id__": 119
  2835. },
  2836. {
  2837. "__id__": 121
  2838. }
  2839. ],
  2840. "_prefab": {
  2841. "__id__": 123
  2842. },
  2843. "_lpos": {
  2844. "__type__": "cc.Vec3",
  2845. "x": 15.845,
  2846. "y": 31.691,
  2847. "z": 0
  2848. },
  2849. "_lrot": {
  2850. "__type__": "cc.Quat",
  2851. "x": 0,
  2852. "y": 0,
  2853. "z": 0,
  2854. "w": 1
  2855. },
  2856. "_lscale": {
  2857. "__type__": "cc.Vec3",
  2858. "x": 1,
  2859. "y": 1,
  2860. "z": 1
  2861. },
  2862. "_mobility": 0,
  2863. "_layer": 33554432,
  2864. "_euler": {
  2865. "__type__": "cc.Vec3",
  2866. "x": 0,
  2867. "y": 0,
  2868. "z": 0
  2869. },
  2870. "_id": ""
  2871. },
  2872. {
  2873. "__type__": "cc.UITransform",
  2874. "_name": "",
  2875. "_objFlags": 0,
  2876. "__editorExtras__": {},
  2877. "node": {
  2878. "__id__": 118
  2879. },
  2880. "_enabled": true,
  2881. "__prefab": {
  2882. "__id__": 120
  2883. },
  2884. "_contentSize": {
  2885. "__type__": "cc.Size",
  2886. "width": 100,
  2887. "height": 100
  2888. },
  2889. "_anchorPoint": {
  2890. "__type__": "cc.Vec2",
  2891. "x": 0.5,
  2892. "y": 0.5
  2893. },
  2894. "_id": ""
  2895. },
  2896. {
  2897. "__type__": "cc.CompPrefabInfo",
  2898. "fileId": "fb9IZf/c1KYLwAdjKw3KYB"
  2899. },
  2900. {
  2901. "__type__": "sp.Skeleton",
  2902. "_name": "",
  2903. "_objFlags": 0,
  2904. "__editorExtras__": {},
  2905. "node": {
  2906. "__id__": 118
  2907. },
  2908. "_enabled": true,
  2909. "__prefab": {
  2910. "__id__": 122
  2911. },
  2912. "_customMaterial": null,
  2913. "_srcBlendFactor": 2,
  2914. "_dstBlendFactor": 4,
  2915. "_color": {
  2916. "__type__": "cc.Color",
  2917. "r": 255,
  2918. "g": 255,
  2919. "b": 255,
  2920. "a": 255
  2921. },
  2922. "_skeletonData": {
  2923. "__uuid__": "319cb43c-3bff-4837-8a27-3398e13e3243",
  2924. "__expectedType__": "sp.SkeletonData"
  2925. },
  2926. "defaultSkin": "default",
  2927. "defaultAnimation": "animation",
  2928. "_premultipliedAlpha": true,
  2929. "_timeScale": 1,
  2930. "_preCacheMode": 0,
  2931. "_cacheMode": 0,
  2932. "_sockets": [],
  2933. "_useTint": false,
  2934. "_debugMesh": false,
  2935. "_debugBones": false,
  2936. "_debugSlots": false,
  2937. "_enableBatch": false,
  2938. "loop": true,
  2939. "_id": ""
  2940. },
  2941. {
  2942. "__type__": "cc.CompPrefabInfo",
  2943. "fileId": "ff6v43YlpDH6SLRq+Tl/r6"
  2944. },
  2945. {
  2946. "__type__": "cc.PrefabInfo",
  2947. "root": {
  2948. "__id__": 1
  2949. },
  2950. "asset": {
  2951. "__id__": 0
  2952. },
  2953. "fileId": "b7WU5Dc5xFI5bNGGpKOsK5",
  2954. "instance": null,
  2955. "targetOverrides": null,
  2956. "nestedPrefabInstanceRoots": null
  2957. },
  2958. {
  2959. "__type__": "cc.Node",
  2960. "_name": "zhangai",
  2961. "_objFlags": 0,
  2962. "__editorExtras__": {},
  2963. "_parent": {
  2964. "__id__": 99
  2965. },
  2966. "_children": [],
  2967. "_active": true,
  2968. "_components": [
  2969. {
  2970. "__id__": 125
  2971. },
  2972. {
  2973. "__id__": 127
  2974. },
  2975. {
  2976. "__id__": 129
  2977. }
  2978. ],
  2979. "_prefab": {
  2980. "__id__": 131
  2981. },
  2982. "_lpos": {
  2983. "__type__": "cc.Vec3",
  2984. "x": 434.3,
  2985. "y": 90.628,
  2986. "z": 0
  2987. },
  2988. "_lrot": {
  2989. "__type__": "cc.Quat",
  2990. "x": 0,
  2991. "y": 0,
  2992. "z": 0,
  2993. "w": 1
  2994. },
  2995. "_lscale": {
  2996. "__type__": "cc.Vec3",
  2997. "x": 1,
  2998. "y": 1,
  2999. "z": 1
  3000. },
  3001. "_mobility": 0,
  3002. "_layer": 33554432,
  3003. "_euler": {
  3004. "__type__": "cc.Vec3",
  3005. "x": 0,
  3006. "y": 0,
  3007. "z": 0
  3008. },
  3009. "_id": ""
  3010. },
  3011. {
  3012. "__type__": "cc.UITransform",
  3013. "_name": "",
  3014. "_objFlags": 0,
  3015. "__editorExtras__": {},
  3016. "node": {
  3017. "__id__": 124
  3018. },
  3019. "_enabled": true,
  3020. "__prefab": {
  3021. "__id__": 126
  3022. },
  3023. "_contentSize": {
  3024. "__type__": "cc.Size",
  3025. "width": 181,
  3026. "height": 321
  3027. },
  3028. "_anchorPoint": {
  3029. "__type__": "cc.Vec2",
  3030. "x": 0.5,
  3031. "y": 0.5
  3032. },
  3033. "_id": ""
  3034. },
  3035. {
  3036. "__type__": "cc.CompPrefabInfo",
  3037. "fileId": "eeX/v+sblIoo198ZZ8cOT7"
  3038. },
  3039. {
  3040. "__type__": "cc.Sprite",
  3041. "_name": "",
  3042. "_objFlags": 0,
  3043. "__editorExtras__": {},
  3044. "node": {
  3045. "__id__": 124
  3046. },
  3047. "_enabled": true,
  3048. "__prefab": {
  3049. "__id__": 128
  3050. },
  3051. "_customMaterial": null,
  3052. "_srcBlendFactor": 2,
  3053. "_dstBlendFactor": 4,
  3054. "_color": {
  3055. "__type__": "cc.Color",
  3056. "r": 255,
  3057. "g": 255,
  3058. "b": 255,
  3059. "a": 255
  3060. },
  3061. "_spriteFrame": {
  3062. "__uuid__": "0fc690ec-56c3-4ab4-8410-ffb07c43d6a1@f9941",
  3063. "__expectedType__": "cc.SpriteFrame"
  3064. },
  3065. "_type": 0,
  3066. "_fillType": 0,
  3067. "_sizeMode": 1,
  3068. "_fillCenter": {
  3069. "__type__": "cc.Vec2",
  3070. "x": 0,
  3071. "y": 0
  3072. },
  3073. "_fillStart": 0,
  3074. "_fillRange": 0,
  3075. "_isTrimmedMode": true,
  3076. "_useGrayscale": false,
  3077. "_atlas": null,
  3078. "_id": ""
  3079. },
  3080. {
  3081. "__type__": "cc.CompPrefabInfo",
  3082. "fileId": "60xnHL0udASoIvqMrnZJWy"
  3083. },
  3084. {
  3085. "__type__": "cc.UIOpacity",
  3086. "_name": "",
  3087. "_objFlags": 0,
  3088. "__editorExtras__": {},
  3089. "node": {
  3090. "__id__": 124
  3091. },
  3092. "_enabled": true,
  3093. "__prefab": {
  3094. "__id__": 130
  3095. },
  3096. "_opacity": 255,
  3097. "_id": ""
  3098. },
  3099. {
  3100. "__type__": "cc.CompPrefabInfo",
  3101. "fileId": "c7ZqBYwBpPhbCCMIFQIBQo"
  3102. },
  3103. {
  3104. "__type__": "cc.PrefabInfo",
  3105. "root": {
  3106. "__id__": 1
  3107. },
  3108. "asset": {
  3109. "__id__": 0
  3110. },
  3111. "fileId": "88WHv1dTlP4rmgGjKh+y88",
  3112. "instance": null,
  3113. "targetOverrides": null,
  3114. "nestedPrefabInstanceRoots": null
  3115. },
  3116. {
  3117. "__type__": "cc.Node",
  3118. "_name": "item_0",
  3119. "_objFlags": 0,
  3120. "__editorExtras__": {},
  3121. "_parent": {
  3122. "__id__": 99
  3123. },
  3124. "_children": [],
  3125. "_active": false,
  3126. "_components": [
  3127. {
  3128. "__id__": 133
  3129. },
  3130. {
  3131. "__id__": 135
  3132. },
  3133. {
  3134. "__id__": 137
  3135. },
  3136. {
  3137. "__id__": 139
  3138. }
  3139. ],
  3140. "_prefab": {
  3141. "__id__": 141
  3142. },
  3143. "_lpos": {
  3144. "__type__": "cc.Vec3",
  3145. "x": 438.38,
  3146. "y": 79.121,
  3147. "z": 0
  3148. },
  3149. "_lrot": {
  3150. "__type__": "cc.Quat",
  3151. "x": 0,
  3152. "y": 0,
  3153. "z": 0,
  3154. "w": 1
  3155. },
  3156. "_lscale": {
  3157. "__type__": "cc.Vec3",
  3158. "x": 1.5,
  3159. "y": 1.5,
  3160. "z": 1
  3161. },
  3162. "_mobility": 0,
  3163. "_layer": 33554432,
  3164. "_euler": {
  3165. "__type__": "cc.Vec3",
  3166. "x": 0,
  3167. "y": 0,
  3168. "z": 0
  3169. },
  3170. "_id": ""
  3171. },
  3172. {
  3173. "__type__": "cc.UITransform",
  3174. "_name": "",
  3175. "_objFlags": 0,
  3176. "__editorExtras__": {},
  3177. "node": {
  3178. "__id__": 132
  3179. },
  3180. "_enabled": true,
  3181. "__prefab": {
  3182. "__id__": 134
  3183. },
  3184. "_contentSize": {
  3185. "__type__": "cc.Size",
  3186. "width": 100,
  3187. "height": 100
  3188. },
  3189. "_anchorPoint": {
  3190. "__type__": "cc.Vec2",
  3191. "x": 0.5,
  3192. "y": 0.5
  3193. },
  3194. "_id": ""
  3195. },
  3196. {
  3197. "__type__": "cc.CompPrefabInfo",
  3198. "fileId": "46DXwGrOVGW6diqz5PFHoH"
  3199. },
  3200. {
  3201. "__type__": "cc.Sprite",
  3202. "_name": "",
  3203. "_objFlags": 0,
  3204. "__editorExtras__": {},
  3205. "node": {
  3206. "__id__": 132
  3207. },
  3208. "_enabled": true,
  3209. "__prefab": {
  3210. "__id__": 136
  3211. },
  3212. "_customMaterial": null,
  3213. "_srcBlendFactor": 2,
  3214. "_dstBlendFactor": 4,
  3215. "_color": {
  3216. "__type__": "cc.Color",
  3217. "r": 255,
  3218. "g": 0,
  3219. "b": 0,
  3220. "a": 255
  3221. },
  3222. "_spriteFrame": {
  3223. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3224. "__expectedType__": "cc.SpriteFrame"
  3225. },
  3226. "_type": 0,
  3227. "_fillType": 0,
  3228. "_sizeMode": 0,
  3229. "_fillCenter": {
  3230. "__type__": "cc.Vec2",
  3231. "x": 0,
  3232. "y": 0
  3233. },
  3234. "_fillStart": 0,
  3235. "_fillRange": 0,
  3236. "_isTrimmedMode": true,
  3237. "_useGrayscale": false,
  3238. "_atlas": null,
  3239. "_id": ""
  3240. },
  3241. {
  3242. "__type__": "cc.CompPrefabInfo",
  3243. "fileId": "80caQA5PZD1Iea29NWijCa"
  3244. },
  3245. {
  3246. "__type__": "cc.UIOpacity",
  3247. "_name": "",
  3248. "_objFlags": 0,
  3249. "__editorExtras__": {},
  3250. "node": {
  3251. "__id__": 132
  3252. },
  3253. "_enabled": true,
  3254. "__prefab": {
  3255. "__id__": 138
  3256. },
  3257. "_opacity": 0,
  3258. "_id": ""
  3259. },
  3260. {
  3261. "__type__": "cc.CompPrefabInfo",
  3262. "fileId": "9eOWswu7lHGoPFoLwYVGgU"
  3263. },
  3264. {
  3265. "__type__": "cc.BlockInputEvents",
  3266. "_name": "",
  3267. "_objFlags": 0,
  3268. "__editorExtras__": {},
  3269. "node": {
  3270. "__id__": 132
  3271. },
  3272. "_enabled": true,
  3273. "__prefab": {
  3274. "__id__": 140
  3275. },
  3276. "_id": ""
  3277. },
  3278. {
  3279. "__type__": "cc.CompPrefabInfo",
  3280. "fileId": "a61ZrsMYJPLbYU9WAdD2n0"
  3281. },
  3282. {
  3283. "__type__": "cc.PrefabInfo",
  3284. "root": {
  3285. "__id__": 1
  3286. },
  3287. "asset": {
  3288. "__id__": 0
  3289. },
  3290. "fileId": "7aSrKAPlNMd7xfnZFGfTaB",
  3291. "instance": null,
  3292. "targetOverrides": null,
  3293. "nestedPrefabInstanceRoots": null
  3294. },
  3295. {
  3296. "__type__": "cc.Node",
  3297. "_name": "item_1",
  3298. "_objFlags": 0,
  3299. "__editorExtras__": {},
  3300. "_parent": {
  3301. "__id__": 99
  3302. },
  3303. "_children": [],
  3304. "_active": true,
  3305. "_components": [
  3306. {
  3307. "__id__": 143
  3308. },
  3309. {
  3310. "__id__": 145
  3311. },
  3312. {
  3313. "__id__": 147
  3314. },
  3315. {
  3316. "__id__": 149
  3317. }
  3318. ],
  3319. "_prefab": {
  3320. "__id__": 151
  3321. },
  3322. "_lpos": {
  3323. "__type__": "cc.Vec3",
  3324. "x": 1418.804,
  3325. "y": -523.14,
  3326. "z": 0
  3327. },
  3328. "_lrot": {
  3329. "__type__": "cc.Quat",
  3330. "x": 0,
  3331. "y": 0,
  3332. "z": 0,
  3333. "w": 1
  3334. },
  3335. "_lscale": {
  3336. "__type__": "cc.Vec3",
  3337. "x": 1,
  3338. "y": 1,
  3339. "z": 1
  3340. },
  3341. "_mobility": 0,
  3342. "_layer": 33554432,
  3343. "_euler": {
  3344. "__type__": "cc.Vec3",
  3345. "x": 0,
  3346. "y": 0,
  3347. "z": 0
  3348. },
  3349. "_id": ""
  3350. },
  3351. {
  3352. "__type__": "cc.UITransform",
  3353. "_name": "",
  3354. "_objFlags": 0,
  3355. "__editorExtras__": {},
  3356. "node": {
  3357. "__id__": 142
  3358. },
  3359. "_enabled": true,
  3360. "__prefab": {
  3361. "__id__": 144
  3362. },
  3363. "_contentSize": {
  3364. "__type__": "cc.Size",
  3365. "width": 100,
  3366. "height": 100
  3367. },
  3368. "_anchorPoint": {
  3369. "__type__": "cc.Vec2",
  3370. "x": 0.5,
  3371. "y": 0.5
  3372. },
  3373. "_id": ""
  3374. },
  3375. {
  3376. "__type__": "cc.CompPrefabInfo",
  3377. "fileId": "4ddop9Y2BOwaMYafgpzY6E"
  3378. },
  3379. {
  3380. "__type__": "cc.Sprite",
  3381. "_name": "",
  3382. "_objFlags": 0,
  3383. "__editorExtras__": {},
  3384. "node": {
  3385. "__id__": 142
  3386. },
  3387. "_enabled": true,
  3388. "__prefab": {
  3389. "__id__": 146
  3390. },
  3391. "_customMaterial": null,
  3392. "_srcBlendFactor": 2,
  3393. "_dstBlendFactor": 4,
  3394. "_color": {
  3395. "__type__": "cc.Color",
  3396. "r": 255,
  3397. "g": 0,
  3398. "b": 0,
  3399. "a": 255
  3400. },
  3401. "_spriteFrame": {
  3402. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3403. "__expectedType__": "cc.SpriteFrame"
  3404. },
  3405. "_type": 0,
  3406. "_fillType": 0,
  3407. "_sizeMode": 0,
  3408. "_fillCenter": {
  3409. "__type__": "cc.Vec2",
  3410. "x": 0,
  3411. "y": 0
  3412. },
  3413. "_fillStart": 0,
  3414. "_fillRange": 0,
  3415. "_isTrimmedMode": true,
  3416. "_useGrayscale": false,
  3417. "_atlas": null,
  3418. "_id": ""
  3419. },
  3420. {
  3421. "__type__": "cc.CompPrefabInfo",
  3422. "fileId": "5f3DYbkv9ElKgx7vDrpR/F"
  3423. },
  3424. {
  3425. "__type__": "cc.UIOpacity",
  3426. "_name": "",
  3427. "_objFlags": 0,
  3428. "__editorExtras__": {},
  3429. "node": {
  3430. "__id__": 142
  3431. },
  3432. "_enabled": true,
  3433. "__prefab": {
  3434. "__id__": 148
  3435. },
  3436. "_opacity": 0,
  3437. "_id": ""
  3438. },
  3439. {
  3440. "__type__": "cc.CompPrefabInfo",
  3441. "fileId": "16Xj9wyPVF3rd4BRhqJpwC"
  3442. },
  3443. {
  3444. "__type__": "cc.BlockInputEvents",
  3445. "_name": "",
  3446. "_objFlags": 0,
  3447. "__editorExtras__": {},
  3448. "node": {
  3449. "__id__": 142
  3450. },
  3451. "_enabled": true,
  3452. "__prefab": {
  3453. "__id__": 150
  3454. },
  3455. "_id": ""
  3456. },
  3457. {
  3458. "__type__": "cc.CompPrefabInfo",
  3459. "fileId": "df/oe9TrVHC6uP8wIg3gyc"
  3460. },
  3461. {
  3462. "__type__": "cc.PrefabInfo",
  3463. "root": {
  3464. "__id__": 1
  3465. },
  3466. "asset": {
  3467. "__id__": 0
  3468. },
  3469. "fileId": "36E+CMsJhFJrEdWqniP+nT",
  3470. "instance": null,
  3471. "targetOverrides": null,
  3472. "nestedPrefabInstanceRoots": null
  3473. },
  3474. {
  3475. "__type__": "cc.Node",
  3476. "_name": "item_2",
  3477. "_objFlags": 0,
  3478. "__editorExtras__": {},
  3479. "_parent": {
  3480. "__id__": 99
  3481. },
  3482. "_children": [],
  3483. "_active": true,
  3484. "_components": [
  3485. {
  3486. "__id__": 153
  3487. },
  3488. {
  3489. "__id__": 155
  3490. },
  3491. {
  3492. "__id__": 157
  3493. },
  3494. {
  3495. "__id__": 159
  3496. }
  3497. ],
  3498. "_prefab": {
  3499. "__id__": 161
  3500. },
  3501. "_lpos": {
  3502. "__type__": "cc.Vec3",
  3503. "x": -783.126,
  3504. "y": 585.834,
  3505. "z": 0
  3506. },
  3507. "_lrot": {
  3508. "__type__": "cc.Quat",
  3509. "x": 0,
  3510. "y": 0,
  3511. "z": 0,
  3512. "w": 1
  3513. },
  3514. "_lscale": {
  3515. "__type__": "cc.Vec3",
  3516. "x": 3,
  3517. "y": 3,
  3518. "z": 1
  3519. },
  3520. "_mobility": 0,
  3521. "_layer": 33554432,
  3522. "_euler": {
  3523. "__type__": "cc.Vec3",
  3524. "x": 0,
  3525. "y": 0,
  3526. "z": 0
  3527. },
  3528. "_id": ""
  3529. },
  3530. {
  3531. "__type__": "cc.UITransform",
  3532. "_name": "",
  3533. "_objFlags": 0,
  3534. "__editorExtras__": {},
  3535. "node": {
  3536. "__id__": 152
  3537. },
  3538. "_enabled": true,
  3539. "__prefab": {
  3540. "__id__": 154
  3541. },
  3542. "_contentSize": {
  3543. "__type__": "cc.Size",
  3544. "width": 100,
  3545. "height": 100
  3546. },
  3547. "_anchorPoint": {
  3548. "__type__": "cc.Vec2",
  3549. "x": 0.5,
  3550. "y": 0.5
  3551. },
  3552. "_id": ""
  3553. },
  3554. {
  3555. "__type__": "cc.CompPrefabInfo",
  3556. "fileId": "dfV043nPdNFL1bEEy8Jvq4"
  3557. },
  3558. {
  3559. "__type__": "cc.Sprite",
  3560. "_name": "",
  3561. "_objFlags": 0,
  3562. "__editorExtras__": {},
  3563. "node": {
  3564. "__id__": 152
  3565. },
  3566. "_enabled": true,
  3567. "__prefab": {
  3568. "__id__": 156
  3569. },
  3570. "_customMaterial": null,
  3571. "_srcBlendFactor": 2,
  3572. "_dstBlendFactor": 4,
  3573. "_color": {
  3574. "__type__": "cc.Color",
  3575. "r": 255,
  3576. "g": 0,
  3577. "b": 0,
  3578. "a": 255
  3579. },
  3580. "_spriteFrame": {
  3581. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3582. "__expectedType__": "cc.SpriteFrame"
  3583. },
  3584. "_type": 0,
  3585. "_fillType": 0,
  3586. "_sizeMode": 0,
  3587. "_fillCenter": {
  3588. "__type__": "cc.Vec2",
  3589. "x": 0,
  3590. "y": 0
  3591. },
  3592. "_fillStart": 0,
  3593. "_fillRange": 0,
  3594. "_isTrimmedMode": true,
  3595. "_useGrayscale": false,
  3596. "_atlas": null,
  3597. "_id": ""
  3598. },
  3599. {
  3600. "__type__": "cc.CompPrefabInfo",
  3601. "fileId": "9bHeZEuSVFpIAQh3J73oII"
  3602. },
  3603. {
  3604. "__type__": "cc.UIOpacity",
  3605. "_name": "",
  3606. "_objFlags": 0,
  3607. "__editorExtras__": {},
  3608. "node": {
  3609. "__id__": 152
  3610. },
  3611. "_enabled": true,
  3612. "__prefab": {
  3613. "__id__": 158
  3614. },
  3615. "_opacity": 0,
  3616. "_id": ""
  3617. },
  3618. {
  3619. "__type__": "cc.CompPrefabInfo",
  3620. "fileId": "ffi4QqboRMrYu3L6tOlg1Q"
  3621. },
  3622. {
  3623. "__type__": "cc.BlockInputEvents",
  3624. "_name": "",
  3625. "_objFlags": 0,
  3626. "__editorExtras__": {},
  3627. "node": {
  3628. "__id__": 152
  3629. },
  3630. "_enabled": true,
  3631. "__prefab": {
  3632. "__id__": 160
  3633. },
  3634. "_id": ""
  3635. },
  3636. {
  3637. "__type__": "cc.CompPrefabInfo",
  3638. "fileId": "f0KIwkgMlK2LwTR89m+vSq"
  3639. },
  3640. {
  3641. "__type__": "cc.PrefabInfo",
  3642. "root": {
  3643. "__id__": 1
  3644. },
  3645. "asset": {
  3646. "__id__": 0
  3647. },
  3648. "fileId": "73TZkTxMJH07dlKvD/S4HV",
  3649. "instance": null,
  3650. "targetOverrides": null,
  3651. "nestedPrefabInstanceRoots": null
  3652. },
  3653. {
  3654. "__type__": "cc.Node",
  3655. "_name": "item_3",
  3656. "_objFlags": 0,
  3657. "__editorExtras__": {},
  3658. "_parent": {
  3659. "__id__": 99
  3660. },
  3661. "_children": [],
  3662. "_active": true,
  3663. "_components": [
  3664. {
  3665. "__id__": 163
  3666. },
  3667. {
  3668. "__id__": 165
  3669. },
  3670. {
  3671. "__id__": 167
  3672. },
  3673. {
  3674. "__id__": 169
  3675. }
  3676. ],
  3677. "_prefab": {
  3678. "__id__": 171
  3679. },
  3680. "_lpos": {
  3681. "__type__": "cc.Vec3",
  3682. "x": 1212.491,
  3683. "y": -1217.063,
  3684. "z": 0
  3685. },
  3686. "_lrot": {
  3687. "__type__": "cc.Quat",
  3688. "x": 0,
  3689. "y": 0,
  3690. "z": 0,
  3691. "w": 1
  3692. },
  3693. "_lscale": {
  3694. "__type__": "cc.Vec3",
  3695. "x": 2,
  3696. "y": 2,
  3697. "z": 1
  3698. },
  3699. "_mobility": 0,
  3700. "_layer": 33554432,
  3701. "_euler": {
  3702. "__type__": "cc.Vec3",
  3703. "x": 0,
  3704. "y": 0,
  3705. "z": 0
  3706. },
  3707. "_id": ""
  3708. },
  3709. {
  3710. "__type__": "cc.UITransform",
  3711. "_name": "",
  3712. "_objFlags": 0,
  3713. "__editorExtras__": {},
  3714. "node": {
  3715. "__id__": 162
  3716. },
  3717. "_enabled": true,
  3718. "__prefab": {
  3719. "__id__": 164
  3720. },
  3721. "_contentSize": {
  3722. "__type__": "cc.Size",
  3723. "width": 100,
  3724. "height": 100
  3725. },
  3726. "_anchorPoint": {
  3727. "__type__": "cc.Vec2",
  3728. "x": 0.5,
  3729. "y": 0.5
  3730. },
  3731. "_id": ""
  3732. },
  3733. {
  3734. "__type__": "cc.CompPrefabInfo",
  3735. "fileId": "ccufRIOYJBY7/yYhDbfSd0"
  3736. },
  3737. {
  3738. "__type__": "cc.Sprite",
  3739. "_name": "",
  3740. "_objFlags": 0,
  3741. "__editorExtras__": {},
  3742. "node": {
  3743. "__id__": 162
  3744. },
  3745. "_enabled": true,
  3746. "__prefab": {
  3747. "__id__": 166
  3748. },
  3749. "_customMaterial": null,
  3750. "_srcBlendFactor": 2,
  3751. "_dstBlendFactor": 4,
  3752. "_color": {
  3753. "__type__": "cc.Color",
  3754. "r": 255,
  3755. "g": 0,
  3756. "b": 0,
  3757. "a": 255
  3758. },
  3759. "_spriteFrame": {
  3760. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3761. "__expectedType__": "cc.SpriteFrame"
  3762. },
  3763. "_type": 0,
  3764. "_fillType": 0,
  3765. "_sizeMode": 0,
  3766. "_fillCenter": {
  3767. "__type__": "cc.Vec2",
  3768. "x": 0,
  3769. "y": 0
  3770. },
  3771. "_fillStart": 0,
  3772. "_fillRange": 0,
  3773. "_isTrimmedMode": true,
  3774. "_useGrayscale": false,
  3775. "_atlas": null,
  3776. "_id": ""
  3777. },
  3778. {
  3779. "__type__": "cc.CompPrefabInfo",
  3780. "fileId": "53c/rVLUBJSp+rzzf/KmrM"
  3781. },
  3782. {
  3783. "__type__": "cc.UIOpacity",
  3784. "_name": "",
  3785. "_objFlags": 0,
  3786. "__editorExtras__": {},
  3787. "node": {
  3788. "__id__": 162
  3789. },
  3790. "_enabled": true,
  3791. "__prefab": {
  3792. "__id__": 168
  3793. },
  3794. "_opacity": 0,
  3795. "_id": ""
  3796. },
  3797. {
  3798. "__type__": "cc.CompPrefabInfo",
  3799. "fileId": "31JFqYPmFEW5sWc5zJEu+/"
  3800. },
  3801. {
  3802. "__type__": "cc.BlockInputEvents",
  3803. "_name": "",
  3804. "_objFlags": 0,
  3805. "__editorExtras__": {},
  3806. "node": {
  3807. "__id__": 162
  3808. },
  3809. "_enabled": true,
  3810. "__prefab": {
  3811. "__id__": 170
  3812. },
  3813. "_id": ""
  3814. },
  3815. {
  3816. "__type__": "cc.CompPrefabInfo",
  3817. "fileId": "cekJC+BNZOBZPEtTSpsWhK"
  3818. },
  3819. {
  3820. "__type__": "cc.PrefabInfo",
  3821. "root": {
  3822. "__id__": 1
  3823. },
  3824. "asset": {
  3825. "__id__": 0
  3826. },
  3827. "fileId": "764BnG5Y1CK4LBlg4EUdtH",
  3828. "instance": null,
  3829. "targetOverrides": null,
  3830. "nestedPrefabInstanceRoots": null
  3831. },
  3832. {
  3833. "__type__": "cc.Node",
  3834. "_name": "item_4",
  3835. "_objFlags": 0,
  3836. "__editorExtras__": {},
  3837. "_parent": {
  3838. "__id__": 99
  3839. },
  3840. "_children": [],
  3841. "_active": true,
  3842. "_components": [
  3843. {
  3844. "__id__": 173
  3845. },
  3846. {
  3847. "__id__": 175
  3848. },
  3849. {
  3850. "__id__": 177
  3851. },
  3852. {
  3853. "__id__": 179
  3854. }
  3855. ],
  3856. "_prefab": {
  3857. "__id__": 181
  3858. },
  3859. "_lpos": {
  3860. "__type__": "cc.Vec3",
  3861. "x": 228.068,
  3862. "y": 703.987,
  3863. "z": 0
  3864. },
  3865. "_lrot": {
  3866. "__type__": "cc.Quat",
  3867. "x": 0,
  3868. "y": 0,
  3869. "z": 0,
  3870. "w": 1
  3871. },
  3872. "_lscale": {
  3873. "__type__": "cc.Vec3",
  3874. "x": 5,
  3875. "y": 5,
  3876. "z": 1
  3877. },
  3878. "_mobility": 0,
  3879. "_layer": 33554432,
  3880. "_euler": {
  3881. "__type__": "cc.Vec3",
  3882. "x": 0,
  3883. "y": 0,
  3884. "z": 0
  3885. },
  3886. "_id": ""
  3887. },
  3888. {
  3889. "__type__": "cc.UITransform",
  3890. "_name": "",
  3891. "_objFlags": 0,
  3892. "__editorExtras__": {},
  3893. "node": {
  3894. "__id__": 172
  3895. },
  3896. "_enabled": true,
  3897. "__prefab": {
  3898. "__id__": 174
  3899. },
  3900. "_contentSize": {
  3901. "__type__": "cc.Size",
  3902. "width": 100,
  3903. "height": 100
  3904. },
  3905. "_anchorPoint": {
  3906. "__type__": "cc.Vec2",
  3907. "x": 0.5,
  3908. "y": 0.5
  3909. },
  3910. "_id": ""
  3911. },
  3912. {
  3913. "__type__": "cc.CompPrefabInfo",
  3914. "fileId": "78ocL1HcVBYYyl+nx8wOPz"
  3915. },
  3916. {
  3917. "__type__": "cc.Sprite",
  3918. "_name": "",
  3919. "_objFlags": 0,
  3920. "__editorExtras__": {},
  3921. "node": {
  3922. "__id__": 172
  3923. },
  3924. "_enabled": true,
  3925. "__prefab": {
  3926. "__id__": 176
  3927. },
  3928. "_customMaterial": null,
  3929. "_srcBlendFactor": 2,
  3930. "_dstBlendFactor": 4,
  3931. "_color": {
  3932. "__type__": "cc.Color",
  3933. "r": 255,
  3934. "g": 0,
  3935. "b": 0,
  3936. "a": 255
  3937. },
  3938. "_spriteFrame": {
  3939. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  3940. "__expectedType__": "cc.SpriteFrame"
  3941. },
  3942. "_type": 0,
  3943. "_fillType": 0,
  3944. "_sizeMode": 0,
  3945. "_fillCenter": {
  3946. "__type__": "cc.Vec2",
  3947. "x": 0,
  3948. "y": 0
  3949. },
  3950. "_fillStart": 0,
  3951. "_fillRange": 0,
  3952. "_isTrimmedMode": true,
  3953. "_useGrayscale": false,
  3954. "_atlas": null,
  3955. "_id": ""
  3956. },
  3957. {
  3958. "__type__": "cc.CompPrefabInfo",
  3959. "fileId": "08l7fmCAtBpKSSXoBqMaRd"
  3960. },
  3961. {
  3962. "__type__": "cc.UIOpacity",
  3963. "_name": "",
  3964. "_objFlags": 0,
  3965. "__editorExtras__": {},
  3966. "node": {
  3967. "__id__": 172
  3968. },
  3969. "_enabled": true,
  3970. "__prefab": {
  3971. "__id__": 178
  3972. },
  3973. "_opacity": 0,
  3974. "_id": ""
  3975. },
  3976. {
  3977. "__type__": "cc.CompPrefabInfo",
  3978. "fileId": "2237RyhJ5A+4QRqXoJK1Uj"
  3979. },
  3980. {
  3981. "__type__": "cc.BlockInputEvents",
  3982. "_name": "",
  3983. "_objFlags": 0,
  3984. "__editorExtras__": {},
  3985. "node": {
  3986. "__id__": 172
  3987. },
  3988. "_enabled": true,
  3989. "__prefab": {
  3990. "__id__": 180
  3991. },
  3992. "_id": ""
  3993. },
  3994. {
  3995. "__type__": "cc.CompPrefabInfo",
  3996. "fileId": "5cPy1qiRRDHIy0SKkBxFDM"
  3997. },
  3998. {
  3999. "__type__": "cc.PrefabInfo",
  4000. "root": {
  4001. "__id__": 1
  4002. },
  4003. "asset": {
  4004. "__id__": 0
  4005. },
  4006. "fileId": "41z4D/ywJC9oPkijSF3Ku2",
  4007. "instance": null,
  4008. "targetOverrides": null,
  4009. "nestedPrefabInstanceRoots": null
  4010. },
  4011. {
  4012. "__type__": "cc.Node",
  4013. "_name": "item_5",
  4014. "_objFlags": 0,
  4015. "__editorExtras__": {},
  4016. "_parent": {
  4017. "__id__": 99
  4018. },
  4019. "_children": [],
  4020. "_active": true,
  4021. "_components": [
  4022. {
  4023. "__id__": 183
  4024. },
  4025. {
  4026. "__id__": 185
  4027. },
  4028. {
  4029. "__id__": 187
  4030. },
  4031. {
  4032. "__id__": 189
  4033. }
  4034. ],
  4035. "_prefab": {
  4036. "__id__": 191
  4037. },
  4038. "_lpos": {
  4039. "__type__": "cc.Vec3",
  4040. "x": -268.016,
  4041. "y": 1294.815,
  4042. "z": 0
  4043. },
  4044. "_lrot": {
  4045. "__type__": "cc.Quat",
  4046. "x": 0,
  4047. "y": 0,
  4048. "z": 0,
  4049. "w": 1
  4050. },
  4051. "_lscale": {
  4052. "__type__": "cc.Vec3",
  4053. "x": 3,
  4054. "y": 3,
  4055. "z": 1
  4056. },
  4057. "_mobility": 0,
  4058. "_layer": 33554432,
  4059. "_euler": {
  4060. "__type__": "cc.Vec3",
  4061. "x": 0,
  4062. "y": 0,
  4063. "z": 0
  4064. },
  4065. "_id": ""
  4066. },
  4067. {
  4068. "__type__": "cc.UITransform",
  4069. "_name": "",
  4070. "_objFlags": 0,
  4071. "__editorExtras__": {},
  4072. "node": {
  4073. "__id__": 182
  4074. },
  4075. "_enabled": true,
  4076. "__prefab": {
  4077. "__id__": 184
  4078. },
  4079. "_contentSize": {
  4080. "__type__": "cc.Size",
  4081. "width": 100,
  4082. "height": 100
  4083. },
  4084. "_anchorPoint": {
  4085. "__type__": "cc.Vec2",
  4086. "x": 0.5,
  4087. "y": 0.5
  4088. },
  4089. "_id": ""
  4090. },
  4091. {
  4092. "__type__": "cc.CompPrefabInfo",
  4093. "fileId": "92S0iDv35FNK/CxAdhw0ZM"
  4094. },
  4095. {
  4096. "__type__": "cc.Sprite",
  4097. "_name": "",
  4098. "_objFlags": 0,
  4099. "__editorExtras__": {},
  4100. "node": {
  4101. "__id__": 182
  4102. },
  4103. "_enabled": true,
  4104. "__prefab": {
  4105. "__id__": 186
  4106. },
  4107. "_customMaterial": null,
  4108. "_srcBlendFactor": 2,
  4109. "_dstBlendFactor": 4,
  4110. "_color": {
  4111. "__type__": "cc.Color",
  4112. "r": 255,
  4113. "g": 0,
  4114. "b": 0,
  4115. "a": 255
  4116. },
  4117. "_spriteFrame": {
  4118. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  4119. "__expectedType__": "cc.SpriteFrame"
  4120. },
  4121. "_type": 0,
  4122. "_fillType": 0,
  4123. "_sizeMode": 0,
  4124. "_fillCenter": {
  4125. "__type__": "cc.Vec2",
  4126. "x": 0,
  4127. "y": 0
  4128. },
  4129. "_fillStart": 0,
  4130. "_fillRange": 0,
  4131. "_isTrimmedMode": true,
  4132. "_useGrayscale": false,
  4133. "_atlas": null,
  4134. "_id": ""
  4135. },
  4136. {
  4137. "__type__": "cc.CompPrefabInfo",
  4138. "fileId": "1a6Zos6OpDSp13TPRAOhDh"
  4139. },
  4140. {
  4141. "__type__": "cc.UIOpacity",
  4142. "_name": "",
  4143. "_objFlags": 0,
  4144. "__editorExtras__": {},
  4145. "node": {
  4146. "__id__": 182
  4147. },
  4148. "_enabled": true,
  4149. "__prefab": {
  4150. "__id__": 188
  4151. },
  4152. "_opacity": 0,
  4153. "_id": ""
  4154. },
  4155. {
  4156. "__type__": "cc.CompPrefabInfo",
  4157. "fileId": "6fbfBP8pdBbJQ2rPCoXBOV"
  4158. },
  4159. {
  4160. "__type__": "cc.BlockInputEvents",
  4161. "_name": "",
  4162. "_objFlags": 0,
  4163. "__editorExtras__": {},
  4164. "node": {
  4165. "__id__": 182
  4166. },
  4167. "_enabled": true,
  4168. "__prefab": {
  4169. "__id__": 190
  4170. },
  4171. "_id": ""
  4172. },
  4173. {
  4174. "__type__": "cc.CompPrefabInfo",
  4175. "fileId": "7eE6ZQ371CS4jXRTyYWPfs"
  4176. },
  4177. {
  4178. "__type__": "cc.PrefabInfo",
  4179. "root": {
  4180. "__id__": 1
  4181. },
  4182. "asset": {
  4183. "__id__": 0
  4184. },
  4185. "fileId": "b4znckzatDqpXJD1kfsEBa",
  4186. "instance": null,
  4187. "targetOverrides": null,
  4188. "nestedPrefabInstanceRoots": null
  4189. },
  4190. {
  4191. "__type__": "cc.Node",
  4192. "_name": "item_6",
  4193. "_objFlags": 0,
  4194. "__editorExtras__": {},
  4195. "_parent": {
  4196. "__id__": 99
  4197. },
  4198. "_children": [],
  4199. "_active": false,
  4200. "_components": [
  4201. {
  4202. "__id__": 193
  4203. },
  4204. {
  4205. "__id__": 195
  4206. },
  4207. {
  4208. "__id__": 197
  4209. },
  4210. {
  4211. "__id__": 199
  4212. }
  4213. ],
  4214. "_prefab": {
  4215. "__id__": 201
  4216. },
  4217. "_lpos": {
  4218. "__type__": "cc.Vec3",
  4219. "x": 1160.889,
  4220. "y": 1427.735,
  4221. "z": 0
  4222. },
  4223. "_lrot": {
  4224. "__type__": "cc.Quat",
  4225. "x": 0,
  4226. "y": 0,
  4227. "z": 0,
  4228. "w": 1
  4229. },
  4230. "_lscale": {
  4231. "__type__": "cc.Vec3",
  4232. "x": 5,
  4233. "y": 5,
  4234. "z": 1
  4235. },
  4236. "_mobility": 0,
  4237. "_layer": 33554432,
  4238. "_euler": {
  4239. "__type__": "cc.Vec3",
  4240. "x": 0,
  4241. "y": 0,
  4242. "z": 0
  4243. },
  4244. "_id": ""
  4245. },
  4246. {
  4247. "__type__": "cc.UITransform",
  4248. "_name": "",
  4249. "_objFlags": 0,
  4250. "__editorExtras__": {},
  4251. "node": {
  4252. "__id__": 192
  4253. },
  4254. "_enabled": true,
  4255. "__prefab": {
  4256. "__id__": 194
  4257. },
  4258. "_contentSize": {
  4259. "__type__": "cc.Size",
  4260. "width": 100,
  4261. "height": 100
  4262. },
  4263. "_anchorPoint": {
  4264. "__type__": "cc.Vec2",
  4265. "x": 0.5,
  4266. "y": 0.5
  4267. },
  4268. "_id": ""
  4269. },
  4270. {
  4271. "__type__": "cc.CompPrefabInfo",
  4272. "fileId": "734sDBuKZEvYXlj+r1vwh1"
  4273. },
  4274. {
  4275. "__type__": "cc.Sprite",
  4276. "_name": "",
  4277. "_objFlags": 0,
  4278. "__editorExtras__": {},
  4279. "node": {
  4280. "__id__": 192
  4281. },
  4282. "_enabled": true,
  4283. "__prefab": {
  4284. "__id__": 196
  4285. },
  4286. "_customMaterial": null,
  4287. "_srcBlendFactor": 2,
  4288. "_dstBlendFactor": 4,
  4289. "_color": {
  4290. "__type__": "cc.Color",
  4291. "r": 255,
  4292. "g": 0,
  4293. "b": 0,
  4294. "a": 255
  4295. },
  4296. "_spriteFrame": {
  4297. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  4298. "__expectedType__": "cc.SpriteFrame"
  4299. },
  4300. "_type": 0,
  4301. "_fillType": 0,
  4302. "_sizeMode": 0,
  4303. "_fillCenter": {
  4304. "__type__": "cc.Vec2",
  4305. "x": 0,
  4306. "y": 0
  4307. },
  4308. "_fillStart": 0,
  4309. "_fillRange": 0,
  4310. "_isTrimmedMode": true,
  4311. "_useGrayscale": false,
  4312. "_atlas": null,
  4313. "_id": ""
  4314. },
  4315. {
  4316. "__type__": "cc.CompPrefabInfo",
  4317. "fileId": "53fL0t+zVBjolu9uKrgOTo"
  4318. },
  4319. {
  4320. "__type__": "cc.UIOpacity",
  4321. "_name": "",
  4322. "_objFlags": 0,
  4323. "__editorExtras__": {},
  4324. "node": {
  4325. "__id__": 192
  4326. },
  4327. "_enabled": true,
  4328. "__prefab": {
  4329. "__id__": 198
  4330. },
  4331. "_opacity": 0,
  4332. "_id": ""
  4333. },
  4334. {
  4335. "__type__": "cc.CompPrefabInfo",
  4336. "fileId": "85vofCZN1CnagR7Vimf/fm"
  4337. },
  4338. {
  4339. "__type__": "cc.BlockInputEvents",
  4340. "_name": "",
  4341. "_objFlags": 0,
  4342. "__editorExtras__": {},
  4343. "node": {
  4344. "__id__": 192
  4345. },
  4346. "_enabled": true,
  4347. "__prefab": {
  4348. "__id__": 200
  4349. },
  4350. "_id": ""
  4351. },
  4352. {
  4353. "__type__": "cc.CompPrefabInfo",
  4354. "fileId": "9etZFKlDxDg5j7G7+wZ0b8"
  4355. },
  4356. {
  4357. "__type__": "cc.PrefabInfo",
  4358. "root": {
  4359. "__id__": 1
  4360. },
  4361. "asset": {
  4362. "__id__": 0
  4363. },
  4364. "fileId": "16L0U74X1KjauIFD3w1FBV",
  4365. "instance": null,
  4366. "targetOverrides": null,
  4367. "nestedPrefabInstanceRoots": null
  4368. },
  4369. {
  4370. "__type__": "cc.Node",
  4371. "_name": "item_7",
  4372. "_objFlags": 0,
  4373. "__editorExtras__": {},
  4374. "_parent": {
  4375. "__id__": 99
  4376. },
  4377. "_children": [],
  4378. "_active": true,
  4379. "_components": [
  4380. {
  4381. "__id__": 203
  4382. },
  4383. {
  4384. "__id__": 205
  4385. },
  4386. {
  4387. "__id__": 207
  4388. },
  4389. {
  4390. "__id__": 209
  4391. }
  4392. ],
  4393. "_prefab": {
  4394. "__id__": 211
  4395. },
  4396. "_lpos": {
  4397. "__type__": "cc.Vec3",
  4398. "x": 640.443,
  4399. "y": -664.304,
  4400. "z": 0
  4401. },
  4402. "_lrot": {
  4403. "__type__": "cc.Quat",
  4404. "x": 0,
  4405. "y": 0,
  4406. "z": 0,
  4407. "w": 1
  4408. },
  4409. "_lscale": {
  4410. "__type__": "cc.Vec3",
  4411. "x": 2,
  4412. "y": 2,
  4413. "z": 1
  4414. },
  4415. "_mobility": 0,
  4416. "_layer": 33554432,
  4417. "_euler": {
  4418. "__type__": "cc.Vec3",
  4419. "x": 0,
  4420. "y": 0,
  4421. "z": 0
  4422. },
  4423. "_id": ""
  4424. },
  4425. {
  4426. "__type__": "cc.UITransform",
  4427. "_name": "",
  4428. "_objFlags": 0,
  4429. "__editorExtras__": {},
  4430. "node": {
  4431. "__id__": 202
  4432. },
  4433. "_enabled": true,
  4434. "__prefab": {
  4435. "__id__": 204
  4436. },
  4437. "_contentSize": {
  4438. "__type__": "cc.Size",
  4439. "width": 100,
  4440. "height": 100
  4441. },
  4442. "_anchorPoint": {
  4443. "__type__": "cc.Vec2",
  4444. "x": 0.5,
  4445. "y": 0.5
  4446. },
  4447. "_id": ""
  4448. },
  4449. {
  4450. "__type__": "cc.CompPrefabInfo",
  4451. "fileId": "e3srEKK/RJq58ODnRCjAe7"
  4452. },
  4453. {
  4454. "__type__": "cc.Sprite",
  4455. "_name": "",
  4456. "_objFlags": 0,
  4457. "__editorExtras__": {},
  4458. "node": {
  4459. "__id__": 202
  4460. },
  4461. "_enabled": true,
  4462. "__prefab": {
  4463. "__id__": 206
  4464. },
  4465. "_customMaterial": null,
  4466. "_srcBlendFactor": 2,
  4467. "_dstBlendFactor": 4,
  4468. "_color": {
  4469. "__type__": "cc.Color",
  4470. "r": 255,
  4471. "g": 0,
  4472. "b": 0,
  4473. "a": 255
  4474. },
  4475. "_spriteFrame": {
  4476. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  4477. "__expectedType__": "cc.SpriteFrame"
  4478. },
  4479. "_type": 0,
  4480. "_fillType": 0,
  4481. "_sizeMode": 0,
  4482. "_fillCenter": {
  4483. "__type__": "cc.Vec2",
  4484. "x": 0,
  4485. "y": 0
  4486. },
  4487. "_fillStart": 0,
  4488. "_fillRange": 0,
  4489. "_isTrimmedMode": true,
  4490. "_useGrayscale": false,
  4491. "_atlas": null,
  4492. "_id": ""
  4493. },
  4494. {
  4495. "__type__": "cc.CompPrefabInfo",
  4496. "fileId": "cfRvqvluxMg7rht+BW87K6"
  4497. },
  4498. {
  4499. "__type__": "cc.UIOpacity",
  4500. "_name": "",
  4501. "_objFlags": 0,
  4502. "__editorExtras__": {},
  4503. "node": {
  4504. "__id__": 202
  4505. },
  4506. "_enabled": true,
  4507. "__prefab": {
  4508. "__id__": 208
  4509. },
  4510. "_opacity": 0,
  4511. "_id": ""
  4512. },
  4513. {
  4514. "__type__": "cc.CompPrefabInfo",
  4515. "fileId": "903nWQe4JL6axYO2ndPFcv"
  4516. },
  4517. {
  4518. "__type__": "cc.BlockInputEvents",
  4519. "_name": "",
  4520. "_objFlags": 0,
  4521. "__editorExtras__": {},
  4522. "node": {
  4523. "__id__": 202
  4524. },
  4525. "_enabled": true,
  4526. "__prefab": {
  4527. "__id__": 210
  4528. },
  4529. "_id": ""
  4530. },
  4531. {
  4532. "__type__": "cc.CompPrefabInfo",
  4533. "fileId": "c5ssRcZR1BnZe00fnMPl1P"
  4534. },
  4535. {
  4536. "__type__": "cc.PrefabInfo",
  4537. "root": {
  4538. "__id__": 1
  4539. },
  4540. "asset": {
  4541. "__id__": 0
  4542. },
  4543. "fileId": "51ZKdICN9AgakPIh9j5UkF",
  4544. "instance": null,
  4545. "targetOverrides": null,
  4546. "nestedPrefabInstanceRoots": null
  4547. },
  4548. {
  4549. "__type__": "cc.Node",
  4550. "_name": "item_8",
  4551. "_objFlags": 0,
  4552. "__editorExtras__": {},
  4553. "_parent": {
  4554. "__id__": 99
  4555. },
  4556. "_children": [],
  4557. "_active": true,
  4558. "_components": [
  4559. {
  4560. "__id__": 213
  4561. },
  4562. {
  4563. "__id__": 215
  4564. },
  4565. {
  4566. "__id__": 217
  4567. },
  4568. {
  4569. "__id__": 219
  4570. }
  4571. ],
  4572. "_prefab": {
  4573. "__id__": 221
  4574. },
  4575. "_lpos": {
  4576. "__type__": "cc.Vec3",
  4577. "x": -1195.242,
  4578. "y": -1748.392,
  4579. "z": 0
  4580. },
  4581. "_lrot": {
  4582. "__type__": "cc.Quat",
  4583. "x": 0,
  4584. "y": 0,
  4585. "z": 0,
  4586. "w": 1
  4587. },
  4588. "_lscale": {
  4589. "__type__": "cc.Vec3",
  4590. "x": 1.5,
  4591. "y": 1.5,
  4592. "z": 1
  4593. },
  4594. "_mobility": 0,
  4595. "_layer": 33554432,
  4596. "_euler": {
  4597. "__type__": "cc.Vec3",
  4598. "x": 0,
  4599. "y": 0,
  4600. "z": 0
  4601. },
  4602. "_id": ""
  4603. },
  4604. {
  4605. "__type__": "cc.UITransform",
  4606. "_name": "",
  4607. "_objFlags": 0,
  4608. "__editorExtras__": {},
  4609. "node": {
  4610. "__id__": 212
  4611. },
  4612. "_enabled": true,
  4613. "__prefab": {
  4614. "__id__": 214
  4615. },
  4616. "_contentSize": {
  4617. "__type__": "cc.Size",
  4618. "width": 100,
  4619. "height": 100
  4620. },
  4621. "_anchorPoint": {
  4622. "__type__": "cc.Vec2",
  4623. "x": 0.5,
  4624. "y": 0.5
  4625. },
  4626. "_id": ""
  4627. },
  4628. {
  4629. "__type__": "cc.CompPrefabInfo",
  4630. "fileId": "ddXTbUPq1MgKskUMwQUGrG"
  4631. },
  4632. {
  4633. "__type__": "cc.Sprite",
  4634. "_name": "",
  4635. "_objFlags": 0,
  4636. "__editorExtras__": {},
  4637. "node": {
  4638. "__id__": 212
  4639. },
  4640. "_enabled": true,
  4641. "__prefab": {
  4642. "__id__": 216
  4643. },
  4644. "_customMaterial": null,
  4645. "_srcBlendFactor": 2,
  4646. "_dstBlendFactor": 4,
  4647. "_color": {
  4648. "__type__": "cc.Color",
  4649. "r": 255,
  4650. "g": 0,
  4651. "b": 0,
  4652. "a": 255
  4653. },
  4654. "_spriteFrame": {
  4655. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  4656. "__expectedType__": "cc.SpriteFrame"
  4657. },
  4658. "_type": 0,
  4659. "_fillType": 0,
  4660. "_sizeMode": 0,
  4661. "_fillCenter": {
  4662. "__type__": "cc.Vec2",
  4663. "x": 0,
  4664. "y": 0
  4665. },
  4666. "_fillStart": 0,
  4667. "_fillRange": 0,
  4668. "_isTrimmedMode": true,
  4669. "_useGrayscale": false,
  4670. "_atlas": null,
  4671. "_id": ""
  4672. },
  4673. {
  4674. "__type__": "cc.CompPrefabInfo",
  4675. "fileId": "10aG57ovtAtL4AVqIrj+vv"
  4676. },
  4677. {
  4678. "__type__": "cc.UIOpacity",
  4679. "_name": "",
  4680. "_objFlags": 0,
  4681. "__editorExtras__": {},
  4682. "node": {
  4683. "__id__": 212
  4684. },
  4685. "_enabled": true,
  4686. "__prefab": {
  4687. "__id__": 218
  4688. },
  4689. "_opacity": 0,
  4690. "_id": ""
  4691. },
  4692. {
  4693. "__type__": "cc.CompPrefabInfo",
  4694. "fileId": "12bqrRdY1NyZtmxIkew3Rn"
  4695. },
  4696. {
  4697. "__type__": "cc.BlockInputEvents",
  4698. "_name": "",
  4699. "_objFlags": 0,
  4700. "__editorExtras__": {},
  4701. "node": {
  4702. "__id__": 212
  4703. },
  4704. "_enabled": true,
  4705. "__prefab": {
  4706. "__id__": 220
  4707. },
  4708. "_id": ""
  4709. },
  4710. {
  4711. "__type__": "cc.CompPrefabInfo",
  4712. "fileId": "1ail1I6GhADqS27NOR9ht4"
  4713. },
  4714. {
  4715. "__type__": "cc.PrefabInfo",
  4716. "root": {
  4717. "__id__": 1
  4718. },
  4719. "asset": {
  4720. "__id__": 0
  4721. },
  4722. "fileId": "341owByJFIBY/AfeN3jWhZ",
  4723. "instance": null,
  4724. "targetOverrides": null,
  4725. "nestedPrefabInstanceRoots": null
  4726. },
  4727. {
  4728. "__type__": "cc.Node",
  4729. "_name": "item_9",
  4730. "_objFlags": 0,
  4731. "__editorExtras__": {},
  4732. "_parent": {
  4733. "__id__": 99
  4734. },
  4735. "_children": [],
  4736. "_active": true,
  4737. "_components": [
  4738. {
  4739. "__id__": 223
  4740. },
  4741. {
  4742. "__id__": 225
  4743. },
  4744. {
  4745. "__id__": 227
  4746. },
  4747. {
  4748. "__id__": 229
  4749. }
  4750. ],
  4751. "_prefab": {
  4752. "__id__": 231
  4753. },
  4754. "_lpos": {
  4755. "__type__": "cc.Vec3",
  4756. "x": -1304.029,
  4757. "y": -472.129,
  4758. "z": 0
  4759. },
  4760. "_lrot": {
  4761. "__type__": "cc.Quat",
  4762. "x": 0,
  4763. "y": 0,
  4764. "z": 0,
  4765. "w": 1
  4766. },
  4767. "_lscale": {
  4768. "__type__": "cc.Vec3",
  4769. "x": 2,
  4770. "y": 2,
  4771. "z": 1
  4772. },
  4773. "_mobility": 0,
  4774. "_layer": 33554432,
  4775. "_euler": {
  4776. "__type__": "cc.Vec3",
  4777. "x": 0,
  4778. "y": 0,
  4779. "z": 0
  4780. },
  4781. "_id": ""
  4782. },
  4783. {
  4784. "__type__": "cc.UITransform",
  4785. "_name": "",
  4786. "_objFlags": 0,
  4787. "__editorExtras__": {},
  4788. "node": {
  4789. "__id__": 222
  4790. },
  4791. "_enabled": true,
  4792. "__prefab": {
  4793. "__id__": 224
  4794. },
  4795. "_contentSize": {
  4796. "__type__": "cc.Size",
  4797. "width": 100,
  4798. "height": 100
  4799. },
  4800. "_anchorPoint": {
  4801. "__type__": "cc.Vec2",
  4802. "x": 0.5,
  4803. "y": 0.5
  4804. },
  4805. "_id": ""
  4806. },
  4807. {
  4808. "__type__": "cc.CompPrefabInfo",
  4809. "fileId": "c7GNuDQFZGFYWrlE/wvyAU"
  4810. },
  4811. {
  4812. "__type__": "cc.Sprite",
  4813. "_name": "",
  4814. "_objFlags": 0,
  4815. "__editorExtras__": {},
  4816. "node": {
  4817. "__id__": 222
  4818. },
  4819. "_enabled": true,
  4820. "__prefab": {
  4821. "__id__": 226
  4822. },
  4823. "_customMaterial": null,
  4824. "_srcBlendFactor": 2,
  4825. "_dstBlendFactor": 4,
  4826. "_color": {
  4827. "__type__": "cc.Color",
  4828. "r": 255,
  4829. "g": 0,
  4830. "b": 0,
  4831. "a": 255
  4832. },
  4833. "_spriteFrame": {
  4834. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  4835. "__expectedType__": "cc.SpriteFrame"
  4836. },
  4837. "_type": 0,
  4838. "_fillType": 0,
  4839. "_sizeMode": 0,
  4840. "_fillCenter": {
  4841. "__type__": "cc.Vec2",
  4842. "x": 0,
  4843. "y": 0
  4844. },
  4845. "_fillStart": 0,
  4846. "_fillRange": 0,
  4847. "_isTrimmedMode": true,
  4848. "_useGrayscale": false,
  4849. "_atlas": null,
  4850. "_id": ""
  4851. },
  4852. {
  4853. "__type__": "cc.CompPrefabInfo",
  4854. "fileId": "cdiwovCidMZZuAeDZf6VDL"
  4855. },
  4856. {
  4857. "__type__": "cc.UIOpacity",
  4858. "_name": "",
  4859. "_objFlags": 0,
  4860. "__editorExtras__": {},
  4861. "node": {
  4862. "__id__": 222
  4863. },
  4864. "_enabled": true,
  4865. "__prefab": {
  4866. "__id__": 228
  4867. },
  4868. "_opacity": 0,
  4869. "_id": ""
  4870. },
  4871. {
  4872. "__type__": "cc.CompPrefabInfo",
  4873. "fileId": "b3DR4bTh9MlY/1uNXIfgUw"
  4874. },
  4875. {
  4876. "__type__": "cc.BlockInputEvents",
  4877. "_name": "",
  4878. "_objFlags": 0,
  4879. "__editorExtras__": {},
  4880. "node": {
  4881. "__id__": 222
  4882. },
  4883. "_enabled": true,
  4884. "__prefab": {
  4885. "__id__": 230
  4886. },
  4887. "_id": ""
  4888. },
  4889. {
  4890. "__type__": "cc.CompPrefabInfo",
  4891. "fileId": "6euhzcEw1D25+pbLkJR/Yn"
  4892. },
  4893. {
  4894. "__type__": "cc.PrefabInfo",
  4895. "root": {
  4896. "__id__": 1
  4897. },
  4898. "asset": {
  4899. "__id__": 0
  4900. },
  4901. "fileId": "599yxXcklC0IY2UylmcY4d",
  4902. "instance": null,
  4903. "targetOverrides": null,
  4904. "nestedPrefabInstanceRoots": null
  4905. },
  4906. {
  4907. "__type__": "cc.Node",
  4908. "_name": "item_10",
  4909. "_objFlags": 0,
  4910. "__editorExtras__": {},
  4911. "_parent": {
  4912. "__id__": 99
  4913. },
  4914. "_children": [],
  4915. "_active": true,
  4916. "_components": [
  4917. {
  4918. "__id__": 233
  4919. },
  4920. {
  4921. "__id__": 235
  4922. },
  4923. {
  4924. "__id__": 237
  4925. },
  4926. {
  4927. "__id__": 239
  4928. }
  4929. ],
  4930. "_prefab": {
  4931. "__id__": 241
  4932. },
  4933. "_lpos": {
  4934. "__type__": "cc.Vec3",
  4935. "x": -520.772,
  4936. "y": -810.001,
  4937. "z": 0
  4938. },
  4939. "_lrot": {
  4940. "__type__": "cc.Quat",
  4941. "x": 0,
  4942. "y": 0,
  4943. "z": 0,
  4944. "w": 1
  4945. },
  4946. "_lscale": {
  4947. "__type__": "cc.Vec3",
  4948. "x": 2,
  4949. "y": 2,
  4950. "z": 1
  4951. },
  4952. "_mobility": 0,
  4953. "_layer": 33554432,
  4954. "_euler": {
  4955. "__type__": "cc.Vec3",
  4956. "x": 0,
  4957. "y": 0,
  4958. "z": 0
  4959. },
  4960. "_id": ""
  4961. },
  4962. {
  4963. "__type__": "cc.UITransform",
  4964. "_name": "",
  4965. "_objFlags": 0,
  4966. "__editorExtras__": {},
  4967. "node": {
  4968. "__id__": 232
  4969. },
  4970. "_enabled": true,
  4971. "__prefab": {
  4972. "__id__": 234
  4973. },
  4974. "_contentSize": {
  4975. "__type__": "cc.Size",
  4976. "width": 100,
  4977. "height": 100
  4978. },
  4979. "_anchorPoint": {
  4980. "__type__": "cc.Vec2",
  4981. "x": 0.5,
  4982. "y": 0.5
  4983. },
  4984. "_id": ""
  4985. },
  4986. {
  4987. "__type__": "cc.CompPrefabInfo",
  4988. "fileId": "04oY/HsaRHwr/oh+vMZ/A3"
  4989. },
  4990. {
  4991. "__type__": "cc.Sprite",
  4992. "_name": "",
  4993. "_objFlags": 0,
  4994. "__editorExtras__": {},
  4995. "node": {
  4996. "__id__": 232
  4997. },
  4998. "_enabled": true,
  4999. "__prefab": {
  5000. "__id__": 236
  5001. },
  5002. "_customMaterial": null,
  5003. "_srcBlendFactor": 2,
  5004. "_dstBlendFactor": 4,
  5005. "_color": {
  5006. "__type__": "cc.Color",
  5007. "r": 255,
  5008. "g": 0,
  5009. "b": 0,
  5010. "a": 255
  5011. },
  5012. "_spriteFrame": {
  5013. "__uuid__": "b0ec82fe-f7c8-4a7b-8139-2979af07d506@f9941",
  5014. "__expectedType__": "cc.SpriteFrame"
  5015. },
  5016. "_type": 0,
  5017. "_fillType": 0,
  5018. "_sizeMode": 0,
  5019. "_fillCenter": {
  5020. "__type__": "cc.Vec2",
  5021. "x": 0,
  5022. "y": 0
  5023. },
  5024. "_fillStart": 0,
  5025. "_fillRange": 0,
  5026. "_isTrimmedMode": true,
  5027. "_useGrayscale": false,
  5028. "_atlas": null,
  5029. "_id": ""
  5030. },
  5031. {
  5032. "__type__": "cc.CompPrefabInfo",
  5033. "fileId": "3e7N+dw5hLvp+eYxwfqYkW"
  5034. },
  5035. {
  5036. "__type__": "cc.UIOpacity",
  5037. "_name": "",
  5038. "_objFlags": 0,
  5039. "__editorExtras__": {},
  5040. "node": {
  5041. "__id__": 232
  5042. },
  5043. "_enabled": true,
  5044. "__prefab": {
  5045. "__id__": 238
  5046. },
  5047. "_opacity": 0,
  5048. "_id": ""
  5049. },
  5050. {
  5051. "__type__": "cc.CompPrefabInfo",
  5052. "fileId": "97MErIv+pHKpkMUtBRcAAh"
  5053. },
  5054. {
  5055. "__type__": "cc.BlockInputEvents",
  5056. "_name": "",
  5057. "_objFlags": 0,
  5058. "__editorExtras__": {},
  5059. "node": {
  5060. "__id__": 232
  5061. },
  5062. "_enabled": true,
  5063. "__prefab": {
  5064. "__id__": 240
  5065. },
  5066. "_id": ""
  5067. },
  5068. {
  5069. "__type__": "cc.CompPrefabInfo",
  5070. "fileId": "85/IB7ULxHcYJ6FTyx4Bkl"
  5071. },
  5072. {
  5073. "__type__": "cc.PrefabInfo",
  5074. "root": {
  5075. "__id__": 1
  5076. },
  5077. "asset": {
  5078. "__id__": 0
  5079. },
  5080. "fileId": "97oDrnkAZAKqVt6u+Rilql",
  5081. "instance": null,
  5082. "targetOverrides": null,
  5083. "nestedPrefabInstanceRoots": null
  5084. },
  5085. {
  5086. "__type__": "cc.Node",
  5087. "_name": "zhangai2",
  5088. "_objFlags": 0,
  5089. "__editorExtras__": {},
  5090. "_parent": {
  5091. "__id__": 99
  5092. },
  5093. "_children": [],
  5094. "_active": true,
  5095. "_components": [
  5096. {
  5097. "__id__": 243
  5098. },
  5099. {
  5100. "__id__": 245
  5101. },
  5102. {
  5103. "__id__": 247
  5104. }
  5105. ],
  5106. "_prefab": {
  5107. "__id__": 249
  5108. },
  5109. "_lpos": {
  5110. "__type__": "cc.Vec3",
  5111. "x": 1177.971,
  5112. "y": 1636.491,
  5113. "z": 0
  5114. },
  5115. "_lrot": {
  5116. "__type__": "cc.Quat",
  5117. "x": 0,
  5118. "y": 0,
  5119. "z": 0,
  5120. "w": 1
  5121. },
  5122. "_lscale": {
  5123. "__type__": "cc.Vec3",
  5124. "x": 1,
  5125. "y": 1,
  5126. "z": 1
  5127. },
  5128. "_mobility": 0,
  5129. "_layer": 33554432,
  5130. "_euler": {
  5131. "__type__": "cc.Vec3",
  5132. "x": 0,
  5133. "y": 0,
  5134. "z": 0
  5135. },
  5136. "_id": ""
  5137. },
  5138. {
  5139. "__type__": "cc.UITransform",
  5140. "_name": "",
  5141. "_objFlags": 0,
  5142. "__editorExtras__": {},
  5143. "node": {
  5144. "__id__": 242
  5145. },
  5146. "_enabled": true,
  5147. "__prefab": {
  5148. "__id__": 244
  5149. },
  5150. "_contentSize": {
  5151. "__type__": "cc.Size",
  5152. "width": 193,
  5153. "height": 737
  5154. },
  5155. "_anchorPoint": {
  5156. "__type__": "cc.Vec2",
  5157. "x": 0.5,
  5158. "y": 0.5
  5159. },
  5160. "_id": ""
  5161. },
  5162. {
  5163. "__type__": "cc.CompPrefabInfo",
  5164. "fileId": "53I3VTm29Ku7ZVME4JSGEt"
  5165. },
  5166. {
  5167. "__type__": "cc.Sprite",
  5168. "_name": "",
  5169. "_objFlags": 0,
  5170. "__editorExtras__": {},
  5171. "node": {
  5172. "__id__": 242
  5173. },
  5174. "_enabled": true,
  5175. "__prefab": {
  5176. "__id__": 246
  5177. },
  5178. "_customMaterial": null,
  5179. "_srcBlendFactor": 2,
  5180. "_dstBlendFactor": 4,
  5181. "_color": {
  5182. "__type__": "cc.Color",
  5183. "r": 255,
  5184. "g": 255,
  5185. "b": 255,
  5186. "a": 255
  5187. },
  5188. "_spriteFrame": {
  5189. "__uuid__": "5eadf405-f512-483a-8e2d-ebd0ccb599c7@f9941",
  5190. "__expectedType__": "cc.SpriteFrame"
  5191. },
  5192. "_type": 0,
  5193. "_fillType": 0,
  5194. "_sizeMode": 1,
  5195. "_fillCenter": {
  5196. "__type__": "cc.Vec2",
  5197. "x": 0,
  5198. "y": 0
  5199. },
  5200. "_fillStart": 0,
  5201. "_fillRange": 0,
  5202. "_isTrimmedMode": true,
  5203. "_useGrayscale": false,
  5204. "_atlas": null,
  5205. "_id": ""
  5206. },
  5207. {
  5208. "__type__": "cc.CompPrefabInfo",
  5209. "fileId": "f5pMG6JBtAbp9qocGGdqs4"
  5210. },
  5211. {
  5212. "__type__": "cc.UIOpacity",
  5213. "_name": "",
  5214. "_objFlags": 0,
  5215. "__editorExtras__": {},
  5216. "node": {
  5217. "__id__": 242
  5218. },
  5219. "_enabled": true,
  5220. "__prefab": {
  5221. "__id__": 248
  5222. },
  5223. "_opacity": 255,
  5224. "_id": ""
  5225. },
  5226. {
  5227. "__type__": "cc.CompPrefabInfo",
  5228. "fileId": "1eFOs8aapPJbAyKzwuF5yx"
  5229. },
  5230. {
  5231. "__type__": "cc.PrefabInfo",
  5232. "root": {
  5233. "__id__": 1
  5234. },
  5235. "asset": {
  5236. "__id__": 0
  5237. },
  5238. "fileId": "8ccLdkm3hN/oleGPEXYfBp",
  5239. "instance": null,
  5240. "targetOverrides": null,
  5241. "nestedPrefabInstanceRoots": null
  5242. },
  5243. {
  5244. "__type__": "cc.UITransform",
  5245. "_name": "",
  5246. "_objFlags": 0,
  5247. "__editorExtras__": {},
  5248. "node": {
  5249. "__id__": 99
  5250. },
  5251. "_enabled": true,
  5252. "__prefab": {
  5253. "__id__": 251
  5254. },
  5255. "_contentSize": {
  5256. "__type__": "cc.Size",
  5257. "width": 3002,
  5258. "height": 4015
  5259. },
  5260. "_anchorPoint": {
  5261. "__type__": "cc.Vec2",
  5262. "x": 0.5,
  5263. "y": 0.5
  5264. },
  5265. "_id": ""
  5266. },
  5267. {
  5268. "__type__": "cc.CompPrefabInfo",
  5269. "fileId": "83BxBAq51BC7pcvmGFXz82"
  5270. },
  5271. {
  5272. "__type__": "cc.Sprite",
  5273. "_name": "",
  5274. "_objFlags": 0,
  5275. "__editorExtras__": {},
  5276. "node": {
  5277. "__id__": 99
  5278. },
  5279. "_enabled": true,
  5280. "__prefab": {
  5281. "__id__": 253
  5282. },
  5283. "_customMaterial": null,
  5284. "_srcBlendFactor": 2,
  5285. "_dstBlendFactor": 4,
  5286. "_color": {
  5287. "__type__": "cc.Color",
  5288. "r": 255,
  5289. "g": 255,
  5290. "b": 255,
  5291. "a": 255
  5292. },
  5293. "_spriteFrame": {
  5294. "__uuid__": "201a51f3-bff0-4019-bdc2-ba43eb8da96d@f9941",
  5295. "__expectedType__": "cc.SpriteFrame"
  5296. },
  5297. "_type": 0,
  5298. "_fillType": 0,
  5299. "_sizeMode": 0,
  5300. "_fillCenter": {
  5301. "__type__": "cc.Vec2",
  5302. "x": 0,
  5303. "y": 0
  5304. },
  5305. "_fillStart": 0,
  5306. "_fillRange": 0,
  5307. "_isTrimmedMode": true,
  5308. "_useGrayscale": false,
  5309. "_atlas": null,
  5310. "_id": ""
  5311. },
  5312. {
  5313. "__type__": "cc.CompPrefabInfo",
  5314. "fileId": "9dGM9bnelEPo3wIUHm8haE"
  5315. },
  5316. {
  5317. "__type__": "cc.PrefabInfo",
  5318. "root": {
  5319. "__id__": 1
  5320. },
  5321. "asset": {
  5322. "__id__": 0
  5323. },
  5324. "fileId": "c5PoCRJCBKCLhXIOkrC1tH",
  5325. "instance": null,
  5326. "targetOverrides": null,
  5327. "nestedPrefabInstanceRoots": null
  5328. },
  5329. {
  5330. "__type__": "cc.UITransform",
  5331. "_name": "",
  5332. "_objFlags": 0,
  5333. "__editorExtras__": {},
  5334. "node": {
  5335. "__id__": 98
  5336. },
  5337. "_enabled": true,
  5338. "__prefab": {
  5339. "__id__": 256
  5340. },
  5341. "_contentSize": {
  5342. "__type__": "cc.Size",
  5343. "width": 720,
  5344. "height": 720
  5345. },
  5346. "_anchorPoint": {
  5347. "__type__": "cc.Vec2",
  5348. "x": 0.5,
  5349. "y": 0.5
  5350. },
  5351. "_id": ""
  5352. },
  5353. {
  5354. "__type__": "cc.CompPrefabInfo",
  5355. "fileId": "0erCbR17pOU6sbbmyMow34"
  5356. },
  5357. {
  5358. "__type__": "cc.Mask",
  5359. "_name": "",
  5360. "_objFlags": 0,
  5361. "__editorExtras__": {},
  5362. "node": {
  5363. "__id__": 98
  5364. },
  5365. "_enabled": true,
  5366. "__prefab": {
  5367. "__id__": 258
  5368. },
  5369. "_type": 0,
  5370. "_inverted": false,
  5371. "_segments": 64,
  5372. "_alphaThreshold": 0.1,
  5373. "_id": ""
  5374. },
  5375. {
  5376. "__type__": "cc.CompPrefabInfo",
  5377. "fileId": "9aUujILoRHFbiu6fxAi8sc"
  5378. },
  5379. {
  5380. "__type__": "cc.Graphics",
  5381. "_name": "",
  5382. "_objFlags": 0,
  5383. "__editorExtras__": {},
  5384. "node": {
  5385. "__id__": 98
  5386. },
  5387. "_enabled": true,
  5388. "__prefab": {
  5389. "__id__": 260
  5390. },
  5391. "_customMaterial": null,
  5392. "_srcBlendFactor": 2,
  5393. "_dstBlendFactor": 4,
  5394. "_color": {
  5395. "__type__": "cc.Color",
  5396. "r": 255,
  5397. "g": 255,
  5398. "b": 255,
  5399. "a": 255
  5400. },
  5401. "_lineWidth": 1,
  5402. "_strokeColor": {
  5403. "__type__": "cc.Color",
  5404. "r": 0,
  5405. "g": 0,
  5406. "b": 0,
  5407. "a": 255
  5408. },
  5409. "_lineJoin": 2,
  5410. "_lineCap": 0,
  5411. "_fillColor": {
  5412. "__type__": "cc.Color",
  5413. "r": 255,
  5414. "g": 255,
  5415. "b": 255,
  5416. "a": 0
  5417. },
  5418. "_miterLimit": 10,
  5419. "_id": ""
  5420. },
  5421. {
  5422. "__type__": "cc.CompPrefabInfo",
  5423. "fileId": "f0m/Q4eVdK4IRghgjfswp4"
  5424. },
  5425. {
  5426. "__type__": "f61f1g/KmdHY5IHRjOP6a4U",
  5427. "_name": "",
  5428. "_objFlags": 0,
  5429. "__editorExtras__": {},
  5430. "node": {
  5431. "__id__": 98
  5432. },
  5433. "_enabled": true,
  5434. "__prefab": {
  5435. "__id__": 262
  5436. },
  5437. "_id": ""
  5438. },
  5439. {
  5440. "__type__": "cc.CompPrefabInfo",
  5441. "fileId": "ff0sfkqgxMiYC45B8oUeAf"
  5442. },
  5443. {
  5444. "__type__": "cc.Widget",
  5445. "_name": "",
  5446. "_objFlags": 0,
  5447. "__editorExtras__": {},
  5448. "node": {
  5449. "__id__": 98
  5450. },
  5451. "_enabled": true,
  5452. "__prefab": {
  5453. "__id__": 264
  5454. },
  5455. "_alignFlags": 45,
  5456. "_target": null,
  5457. "_left": -1.4210854715202004e-14,
  5458. "_right": 1.4210854715202004e-14,
  5459. "_top": 224,
  5460. "_bottom": 336,
  5461. "_horizontalCenter": 0,
  5462. "_verticalCenter": 0,
  5463. "_isAbsLeft": true,
  5464. "_isAbsRight": true,
  5465. "_isAbsTop": true,
  5466. "_isAbsBottom": true,
  5467. "_isAbsHorizontalCenter": true,
  5468. "_isAbsVerticalCenter": true,
  5469. "_originalWidth": 720,
  5470. "_originalHeight": 720,
  5471. "_alignMode": 2,
  5472. "_lockFlags": 0,
  5473. "_id": ""
  5474. },
  5475. {
  5476. "__type__": "cc.CompPrefabInfo",
  5477. "fileId": "f1queg1F9KK6lyvrdq4z1p"
  5478. },
  5479. {
  5480. "__type__": "cc.PrefabInfo",
  5481. "root": {
  5482. "__id__": 1
  5483. },
  5484. "asset": {
  5485. "__id__": 0
  5486. },
  5487. "fileId": "3165PePgBFnrVlD6gq02nx",
  5488. "instance": null,
  5489. "targetOverrides": null,
  5490. "nestedPrefabInstanceRoots": null
  5491. },
  5492. {
  5493. "__type__": "cc.UITransform",
  5494. "_name": "",
  5495. "_objFlags": 0,
  5496. "__editorExtras__": {},
  5497. "node": {
  5498. "__id__": 1
  5499. },
  5500. "_enabled": true,
  5501. "__prefab": {
  5502. "__id__": 267
  5503. },
  5504. "_contentSize": {
  5505. "__type__": "cc.Size",
  5506. "width": 720,
  5507. "height": 1280
  5508. },
  5509. "_anchorPoint": {
  5510. "__type__": "cc.Vec2",
  5511. "x": 0.5,
  5512. "y": 0.5
  5513. },
  5514. "_id": ""
  5515. },
  5516. {
  5517. "__type__": "cc.CompPrefabInfo",
  5518. "fileId": "b30K2mmSNKh6Q8O1BM1EjJ"
  5519. },
  5520. {
  5521. "__type__": "cc.Widget",
  5522. "_name": "",
  5523. "_objFlags": 0,
  5524. "__editorExtras__": {},
  5525. "node": {
  5526. "__id__": 1
  5527. },
  5528. "_enabled": true,
  5529. "__prefab": {
  5530. "__id__": 269
  5531. },
  5532. "_alignFlags": 45,
  5533. "_target": null,
  5534. "_left": 0,
  5535. "_right": 0,
  5536. "_top": 0,
  5537. "_bottom": 0,
  5538. "_horizontalCenter": 0,
  5539. "_verticalCenter": 0,
  5540. "_isAbsLeft": true,
  5541. "_isAbsRight": true,
  5542. "_isAbsTop": true,
  5543. "_isAbsBottom": true,
  5544. "_isAbsHorizontalCenter": true,
  5545. "_isAbsVerticalCenter": true,
  5546. "_originalWidth": 100,
  5547. "_originalHeight": 100,
  5548. "_alignMode": 2,
  5549. "_lockFlags": 0,
  5550. "_id": ""
  5551. },
  5552. {
  5553. "__type__": "cc.CompPrefabInfo",
  5554. "fileId": "047bITCtxDz7pJrLXoiQwA"
  5555. },
  5556. {
  5557. "__type__": "76c73SKP4dA5r/o00H3Punv",
  5558. "_name": "",
  5559. "_objFlags": 0,
  5560. "__editorExtras__": {},
  5561. "node": {
  5562. "__id__": 1
  5563. },
  5564. "_enabled": true,
  5565. "__prefab": {
  5566. "__id__": 271
  5567. },
  5568. "arr_tishi": [
  5569. "滑动灯笼",
  5570. "",
  5571. "",
  5572. "",
  5573. "",
  5574. "",
  5575. "滑动楼上从右边数第二扇窗,露出空调",
  5576. "",
  5577. "",
  5578. "",
  5579. ""
  5580. ],
  5581. "tishi_indexs": [
  5582. 0,
  5583. 6
  5584. ],
  5585. "node_zhanai": {
  5586. "__id__": 124
  5587. },
  5588. "node_zhanai2": {
  5589. "__id__": 242
  5590. },
  5591. "_id": ""
  5592. },
  5593. {
  5594. "__type__": "cc.CompPrefabInfo",
  5595. "fileId": "fdFxYhNjNIvrfF+T+ioBst"
  5596. },
  5597. {
  5598. "__type__": "cc.PrefabInfo",
  5599. "root": {
  5600. "__id__": 1
  5601. },
  5602. "asset": {
  5603. "__id__": 0
  5604. },
  5605. "fileId": "84EJqt0yZOs7GBZWZ8Rsvl",
  5606. "instance": null,
  5607. "targetOverrides": null
  5608. }
  5609. ]