MapIcon_Farm.prefab 135 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "MapIcon_Farm",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 8
  24. },
  25. {
  26. "__id__": 18
  27. },
  28. {
  29. "__id__": 30
  30. },
  31. {
  32. "__id__": 202
  33. }
  34. ],
  35. "_active": true,
  36. "_components": [
  37. {
  38. "__id__": 381
  39. },
  40. {
  41. "__id__": 383
  42. },
  43. {
  44. "__id__": 385
  45. },
  46. {
  47. "__id__": 387
  48. },
  49. {
  50. "__id__": 389
  51. },
  52. {
  53. "__id__": 392
  54. },
  55. {
  56. "__id__": 394
  57. },
  58. {
  59. "__id__": 378
  60. },
  61. {
  62. "__id__": 396
  63. }
  64. ],
  65. "_prefab": {
  66. "__id__": 398
  67. },
  68. "_lpos": {
  69. "__type__": "cc.Vec3",
  70. "x": 0,
  71. "y": 0,
  72. "z": 0
  73. },
  74. "_lrot": {
  75. "__type__": "cc.Quat",
  76. "x": 0,
  77. "y": 0,
  78. "z": 0,
  79. "w": 1
  80. },
  81. "_lscale": {
  82. "__type__": "cc.Vec3",
  83. "x": 1,
  84. "y": 1,
  85. "z": 1
  86. },
  87. "_layer": 1073741824,
  88. "_euler": {
  89. "__type__": "cc.Vec3",
  90. "x": 0,
  91. "y": 0,
  92. "z": 0
  93. },
  94. "_id": ""
  95. },
  96. {
  97. "__type__": "cc.Node",
  98. "_name": "farm_lock",
  99. "_objFlags": 0,
  100. "_parent": {
  101. "__id__": 1
  102. },
  103. "_children": [],
  104. "_active": false,
  105. "_components": [
  106. {
  107. "__id__": 3
  108. },
  109. {
  110. "__id__": 5
  111. }
  112. ],
  113. "_prefab": {
  114. "__id__": 7
  115. },
  116. "_lpos": {
  117. "__type__": "cc.Vec3",
  118. "x": 0,
  119. "y": 0,
  120. "z": 0
  121. },
  122. "_lrot": {
  123. "__type__": "cc.Quat",
  124. "x": 0,
  125. "y": 0,
  126. "z": 0,
  127. "w": 1
  128. },
  129. "_lscale": {
  130. "__type__": "cc.Vec3",
  131. "x": 1,
  132. "y": 1,
  133. "z": 1
  134. },
  135. "_layer": 1073741824,
  136. "_euler": {
  137. "__type__": "cc.Vec3",
  138. "x": 0,
  139. "y": 0,
  140. "z": 0
  141. },
  142. "_id": ""
  143. },
  144. {
  145. "__type__": "cc.UITransform",
  146. "_name": "",
  147. "_objFlags": 0,
  148. "node": {
  149. "__id__": 2
  150. },
  151. "_enabled": true,
  152. "__prefab": {
  153. "__id__": 4
  154. },
  155. "_priority": 0,
  156. "_contentSize": {
  157. "__type__": "cc.Size",
  158. "width": 155,
  159. "height": 97
  160. },
  161. "_anchorPoint": {
  162. "__type__": "cc.Vec2",
  163. "x": 0.5,
  164. "y": 0.5
  165. },
  166. "_id": ""
  167. },
  168. {
  169. "__type__": "cc.CompPrefabInfo",
  170. "fileId": "5f9AiAgY9DCq7i/0pCUHly"
  171. },
  172. {
  173. "__type__": "cc.Sprite",
  174. "_name": "",
  175. "_objFlags": 0,
  176. "node": {
  177. "__id__": 2
  178. },
  179. "_enabled": true,
  180. "__prefab": {
  181. "__id__": 6
  182. },
  183. "_visFlags": 0,
  184. "_customMaterial": null,
  185. "_srcBlendFactor": 2,
  186. "_dstBlendFactor": 4,
  187. "_color": {
  188. "__type__": "cc.Color",
  189. "r": 255,
  190. "g": 255,
  191. "b": 255,
  192. "a": 255
  193. },
  194. "_spriteFrame": {
  195. "__uuid__": "7b80c94e-db2d-4dfa-afea-65fc6b1f80f1@f9941"
  196. },
  197. "_type": 0,
  198. "_fillType": 0,
  199. "_sizeMode": 1,
  200. "_fillCenter": {
  201. "__type__": "cc.Vec2",
  202. "x": 0,
  203. "y": 0
  204. },
  205. "_fillStart": 0,
  206. "_fillRange": 0,
  207. "_isTrimmedMode": true,
  208. "_useGrayscale": false,
  209. "_atlas": null,
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "cc.CompPrefabInfo",
  214. "fileId": "d4PUfjPipM+aJfN4bZhpKn"
  215. },
  216. {
  217. "__type__": "cc.PrefabInfo",
  218. "root": {
  219. "__id__": 1
  220. },
  221. "asset": {
  222. "__id__": 0
  223. },
  224. "fileId": "08TVuBrZ5JHbBHPiukVmAK"
  225. },
  226. {
  227. "__type__": "cc.Node",
  228. "_name": "farm_select",
  229. "_objFlags": 0,
  230. "_parent": {
  231. "__id__": 1
  232. },
  233. "_children": [],
  234. "_active": false,
  235. "_components": [
  236. {
  237. "__id__": 9
  238. },
  239. {
  240. "__id__": 11
  241. },
  242. {
  243. "__id__": 13
  244. },
  245. {
  246. "__id__": 15
  247. }
  248. ],
  249. "_prefab": {
  250. "__id__": 17
  251. },
  252. "_lpos": {
  253. "__type__": "cc.Vec3",
  254. "x": 0,
  255. "y": 0,
  256. "z": 0
  257. },
  258. "_lrot": {
  259. "__type__": "cc.Quat",
  260. "x": 0,
  261. "y": 0,
  262. "z": 0,
  263. "w": 1
  264. },
  265. "_lscale": {
  266. "__type__": "cc.Vec3",
  267. "x": 1,
  268. "y": 1,
  269. "z": 1
  270. },
  271. "_layer": 1073741824,
  272. "_euler": {
  273. "__type__": "cc.Vec3",
  274. "x": 0,
  275. "y": 0,
  276. "z": 0
  277. },
  278. "_id": ""
  279. },
  280. {
  281. "__type__": "cc.UITransform",
  282. "_name": "",
  283. "_objFlags": 0,
  284. "node": {
  285. "__id__": 8
  286. },
  287. "_enabled": true,
  288. "__prefab": {
  289. "__id__": 10
  290. },
  291. "_priority": 0,
  292. "_contentSize": {
  293. "__type__": "cc.Size",
  294. "width": 175,
  295. "height": 114
  296. },
  297. "_anchorPoint": {
  298. "__type__": "cc.Vec2",
  299. "x": 0.5,
  300. "y": 0.5
  301. },
  302. "_id": ""
  303. },
  304. {
  305. "__type__": "cc.CompPrefabInfo",
  306. "fileId": "a1oaWX88NDsZrszLKRL3ls"
  307. },
  308. {
  309. "__type__": "cc.Sprite",
  310. "_name": "",
  311. "_objFlags": 0,
  312. "node": {
  313. "__id__": 8
  314. },
  315. "_enabled": true,
  316. "__prefab": {
  317. "__id__": 12
  318. },
  319. "_visFlags": 0,
  320. "_customMaterial": null,
  321. "_srcBlendFactor": 2,
  322. "_dstBlendFactor": 4,
  323. "_color": {
  324. "__type__": "cc.Color",
  325. "r": 255,
  326. "g": 255,
  327. "b": 255,
  328. "a": 255
  329. },
  330. "_spriteFrame": {
  331. "__uuid__": "39c8009f-ba90-4e56-bfbc-c99afea6186d@f9941"
  332. },
  333. "_type": 0,
  334. "_fillType": 0,
  335. "_sizeMode": 1,
  336. "_fillCenter": {
  337. "__type__": "cc.Vec2",
  338. "x": 0,
  339. "y": 0
  340. },
  341. "_fillStart": 0,
  342. "_fillRange": 0,
  343. "_isTrimmedMode": true,
  344. "_useGrayscale": false,
  345. "_atlas": null,
  346. "_id": ""
  347. },
  348. {
  349. "__type__": "cc.CompPrefabInfo",
  350. "fileId": "2bgqG7JShKaouk/RvCjG8P"
  351. },
  352. {
  353. "__type__": "cc.Animation",
  354. "_name": "",
  355. "_objFlags": 0,
  356. "node": {
  357. "__id__": 8
  358. },
  359. "_enabled": true,
  360. "__prefab": {
  361. "__id__": 14
  362. },
  363. "playOnLoad": true,
  364. "_clips": [
  365. {
  366. "__uuid__": "d91ec195-4c88-4945-90a5-ac8bb0f09ac2"
  367. }
  368. ],
  369. "_defaultClip": {
  370. "__uuid__": "d91ec195-4c88-4945-90a5-ac8bb0f09ac2"
  371. },
  372. "_id": ""
  373. },
  374. {
  375. "__type__": "cc.CompPrefabInfo",
  376. "fileId": "dcDxJcQ/FNwLvyl2x/2KMO"
  377. },
  378. {
  379. "__type__": "cc.UIOpacity",
  380. "_name": "",
  381. "_objFlags": 0,
  382. "node": {
  383. "__id__": 8
  384. },
  385. "_enabled": true,
  386. "__prefab": {
  387. "__id__": 16
  388. },
  389. "_opacity": 255,
  390. "_id": ""
  391. },
  392. {
  393. "__type__": "cc.CompPrefabInfo",
  394. "fileId": "70ONvPL+ZPtaSXRy2jG3rO"
  395. },
  396. {
  397. "__type__": "cc.PrefabInfo",
  398. "root": {
  399. "__id__": 1
  400. },
  401. "asset": {
  402. "__id__": 0
  403. },
  404. "fileId": "102ogjMwpFC5ScuwdUcKu2"
  405. },
  406. {
  407. "__type__": "cc.Node",
  408. "_name": "种植动画",
  409. "_objFlags": 0,
  410. "_parent": {
  411. "__id__": 1
  412. },
  413. "_children": [],
  414. "_active": false,
  415. "_components": [
  416. {
  417. "__id__": 19
  418. },
  419. {
  420. "__id__": 21
  421. },
  422. {
  423. "__id__": 23
  424. },
  425. {
  426. "__id__": 25
  427. },
  428. {
  429. "__id__": 27
  430. }
  431. ],
  432. "_prefab": {
  433. "__id__": 29
  434. },
  435. "_lpos": {
  436. "__type__": "cc.Vec3",
  437. "x": -10,
  438. "y": 70,
  439. "z": 0
  440. },
  441. "_lrot": {
  442. "__type__": "cc.Quat",
  443. "x": 0,
  444. "y": 0,
  445. "z": 0,
  446. "w": 1
  447. },
  448. "_lscale": {
  449. "__type__": "cc.Vec3",
  450. "x": 0.3,
  451. "y": 0.3,
  452. "z": 1
  453. },
  454. "_layer": 1073741824,
  455. "_euler": {
  456. "__type__": "cc.Vec3",
  457. "x": 0,
  458. "y": 0,
  459. "z": 0
  460. },
  461. "_id": ""
  462. },
  463. {
  464. "__type__": "cc.UITransform",
  465. "_name": "",
  466. "_objFlags": 0,
  467. "node": {
  468. "__id__": 18
  469. },
  470. "_enabled": true,
  471. "__prefab": {
  472. "__id__": 20
  473. },
  474. "_priority": 0,
  475. "_contentSize": {
  476. "__type__": "cc.Size",
  477. "width": 175,
  478. "height": 173
  479. },
  480. "_anchorPoint": {
  481. "__type__": "cc.Vec2",
  482. "x": 0.5,
  483. "y": 0.5
  484. },
  485. "_id": ""
  486. },
  487. {
  488. "__type__": "cc.CompPrefabInfo",
  489. "fileId": "63if40i/BKsoacI8Cql00W"
  490. },
  491. {
  492. "__type__": "cc.Sprite",
  493. "_name": "",
  494. "_objFlags": 0,
  495. "node": {
  496. "__id__": 18
  497. },
  498. "_enabled": true,
  499. "__prefab": {
  500. "__id__": 22
  501. },
  502. "_visFlags": 0,
  503. "_customMaterial": null,
  504. "_srcBlendFactor": 2,
  505. "_dstBlendFactor": 4,
  506. "_color": {
  507. "__type__": "cc.Color",
  508. "r": 255,
  509. "g": 255,
  510. "b": 255,
  511. "a": 255
  512. },
  513. "_spriteFrame": {
  514. "__uuid__": "d28bad6d-ac92-49a6-a9a6-ad6a05f2101c@f9941"
  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": "d0jmTg4CpEJ5UWvBqOej9H"
  534. },
  535. {
  536. "__type__": "cc.UIOpacity",
  537. "_name": "",
  538. "_objFlags": 0,
  539. "node": {
  540. "__id__": 18
  541. },
  542. "_enabled": true,
  543. "__prefab": {
  544. "__id__": 24
  545. },
  546. "_opacity": 255,
  547. "_id": ""
  548. },
  549. {
  550. "__type__": "cc.CompPrefabInfo",
  551. "fileId": "11e6k2taRKaqbOAQZKpgZz"
  552. },
  553. {
  554. "__type__": "cc.Animation",
  555. "_name": "",
  556. "_objFlags": 0,
  557. "node": {
  558. "__id__": 18
  559. },
  560. "_enabled": true,
  561. "__prefab": {
  562. "__id__": 26
  563. },
  564. "playOnLoad": false,
  565. "_clips": [
  566. {
  567. "__uuid__": "46c5e8a3-6653-4c85-9faa-fb3bc0d3ce53"
  568. }
  569. ],
  570. "_defaultClip": {
  571. "__uuid__": "46c5e8a3-6653-4c85-9faa-fb3bc0d3ce53"
  572. },
  573. "_id": ""
  574. },
  575. {
  576. "__type__": "cc.CompPrefabInfo",
  577. "fileId": "96o5m/knpOU4Vpf9yDv1Tl"
  578. },
  579. {
  580. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  581. "_name": "",
  582. "_objFlags": 0,
  583. "node": {
  584. "__id__": 18
  585. },
  586. "_enabled": true,
  587. "__prefab": {
  588. "__id__": 28
  589. },
  590. "clips": [
  591. {
  592. "__uuid__": "5ff3af67-0953-491c-986b-2782f9bf0bbc"
  593. }
  594. ],
  595. "_volume": 1,
  596. "useGlobalVolume": true,
  597. "playOnLoad": false,
  598. "playOnTouch": false,
  599. "oneShot": true,
  600. "loop": false,
  601. "_id": ""
  602. },
  603. {
  604. "__type__": "cc.CompPrefabInfo",
  605. "fileId": "4daIY73rpGHpEIEgMxgVAq"
  606. },
  607. {
  608. "__type__": "cc.PrefabInfo",
  609. "root": {
  610. "__id__": 1
  611. },
  612. "asset": {
  613. "__id__": 0
  614. },
  615. "fileId": "cdefMrC6RPA5RR2BKt+TEw"
  616. },
  617. {
  618. "__type__": "cc.Node",
  619. "_name": "成长过程",
  620. "_objFlags": 0,
  621. "_parent": {
  622. "__id__": 1
  623. },
  624. "_children": [
  625. {
  626. "__id__": 31
  627. },
  628. {
  629. "__id__": 41
  630. },
  631. {
  632. "__id__": 93
  633. },
  634. {
  635. "__id__": 145
  636. }
  637. ],
  638. "_active": true,
  639. "_components": [
  640. {
  641. "__id__": 197
  642. },
  643. {
  644. "__id__": 199
  645. }
  646. ],
  647. "_prefab": {
  648. "__id__": 201
  649. },
  650. "_lpos": {
  651. "__type__": "cc.Vec3",
  652. "x": 0,
  653. "y": 0,
  654. "z": 0
  655. },
  656. "_lrot": {
  657. "__type__": "cc.Quat",
  658. "x": 0,
  659. "y": 0,
  660. "z": 0,
  661. "w": 1
  662. },
  663. "_lscale": {
  664. "__type__": "cc.Vec3",
  665. "x": 1,
  666. "y": 1,
  667. "z": 1
  668. },
  669. "_layer": 1073741824,
  670. "_euler": {
  671. "__type__": "cc.Vec3",
  672. "x": 0,
  673. "y": 0,
  674. "z": 0
  675. },
  676. "_id": ""
  677. },
  678. {
  679. "__type__": "cc.Node",
  680. "_name": "种子阶段",
  681. "_objFlags": 0,
  682. "_parent": {
  683. "__id__": 30
  684. },
  685. "_children": [
  686. {
  687. "__id__": 32
  688. }
  689. ],
  690. "_active": false,
  691. "_components": [
  692. {
  693. "__id__": 38
  694. }
  695. ],
  696. "_prefab": {
  697. "__id__": 40
  698. },
  699. "_lpos": {
  700. "__type__": "cc.Vec3",
  701. "x": 0,
  702. "y": 0,
  703. "z": 0
  704. },
  705. "_lrot": {
  706. "__type__": "cc.Quat",
  707. "x": 0,
  708. "y": 0,
  709. "z": 0,
  710. "w": 1
  711. },
  712. "_lscale": {
  713. "__type__": "cc.Vec3",
  714. "x": 1,
  715. "y": 1,
  716. "z": 1
  717. },
  718. "_layer": 1073741824,
  719. "_euler": {
  720. "__type__": "cc.Vec3",
  721. "x": 0,
  722. "y": 0,
  723. "z": 0
  724. },
  725. "_id": ""
  726. },
  727. {
  728. "__type__": "cc.Node",
  729. "_name": "种子图标",
  730. "_objFlags": 0,
  731. "_parent": {
  732. "__id__": 31
  733. },
  734. "_children": [],
  735. "_active": true,
  736. "_components": [
  737. {
  738. "__id__": 33
  739. },
  740. {
  741. "__id__": 35
  742. }
  743. ],
  744. "_prefab": {
  745. "__id__": 37
  746. },
  747. "_lpos": {
  748. "__type__": "cc.Vec3",
  749. "x": 1.533,
  750. "y": 5.934,
  751. "z": 0
  752. },
  753. "_lrot": {
  754. "__type__": "cc.Quat",
  755. "x": 0,
  756. "y": 0,
  757. "z": 0,
  758. "w": 1
  759. },
  760. "_lscale": {
  761. "__type__": "cc.Vec3",
  762. "x": 1,
  763. "y": 1,
  764. "z": 1
  765. },
  766. "_layer": 1073741824,
  767. "_euler": {
  768. "__type__": "cc.Vec3",
  769. "x": 0,
  770. "y": 0,
  771. "z": 0
  772. },
  773. "_id": ""
  774. },
  775. {
  776. "__type__": "cc.UITransform",
  777. "_name": "",
  778. "_objFlags": 0,
  779. "node": {
  780. "__id__": 32
  781. },
  782. "_enabled": true,
  783. "__prefab": {
  784. "__id__": 34
  785. },
  786. "_priority": 0,
  787. "_contentSize": {
  788. "__type__": "cc.Size",
  789. "width": 92,
  790. "height": 54
  791. },
  792. "_anchorPoint": {
  793. "__type__": "cc.Vec2",
  794. "x": 0.5,
  795. "y": 0.5
  796. },
  797. "_id": ""
  798. },
  799. {
  800. "__type__": "cc.CompPrefabInfo",
  801. "fileId": "dfklpJ9xdN8aqcOpp7C5ST"
  802. },
  803. {
  804. "__type__": "cc.Sprite",
  805. "_name": "",
  806. "_objFlags": 0,
  807. "node": {
  808. "__id__": 32
  809. },
  810. "_enabled": true,
  811. "__prefab": {
  812. "__id__": 36
  813. },
  814. "_visFlags": 0,
  815. "_customMaterial": null,
  816. "_srcBlendFactor": 2,
  817. "_dstBlendFactor": 4,
  818. "_color": {
  819. "__type__": "cc.Color",
  820. "r": 255,
  821. "g": 255,
  822. "b": 255,
  823. "a": 255
  824. },
  825. "_spriteFrame": {
  826. "__uuid__": "c49c8c5d-de6b-49dd-83d0-df77b504b799@f9941"
  827. },
  828. "_type": 0,
  829. "_fillType": 0,
  830. "_sizeMode": 1,
  831. "_fillCenter": {
  832. "__type__": "cc.Vec2",
  833. "x": 0,
  834. "y": 0
  835. },
  836. "_fillStart": 0,
  837. "_fillRange": 0,
  838. "_isTrimmedMode": true,
  839. "_useGrayscale": false,
  840. "_atlas": null,
  841. "_id": ""
  842. },
  843. {
  844. "__type__": "cc.CompPrefabInfo",
  845. "fileId": "12P5TuwM1KRqI1uGOUFXKs"
  846. },
  847. {
  848. "__type__": "cc.PrefabInfo",
  849. "root": {
  850. "__id__": 1
  851. },
  852. "asset": {
  853. "__id__": 0
  854. },
  855. "fileId": "48w2PFa/5FV547EAgvS4HT"
  856. },
  857. {
  858. "__type__": "cc.UITransform",
  859. "_name": "",
  860. "_objFlags": 0,
  861. "node": {
  862. "__id__": 31
  863. },
  864. "_enabled": true,
  865. "__prefab": {
  866. "__id__": 39
  867. },
  868. "_priority": 0,
  869. "_contentSize": {
  870. "__type__": "cc.Size",
  871. "width": 100,
  872. "height": 100
  873. },
  874. "_anchorPoint": {
  875. "__type__": "cc.Vec2",
  876. "x": 0.5,
  877. "y": 0.5
  878. },
  879. "_id": ""
  880. },
  881. {
  882. "__type__": "cc.CompPrefabInfo",
  883. "fileId": "bfRA1eENRD26IzcmYV0IGW"
  884. },
  885. {
  886. "__type__": "cc.PrefabInfo",
  887. "root": {
  888. "__id__": 1
  889. },
  890. "asset": {
  891. "__id__": 0
  892. },
  893. "fileId": "80femIDSZHA5rKn5NjoZ1d"
  894. },
  895. {
  896. "__type__": "cc.Node",
  897. "_name": "发芽阶段",
  898. "_objFlags": 0,
  899. "_parent": {
  900. "__id__": 30
  901. },
  902. "_children": [
  903. {
  904. "__id__": 42
  905. },
  906. {
  907. "__id__": 50
  908. },
  909. {
  910. "__id__": 58
  911. },
  912. {
  913. "__id__": 66
  914. },
  915. {
  916. "__id__": 74
  917. },
  918. {
  919. "__id__": 82
  920. }
  921. ],
  922. "_active": false,
  923. "_components": [
  924. {
  925. "__id__": 90
  926. }
  927. ],
  928. "_prefab": {
  929. "__id__": 92
  930. },
  931. "_lpos": {
  932. "__type__": "cc.Vec3",
  933. "x": 0,
  934. "y": 0,
  935. "z": 0
  936. },
  937. "_lrot": {
  938. "__type__": "cc.Quat",
  939. "x": 0,
  940. "y": 0,
  941. "z": 0,
  942. "w": 1
  943. },
  944. "_lscale": {
  945. "__type__": "cc.Vec3",
  946. "x": 1,
  947. "y": 1,
  948. "z": 1
  949. },
  950. "_layer": 1073741824,
  951. "_euler": {
  952. "__type__": "cc.Vec3",
  953. "x": 0,
  954. "y": 0,
  955. "z": 0
  956. },
  957. "_id": ""
  958. },
  959. {
  960. "__type__": "cc.Node",
  961. "_name": "faya_10001",
  962. "_objFlags": 0,
  963. "_parent": {
  964. "__id__": 41
  965. },
  966. "_children": [],
  967. "_active": true,
  968. "_components": [
  969. {
  970. "__id__": 43
  971. },
  972. {
  973. "__id__": 45
  974. },
  975. {
  976. "__id__": 47
  977. }
  978. ],
  979. "_prefab": {
  980. "__id__": 49
  981. },
  982. "_lpos": {
  983. "__type__": "cc.Vec3",
  984. "x": -43.226,
  985. "y": 9.456,
  986. "z": 0
  987. },
  988. "_lrot": {
  989. "__type__": "cc.Quat",
  990. "x": 0,
  991. "y": 0,
  992. "z": 0,
  993. "w": 1
  994. },
  995. "_lscale": {
  996. "__type__": "cc.Vec3",
  997. "x": 1,
  998. "y": 1,
  999. "z": 1
  1000. },
  1001. "_layer": 1073741824,
  1002. "_euler": {
  1003. "__type__": "cc.Vec3",
  1004. "x": 0,
  1005. "y": 0,
  1006. "z": 0
  1007. },
  1008. "_id": ""
  1009. },
  1010. {
  1011. "__type__": "cc.UITransform",
  1012. "_name": "",
  1013. "_objFlags": 0,
  1014. "node": {
  1015. "__id__": 42
  1016. },
  1017. "_enabled": true,
  1018. "__prefab": {
  1019. "__id__": 44
  1020. },
  1021. "_priority": 0,
  1022. "_contentSize": {
  1023. "__type__": "cc.Size",
  1024. "width": 21,
  1025. "height": 18
  1026. },
  1027. "_anchorPoint": {
  1028. "__type__": "cc.Vec2",
  1029. "x": 0.5,
  1030. "y": 0
  1031. },
  1032. "_id": ""
  1033. },
  1034. {
  1035. "__type__": "cc.CompPrefabInfo",
  1036. "fileId": "33ZqNkuWlFSrrmv/KDJ1X1"
  1037. },
  1038. {
  1039. "__type__": "cc.Sprite",
  1040. "_name": "",
  1041. "_objFlags": 0,
  1042. "node": {
  1043. "__id__": 42
  1044. },
  1045. "_enabled": true,
  1046. "__prefab": {
  1047. "__id__": 46
  1048. },
  1049. "_visFlags": 0,
  1050. "_customMaterial": null,
  1051. "_srcBlendFactor": 2,
  1052. "_dstBlendFactor": 4,
  1053. "_color": {
  1054. "__type__": "cc.Color",
  1055. "r": 255,
  1056. "g": 255,
  1057. "b": 255,
  1058. "a": 255
  1059. },
  1060. "_spriteFrame": {
  1061. "__uuid__": "4fc703cd-a7c6-4f6e-9a8e-24d45d9b58d8@f9941"
  1062. },
  1063. "_type": 0,
  1064. "_fillType": 0,
  1065. "_sizeMode": 1,
  1066. "_fillCenter": {
  1067. "__type__": "cc.Vec2",
  1068. "x": 0,
  1069. "y": 0
  1070. },
  1071. "_fillStart": 0,
  1072. "_fillRange": 0,
  1073. "_isTrimmedMode": true,
  1074. "_useGrayscale": false,
  1075. "_atlas": null,
  1076. "_id": ""
  1077. },
  1078. {
  1079. "__type__": "cc.CompPrefabInfo",
  1080. "fileId": "07dG2XU6ZIx7v8HJjeCE2Z"
  1081. },
  1082. {
  1083. "__type__": "cc.Animation",
  1084. "_name": "",
  1085. "_objFlags": 0,
  1086. "node": {
  1087. "__id__": 42
  1088. },
  1089. "_enabled": true,
  1090. "__prefab": {
  1091. "__id__": 48
  1092. },
  1093. "playOnLoad": true,
  1094. "_clips": [
  1095. {
  1096. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1097. }
  1098. ],
  1099. "_defaultClip": {
  1100. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1101. },
  1102. "_id": ""
  1103. },
  1104. {
  1105. "__type__": "cc.CompPrefabInfo",
  1106. "fileId": "11JWHOWqZHaaVf2HK4obqJ"
  1107. },
  1108. {
  1109. "__type__": "cc.PrefabInfo",
  1110. "root": {
  1111. "__id__": 1
  1112. },
  1113. "asset": {
  1114. "__id__": 0
  1115. },
  1116. "fileId": "b2nH2f2lZANqp3gBU5E1yf"
  1117. },
  1118. {
  1119. "__type__": "cc.Node",
  1120. "_name": "faya_10002",
  1121. "_objFlags": 0,
  1122. "_parent": {
  1123. "__id__": 41
  1124. },
  1125. "_children": [],
  1126. "_active": true,
  1127. "_components": [
  1128. {
  1129. "__id__": 51
  1130. },
  1131. {
  1132. "__id__": 53
  1133. },
  1134. {
  1135. "__id__": 55
  1136. }
  1137. ],
  1138. "_prefab": {
  1139. "__id__": 57
  1140. },
  1141. "_lpos": {
  1142. "__type__": "cc.Vec3",
  1143. "x": -13.024,
  1144. "y": -8.33,
  1145. "z": 0
  1146. },
  1147. "_lrot": {
  1148. "__type__": "cc.Quat",
  1149. "x": 0,
  1150. "y": 0,
  1151. "z": 0,
  1152. "w": 1
  1153. },
  1154. "_lscale": {
  1155. "__type__": "cc.Vec3",
  1156. "x": 1,
  1157. "y": 1,
  1158. "z": 1
  1159. },
  1160. "_layer": 1073741824,
  1161. "_euler": {
  1162. "__type__": "cc.Vec3",
  1163. "x": 0,
  1164. "y": 0,
  1165. "z": 0
  1166. },
  1167. "_id": ""
  1168. },
  1169. {
  1170. "__type__": "cc.UITransform",
  1171. "_name": "",
  1172. "_objFlags": 0,
  1173. "node": {
  1174. "__id__": 50
  1175. },
  1176. "_enabled": true,
  1177. "__prefab": {
  1178. "__id__": 52
  1179. },
  1180. "_priority": 0,
  1181. "_contentSize": {
  1182. "__type__": "cc.Size",
  1183. "width": 21,
  1184. "height": 18
  1185. },
  1186. "_anchorPoint": {
  1187. "__type__": "cc.Vec2",
  1188. "x": 0.5,
  1189. "y": 0
  1190. },
  1191. "_id": ""
  1192. },
  1193. {
  1194. "__type__": "cc.CompPrefabInfo",
  1195. "fileId": "04Q8B5FyBG8rdCNMkNIPpn"
  1196. },
  1197. {
  1198. "__type__": "cc.Sprite",
  1199. "_name": "",
  1200. "_objFlags": 0,
  1201. "node": {
  1202. "__id__": 50
  1203. },
  1204. "_enabled": true,
  1205. "__prefab": {
  1206. "__id__": 54
  1207. },
  1208. "_visFlags": 0,
  1209. "_customMaterial": null,
  1210. "_srcBlendFactor": 2,
  1211. "_dstBlendFactor": 4,
  1212. "_color": {
  1213. "__type__": "cc.Color",
  1214. "r": 255,
  1215. "g": 255,
  1216. "b": 255,
  1217. "a": 255
  1218. },
  1219. "_spriteFrame": {
  1220. "__uuid__": "4fc703cd-a7c6-4f6e-9a8e-24d45d9b58d8@f9941"
  1221. },
  1222. "_type": 0,
  1223. "_fillType": 0,
  1224. "_sizeMode": 1,
  1225. "_fillCenter": {
  1226. "__type__": "cc.Vec2",
  1227. "x": 0,
  1228. "y": 0
  1229. },
  1230. "_fillStart": 0,
  1231. "_fillRange": 0,
  1232. "_isTrimmedMode": true,
  1233. "_useGrayscale": false,
  1234. "_atlas": null,
  1235. "_id": ""
  1236. },
  1237. {
  1238. "__type__": "cc.CompPrefabInfo",
  1239. "fileId": "a5zp2bt6pOl5WS3NV9RZLM"
  1240. },
  1241. {
  1242. "__type__": "cc.Animation",
  1243. "_name": "",
  1244. "_objFlags": 0,
  1245. "node": {
  1246. "__id__": 50
  1247. },
  1248. "_enabled": true,
  1249. "__prefab": {
  1250. "__id__": 56
  1251. },
  1252. "playOnLoad": true,
  1253. "_clips": [
  1254. {
  1255. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1256. }
  1257. ],
  1258. "_defaultClip": {
  1259. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1260. },
  1261. "_id": ""
  1262. },
  1263. {
  1264. "__type__": "cc.CompPrefabInfo",
  1265. "fileId": "9fpR6GteRI7Y8/GoQ9BSA1"
  1266. },
  1267. {
  1268. "__type__": "cc.PrefabInfo",
  1269. "root": {
  1270. "__id__": 1
  1271. },
  1272. "asset": {
  1273. "__id__": 0
  1274. },
  1275. "fileId": "5ba19T6/1CO6xMswwhZYY9"
  1276. },
  1277. {
  1278. "__type__": "cc.Node",
  1279. "_name": "faya_10003",
  1280. "_objFlags": 0,
  1281. "_parent": {
  1282. "__id__": 41
  1283. },
  1284. "_children": [],
  1285. "_active": true,
  1286. "_components": [
  1287. {
  1288. "__id__": 59
  1289. },
  1290. {
  1291. "__id__": 61
  1292. },
  1293. {
  1294. "__id__": 63
  1295. }
  1296. ],
  1297. "_prefab": {
  1298. "__id__": 65
  1299. },
  1300. "_lpos": {
  1301. "__type__": "cc.Vec3",
  1302. "x": 16.843,
  1303. "y": -25.445,
  1304. "z": 0
  1305. },
  1306. "_lrot": {
  1307. "__type__": "cc.Quat",
  1308. "x": 0,
  1309. "y": 0,
  1310. "z": 0,
  1311. "w": 1
  1312. },
  1313. "_lscale": {
  1314. "__type__": "cc.Vec3",
  1315. "x": 1,
  1316. "y": 1,
  1317. "z": 1
  1318. },
  1319. "_layer": 1073741824,
  1320. "_euler": {
  1321. "__type__": "cc.Vec3",
  1322. "x": 0,
  1323. "y": 0,
  1324. "z": 0
  1325. },
  1326. "_id": ""
  1327. },
  1328. {
  1329. "__type__": "cc.UITransform",
  1330. "_name": "",
  1331. "_objFlags": 0,
  1332. "node": {
  1333. "__id__": 58
  1334. },
  1335. "_enabled": true,
  1336. "__prefab": {
  1337. "__id__": 60
  1338. },
  1339. "_priority": 0,
  1340. "_contentSize": {
  1341. "__type__": "cc.Size",
  1342. "width": 21,
  1343. "height": 18
  1344. },
  1345. "_anchorPoint": {
  1346. "__type__": "cc.Vec2",
  1347. "x": 0.5,
  1348. "y": 0
  1349. },
  1350. "_id": ""
  1351. },
  1352. {
  1353. "__type__": "cc.CompPrefabInfo",
  1354. "fileId": "8b9d5YrX9PebQuvM7odoLr"
  1355. },
  1356. {
  1357. "__type__": "cc.Sprite",
  1358. "_name": "",
  1359. "_objFlags": 0,
  1360. "node": {
  1361. "__id__": 58
  1362. },
  1363. "_enabled": true,
  1364. "__prefab": {
  1365. "__id__": 62
  1366. },
  1367. "_visFlags": 0,
  1368. "_customMaterial": null,
  1369. "_srcBlendFactor": 2,
  1370. "_dstBlendFactor": 4,
  1371. "_color": {
  1372. "__type__": "cc.Color",
  1373. "r": 255,
  1374. "g": 255,
  1375. "b": 255,
  1376. "a": 255
  1377. },
  1378. "_spriteFrame": {
  1379. "__uuid__": "4fc703cd-a7c6-4f6e-9a8e-24d45d9b58d8@f9941"
  1380. },
  1381. "_type": 0,
  1382. "_fillType": 0,
  1383. "_sizeMode": 1,
  1384. "_fillCenter": {
  1385. "__type__": "cc.Vec2",
  1386. "x": 0,
  1387. "y": 0
  1388. },
  1389. "_fillStart": 0,
  1390. "_fillRange": 0,
  1391. "_isTrimmedMode": true,
  1392. "_useGrayscale": false,
  1393. "_atlas": null,
  1394. "_id": ""
  1395. },
  1396. {
  1397. "__type__": "cc.CompPrefabInfo",
  1398. "fileId": "69EYMYs05LwrQYrmcbT8pf"
  1399. },
  1400. {
  1401. "__type__": "cc.Animation",
  1402. "_name": "",
  1403. "_objFlags": 0,
  1404. "node": {
  1405. "__id__": 58
  1406. },
  1407. "_enabled": true,
  1408. "__prefab": {
  1409. "__id__": 64
  1410. },
  1411. "playOnLoad": true,
  1412. "_clips": [
  1413. {
  1414. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1415. }
  1416. ],
  1417. "_defaultClip": {
  1418. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1419. },
  1420. "_id": ""
  1421. },
  1422. {
  1423. "__type__": "cc.CompPrefabInfo",
  1424. "fileId": "17/yUy//lNH5vGDDYVJ+zL"
  1425. },
  1426. {
  1427. "__type__": "cc.PrefabInfo",
  1428. "root": {
  1429. "__id__": 1
  1430. },
  1431. "asset": {
  1432. "__id__": 0
  1433. },
  1434. "fileId": "d9G850oF5Jo6PtwLXB2VGs"
  1435. },
  1436. {
  1437. "__type__": "cc.Node",
  1438. "_name": "faya_10004",
  1439. "_objFlags": 0,
  1440. "_parent": {
  1441. "__id__": 41
  1442. },
  1443. "_children": [],
  1444. "_active": true,
  1445. "_components": [
  1446. {
  1447. "__id__": 67
  1448. },
  1449. {
  1450. "__id__": 69
  1451. },
  1452. {
  1453. "__id__": 71
  1454. }
  1455. ],
  1456. "_prefab": {
  1457. "__id__": 73
  1458. },
  1459. "_lpos": {
  1460. "__type__": "cc.Vec3",
  1461. "x": -13.695,
  1462. "y": 26.57,
  1463. "z": 0
  1464. },
  1465. "_lrot": {
  1466. "__type__": "cc.Quat",
  1467. "x": 0,
  1468. "y": 0,
  1469. "z": 0,
  1470. "w": 1
  1471. },
  1472. "_lscale": {
  1473. "__type__": "cc.Vec3",
  1474. "x": 1,
  1475. "y": 1,
  1476. "z": 1
  1477. },
  1478. "_layer": 1073741824,
  1479. "_euler": {
  1480. "__type__": "cc.Vec3",
  1481. "x": 0,
  1482. "y": 0,
  1483. "z": 0
  1484. },
  1485. "_id": ""
  1486. },
  1487. {
  1488. "__type__": "cc.UITransform",
  1489. "_name": "",
  1490. "_objFlags": 0,
  1491. "node": {
  1492. "__id__": 66
  1493. },
  1494. "_enabled": true,
  1495. "__prefab": {
  1496. "__id__": 68
  1497. },
  1498. "_priority": 0,
  1499. "_contentSize": {
  1500. "__type__": "cc.Size",
  1501. "width": 21,
  1502. "height": 18
  1503. },
  1504. "_anchorPoint": {
  1505. "__type__": "cc.Vec2",
  1506. "x": 0.5,
  1507. "y": 0
  1508. },
  1509. "_id": ""
  1510. },
  1511. {
  1512. "__type__": "cc.CompPrefabInfo",
  1513. "fileId": "d7RorFnNhGM6qOvKqJV+XO"
  1514. },
  1515. {
  1516. "__type__": "cc.Sprite",
  1517. "_name": "",
  1518. "_objFlags": 0,
  1519. "node": {
  1520. "__id__": 66
  1521. },
  1522. "_enabled": true,
  1523. "__prefab": {
  1524. "__id__": 70
  1525. },
  1526. "_visFlags": 0,
  1527. "_customMaterial": null,
  1528. "_srcBlendFactor": 2,
  1529. "_dstBlendFactor": 4,
  1530. "_color": {
  1531. "__type__": "cc.Color",
  1532. "r": 255,
  1533. "g": 255,
  1534. "b": 255,
  1535. "a": 255
  1536. },
  1537. "_spriteFrame": {
  1538. "__uuid__": "4fc703cd-a7c6-4f6e-9a8e-24d45d9b58d8@f9941"
  1539. },
  1540. "_type": 0,
  1541. "_fillType": 0,
  1542. "_sizeMode": 1,
  1543. "_fillCenter": {
  1544. "__type__": "cc.Vec2",
  1545. "x": 0,
  1546. "y": 0
  1547. },
  1548. "_fillStart": 0,
  1549. "_fillRange": 0,
  1550. "_isTrimmedMode": true,
  1551. "_useGrayscale": false,
  1552. "_atlas": null,
  1553. "_id": ""
  1554. },
  1555. {
  1556. "__type__": "cc.CompPrefabInfo",
  1557. "fileId": "6b73JPcUtBaZR4lH95Hx6B"
  1558. },
  1559. {
  1560. "__type__": "cc.Animation",
  1561. "_name": "",
  1562. "_objFlags": 0,
  1563. "node": {
  1564. "__id__": 66
  1565. },
  1566. "_enabled": true,
  1567. "__prefab": {
  1568. "__id__": 72
  1569. },
  1570. "playOnLoad": true,
  1571. "_clips": [
  1572. {
  1573. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1574. }
  1575. ],
  1576. "_defaultClip": {
  1577. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1578. },
  1579. "_id": ""
  1580. },
  1581. {
  1582. "__type__": "cc.CompPrefabInfo",
  1583. "fileId": "25z1fv6+NADKWva+1tDPhY"
  1584. },
  1585. {
  1586. "__type__": "cc.PrefabInfo",
  1587. "root": {
  1588. "__id__": 1
  1589. },
  1590. "asset": {
  1591. "__id__": 0
  1592. },
  1593. "fileId": "7dj3iqpElI2L1iZLi217vw"
  1594. },
  1595. {
  1596. "__type__": "cc.Node",
  1597. "_name": "faya_10005",
  1598. "_objFlags": 0,
  1599. "_parent": {
  1600. "__id__": 41
  1601. },
  1602. "_children": [],
  1603. "_active": true,
  1604. "_components": [
  1605. {
  1606. "__id__": 75
  1607. },
  1608. {
  1609. "__id__": 77
  1610. },
  1611. {
  1612. "__id__": 79
  1613. }
  1614. ],
  1615. "_prefab": {
  1616. "__id__": 81
  1617. },
  1618. "_lpos": {
  1619. "__type__": "cc.Vec3",
  1620. "x": 15.836,
  1621. "y": 8.449,
  1622. "z": 0
  1623. },
  1624. "_lrot": {
  1625. "__type__": "cc.Quat",
  1626. "x": 0,
  1627. "y": 0,
  1628. "z": 0,
  1629. "w": 1
  1630. },
  1631. "_lscale": {
  1632. "__type__": "cc.Vec3",
  1633. "x": 1,
  1634. "y": 1,
  1635. "z": 1
  1636. },
  1637. "_layer": 1073741824,
  1638. "_euler": {
  1639. "__type__": "cc.Vec3",
  1640. "x": 0,
  1641. "y": 0,
  1642. "z": 0
  1643. },
  1644. "_id": ""
  1645. },
  1646. {
  1647. "__type__": "cc.UITransform",
  1648. "_name": "",
  1649. "_objFlags": 0,
  1650. "node": {
  1651. "__id__": 74
  1652. },
  1653. "_enabled": true,
  1654. "__prefab": {
  1655. "__id__": 76
  1656. },
  1657. "_priority": 0,
  1658. "_contentSize": {
  1659. "__type__": "cc.Size",
  1660. "width": 21,
  1661. "height": 18
  1662. },
  1663. "_anchorPoint": {
  1664. "__type__": "cc.Vec2",
  1665. "x": 0.5,
  1666. "y": 0
  1667. },
  1668. "_id": ""
  1669. },
  1670. {
  1671. "__type__": "cc.CompPrefabInfo",
  1672. "fileId": "3aL6cidY5PhqkpGuq46rQ1"
  1673. },
  1674. {
  1675. "__type__": "cc.Sprite",
  1676. "_name": "",
  1677. "_objFlags": 0,
  1678. "node": {
  1679. "__id__": 74
  1680. },
  1681. "_enabled": true,
  1682. "__prefab": {
  1683. "__id__": 78
  1684. },
  1685. "_visFlags": 0,
  1686. "_customMaterial": null,
  1687. "_srcBlendFactor": 2,
  1688. "_dstBlendFactor": 4,
  1689. "_color": {
  1690. "__type__": "cc.Color",
  1691. "r": 255,
  1692. "g": 255,
  1693. "b": 255,
  1694. "a": 255
  1695. },
  1696. "_spriteFrame": {
  1697. "__uuid__": "4fc703cd-a7c6-4f6e-9a8e-24d45d9b58d8@f9941"
  1698. },
  1699. "_type": 0,
  1700. "_fillType": 0,
  1701. "_sizeMode": 1,
  1702. "_fillCenter": {
  1703. "__type__": "cc.Vec2",
  1704. "x": 0,
  1705. "y": 0
  1706. },
  1707. "_fillStart": 0,
  1708. "_fillRange": 0,
  1709. "_isTrimmedMode": true,
  1710. "_useGrayscale": false,
  1711. "_atlas": null,
  1712. "_id": ""
  1713. },
  1714. {
  1715. "__type__": "cc.CompPrefabInfo",
  1716. "fileId": "ear27A9ulOF5UU/IykdgcB"
  1717. },
  1718. {
  1719. "__type__": "cc.Animation",
  1720. "_name": "",
  1721. "_objFlags": 0,
  1722. "node": {
  1723. "__id__": 74
  1724. },
  1725. "_enabled": true,
  1726. "__prefab": {
  1727. "__id__": 80
  1728. },
  1729. "playOnLoad": true,
  1730. "_clips": [
  1731. {
  1732. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1733. }
  1734. ],
  1735. "_defaultClip": {
  1736. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1737. },
  1738. "_id": ""
  1739. },
  1740. {
  1741. "__type__": "cc.CompPrefabInfo",
  1742. "fileId": "dbc2O1urZJqZqkqkJrOf8n"
  1743. },
  1744. {
  1745. "__type__": "cc.PrefabInfo",
  1746. "root": {
  1747. "__id__": 1
  1748. },
  1749. "asset": {
  1750. "__id__": 0
  1751. },
  1752. "fileId": "66O+Xjpc9LxZ/kj5xVQOlE"
  1753. },
  1754. {
  1755. "__type__": "cc.Node",
  1756. "_name": "faya_10006",
  1757. "_objFlags": 0,
  1758. "_parent": {
  1759. "__id__": 41
  1760. },
  1761. "_children": [],
  1762. "_active": true,
  1763. "_components": [
  1764. {
  1765. "__id__": 83
  1766. },
  1767. {
  1768. "__id__": 85
  1769. },
  1770. {
  1771. "__id__": 87
  1772. }
  1773. ],
  1774. "_prefab": {
  1775. "__id__": 89
  1776. },
  1777. "_lpos": {
  1778. "__type__": "cc.Vec3",
  1779. "x": 45.703,
  1780. "y": -8.666,
  1781. "z": 0
  1782. },
  1783. "_lrot": {
  1784. "__type__": "cc.Quat",
  1785. "x": 0,
  1786. "y": 0,
  1787. "z": 0,
  1788. "w": 1
  1789. },
  1790. "_lscale": {
  1791. "__type__": "cc.Vec3",
  1792. "x": 1,
  1793. "y": 1,
  1794. "z": 1
  1795. },
  1796. "_layer": 1073741824,
  1797. "_euler": {
  1798. "__type__": "cc.Vec3",
  1799. "x": 0,
  1800. "y": 0,
  1801. "z": 0
  1802. },
  1803. "_id": ""
  1804. },
  1805. {
  1806. "__type__": "cc.UITransform",
  1807. "_name": "",
  1808. "_objFlags": 0,
  1809. "node": {
  1810. "__id__": 82
  1811. },
  1812. "_enabled": true,
  1813. "__prefab": {
  1814. "__id__": 84
  1815. },
  1816. "_priority": 0,
  1817. "_contentSize": {
  1818. "__type__": "cc.Size",
  1819. "width": 21,
  1820. "height": 18
  1821. },
  1822. "_anchorPoint": {
  1823. "__type__": "cc.Vec2",
  1824. "x": 0.5,
  1825. "y": 0
  1826. },
  1827. "_id": ""
  1828. },
  1829. {
  1830. "__type__": "cc.CompPrefabInfo",
  1831. "fileId": "6bfciTGvNCiJG2+HlO/tA7"
  1832. },
  1833. {
  1834. "__type__": "cc.Sprite",
  1835. "_name": "",
  1836. "_objFlags": 0,
  1837. "node": {
  1838. "__id__": 82
  1839. },
  1840. "_enabled": true,
  1841. "__prefab": {
  1842. "__id__": 86
  1843. },
  1844. "_visFlags": 0,
  1845. "_customMaterial": null,
  1846. "_srcBlendFactor": 2,
  1847. "_dstBlendFactor": 4,
  1848. "_color": {
  1849. "__type__": "cc.Color",
  1850. "r": 255,
  1851. "g": 255,
  1852. "b": 255,
  1853. "a": 255
  1854. },
  1855. "_spriteFrame": {
  1856. "__uuid__": "4fc703cd-a7c6-4f6e-9a8e-24d45d9b58d8@f9941"
  1857. },
  1858. "_type": 0,
  1859. "_fillType": 0,
  1860. "_sizeMode": 1,
  1861. "_fillCenter": {
  1862. "__type__": "cc.Vec2",
  1863. "x": 0,
  1864. "y": 0
  1865. },
  1866. "_fillStart": 0,
  1867. "_fillRange": 0,
  1868. "_isTrimmedMode": true,
  1869. "_useGrayscale": false,
  1870. "_atlas": null,
  1871. "_id": ""
  1872. },
  1873. {
  1874. "__type__": "cc.CompPrefabInfo",
  1875. "fileId": "16G5cBg09OA5Ph36nfAvur"
  1876. },
  1877. {
  1878. "__type__": "cc.Animation",
  1879. "_name": "",
  1880. "_objFlags": 0,
  1881. "node": {
  1882. "__id__": 82
  1883. },
  1884. "_enabled": true,
  1885. "__prefab": {
  1886. "__id__": 88
  1887. },
  1888. "playOnLoad": true,
  1889. "_clips": [
  1890. {
  1891. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1892. }
  1893. ],
  1894. "_defaultClip": {
  1895. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  1896. },
  1897. "_id": ""
  1898. },
  1899. {
  1900. "__type__": "cc.CompPrefabInfo",
  1901. "fileId": "7eWGlahY9BD4Ze/QBC/Qnk"
  1902. },
  1903. {
  1904. "__type__": "cc.PrefabInfo",
  1905. "root": {
  1906. "__id__": 1
  1907. },
  1908. "asset": {
  1909. "__id__": 0
  1910. },
  1911. "fileId": "92eU0WznREhoWww9jfRift"
  1912. },
  1913. {
  1914. "__type__": "cc.UITransform",
  1915. "_name": "",
  1916. "_objFlags": 0,
  1917. "node": {
  1918. "__id__": 41
  1919. },
  1920. "_enabled": true,
  1921. "__prefab": {
  1922. "__id__": 91
  1923. },
  1924. "_priority": 0,
  1925. "_contentSize": {
  1926. "__type__": "cc.Size",
  1927. "width": 100,
  1928. "height": 100
  1929. },
  1930. "_anchorPoint": {
  1931. "__type__": "cc.Vec2",
  1932. "x": 0.5,
  1933. "y": 0.5
  1934. },
  1935. "_id": ""
  1936. },
  1937. {
  1938. "__type__": "cc.CompPrefabInfo",
  1939. "fileId": "99N2gPHZxLgY9iQ0+6BuvL"
  1940. },
  1941. {
  1942. "__type__": "cc.PrefabInfo",
  1943. "root": {
  1944. "__id__": 1
  1945. },
  1946. "asset": {
  1947. "__id__": 0
  1948. },
  1949. "fileId": "64K4MXtiVLsJvhx0qPQ8xU"
  1950. },
  1951. {
  1952. "__type__": "cc.Node",
  1953. "_name": "半成熟阶段",
  1954. "_objFlags": 0,
  1955. "_parent": {
  1956. "__id__": 30
  1957. },
  1958. "_children": [
  1959. {
  1960. "__id__": 94
  1961. },
  1962. {
  1963. "__id__": 102
  1964. },
  1965. {
  1966. "__id__": 110
  1967. },
  1968. {
  1969. "__id__": 118
  1970. },
  1971. {
  1972. "__id__": 126
  1973. },
  1974. {
  1975. "__id__": 134
  1976. }
  1977. ],
  1978. "_active": false,
  1979. "_components": [
  1980. {
  1981. "__id__": 142
  1982. }
  1983. ],
  1984. "_prefab": {
  1985. "__id__": 144
  1986. },
  1987. "_lpos": {
  1988. "__type__": "cc.Vec3",
  1989. "x": 0,
  1990. "y": 0,
  1991. "z": 0
  1992. },
  1993. "_lrot": {
  1994. "__type__": "cc.Quat",
  1995. "x": 0,
  1996. "y": 0,
  1997. "z": 0,
  1998. "w": 1
  1999. },
  2000. "_lscale": {
  2001. "__type__": "cc.Vec3",
  2002. "x": 1,
  2003. "y": 1,
  2004. "z": 1
  2005. },
  2006. "_layer": 1073741824,
  2007. "_euler": {
  2008. "__type__": "cc.Vec3",
  2009. "x": 0,
  2010. "y": 0,
  2011. "z": 0
  2012. },
  2013. "_id": ""
  2014. },
  2015. {
  2016. "__type__": "cc.Node",
  2017. "_name": "cz_10001",
  2018. "_objFlags": 0,
  2019. "_parent": {
  2020. "__id__": 93
  2021. },
  2022. "_children": [],
  2023. "_active": true,
  2024. "_components": [
  2025. {
  2026. "__id__": 95
  2027. },
  2028. {
  2029. "__id__": 97
  2030. },
  2031. {
  2032. "__id__": 99
  2033. }
  2034. ],
  2035. "_prefab": {
  2036. "__id__": 101
  2037. },
  2038. "_lpos": {
  2039. "__type__": "cc.Vec3",
  2040. "x": -42.372,
  2041. "y": 6.854,
  2042. "z": 0
  2043. },
  2044. "_lrot": {
  2045. "__type__": "cc.Quat",
  2046. "x": 0,
  2047. "y": 0,
  2048. "z": 0,
  2049. "w": 1
  2050. },
  2051. "_lscale": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 1,
  2054. "y": 1,
  2055. "z": 1
  2056. },
  2057. "_layer": 1073741824,
  2058. "_euler": {
  2059. "__type__": "cc.Vec3",
  2060. "x": 0,
  2061. "y": 0,
  2062. "z": 0
  2063. },
  2064. "_id": ""
  2065. },
  2066. {
  2067. "__type__": "cc.UITransform",
  2068. "_name": "",
  2069. "_objFlags": 0,
  2070. "node": {
  2071. "__id__": 94
  2072. },
  2073. "_enabled": true,
  2074. "__prefab": {
  2075. "__id__": 96
  2076. },
  2077. "_priority": 0,
  2078. "_contentSize": {
  2079. "__type__": "cc.Size",
  2080. "width": 35,
  2081. "height": 30
  2082. },
  2083. "_anchorPoint": {
  2084. "__type__": "cc.Vec2",
  2085. "x": 0.5,
  2086. "y": 0
  2087. },
  2088. "_id": ""
  2089. },
  2090. {
  2091. "__type__": "cc.CompPrefabInfo",
  2092. "fileId": "f7BRFMIXFBNapVztfUHBS4"
  2093. },
  2094. {
  2095. "__type__": "cc.Sprite",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "node": {
  2099. "__id__": 94
  2100. },
  2101. "_enabled": true,
  2102. "__prefab": {
  2103. "__id__": 98
  2104. },
  2105. "_visFlags": 0,
  2106. "_customMaterial": null,
  2107. "_srcBlendFactor": 2,
  2108. "_dstBlendFactor": 4,
  2109. "_color": {
  2110. "__type__": "cc.Color",
  2111. "r": 255,
  2112. "g": 255,
  2113. "b": 255,
  2114. "a": 255
  2115. },
  2116. "_spriteFrame": {
  2117. "__uuid__": "d27b3c29-caaa-4895-ade6-5a001fe6c27f@f9941"
  2118. },
  2119. "_type": 0,
  2120. "_fillType": 0,
  2121. "_sizeMode": 1,
  2122. "_fillCenter": {
  2123. "__type__": "cc.Vec2",
  2124. "x": 0,
  2125. "y": 0
  2126. },
  2127. "_fillStart": 0,
  2128. "_fillRange": 0,
  2129. "_isTrimmedMode": true,
  2130. "_useGrayscale": false,
  2131. "_atlas": null,
  2132. "_id": ""
  2133. },
  2134. {
  2135. "__type__": "cc.CompPrefabInfo",
  2136. "fileId": "08BYDUfFpM56HeLtbiY5S9"
  2137. },
  2138. {
  2139. "__type__": "cc.Animation",
  2140. "_name": "",
  2141. "_objFlags": 0,
  2142. "node": {
  2143. "__id__": 94
  2144. },
  2145. "_enabled": true,
  2146. "__prefab": {
  2147. "__id__": 100
  2148. },
  2149. "playOnLoad": true,
  2150. "_clips": [
  2151. {
  2152. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2153. }
  2154. ],
  2155. "_defaultClip": {
  2156. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2157. },
  2158. "_id": ""
  2159. },
  2160. {
  2161. "__type__": "cc.CompPrefabInfo",
  2162. "fileId": "40knPaqGlDyoetoz+bIh3A"
  2163. },
  2164. {
  2165. "__type__": "cc.PrefabInfo",
  2166. "root": {
  2167. "__id__": 1
  2168. },
  2169. "asset": {
  2170. "__id__": 0
  2171. },
  2172. "fileId": "779eN9fppAQYWXhz3W60rf"
  2173. },
  2174. {
  2175. "__type__": "cc.Node",
  2176. "_name": "cz_10002",
  2177. "_objFlags": 0,
  2178. "_parent": {
  2179. "__id__": 93
  2180. },
  2181. "_children": [],
  2182. "_active": true,
  2183. "_components": [
  2184. {
  2185. "__id__": 103
  2186. },
  2187. {
  2188. "__id__": 105
  2189. },
  2190. {
  2191. "__id__": 107
  2192. }
  2193. ],
  2194. "_prefab": {
  2195. "__id__": 109
  2196. },
  2197. "_lpos": {
  2198. "__type__": "cc.Vec3",
  2199. "x": -11.009,
  2200. "y": -11.745,
  2201. "z": 0
  2202. },
  2203. "_lrot": {
  2204. "__type__": "cc.Quat",
  2205. "x": 0,
  2206. "y": 0,
  2207. "z": 0,
  2208. "w": 1
  2209. },
  2210. "_lscale": {
  2211. "__type__": "cc.Vec3",
  2212. "x": 1,
  2213. "y": 1,
  2214. "z": 1
  2215. },
  2216. "_layer": 1073741824,
  2217. "_euler": {
  2218. "__type__": "cc.Vec3",
  2219. "x": 0,
  2220. "y": 0,
  2221. "z": 0
  2222. },
  2223. "_id": ""
  2224. },
  2225. {
  2226. "__type__": "cc.UITransform",
  2227. "_name": "",
  2228. "_objFlags": 0,
  2229. "node": {
  2230. "__id__": 102
  2231. },
  2232. "_enabled": true,
  2233. "__prefab": {
  2234. "__id__": 104
  2235. },
  2236. "_priority": 0,
  2237. "_contentSize": {
  2238. "__type__": "cc.Size",
  2239. "width": 35,
  2240. "height": 30
  2241. },
  2242. "_anchorPoint": {
  2243. "__type__": "cc.Vec2",
  2244. "x": 0.5,
  2245. "y": 0
  2246. },
  2247. "_id": ""
  2248. },
  2249. {
  2250. "__type__": "cc.CompPrefabInfo",
  2251. "fileId": "37+fd5fc5KnZgTlribsZ1W"
  2252. },
  2253. {
  2254. "__type__": "cc.Sprite",
  2255. "_name": "",
  2256. "_objFlags": 0,
  2257. "node": {
  2258. "__id__": 102
  2259. },
  2260. "_enabled": true,
  2261. "__prefab": {
  2262. "__id__": 106
  2263. },
  2264. "_visFlags": 0,
  2265. "_customMaterial": null,
  2266. "_srcBlendFactor": 2,
  2267. "_dstBlendFactor": 4,
  2268. "_color": {
  2269. "__type__": "cc.Color",
  2270. "r": 255,
  2271. "g": 255,
  2272. "b": 255,
  2273. "a": 255
  2274. },
  2275. "_spriteFrame": {
  2276. "__uuid__": "d27b3c29-caaa-4895-ade6-5a001fe6c27f@f9941"
  2277. },
  2278. "_type": 0,
  2279. "_fillType": 0,
  2280. "_sizeMode": 1,
  2281. "_fillCenter": {
  2282. "__type__": "cc.Vec2",
  2283. "x": 0,
  2284. "y": 0
  2285. },
  2286. "_fillStart": 0,
  2287. "_fillRange": 0,
  2288. "_isTrimmedMode": true,
  2289. "_useGrayscale": false,
  2290. "_atlas": null,
  2291. "_id": ""
  2292. },
  2293. {
  2294. "__type__": "cc.CompPrefabInfo",
  2295. "fileId": "faguUEzs5K5pk7956VO0tG"
  2296. },
  2297. {
  2298. "__type__": "cc.Animation",
  2299. "_name": "",
  2300. "_objFlags": 0,
  2301. "node": {
  2302. "__id__": 102
  2303. },
  2304. "_enabled": true,
  2305. "__prefab": {
  2306. "__id__": 108
  2307. },
  2308. "playOnLoad": true,
  2309. "_clips": [
  2310. {
  2311. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2312. }
  2313. ],
  2314. "_defaultClip": {
  2315. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2316. },
  2317. "_id": ""
  2318. },
  2319. {
  2320. "__type__": "cc.CompPrefabInfo",
  2321. "fileId": "f2fkIbuhNNOIVmAKsUYnPj"
  2322. },
  2323. {
  2324. "__type__": "cc.PrefabInfo",
  2325. "root": {
  2326. "__id__": 1
  2327. },
  2328. "asset": {
  2329. "__id__": 0
  2330. },
  2331. "fileId": "6a7eME+q5NA4CoEzTMt5Vs"
  2332. },
  2333. {
  2334. "__type__": "cc.Node",
  2335. "_name": "cz_10003",
  2336. "_objFlags": 0,
  2337. "_parent": {
  2338. "__id__": 93
  2339. },
  2340. "_children": [],
  2341. "_active": true,
  2342. "_components": [
  2343. {
  2344. "__id__": 111
  2345. },
  2346. {
  2347. "__id__": 113
  2348. },
  2349. {
  2350. "__id__": 115
  2351. }
  2352. ],
  2353. "_prefab": {
  2354. "__id__": 117
  2355. },
  2356. "_lpos": {
  2357. "__type__": "cc.Vec3",
  2358. "x": 18.531,
  2359. "y": -31.438,
  2360. "z": 0
  2361. },
  2362. "_lrot": {
  2363. "__type__": "cc.Quat",
  2364. "x": 0,
  2365. "y": 0,
  2366. "z": 0,
  2367. "w": 1
  2368. },
  2369. "_lscale": {
  2370. "__type__": "cc.Vec3",
  2371. "x": 1,
  2372. "y": 1,
  2373. "z": 1
  2374. },
  2375. "_layer": 1073741824,
  2376. "_euler": {
  2377. "__type__": "cc.Vec3",
  2378. "x": 0,
  2379. "y": 0,
  2380. "z": 0
  2381. },
  2382. "_id": ""
  2383. },
  2384. {
  2385. "__type__": "cc.UITransform",
  2386. "_name": "",
  2387. "_objFlags": 0,
  2388. "node": {
  2389. "__id__": 110
  2390. },
  2391. "_enabled": true,
  2392. "__prefab": {
  2393. "__id__": 112
  2394. },
  2395. "_priority": 0,
  2396. "_contentSize": {
  2397. "__type__": "cc.Size",
  2398. "width": 35,
  2399. "height": 30
  2400. },
  2401. "_anchorPoint": {
  2402. "__type__": "cc.Vec2",
  2403. "x": 0.5,
  2404. "y": 0
  2405. },
  2406. "_id": ""
  2407. },
  2408. {
  2409. "__type__": "cc.CompPrefabInfo",
  2410. "fileId": "cbYBMHWXBE+K2mvs0vJmh9"
  2411. },
  2412. {
  2413. "__type__": "cc.Sprite",
  2414. "_name": "",
  2415. "_objFlags": 0,
  2416. "node": {
  2417. "__id__": 110
  2418. },
  2419. "_enabled": true,
  2420. "__prefab": {
  2421. "__id__": 114
  2422. },
  2423. "_visFlags": 0,
  2424. "_customMaterial": null,
  2425. "_srcBlendFactor": 2,
  2426. "_dstBlendFactor": 4,
  2427. "_color": {
  2428. "__type__": "cc.Color",
  2429. "r": 255,
  2430. "g": 255,
  2431. "b": 255,
  2432. "a": 255
  2433. },
  2434. "_spriteFrame": {
  2435. "__uuid__": "d27b3c29-caaa-4895-ade6-5a001fe6c27f@f9941"
  2436. },
  2437. "_type": 0,
  2438. "_fillType": 0,
  2439. "_sizeMode": 1,
  2440. "_fillCenter": {
  2441. "__type__": "cc.Vec2",
  2442. "x": 0,
  2443. "y": 0
  2444. },
  2445. "_fillStart": 0,
  2446. "_fillRange": 0,
  2447. "_isTrimmedMode": true,
  2448. "_useGrayscale": false,
  2449. "_atlas": null,
  2450. "_id": ""
  2451. },
  2452. {
  2453. "__type__": "cc.CompPrefabInfo",
  2454. "fileId": "44sgG2hmBJfb3dMpl4YOsa"
  2455. },
  2456. {
  2457. "__type__": "cc.Animation",
  2458. "_name": "",
  2459. "_objFlags": 0,
  2460. "node": {
  2461. "__id__": 110
  2462. },
  2463. "_enabled": true,
  2464. "__prefab": {
  2465. "__id__": 116
  2466. },
  2467. "playOnLoad": true,
  2468. "_clips": [
  2469. {
  2470. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2471. }
  2472. ],
  2473. "_defaultClip": {
  2474. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2475. },
  2476. "_id": ""
  2477. },
  2478. {
  2479. "__type__": "cc.CompPrefabInfo",
  2480. "fileId": "47sJxmzUtFhoOXD1EriIjA"
  2481. },
  2482. {
  2483. "__type__": "cc.PrefabInfo",
  2484. "root": {
  2485. "__id__": 1
  2486. },
  2487. "asset": {
  2488. "__id__": 0
  2489. },
  2490. "fileId": "050CGsJBxDXKNMcwvG+9XJ"
  2491. },
  2492. {
  2493. "__type__": "cc.Node",
  2494. "_name": "cz_10004",
  2495. "_objFlags": 0,
  2496. "_parent": {
  2497. "__id__": 93
  2498. },
  2499. "_children": [],
  2500. "_active": true,
  2501. "_components": [
  2502. {
  2503. "__id__": 119
  2504. },
  2505. {
  2506. "__id__": 121
  2507. },
  2508. {
  2509. "__id__": 123
  2510. }
  2511. ],
  2512. "_prefab": {
  2513. "__id__": 125
  2514. },
  2515. "_lpos": {
  2516. "__type__": "cc.Vec3",
  2517. "x": -12.467,
  2518. "y": 25.818,
  2519. "z": 0
  2520. },
  2521. "_lrot": {
  2522. "__type__": "cc.Quat",
  2523. "x": 0,
  2524. "y": 0,
  2525. "z": 0,
  2526. "w": 1
  2527. },
  2528. "_lscale": {
  2529. "__type__": "cc.Vec3",
  2530. "x": 1,
  2531. "y": 1,
  2532. "z": 1
  2533. },
  2534. "_layer": 1073741824,
  2535. "_euler": {
  2536. "__type__": "cc.Vec3",
  2537. "x": 0,
  2538. "y": 0,
  2539. "z": 0
  2540. },
  2541. "_id": ""
  2542. },
  2543. {
  2544. "__type__": "cc.UITransform",
  2545. "_name": "",
  2546. "_objFlags": 0,
  2547. "node": {
  2548. "__id__": 118
  2549. },
  2550. "_enabled": true,
  2551. "__prefab": {
  2552. "__id__": 120
  2553. },
  2554. "_priority": 0,
  2555. "_contentSize": {
  2556. "__type__": "cc.Size",
  2557. "width": 35,
  2558. "height": 30
  2559. },
  2560. "_anchorPoint": {
  2561. "__type__": "cc.Vec2",
  2562. "x": 0.5,
  2563. "y": 0
  2564. },
  2565. "_id": ""
  2566. },
  2567. {
  2568. "__type__": "cc.CompPrefabInfo",
  2569. "fileId": "58zpPw8MJK/Ze8hIIp2A27"
  2570. },
  2571. {
  2572. "__type__": "cc.Sprite",
  2573. "_name": "",
  2574. "_objFlags": 0,
  2575. "node": {
  2576. "__id__": 118
  2577. },
  2578. "_enabled": true,
  2579. "__prefab": {
  2580. "__id__": 122
  2581. },
  2582. "_visFlags": 0,
  2583. "_customMaterial": null,
  2584. "_srcBlendFactor": 2,
  2585. "_dstBlendFactor": 4,
  2586. "_color": {
  2587. "__type__": "cc.Color",
  2588. "r": 255,
  2589. "g": 255,
  2590. "b": 255,
  2591. "a": 255
  2592. },
  2593. "_spriteFrame": {
  2594. "__uuid__": "d27b3c29-caaa-4895-ade6-5a001fe6c27f@f9941"
  2595. },
  2596. "_type": 0,
  2597. "_fillType": 0,
  2598. "_sizeMode": 1,
  2599. "_fillCenter": {
  2600. "__type__": "cc.Vec2",
  2601. "x": 0,
  2602. "y": 0
  2603. },
  2604. "_fillStart": 0,
  2605. "_fillRange": 0,
  2606. "_isTrimmedMode": true,
  2607. "_useGrayscale": false,
  2608. "_atlas": null,
  2609. "_id": ""
  2610. },
  2611. {
  2612. "__type__": "cc.CompPrefabInfo",
  2613. "fileId": "aeRm1+HB9M3JVhebxf3B/V"
  2614. },
  2615. {
  2616. "__type__": "cc.Animation",
  2617. "_name": "",
  2618. "_objFlags": 0,
  2619. "node": {
  2620. "__id__": 118
  2621. },
  2622. "_enabled": true,
  2623. "__prefab": {
  2624. "__id__": 124
  2625. },
  2626. "playOnLoad": true,
  2627. "_clips": [
  2628. {
  2629. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2630. }
  2631. ],
  2632. "_defaultClip": {
  2633. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2634. },
  2635. "_id": ""
  2636. },
  2637. {
  2638. "__type__": "cc.CompPrefabInfo",
  2639. "fileId": "2a6tnceldB7rWx1GKsVH3D"
  2640. },
  2641. {
  2642. "__type__": "cc.PrefabInfo",
  2643. "root": {
  2644. "__id__": 1
  2645. },
  2646. "asset": {
  2647. "__id__": 0
  2648. },
  2649. "fileId": "1bv5tXKOdB+L+CvjHPmayG"
  2650. },
  2651. {
  2652. "__type__": "cc.Node",
  2653. "_name": "cz_10005",
  2654. "_objFlags": 0,
  2655. "_parent": {
  2656. "__id__": 93
  2657. },
  2658. "_children": [],
  2659. "_active": true,
  2660. "_components": [
  2661. {
  2662. "__id__": 127
  2663. },
  2664. {
  2665. "__id__": 129
  2666. },
  2667. {
  2668. "__id__": 131
  2669. }
  2670. ],
  2671. "_prefab": {
  2672. "__id__": 133
  2673. },
  2674. "_lpos": {
  2675. "__type__": "cc.Vec3",
  2676. "x": 18.896,
  2677. "y": 7.219,
  2678. "z": 0
  2679. },
  2680. "_lrot": {
  2681. "__type__": "cc.Quat",
  2682. "x": 0,
  2683. "y": 0,
  2684. "z": 0,
  2685. "w": 1
  2686. },
  2687. "_lscale": {
  2688. "__type__": "cc.Vec3",
  2689. "x": 1,
  2690. "y": 1,
  2691. "z": 1
  2692. },
  2693. "_layer": 1073741824,
  2694. "_euler": {
  2695. "__type__": "cc.Vec3",
  2696. "x": 0,
  2697. "y": 0,
  2698. "z": 0
  2699. },
  2700. "_id": ""
  2701. },
  2702. {
  2703. "__type__": "cc.UITransform",
  2704. "_name": "",
  2705. "_objFlags": 0,
  2706. "node": {
  2707. "__id__": 126
  2708. },
  2709. "_enabled": true,
  2710. "__prefab": {
  2711. "__id__": 128
  2712. },
  2713. "_priority": 0,
  2714. "_contentSize": {
  2715. "__type__": "cc.Size",
  2716. "width": 35,
  2717. "height": 30
  2718. },
  2719. "_anchorPoint": {
  2720. "__type__": "cc.Vec2",
  2721. "x": 0.5,
  2722. "y": 0
  2723. },
  2724. "_id": ""
  2725. },
  2726. {
  2727. "__type__": "cc.CompPrefabInfo",
  2728. "fileId": "5dIolnOIFA0ZLI++VpPL/M"
  2729. },
  2730. {
  2731. "__type__": "cc.Sprite",
  2732. "_name": "",
  2733. "_objFlags": 0,
  2734. "node": {
  2735. "__id__": 126
  2736. },
  2737. "_enabled": true,
  2738. "__prefab": {
  2739. "__id__": 130
  2740. },
  2741. "_visFlags": 0,
  2742. "_customMaterial": null,
  2743. "_srcBlendFactor": 2,
  2744. "_dstBlendFactor": 4,
  2745. "_color": {
  2746. "__type__": "cc.Color",
  2747. "r": 255,
  2748. "g": 255,
  2749. "b": 255,
  2750. "a": 255
  2751. },
  2752. "_spriteFrame": {
  2753. "__uuid__": "d27b3c29-caaa-4895-ade6-5a001fe6c27f@f9941"
  2754. },
  2755. "_type": 0,
  2756. "_fillType": 0,
  2757. "_sizeMode": 1,
  2758. "_fillCenter": {
  2759. "__type__": "cc.Vec2",
  2760. "x": 0,
  2761. "y": 0
  2762. },
  2763. "_fillStart": 0,
  2764. "_fillRange": 0,
  2765. "_isTrimmedMode": true,
  2766. "_useGrayscale": false,
  2767. "_atlas": null,
  2768. "_id": ""
  2769. },
  2770. {
  2771. "__type__": "cc.CompPrefabInfo",
  2772. "fileId": "aepizVaU9F0InVw5YBAu91"
  2773. },
  2774. {
  2775. "__type__": "cc.Animation",
  2776. "_name": "",
  2777. "_objFlags": 0,
  2778. "node": {
  2779. "__id__": 126
  2780. },
  2781. "_enabled": true,
  2782. "__prefab": {
  2783. "__id__": 132
  2784. },
  2785. "playOnLoad": true,
  2786. "_clips": [
  2787. {
  2788. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2789. }
  2790. ],
  2791. "_defaultClip": {
  2792. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2793. },
  2794. "_id": ""
  2795. },
  2796. {
  2797. "__type__": "cc.CompPrefabInfo",
  2798. "fileId": "d719UqpupMaJhuvOPeRE/G"
  2799. },
  2800. {
  2801. "__type__": "cc.PrefabInfo",
  2802. "root": {
  2803. "__id__": 1
  2804. },
  2805. "asset": {
  2806. "__id__": 0
  2807. },
  2808. "fileId": "d4Bnohr8lN5qGvpEoN/3jU"
  2809. },
  2810. {
  2811. "__type__": "cc.Node",
  2812. "_name": "cz_10006",
  2813. "_objFlags": 0,
  2814. "_parent": {
  2815. "__id__": 93
  2816. },
  2817. "_children": [],
  2818. "_active": true,
  2819. "_components": [
  2820. {
  2821. "__id__": 135
  2822. },
  2823. {
  2824. "__id__": 137
  2825. },
  2826. {
  2827. "__id__": 139
  2828. }
  2829. ],
  2830. "_prefab": {
  2831. "__id__": 141
  2832. },
  2833. "_lpos": {
  2834. "__type__": "cc.Vec3",
  2835. "x": 47.342,
  2836. "y": -12.109,
  2837. "z": 0
  2838. },
  2839. "_lrot": {
  2840. "__type__": "cc.Quat",
  2841. "x": 0,
  2842. "y": 0,
  2843. "z": 0,
  2844. "w": 1
  2845. },
  2846. "_lscale": {
  2847. "__type__": "cc.Vec3",
  2848. "x": 1,
  2849. "y": 1,
  2850. "z": 1
  2851. },
  2852. "_layer": 1073741824,
  2853. "_euler": {
  2854. "__type__": "cc.Vec3",
  2855. "x": 0,
  2856. "y": 0,
  2857. "z": 0
  2858. },
  2859. "_id": ""
  2860. },
  2861. {
  2862. "__type__": "cc.UITransform",
  2863. "_name": "",
  2864. "_objFlags": 0,
  2865. "node": {
  2866. "__id__": 134
  2867. },
  2868. "_enabled": true,
  2869. "__prefab": {
  2870. "__id__": 136
  2871. },
  2872. "_priority": 0,
  2873. "_contentSize": {
  2874. "__type__": "cc.Size",
  2875. "width": 35,
  2876. "height": 30
  2877. },
  2878. "_anchorPoint": {
  2879. "__type__": "cc.Vec2",
  2880. "x": 0.5,
  2881. "y": 0
  2882. },
  2883. "_id": ""
  2884. },
  2885. {
  2886. "__type__": "cc.CompPrefabInfo",
  2887. "fileId": "15QssiGdVJibatlnbUz1Vw"
  2888. },
  2889. {
  2890. "__type__": "cc.Sprite",
  2891. "_name": "",
  2892. "_objFlags": 0,
  2893. "node": {
  2894. "__id__": 134
  2895. },
  2896. "_enabled": true,
  2897. "__prefab": {
  2898. "__id__": 138
  2899. },
  2900. "_visFlags": 0,
  2901. "_customMaterial": null,
  2902. "_srcBlendFactor": 2,
  2903. "_dstBlendFactor": 4,
  2904. "_color": {
  2905. "__type__": "cc.Color",
  2906. "r": 255,
  2907. "g": 255,
  2908. "b": 255,
  2909. "a": 255
  2910. },
  2911. "_spriteFrame": {
  2912. "__uuid__": "d27b3c29-caaa-4895-ade6-5a001fe6c27f@f9941"
  2913. },
  2914. "_type": 0,
  2915. "_fillType": 0,
  2916. "_sizeMode": 1,
  2917. "_fillCenter": {
  2918. "__type__": "cc.Vec2",
  2919. "x": 0,
  2920. "y": 0
  2921. },
  2922. "_fillStart": 0,
  2923. "_fillRange": 0,
  2924. "_isTrimmedMode": true,
  2925. "_useGrayscale": false,
  2926. "_atlas": null,
  2927. "_id": ""
  2928. },
  2929. {
  2930. "__type__": "cc.CompPrefabInfo",
  2931. "fileId": "9134RahmxGnrGzxCdLtODl"
  2932. },
  2933. {
  2934. "__type__": "cc.Animation",
  2935. "_name": "",
  2936. "_objFlags": 0,
  2937. "node": {
  2938. "__id__": 134
  2939. },
  2940. "_enabled": true,
  2941. "__prefab": {
  2942. "__id__": 140
  2943. },
  2944. "playOnLoad": true,
  2945. "_clips": [
  2946. {
  2947. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2948. }
  2949. ],
  2950. "_defaultClip": {
  2951. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  2952. },
  2953. "_id": ""
  2954. },
  2955. {
  2956. "__type__": "cc.CompPrefabInfo",
  2957. "fileId": "601q+r/hNFVY9wRxTjhRXp"
  2958. },
  2959. {
  2960. "__type__": "cc.PrefabInfo",
  2961. "root": {
  2962. "__id__": 1
  2963. },
  2964. "asset": {
  2965. "__id__": 0
  2966. },
  2967. "fileId": "7cv//xKoBD0q9PXMdIBYWb"
  2968. },
  2969. {
  2970. "__type__": "cc.UITransform",
  2971. "_name": "",
  2972. "_objFlags": 0,
  2973. "node": {
  2974. "__id__": 93
  2975. },
  2976. "_enabled": true,
  2977. "__prefab": {
  2978. "__id__": 143
  2979. },
  2980. "_priority": 0,
  2981. "_contentSize": {
  2982. "__type__": "cc.Size",
  2983. "width": 100,
  2984. "height": 100
  2985. },
  2986. "_anchorPoint": {
  2987. "__type__": "cc.Vec2",
  2988. "x": 0.5,
  2989. "y": 0.5
  2990. },
  2991. "_id": ""
  2992. },
  2993. {
  2994. "__type__": "cc.CompPrefabInfo",
  2995. "fileId": "9cckkZCxFPzaYY6HJFsm83"
  2996. },
  2997. {
  2998. "__type__": "cc.PrefabInfo",
  2999. "root": {
  3000. "__id__": 1
  3001. },
  3002. "asset": {
  3003. "__id__": 0
  3004. },
  3005. "fileId": "96daGSVjZCZpZv+4nB15px"
  3006. },
  3007. {
  3008. "__type__": "cc.Node",
  3009. "_name": "成熟阶段",
  3010. "_objFlags": 0,
  3011. "_parent": {
  3012. "__id__": 30
  3013. },
  3014. "_children": [
  3015. {
  3016. "__id__": 146
  3017. },
  3018. {
  3019. "__id__": 154
  3020. },
  3021. {
  3022. "__id__": 162
  3023. },
  3024. {
  3025. "__id__": 170
  3026. },
  3027. {
  3028. "__id__": 178
  3029. },
  3030. {
  3031. "__id__": 186
  3032. }
  3033. ],
  3034. "_active": false,
  3035. "_components": [
  3036. {
  3037. "__id__": 194
  3038. }
  3039. ],
  3040. "_prefab": {
  3041. "__id__": 196
  3042. },
  3043. "_lpos": {
  3044. "__type__": "cc.Vec3",
  3045. "x": 0,
  3046. "y": 0,
  3047. "z": 0
  3048. },
  3049. "_lrot": {
  3050. "__type__": "cc.Quat",
  3051. "x": 0,
  3052. "y": 0,
  3053. "z": 0,
  3054. "w": 1
  3055. },
  3056. "_lscale": {
  3057. "__type__": "cc.Vec3",
  3058. "x": 1,
  3059. "y": 1,
  3060. "z": 1
  3061. },
  3062. "_layer": 1073741824,
  3063. "_euler": {
  3064. "__type__": "cc.Vec3",
  3065. "x": 0,
  3066. "y": 0,
  3067. "z": 0
  3068. },
  3069. "_id": ""
  3070. },
  3071. {
  3072. "__type__": "cc.Node",
  3073. "_name": "ripe_10001",
  3074. "_objFlags": 0,
  3075. "_parent": {
  3076. "__id__": 145
  3077. },
  3078. "_children": [],
  3079. "_active": true,
  3080. "_components": [
  3081. {
  3082. "__id__": 147
  3083. },
  3084. {
  3085. "__id__": 149
  3086. },
  3087. {
  3088. "__id__": 151
  3089. }
  3090. ],
  3091. "_prefab": {
  3092. "__id__": 153
  3093. },
  3094. "_lpos": {
  3095. "__type__": "cc.Vec3",
  3096. "x": -44.153,
  3097. "y": 8.988,
  3098. "z": 0
  3099. },
  3100. "_lrot": {
  3101. "__type__": "cc.Quat",
  3102. "x": 0,
  3103. "y": 0,
  3104. "z": 0,
  3105. "w": 1
  3106. },
  3107. "_lscale": {
  3108. "__type__": "cc.Vec3",
  3109. "x": 1,
  3110. "y": 1,
  3111. "z": 1
  3112. },
  3113. "_layer": 1073741824,
  3114. "_euler": {
  3115. "__type__": "cc.Vec3",
  3116. "x": 0,
  3117. "y": 0,
  3118. "z": 0
  3119. },
  3120. "_id": ""
  3121. },
  3122. {
  3123. "__type__": "cc.UITransform",
  3124. "_name": "",
  3125. "_objFlags": 0,
  3126. "node": {
  3127. "__id__": 146
  3128. },
  3129. "_enabled": true,
  3130. "__prefab": {
  3131. "__id__": 148
  3132. },
  3133. "_priority": 0,
  3134. "_contentSize": {
  3135. "__type__": "cc.Size",
  3136. "width": 45,
  3137. "height": 36
  3138. },
  3139. "_anchorPoint": {
  3140. "__type__": "cc.Vec2",
  3141. "x": 0.5,
  3142. "y": 0
  3143. },
  3144. "_id": ""
  3145. },
  3146. {
  3147. "__type__": "cc.CompPrefabInfo",
  3148. "fileId": "9ce9UMJ6NB7JOAVU/JRmLU"
  3149. },
  3150. {
  3151. "__type__": "cc.Sprite",
  3152. "_name": "",
  3153. "_objFlags": 0,
  3154. "node": {
  3155. "__id__": 146
  3156. },
  3157. "_enabled": true,
  3158. "__prefab": {
  3159. "__id__": 150
  3160. },
  3161. "_visFlags": 0,
  3162. "_customMaterial": null,
  3163. "_srcBlendFactor": 2,
  3164. "_dstBlendFactor": 4,
  3165. "_color": {
  3166. "__type__": "cc.Color",
  3167. "r": 255,
  3168. "g": 255,
  3169. "b": 255,
  3170. "a": 255
  3171. },
  3172. "_spriteFrame": {
  3173. "__uuid__": "b7593abf-06ee-496e-9215-55065c8d40fc@f9941"
  3174. },
  3175. "_type": 0,
  3176. "_fillType": 0,
  3177. "_sizeMode": 1,
  3178. "_fillCenter": {
  3179. "__type__": "cc.Vec2",
  3180. "x": 0,
  3181. "y": 0
  3182. },
  3183. "_fillStart": 0,
  3184. "_fillRange": 0,
  3185. "_isTrimmedMode": true,
  3186. "_useGrayscale": false,
  3187. "_atlas": null,
  3188. "_id": ""
  3189. },
  3190. {
  3191. "__type__": "cc.CompPrefabInfo",
  3192. "fileId": "07iGHzta9Lfp6UxFw6GyI3"
  3193. },
  3194. {
  3195. "__type__": "cc.Animation",
  3196. "_name": "",
  3197. "_objFlags": 0,
  3198. "node": {
  3199. "__id__": 146
  3200. },
  3201. "_enabled": true,
  3202. "__prefab": {
  3203. "__id__": 152
  3204. },
  3205. "playOnLoad": true,
  3206. "_clips": [
  3207. {
  3208. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3209. }
  3210. ],
  3211. "_defaultClip": {
  3212. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3213. },
  3214. "_id": ""
  3215. },
  3216. {
  3217. "__type__": "cc.CompPrefabInfo",
  3218. "fileId": "5dZiHfbJFFjongdC2wtSUa"
  3219. },
  3220. {
  3221. "__type__": "cc.PrefabInfo",
  3222. "root": {
  3223. "__id__": 1
  3224. },
  3225. "asset": {
  3226. "__id__": 0
  3227. },
  3228. "fileId": "b1cgR3+MpFTop80tt4H9gK"
  3229. },
  3230. {
  3231. "__type__": "cc.Node",
  3232. "_name": "ripe_10002",
  3233. "_objFlags": 0,
  3234. "_parent": {
  3235. "__id__": 145
  3236. },
  3237. "_children": [],
  3238. "_active": true,
  3239. "_components": [
  3240. {
  3241. "__id__": 155
  3242. },
  3243. {
  3244. "__id__": 157
  3245. },
  3246. {
  3247. "__id__": 159
  3248. }
  3249. ],
  3250. "_prefab": {
  3251. "__id__": 161
  3252. },
  3253. "_lpos": {
  3254. "__type__": "cc.Vec3",
  3255. "x": -13.038,
  3256. "y": -8.269,
  3257. "z": 0
  3258. },
  3259. "_lrot": {
  3260. "__type__": "cc.Quat",
  3261. "x": 0,
  3262. "y": 0,
  3263. "z": 0,
  3264. "w": 1
  3265. },
  3266. "_lscale": {
  3267. "__type__": "cc.Vec3",
  3268. "x": 1,
  3269. "y": 1,
  3270. "z": 1
  3271. },
  3272. "_layer": 1073741824,
  3273. "_euler": {
  3274. "__type__": "cc.Vec3",
  3275. "x": 0,
  3276. "y": 0,
  3277. "z": 0
  3278. },
  3279. "_id": ""
  3280. },
  3281. {
  3282. "__type__": "cc.UITransform",
  3283. "_name": "",
  3284. "_objFlags": 0,
  3285. "node": {
  3286. "__id__": 154
  3287. },
  3288. "_enabled": true,
  3289. "__prefab": {
  3290. "__id__": 156
  3291. },
  3292. "_priority": 0,
  3293. "_contentSize": {
  3294. "__type__": "cc.Size",
  3295. "width": 45,
  3296. "height": 36
  3297. },
  3298. "_anchorPoint": {
  3299. "__type__": "cc.Vec2",
  3300. "x": 0.5,
  3301. "y": 0
  3302. },
  3303. "_id": ""
  3304. },
  3305. {
  3306. "__type__": "cc.CompPrefabInfo",
  3307. "fileId": "e1DH44n5VECaNBdDowDYQB"
  3308. },
  3309. {
  3310. "__type__": "cc.Sprite",
  3311. "_name": "",
  3312. "_objFlags": 0,
  3313. "node": {
  3314. "__id__": 154
  3315. },
  3316. "_enabled": true,
  3317. "__prefab": {
  3318. "__id__": 158
  3319. },
  3320. "_visFlags": 0,
  3321. "_customMaterial": null,
  3322. "_srcBlendFactor": 2,
  3323. "_dstBlendFactor": 4,
  3324. "_color": {
  3325. "__type__": "cc.Color",
  3326. "r": 255,
  3327. "g": 255,
  3328. "b": 255,
  3329. "a": 255
  3330. },
  3331. "_spriteFrame": {
  3332. "__uuid__": "b7593abf-06ee-496e-9215-55065c8d40fc@f9941"
  3333. },
  3334. "_type": 0,
  3335. "_fillType": 0,
  3336. "_sizeMode": 1,
  3337. "_fillCenter": {
  3338. "__type__": "cc.Vec2",
  3339. "x": 0,
  3340. "y": 0
  3341. },
  3342. "_fillStart": 0,
  3343. "_fillRange": 0,
  3344. "_isTrimmedMode": true,
  3345. "_useGrayscale": false,
  3346. "_atlas": null,
  3347. "_id": ""
  3348. },
  3349. {
  3350. "__type__": "cc.CompPrefabInfo",
  3351. "fileId": "3d6p5Giz5OVZelwKhAF5+i"
  3352. },
  3353. {
  3354. "__type__": "cc.Animation",
  3355. "_name": "",
  3356. "_objFlags": 0,
  3357. "node": {
  3358. "__id__": 154
  3359. },
  3360. "_enabled": true,
  3361. "__prefab": {
  3362. "__id__": 160
  3363. },
  3364. "playOnLoad": true,
  3365. "_clips": [
  3366. {
  3367. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3368. }
  3369. ],
  3370. "_defaultClip": {
  3371. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3372. },
  3373. "_id": ""
  3374. },
  3375. {
  3376. "__type__": "cc.CompPrefabInfo",
  3377. "fileId": "99qgwxvaVJhIYzqsRKuRED"
  3378. },
  3379. {
  3380. "__type__": "cc.PrefabInfo",
  3381. "root": {
  3382. "__id__": 1
  3383. },
  3384. "asset": {
  3385. "__id__": 0
  3386. },
  3387. "fileId": "327X9VOU9MHLb3Pc38K0M7"
  3388. },
  3389. {
  3390. "__type__": "cc.Node",
  3391. "_name": "ripe_10003",
  3392. "_objFlags": 0,
  3393. "_parent": {
  3394. "__id__": 145
  3395. },
  3396. "_children": [],
  3397. "_active": true,
  3398. "_components": [
  3399. {
  3400. "__id__": 163
  3401. },
  3402. {
  3403. "__id__": 165
  3404. },
  3405. {
  3406. "__id__": 167
  3407. }
  3408. ],
  3409. "_prefab": {
  3410. "__id__": 169
  3411. },
  3412. "_lpos": {
  3413. "__type__": "cc.Vec3",
  3414. "x": 19.646,
  3415. "y": -28.402,
  3416. "z": 0
  3417. },
  3418. "_lrot": {
  3419. "__type__": "cc.Quat",
  3420. "x": 0,
  3421. "y": 0,
  3422. "z": 0,
  3423. "w": 1
  3424. },
  3425. "_lscale": {
  3426. "__type__": "cc.Vec3",
  3427. "x": 1,
  3428. "y": 1,
  3429. "z": 1
  3430. },
  3431. "_layer": 1073741824,
  3432. "_euler": {
  3433. "__type__": "cc.Vec3",
  3434. "x": 0,
  3435. "y": 0,
  3436. "z": 0
  3437. },
  3438. "_id": ""
  3439. },
  3440. {
  3441. "__type__": "cc.UITransform",
  3442. "_name": "",
  3443. "_objFlags": 0,
  3444. "node": {
  3445. "__id__": 162
  3446. },
  3447. "_enabled": true,
  3448. "__prefab": {
  3449. "__id__": 164
  3450. },
  3451. "_priority": 0,
  3452. "_contentSize": {
  3453. "__type__": "cc.Size",
  3454. "width": 45,
  3455. "height": 36
  3456. },
  3457. "_anchorPoint": {
  3458. "__type__": "cc.Vec2",
  3459. "x": 0.5,
  3460. "y": 0
  3461. },
  3462. "_id": ""
  3463. },
  3464. {
  3465. "__type__": "cc.CompPrefabInfo",
  3466. "fileId": "051Yah849HtJBV1tAXZpe7"
  3467. },
  3468. {
  3469. "__type__": "cc.Sprite",
  3470. "_name": "",
  3471. "_objFlags": 0,
  3472. "node": {
  3473. "__id__": 162
  3474. },
  3475. "_enabled": true,
  3476. "__prefab": {
  3477. "__id__": 166
  3478. },
  3479. "_visFlags": 0,
  3480. "_customMaterial": null,
  3481. "_srcBlendFactor": 2,
  3482. "_dstBlendFactor": 4,
  3483. "_color": {
  3484. "__type__": "cc.Color",
  3485. "r": 255,
  3486. "g": 255,
  3487. "b": 255,
  3488. "a": 255
  3489. },
  3490. "_spriteFrame": {
  3491. "__uuid__": "b7593abf-06ee-496e-9215-55065c8d40fc@f9941"
  3492. },
  3493. "_type": 0,
  3494. "_fillType": 0,
  3495. "_sizeMode": 1,
  3496. "_fillCenter": {
  3497. "__type__": "cc.Vec2",
  3498. "x": 0,
  3499. "y": 0
  3500. },
  3501. "_fillStart": 0,
  3502. "_fillRange": 0,
  3503. "_isTrimmedMode": true,
  3504. "_useGrayscale": false,
  3505. "_atlas": null,
  3506. "_id": ""
  3507. },
  3508. {
  3509. "__type__": "cc.CompPrefabInfo",
  3510. "fileId": "aaeh+uBwJOfY0d8PaNIwfp"
  3511. },
  3512. {
  3513. "__type__": "cc.Animation",
  3514. "_name": "",
  3515. "_objFlags": 0,
  3516. "node": {
  3517. "__id__": 162
  3518. },
  3519. "_enabled": true,
  3520. "__prefab": {
  3521. "__id__": 168
  3522. },
  3523. "playOnLoad": true,
  3524. "_clips": [
  3525. {
  3526. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3527. }
  3528. ],
  3529. "_defaultClip": {
  3530. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3531. },
  3532. "_id": ""
  3533. },
  3534. {
  3535. "__type__": "cc.CompPrefabInfo",
  3536. "fileId": "aeeA4NGt5Ex49ZC6gVmZdG"
  3537. },
  3538. {
  3539. "__type__": "cc.PrefabInfo",
  3540. "root": {
  3541. "__id__": 1
  3542. },
  3543. "asset": {
  3544. "__id__": 0
  3545. },
  3546. "fileId": "bflEPIdDhOMZ4mGf9tUG0C"
  3547. },
  3548. {
  3549. "__type__": "cc.Node",
  3550. "_name": "ripe_10004",
  3551. "_objFlags": 0,
  3552. "_parent": {
  3553. "__id__": 145
  3554. },
  3555. "_children": [],
  3556. "_active": true,
  3557. "_components": [
  3558. {
  3559. "__id__": 171
  3560. },
  3561. {
  3562. "__id__": 173
  3563. },
  3564. {
  3565. "__id__": 175
  3566. }
  3567. ],
  3568. "_prefab": {
  3569. "__id__": 177
  3570. },
  3571. "_lpos": {
  3572. "__type__": "cc.Vec3",
  3573. "x": -14.345,
  3574. "y": 25.723,
  3575. "z": 0
  3576. },
  3577. "_lrot": {
  3578. "__type__": "cc.Quat",
  3579. "x": 0,
  3580. "y": 0,
  3581. "z": 0,
  3582. "w": 1
  3583. },
  3584. "_lscale": {
  3585. "__type__": "cc.Vec3",
  3586. "x": 1,
  3587. "y": 1,
  3588. "z": 1
  3589. },
  3590. "_layer": 1073741824,
  3591. "_euler": {
  3592. "__type__": "cc.Vec3",
  3593. "x": 0,
  3594. "y": 0,
  3595. "z": 0
  3596. },
  3597. "_id": ""
  3598. },
  3599. {
  3600. "__type__": "cc.UITransform",
  3601. "_name": "",
  3602. "_objFlags": 0,
  3603. "node": {
  3604. "__id__": 170
  3605. },
  3606. "_enabled": true,
  3607. "__prefab": {
  3608. "__id__": 172
  3609. },
  3610. "_priority": 0,
  3611. "_contentSize": {
  3612. "__type__": "cc.Size",
  3613. "width": 45,
  3614. "height": 36
  3615. },
  3616. "_anchorPoint": {
  3617. "__type__": "cc.Vec2",
  3618. "x": 0.5,
  3619. "y": 0
  3620. },
  3621. "_id": ""
  3622. },
  3623. {
  3624. "__type__": "cc.CompPrefabInfo",
  3625. "fileId": "10jmVjmR1GL7LcNkFY8UlU"
  3626. },
  3627. {
  3628. "__type__": "cc.Sprite",
  3629. "_name": "",
  3630. "_objFlags": 0,
  3631. "node": {
  3632. "__id__": 170
  3633. },
  3634. "_enabled": true,
  3635. "__prefab": {
  3636. "__id__": 174
  3637. },
  3638. "_visFlags": 0,
  3639. "_customMaterial": null,
  3640. "_srcBlendFactor": 2,
  3641. "_dstBlendFactor": 4,
  3642. "_color": {
  3643. "__type__": "cc.Color",
  3644. "r": 255,
  3645. "g": 255,
  3646. "b": 255,
  3647. "a": 255
  3648. },
  3649. "_spriteFrame": {
  3650. "__uuid__": "b7593abf-06ee-496e-9215-55065c8d40fc@f9941"
  3651. },
  3652. "_type": 0,
  3653. "_fillType": 0,
  3654. "_sizeMode": 1,
  3655. "_fillCenter": {
  3656. "__type__": "cc.Vec2",
  3657. "x": 0,
  3658. "y": 0
  3659. },
  3660. "_fillStart": 0,
  3661. "_fillRange": 0,
  3662. "_isTrimmedMode": true,
  3663. "_useGrayscale": false,
  3664. "_atlas": null,
  3665. "_id": ""
  3666. },
  3667. {
  3668. "__type__": "cc.CompPrefabInfo",
  3669. "fileId": "0f3wMFwz1JfKtbudBFRgFH"
  3670. },
  3671. {
  3672. "__type__": "cc.Animation",
  3673. "_name": "",
  3674. "_objFlags": 0,
  3675. "node": {
  3676. "__id__": 170
  3677. },
  3678. "_enabled": true,
  3679. "__prefab": {
  3680. "__id__": 176
  3681. },
  3682. "playOnLoad": true,
  3683. "_clips": [
  3684. {
  3685. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3686. }
  3687. ],
  3688. "_defaultClip": {
  3689. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3690. },
  3691. "_id": ""
  3692. },
  3693. {
  3694. "__type__": "cc.CompPrefabInfo",
  3695. "fileId": "88P9md42dPsq6bH6lzDy8+"
  3696. },
  3697. {
  3698. "__type__": "cc.PrefabInfo",
  3699. "root": {
  3700. "__id__": 1
  3701. },
  3702. "asset": {
  3703. "__id__": 0
  3704. },
  3705. "fileId": "84IpDdc/RJwLquOV2u+5V8"
  3706. },
  3707. {
  3708. "__type__": "cc.Node",
  3709. "_name": "ripe_10005",
  3710. "_objFlags": 0,
  3711. "_parent": {
  3712. "__id__": 145
  3713. },
  3714. "_children": [],
  3715. "_active": true,
  3716. "_components": [
  3717. {
  3718. "__id__": 179
  3719. },
  3720. {
  3721. "__id__": 181
  3722. },
  3723. {
  3724. "__id__": 183
  3725. }
  3726. ],
  3727. "_prefab": {
  3728. "__id__": 185
  3729. },
  3730. "_lpos": {
  3731. "__type__": "cc.Vec3",
  3732. "x": 18.078,
  3733. "y": 7.42,
  3734. "z": 0
  3735. },
  3736. "_lrot": {
  3737. "__type__": "cc.Quat",
  3738. "x": 0,
  3739. "y": 0,
  3740. "z": 0,
  3741. "w": 1
  3742. },
  3743. "_lscale": {
  3744. "__type__": "cc.Vec3",
  3745. "x": 1,
  3746. "y": 1,
  3747. "z": 1
  3748. },
  3749. "_layer": 1073741824,
  3750. "_euler": {
  3751. "__type__": "cc.Vec3",
  3752. "x": 0,
  3753. "y": 0,
  3754. "z": 0
  3755. },
  3756. "_id": ""
  3757. },
  3758. {
  3759. "__type__": "cc.UITransform",
  3760. "_name": "",
  3761. "_objFlags": 0,
  3762. "node": {
  3763. "__id__": 178
  3764. },
  3765. "_enabled": true,
  3766. "__prefab": {
  3767. "__id__": 180
  3768. },
  3769. "_priority": 0,
  3770. "_contentSize": {
  3771. "__type__": "cc.Size",
  3772. "width": 45,
  3773. "height": 36
  3774. },
  3775. "_anchorPoint": {
  3776. "__type__": "cc.Vec2",
  3777. "x": 0.5,
  3778. "y": 0
  3779. },
  3780. "_id": ""
  3781. },
  3782. {
  3783. "__type__": "cc.CompPrefabInfo",
  3784. "fileId": "e6NmZN2zpCzrNElwIBkKOc"
  3785. },
  3786. {
  3787. "__type__": "cc.Sprite",
  3788. "_name": "",
  3789. "_objFlags": 0,
  3790. "node": {
  3791. "__id__": 178
  3792. },
  3793. "_enabled": true,
  3794. "__prefab": {
  3795. "__id__": 182
  3796. },
  3797. "_visFlags": 0,
  3798. "_customMaterial": null,
  3799. "_srcBlendFactor": 2,
  3800. "_dstBlendFactor": 4,
  3801. "_color": {
  3802. "__type__": "cc.Color",
  3803. "r": 255,
  3804. "g": 255,
  3805. "b": 255,
  3806. "a": 255
  3807. },
  3808. "_spriteFrame": {
  3809. "__uuid__": "b7593abf-06ee-496e-9215-55065c8d40fc@f9941"
  3810. },
  3811. "_type": 0,
  3812. "_fillType": 0,
  3813. "_sizeMode": 1,
  3814. "_fillCenter": {
  3815. "__type__": "cc.Vec2",
  3816. "x": 0,
  3817. "y": 0
  3818. },
  3819. "_fillStart": 0,
  3820. "_fillRange": 0,
  3821. "_isTrimmedMode": true,
  3822. "_useGrayscale": false,
  3823. "_atlas": null,
  3824. "_id": ""
  3825. },
  3826. {
  3827. "__type__": "cc.CompPrefabInfo",
  3828. "fileId": "7dUKnKSuFJwaM8JliHtW5Y"
  3829. },
  3830. {
  3831. "__type__": "cc.Animation",
  3832. "_name": "",
  3833. "_objFlags": 0,
  3834. "node": {
  3835. "__id__": 178
  3836. },
  3837. "_enabled": true,
  3838. "__prefab": {
  3839. "__id__": 184
  3840. },
  3841. "playOnLoad": true,
  3842. "_clips": [
  3843. {
  3844. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3845. }
  3846. ],
  3847. "_defaultClip": {
  3848. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  3849. },
  3850. "_id": ""
  3851. },
  3852. {
  3853. "__type__": "cc.CompPrefabInfo",
  3854. "fileId": "a6VAD3N6tD1Z8QGqUonI1o"
  3855. },
  3856. {
  3857. "__type__": "cc.PrefabInfo",
  3858. "root": {
  3859. "__id__": 1
  3860. },
  3861. "asset": {
  3862. "__id__": 0
  3863. },
  3864. "fileId": "84Y++65VNKZoXDIbb/rbIk"
  3865. },
  3866. {
  3867. "__type__": "cc.Node",
  3868. "_name": "ripe_10006",
  3869. "_objFlags": 0,
  3870. "_parent": {
  3871. "__id__": 145
  3872. },
  3873. "_children": [],
  3874. "_active": true,
  3875. "_components": [
  3876. {
  3877. "__id__": 187
  3878. },
  3879. {
  3880. "__id__": 189
  3881. },
  3882. {
  3883. "__id__": 191
  3884. }
  3885. ],
  3886. "_prefab": {
  3887. "__id__": 193
  3888. },
  3889. "_lpos": {
  3890. "__type__": "cc.Vec3",
  3891. "x": 49.978,
  3892. "y": -12.975,
  3893. "z": 0
  3894. },
  3895. "_lrot": {
  3896. "__type__": "cc.Quat",
  3897. "x": 0,
  3898. "y": 0,
  3899. "z": 0,
  3900. "w": 1
  3901. },
  3902. "_lscale": {
  3903. "__type__": "cc.Vec3",
  3904. "x": 1,
  3905. "y": 1,
  3906. "z": 1
  3907. },
  3908. "_layer": 1073741824,
  3909. "_euler": {
  3910. "__type__": "cc.Vec3",
  3911. "x": 0,
  3912. "y": 0,
  3913. "z": 0
  3914. },
  3915. "_id": ""
  3916. },
  3917. {
  3918. "__type__": "cc.UITransform",
  3919. "_name": "",
  3920. "_objFlags": 0,
  3921. "node": {
  3922. "__id__": 186
  3923. },
  3924. "_enabled": true,
  3925. "__prefab": {
  3926. "__id__": 188
  3927. },
  3928. "_priority": 0,
  3929. "_contentSize": {
  3930. "__type__": "cc.Size",
  3931. "width": 45,
  3932. "height": 36
  3933. },
  3934. "_anchorPoint": {
  3935. "__type__": "cc.Vec2",
  3936. "x": 0.5,
  3937. "y": 0
  3938. },
  3939. "_id": ""
  3940. },
  3941. {
  3942. "__type__": "cc.CompPrefabInfo",
  3943. "fileId": "8ag+9lg89Ca7CuN7nQfKsW"
  3944. },
  3945. {
  3946. "__type__": "cc.Sprite",
  3947. "_name": "",
  3948. "_objFlags": 0,
  3949. "node": {
  3950. "__id__": 186
  3951. },
  3952. "_enabled": true,
  3953. "__prefab": {
  3954. "__id__": 190
  3955. },
  3956. "_visFlags": 0,
  3957. "_customMaterial": null,
  3958. "_srcBlendFactor": 2,
  3959. "_dstBlendFactor": 4,
  3960. "_color": {
  3961. "__type__": "cc.Color",
  3962. "r": 255,
  3963. "g": 255,
  3964. "b": 255,
  3965. "a": 255
  3966. },
  3967. "_spriteFrame": {
  3968. "__uuid__": "b7593abf-06ee-496e-9215-55065c8d40fc@f9941"
  3969. },
  3970. "_type": 0,
  3971. "_fillType": 0,
  3972. "_sizeMode": 1,
  3973. "_fillCenter": {
  3974. "__type__": "cc.Vec2",
  3975. "x": 0,
  3976. "y": 0
  3977. },
  3978. "_fillStart": 0,
  3979. "_fillRange": 0,
  3980. "_isTrimmedMode": true,
  3981. "_useGrayscale": false,
  3982. "_atlas": null,
  3983. "_id": ""
  3984. },
  3985. {
  3986. "__type__": "cc.CompPrefabInfo",
  3987. "fileId": "61qM49BIlAm5zOsitS3/QX"
  3988. },
  3989. {
  3990. "__type__": "cc.Animation",
  3991. "_name": "",
  3992. "_objFlags": 0,
  3993. "node": {
  3994. "__id__": 186
  3995. },
  3996. "_enabled": true,
  3997. "__prefab": {
  3998. "__id__": 192
  3999. },
  4000. "playOnLoad": true,
  4001. "_clips": [
  4002. {
  4003. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  4004. }
  4005. ],
  4006. "_defaultClip": {
  4007. "__uuid__": "32f0c62b-09f9-4763-8027-284ca9410ed4"
  4008. },
  4009. "_id": ""
  4010. },
  4011. {
  4012. "__type__": "cc.CompPrefabInfo",
  4013. "fileId": "f7cMBYBalJJbhQk7YjS2TJ"
  4014. },
  4015. {
  4016. "__type__": "cc.PrefabInfo",
  4017. "root": {
  4018. "__id__": 1
  4019. },
  4020. "asset": {
  4021. "__id__": 0
  4022. },
  4023. "fileId": "afglrsndlN4LMUpalx68rx"
  4024. },
  4025. {
  4026. "__type__": "cc.UITransform",
  4027. "_name": "",
  4028. "_objFlags": 0,
  4029. "node": {
  4030. "__id__": 145
  4031. },
  4032. "_enabled": true,
  4033. "__prefab": {
  4034. "__id__": 195
  4035. },
  4036. "_priority": 0,
  4037. "_contentSize": {
  4038. "__type__": "cc.Size",
  4039. "width": 100,
  4040. "height": 100
  4041. },
  4042. "_anchorPoint": {
  4043. "__type__": "cc.Vec2",
  4044. "x": 0.5,
  4045. "y": 0.5
  4046. },
  4047. "_id": ""
  4048. },
  4049. {
  4050. "__type__": "cc.CompPrefabInfo",
  4051. "fileId": "e9zxikM79ISLkHu8rBmX4t"
  4052. },
  4053. {
  4054. "__type__": "cc.PrefabInfo",
  4055. "root": {
  4056. "__id__": 1
  4057. },
  4058. "asset": {
  4059. "__id__": 0
  4060. },
  4061. "fileId": "b3U+mS8wJJ2bs0OHxw0j/D"
  4062. },
  4063. {
  4064. "__type__": "cc.UITransform",
  4065. "_name": "",
  4066. "_objFlags": 0,
  4067. "node": {
  4068. "__id__": 30
  4069. },
  4070. "_enabled": true,
  4071. "__prefab": {
  4072. "__id__": 198
  4073. },
  4074. "_priority": 0,
  4075. "_contentSize": {
  4076. "__type__": "cc.Size",
  4077. "width": 100,
  4078. "height": 100
  4079. },
  4080. "_anchorPoint": {
  4081. "__type__": "cc.Vec2",
  4082. "x": 0.5,
  4083. "y": 0.5
  4084. },
  4085. "_id": ""
  4086. },
  4087. {
  4088. "__type__": "cc.CompPrefabInfo",
  4089. "fileId": "08JMPPPJFIbpLxP4SeDd+Z"
  4090. },
  4091. {
  4092. "__type__": "e5ef4A/dzRH84+qFEsrQJak",
  4093. "_name": "",
  4094. "_objFlags": 0,
  4095. "node": {
  4096. "__id__": 30
  4097. },
  4098. "_enabled": true,
  4099. "__prefab": {
  4100. "__id__": 200
  4101. },
  4102. "states": [
  4103. {
  4104. "__id__": 31
  4105. },
  4106. {
  4107. "__id__": 41
  4108. },
  4109. {
  4110. "__id__": 93
  4111. },
  4112. {
  4113. "__id__": 145
  4114. }
  4115. ],
  4116. "seedIcon": {
  4117. "__id__": 35
  4118. },
  4119. "fayas": [
  4120. {
  4121. "__id__": 45
  4122. },
  4123. {
  4124. "__id__": 53
  4125. },
  4126. {
  4127. "__id__": 61
  4128. },
  4129. {
  4130. "__id__": 69
  4131. },
  4132. {
  4133. "__id__": 77
  4134. },
  4135. {
  4136. "__id__": 85
  4137. }
  4138. ],
  4139. "grows": [
  4140. {
  4141. "__id__": 97
  4142. },
  4143. {
  4144. "__id__": 105
  4145. },
  4146. {
  4147. "__id__": 113
  4148. },
  4149. {
  4150. "__id__": 121
  4151. },
  4152. {
  4153. "__id__": 129
  4154. },
  4155. {
  4156. "__id__": 137
  4157. }
  4158. ],
  4159. "ripes": [
  4160. {
  4161. "__id__": 149
  4162. },
  4163. {
  4164. "__id__": 157
  4165. },
  4166. {
  4167. "__id__": 165
  4168. },
  4169. {
  4170. "__id__": 173
  4171. },
  4172. {
  4173. "__id__": 181
  4174. },
  4175. {
  4176. "__id__": 189
  4177. }
  4178. ],
  4179. "_id": ""
  4180. },
  4181. {
  4182. "__type__": "cc.CompPrefabInfo",
  4183. "fileId": "ebbtqqwwtOFKbMf8y2myvG"
  4184. },
  4185. {
  4186. "__type__": "cc.PrefabInfo",
  4187. "root": {
  4188. "__id__": 1
  4189. },
  4190. "asset": {
  4191. "__id__": 0
  4192. },
  4193. "fileId": "4bBUve+3hHGoxszs33QSNM"
  4194. },
  4195. {
  4196. "__type__": "cc.Node",
  4197. "_name": "倒计时",
  4198. "_objFlags": 0,
  4199. "_parent": {
  4200. "__id__": 1
  4201. },
  4202. "_children": [
  4203. {
  4204. "__id__": 203
  4205. },
  4206. {
  4207. "__id__": 272
  4208. },
  4209. {
  4210. "__id__": 278
  4211. }
  4212. ],
  4213. "_active": true,
  4214. "_components": [
  4215. {
  4216. "__id__": 372
  4217. },
  4218. {
  4219. "__id__": 374
  4220. }
  4221. ],
  4222. "_prefab": {
  4223. "__id__": 380
  4224. },
  4225. "_lpos": {
  4226. "__type__": "cc.Vec3",
  4227. "x": 0,
  4228. "y": 0,
  4229. "z": 0
  4230. },
  4231. "_lrot": {
  4232. "__type__": "cc.Quat",
  4233. "x": 0,
  4234. "y": 0,
  4235. "z": 0,
  4236. "w": 1
  4237. },
  4238. "_lscale": {
  4239. "__type__": "cc.Vec3",
  4240. "x": 1,
  4241. "y": 1,
  4242. "z": 1
  4243. },
  4244. "_layer": 1073741824,
  4245. "_euler": {
  4246. "__type__": "cc.Vec3",
  4247. "x": 0,
  4248. "y": 0,
  4249. "z": 0
  4250. },
  4251. "_id": ""
  4252. },
  4253. {
  4254. "__type__": "cc.Node",
  4255. "_name": "常驻倒计时",
  4256. "_objFlags": 0,
  4257. "_parent": {
  4258. "__id__": 202
  4259. },
  4260. "_children": [
  4261. {
  4262. "__id__": 204
  4263. },
  4264. {
  4265. "__id__": 253
  4266. }
  4267. ],
  4268. "_active": false,
  4269. "_components": [
  4270. {
  4271. "__id__": 267
  4272. },
  4273. {
  4274. "__id__": 269
  4275. }
  4276. ],
  4277. "_prefab": {
  4278. "__id__": 271
  4279. },
  4280. "_lpos": {
  4281. "__type__": "cc.Vec3",
  4282. "x": 48.704,
  4283. "y": -18.074,
  4284. "z": 0
  4285. },
  4286. "_lrot": {
  4287. "__type__": "cc.Quat",
  4288. "x": 0,
  4289. "y": 0,
  4290. "z": 0,
  4291. "w": 1
  4292. },
  4293. "_lscale": {
  4294. "__type__": "cc.Vec3",
  4295. "x": 0.5,
  4296. "y": 0.5,
  4297. "z": 1
  4298. },
  4299. "_layer": 1073741824,
  4300. "_euler": {
  4301. "__type__": "cc.Vec3",
  4302. "x": 0,
  4303. "y": 0,
  4304. "z": 0
  4305. },
  4306. "_id": ""
  4307. },
  4308. {
  4309. "__type__": "cc.Node",
  4310. "_name": "常驻倒计时数字",
  4311. "_objFlags": 0,
  4312. "_parent": {
  4313. "__id__": 203
  4314. },
  4315. "_children": [
  4316. {
  4317. "__id__": 205
  4318. },
  4319. {
  4320. "__id__": 211
  4321. },
  4322. {
  4323. "__id__": 217
  4324. },
  4325. {
  4326. "__id__": 223
  4327. },
  4328. {
  4329. "__id__": 229
  4330. }
  4331. ],
  4332. "_active": true,
  4333. "_components": [
  4334. {
  4335. "__id__": 235
  4336. },
  4337. {
  4338. "__id__": 237
  4339. },
  4340. {
  4341. "__id__": 239
  4342. }
  4343. ],
  4344. "_prefab": {
  4345. "__id__": 252
  4346. },
  4347. "_lpos": {
  4348. "__type__": "cc.Vec3",
  4349. "x": 0,
  4350. "y": 6.5,
  4351. "z": 0
  4352. },
  4353. "_lrot": {
  4354. "__type__": "cc.Quat",
  4355. "x": 0,
  4356. "y": 0,
  4357. "z": 0,
  4358. "w": 1
  4359. },
  4360. "_lscale": {
  4361. "__type__": "cc.Vec3",
  4362. "x": 0.6,
  4363. "y": 0.6,
  4364. "z": 1
  4365. },
  4366. "_layer": 1073741824,
  4367. "_euler": {
  4368. "__type__": "cc.Vec3",
  4369. "x": 0,
  4370. "y": 0,
  4371. "z": 0
  4372. },
  4373. "_id": ""
  4374. },
  4375. {
  4376. "__type__": "cc.Node",
  4377. "_name": "1",
  4378. "_objFlags": 0,
  4379. "_parent": {
  4380. "__id__": 204
  4381. },
  4382. "_children": [],
  4383. "_active": true,
  4384. "_components": [
  4385. {
  4386. "__id__": 206
  4387. },
  4388. {
  4389. "__id__": 208
  4390. }
  4391. ],
  4392. "_prefab": {
  4393. "__id__": 210
  4394. },
  4395. "_lpos": {
  4396. "__type__": "cc.Vec3",
  4397. "x": -58.5,
  4398. "y": 0,
  4399. "z": 0
  4400. },
  4401. "_lrot": {
  4402. "__type__": "cc.Quat",
  4403. "x": 0,
  4404. "y": 0,
  4405. "z": 0,
  4406. "w": 1
  4407. },
  4408. "_lscale": {
  4409. "__type__": "cc.Vec3",
  4410. "x": 1,
  4411. "y": 1,
  4412. "z": 1
  4413. },
  4414. "_layer": 1073741824,
  4415. "_euler": {
  4416. "__type__": "cc.Vec3",
  4417. "x": 0,
  4418. "y": 0,
  4419. "z": 0
  4420. },
  4421. "_id": ""
  4422. },
  4423. {
  4424. "__type__": "cc.UITransform",
  4425. "_name": "",
  4426. "_objFlags": 0,
  4427. "node": {
  4428. "__id__": 205
  4429. },
  4430. "_enabled": true,
  4431. "__prefab": {
  4432. "__id__": 207
  4433. },
  4434. "_priority": 0,
  4435. "_contentSize": {
  4436. "__type__": "cc.Size",
  4437. "width": 23,
  4438. "height": 41
  4439. },
  4440. "_anchorPoint": {
  4441. "__type__": "cc.Vec2",
  4442. "x": 0.5,
  4443. "y": 0.5
  4444. },
  4445. "_id": ""
  4446. },
  4447. {
  4448. "__type__": "cc.CompPrefabInfo",
  4449. "fileId": "6diI+5Ue1J/ZKLiD9GknbH"
  4450. },
  4451. {
  4452. "__type__": "cc.Sprite",
  4453. "_name": "",
  4454. "_objFlags": 0,
  4455. "node": {
  4456. "__id__": 205
  4457. },
  4458. "_enabled": true,
  4459. "__prefab": {
  4460. "__id__": 209
  4461. },
  4462. "_visFlags": 0,
  4463. "_customMaterial": null,
  4464. "_srcBlendFactor": 2,
  4465. "_dstBlendFactor": 4,
  4466. "_color": {
  4467. "__type__": "cc.Color",
  4468. "r": 255,
  4469. "g": 255,
  4470. "b": 255,
  4471. "a": 255
  4472. },
  4473. "_spriteFrame": {
  4474. "__uuid__": "c9c50308-83cb-4256-a213-1dd37d912b6c@f9941"
  4475. },
  4476. "_type": 0,
  4477. "_fillType": 0,
  4478. "_sizeMode": 1,
  4479. "_fillCenter": {
  4480. "__type__": "cc.Vec2",
  4481. "x": 0,
  4482. "y": 0
  4483. },
  4484. "_fillStart": 0,
  4485. "_fillRange": 0,
  4486. "_isTrimmedMode": true,
  4487. "_useGrayscale": false,
  4488. "_atlas": null,
  4489. "_id": ""
  4490. },
  4491. {
  4492. "__type__": "cc.CompPrefabInfo",
  4493. "fileId": "91/t7D//VFeKKtk+ooXKhN"
  4494. },
  4495. {
  4496. "__type__": "cc.PrefabInfo",
  4497. "root": {
  4498. "__id__": 1
  4499. },
  4500. "asset": {
  4501. "__id__": 0
  4502. },
  4503. "fileId": "85R9O6EUNMDKjWlv6quilT"
  4504. },
  4505. {
  4506. "__type__": "cc.Node",
  4507. "_name": "2",
  4508. "_objFlags": 0,
  4509. "_parent": {
  4510. "__id__": 204
  4511. },
  4512. "_children": [],
  4513. "_active": true,
  4514. "_components": [
  4515. {
  4516. "__id__": 212
  4517. },
  4518. {
  4519. "__id__": 214
  4520. }
  4521. ],
  4522. "_prefab": {
  4523. "__id__": 216
  4524. },
  4525. "_lpos": {
  4526. "__type__": "cc.Vec3",
  4527. "x": -29.5,
  4528. "y": 0,
  4529. "z": 0
  4530. },
  4531. "_lrot": {
  4532. "__type__": "cc.Quat",
  4533. "x": 0,
  4534. "y": 0,
  4535. "z": 0,
  4536. "w": 1
  4537. },
  4538. "_lscale": {
  4539. "__type__": "cc.Vec3",
  4540. "x": 1,
  4541. "y": 1,
  4542. "z": 1
  4543. },
  4544. "_layer": 1073741824,
  4545. "_euler": {
  4546. "__type__": "cc.Vec3",
  4547. "x": 0,
  4548. "y": 0,
  4549. "z": 0
  4550. },
  4551. "_id": ""
  4552. },
  4553. {
  4554. "__type__": "cc.UITransform",
  4555. "_name": "",
  4556. "_objFlags": 0,
  4557. "node": {
  4558. "__id__": 211
  4559. },
  4560. "_enabled": true,
  4561. "__prefab": {
  4562. "__id__": 213
  4563. },
  4564. "_priority": 0,
  4565. "_contentSize": {
  4566. "__type__": "cc.Size",
  4567. "width": 35,
  4568. "height": 41
  4569. },
  4570. "_anchorPoint": {
  4571. "__type__": "cc.Vec2",
  4572. "x": 0.5,
  4573. "y": 0.5
  4574. },
  4575. "_id": ""
  4576. },
  4577. {
  4578. "__type__": "cc.CompPrefabInfo",
  4579. "fileId": "f9SalIzQtOyawZ/S8XySOd"
  4580. },
  4581. {
  4582. "__type__": "cc.Sprite",
  4583. "_name": "",
  4584. "_objFlags": 0,
  4585. "node": {
  4586. "__id__": 211
  4587. },
  4588. "_enabled": true,
  4589. "__prefab": {
  4590. "__id__": 215
  4591. },
  4592. "_visFlags": 0,
  4593. "_customMaterial": null,
  4594. "_srcBlendFactor": 2,
  4595. "_dstBlendFactor": 4,
  4596. "_color": {
  4597. "__type__": "cc.Color",
  4598. "r": 255,
  4599. "g": 255,
  4600. "b": 255,
  4601. "a": 255
  4602. },
  4603. "_spriteFrame": {
  4604. "__uuid__": "9024a3b2-1c01-49a6-b2c1-64caae94d451@f9941"
  4605. },
  4606. "_type": 0,
  4607. "_fillType": 0,
  4608. "_sizeMode": 1,
  4609. "_fillCenter": {
  4610. "__type__": "cc.Vec2",
  4611. "x": 0,
  4612. "y": 0
  4613. },
  4614. "_fillStart": 0,
  4615. "_fillRange": 0,
  4616. "_isTrimmedMode": true,
  4617. "_useGrayscale": false,
  4618. "_atlas": null,
  4619. "_id": ""
  4620. },
  4621. {
  4622. "__type__": "cc.CompPrefabInfo",
  4623. "fileId": "e1Jks6q45GqojmVdGSIWZW"
  4624. },
  4625. {
  4626. "__type__": "cc.PrefabInfo",
  4627. "root": {
  4628. "__id__": 1
  4629. },
  4630. "asset": {
  4631. "__id__": 0
  4632. },
  4633. "fileId": "b3kjU0HbJGtoGu8zAp1Eiz"
  4634. },
  4635. {
  4636. "__type__": "cc.Node",
  4637. "_name": ":",
  4638. "_objFlags": 0,
  4639. "_parent": {
  4640. "__id__": 204
  4641. },
  4642. "_children": [],
  4643. "_active": true,
  4644. "_components": [
  4645. {
  4646. "__id__": 218
  4647. },
  4648. {
  4649. "__id__": 220
  4650. }
  4651. ],
  4652. "_prefab": {
  4653. "__id__": 222
  4654. },
  4655. "_lpos": {
  4656. "__type__": "cc.Vec3",
  4657. "x": -5.5,
  4658. "y": 0,
  4659. "z": 0
  4660. },
  4661. "_lrot": {
  4662. "__type__": "cc.Quat",
  4663. "x": 0,
  4664. "y": 0,
  4665. "z": 0,
  4666. "w": 1
  4667. },
  4668. "_lscale": {
  4669. "__type__": "cc.Vec3",
  4670. "x": 1,
  4671. "y": 1,
  4672. "z": 1
  4673. },
  4674. "_layer": 1073741824,
  4675. "_euler": {
  4676. "__type__": "cc.Vec3",
  4677. "x": 0,
  4678. "y": 0,
  4679. "z": 0
  4680. },
  4681. "_id": ""
  4682. },
  4683. {
  4684. "__type__": "cc.UITransform",
  4685. "_name": "",
  4686. "_objFlags": 0,
  4687. "node": {
  4688. "__id__": 217
  4689. },
  4690. "_enabled": true,
  4691. "__prefab": {
  4692. "__id__": 219
  4693. },
  4694. "_priority": 0,
  4695. "_contentSize": {
  4696. "__type__": "cc.Size",
  4697. "width": 13,
  4698. "height": 27
  4699. },
  4700. "_anchorPoint": {
  4701. "__type__": "cc.Vec2",
  4702. "x": 0.5,
  4703. "y": 0.5
  4704. },
  4705. "_id": ""
  4706. },
  4707. {
  4708. "__type__": "cc.CompPrefabInfo",
  4709. "fileId": "75qUZ7StFCY6fAJMjrDpK2"
  4710. },
  4711. {
  4712. "__type__": "cc.Sprite",
  4713. "_name": "",
  4714. "_objFlags": 0,
  4715. "node": {
  4716. "__id__": 217
  4717. },
  4718. "_enabled": true,
  4719. "__prefab": {
  4720. "__id__": 221
  4721. },
  4722. "_visFlags": 0,
  4723. "_customMaterial": null,
  4724. "_srcBlendFactor": 2,
  4725. "_dstBlendFactor": 4,
  4726. "_color": {
  4727. "__type__": "cc.Color",
  4728. "r": 255,
  4729. "g": 255,
  4730. "b": 255,
  4731. "a": 255
  4732. },
  4733. "_spriteFrame": {
  4734. "__uuid__": "f6298706-2984-4253-928a-4eb3ffb70674@f9941"
  4735. },
  4736. "_type": 0,
  4737. "_fillType": 0,
  4738. "_sizeMode": 1,
  4739. "_fillCenter": {
  4740. "__type__": "cc.Vec2",
  4741. "x": 0,
  4742. "y": 0
  4743. },
  4744. "_fillStart": 0,
  4745. "_fillRange": 0,
  4746. "_isTrimmedMode": true,
  4747. "_useGrayscale": false,
  4748. "_atlas": null,
  4749. "_id": ""
  4750. },
  4751. {
  4752. "__type__": "cc.CompPrefabInfo",
  4753. "fileId": "93Y7pZECNIJas0MiWXRTk2"
  4754. },
  4755. {
  4756. "__type__": "cc.PrefabInfo",
  4757. "root": {
  4758. "__id__": 1
  4759. },
  4760. "asset": {
  4761. "__id__": 0
  4762. },
  4763. "fileId": "4419J8Y99F+ZnGIn4tZwl2"
  4764. },
  4765. {
  4766. "__type__": "cc.Node",
  4767. "_name": "0",
  4768. "_objFlags": 0,
  4769. "_parent": {
  4770. "__id__": 204
  4771. },
  4772. "_children": [],
  4773. "_active": true,
  4774. "_components": [
  4775. {
  4776. "__id__": 224
  4777. },
  4778. {
  4779. "__id__": 226
  4780. }
  4781. ],
  4782. "_prefab": {
  4783. "__id__": 228
  4784. },
  4785. "_lpos": {
  4786. "__type__": "cc.Vec3",
  4787. "x": 17.5,
  4788. "y": 0,
  4789. "z": 0
  4790. },
  4791. "_lrot": {
  4792. "__type__": "cc.Quat",
  4793. "x": 0,
  4794. "y": 0,
  4795. "z": 0,
  4796. "w": 1
  4797. },
  4798. "_lscale": {
  4799. "__type__": "cc.Vec3",
  4800. "x": 1,
  4801. "y": 1,
  4802. "z": 1
  4803. },
  4804. "_layer": 1073741824,
  4805. "_euler": {
  4806. "__type__": "cc.Vec3",
  4807. "x": 0,
  4808. "y": 0,
  4809. "z": 0
  4810. },
  4811. "_id": ""
  4812. },
  4813. {
  4814. "__type__": "cc.UITransform",
  4815. "_name": "",
  4816. "_objFlags": 0,
  4817. "node": {
  4818. "__id__": 223
  4819. },
  4820. "_enabled": true,
  4821. "__prefab": {
  4822. "__id__": 225
  4823. },
  4824. "_priority": 0,
  4825. "_contentSize": {
  4826. "__type__": "cc.Size",
  4827. "width": 33,
  4828. "height": 42
  4829. },
  4830. "_anchorPoint": {
  4831. "__type__": "cc.Vec2",
  4832. "x": 0.5,
  4833. "y": 0.5
  4834. },
  4835. "_id": ""
  4836. },
  4837. {
  4838. "__type__": "cc.CompPrefabInfo",
  4839. "fileId": "b1WrsjeUJE246RA3bSf8OH"
  4840. },
  4841. {
  4842. "__type__": "cc.Sprite",
  4843. "_name": "",
  4844. "_objFlags": 0,
  4845. "node": {
  4846. "__id__": 223
  4847. },
  4848. "_enabled": true,
  4849. "__prefab": {
  4850. "__id__": 227
  4851. },
  4852. "_visFlags": 0,
  4853. "_customMaterial": null,
  4854. "_srcBlendFactor": 2,
  4855. "_dstBlendFactor": 4,
  4856. "_color": {
  4857. "__type__": "cc.Color",
  4858. "r": 255,
  4859. "g": 255,
  4860. "b": 255,
  4861. "a": 255
  4862. },
  4863. "_spriteFrame": {
  4864. "__uuid__": "81809fb5-8f59-465d-b318-b5873a460d8c@f9941"
  4865. },
  4866. "_type": 0,
  4867. "_fillType": 0,
  4868. "_sizeMode": 1,
  4869. "_fillCenter": {
  4870. "__type__": "cc.Vec2",
  4871. "x": 0,
  4872. "y": 0
  4873. },
  4874. "_fillStart": 0,
  4875. "_fillRange": 0,
  4876. "_isTrimmedMode": true,
  4877. "_useGrayscale": false,
  4878. "_atlas": null,
  4879. "_id": ""
  4880. },
  4881. {
  4882. "__type__": "cc.CompPrefabInfo",
  4883. "fileId": "e7Gf8+Gv1FpLDmjh3P8yXd"
  4884. },
  4885. {
  4886. "__type__": "cc.PrefabInfo",
  4887. "root": {
  4888. "__id__": 1
  4889. },
  4890. "asset": {
  4891. "__id__": 0
  4892. },
  4893. "fileId": "6bcL3DQEZCsbDdTrEmzIHz"
  4894. },
  4895. {
  4896. "__type__": "cc.Node",
  4897. "_name": "6",
  4898. "_objFlags": 0,
  4899. "_parent": {
  4900. "__id__": 204
  4901. },
  4902. "_children": [],
  4903. "_active": true,
  4904. "_components": [
  4905. {
  4906. "__id__": 230
  4907. },
  4908. {
  4909. "__id__": 232
  4910. }
  4911. ],
  4912. "_prefab": {
  4913. "__id__": 234
  4914. },
  4915. "_lpos": {
  4916. "__type__": "cc.Vec3",
  4917. "x": 51,
  4918. "y": 0,
  4919. "z": 0
  4920. },
  4921. "_lrot": {
  4922. "__type__": "cc.Quat",
  4923. "x": 0,
  4924. "y": 0,
  4925. "z": 0,
  4926. "w": 1
  4927. },
  4928. "_lscale": {
  4929. "__type__": "cc.Vec3",
  4930. "x": 1,
  4931. "y": 1,
  4932. "z": 1
  4933. },
  4934. "_layer": 1073741824,
  4935. "_euler": {
  4936. "__type__": "cc.Vec3",
  4937. "x": 0,
  4938. "y": 0,
  4939. "z": 0
  4940. },
  4941. "_id": ""
  4942. },
  4943. {
  4944. "__type__": "cc.UITransform",
  4945. "_name": "",
  4946. "_objFlags": 0,
  4947. "node": {
  4948. "__id__": 229
  4949. },
  4950. "_enabled": true,
  4951. "__prefab": {
  4952. "__id__": 231
  4953. },
  4954. "_priority": 0,
  4955. "_contentSize": {
  4956. "__type__": "cc.Size",
  4957. "width": 34,
  4958. "height": 40
  4959. },
  4960. "_anchorPoint": {
  4961. "__type__": "cc.Vec2",
  4962. "x": 0.5,
  4963. "y": 0.5
  4964. },
  4965. "_id": ""
  4966. },
  4967. {
  4968. "__type__": "cc.CompPrefabInfo",
  4969. "fileId": "31Pxo7eudF5KtDiFAuVVDx"
  4970. },
  4971. {
  4972. "__type__": "cc.Sprite",
  4973. "_name": "",
  4974. "_objFlags": 0,
  4975. "node": {
  4976. "__id__": 229
  4977. },
  4978. "_enabled": true,
  4979. "__prefab": {
  4980. "__id__": 233
  4981. },
  4982. "_visFlags": 0,
  4983. "_customMaterial": null,
  4984. "_srcBlendFactor": 2,
  4985. "_dstBlendFactor": 4,
  4986. "_color": {
  4987. "__type__": "cc.Color",
  4988. "r": 255,
  4989. "g": 255,
  4990. "b": 255,
  4991. "a": 255
  4992. },
  4993. "_spriteFrame": {
  4994. "__uuid__": "bfc31f13-bcd8-4747-8477-3be50adf3c50@f9941"
  4995. },
  4996. "_type": 0,
  4997. "_fillType": 0,
  4998. "_sizeMode": 1,
  4999. "_fillCenter": {
  5000. "__type__": "cc.Vec2",
  5001. "x": 0,
  5002. "y": 0
  5003. },
  5004. "_fillStart": 0,
  5005. "_fillRange": 0,
  5006. "_isTrimmedMode": true,
  5007. "_useGrayscale": false,
  5008. "_atlas": null,
  5009. "_id": ""
  5010. },
  5011. {
  5012. "__type__": "cc.CompPrefabInfo",
  5013. "fileId": "f2nqWFI0dF8piTz7BvmtDa"
  5014. },
  5015. {
  5016. "__type__": "cc.PrefabInfo",
  5017. "root": {
  5018. "__id__": 1
  5019. },
  5020. "asset": {
  5021. "__id__": 0
  5022. },
  5023. "fileId": "89nDahzwJE5JE5YGf/NPCW"
  5024. },
  5025. {
  5026. "__type__": "cc.UITransform",
  5027. "_name": "",
  5028. "_objFlags": 0,
  5029. "node": {
  5030. "__id__": 204
  5031. },
  5032. "_enabled": true,
  5033. "__prefab": {
  5034. "__id__": 236
  5035. },
  5036. "_priority": 0,
  5037. "_contentSize": {
  5038. "__type__": "cc.Size",
  5039. "width": 140,
  5040. "height": 47
  5041. },
  5042. "_anchorPoint": {
  5043. "__type__": "cc.Vec2",
  5044. "x": 0.5,
  5045. "y": 0.5
  5046. },
  5047. "_id": ""
  5048. },
  5049. {
  5050. "__type__": "cc.CompPrefabInfo",
  5051. "fileId": "4dU6uHVc1EsqllNqmeMp1V"
  5052. },
  5053. {
  5054. "__type__": "cc.Layout",
  5055. "_name": "",
  5056. "_objFlags": 0,
  5057. "node": {
  5058. "__id__": 204
  5059. },
  5060. "_enabled": true,
  5061. "__prefab": {
  5062. "__id__": 238
  5063. },
  5064. "_resizeMode": 0,
  5065. "_layoutType": 1,
  5066. "_cellSize": {
  5067. "__type__": "cc.Size",
  5068. "width": 40,
  5069. "height": 40
  5070. },
  5071. "_startAxis": 0,
  5072. "_paddingLeft": 0,
  5073. "_paddingRight": 0,
  5074. "_paddingTop": 0,
  5075. "_paddingBottom": 0,
  5076. "_spacingX": 0,
  5077. "_spacingY": 0,
  5078. "_verticalDirection": 1,
  5079. "_horizontalDirection": 0,
  5080. "_constraint": 0,
  5081. "_constraintNum": 2,
  5082. "_affectedByScale": false,
  5083. "_isAlign": true,
  5084. "_id": ""
  5085. },
  5086. {
  5087. "__type__": "cc.CompPrefabInfo",
  5088. "fileId": "f4yaz2i6JKZJ4YzWLez5p+"
  5089. },
  5090. {
  5091. "__type__": "0399a2QOElBv7Vrq+PQeKPi",
  5092. "_name": "",
  5093. "_objFlags": 0,
  5094. "node": {
  5095. "__id__": 204
  5096. },
  5097. "_enabled": true,
  5098. "__prefab": {
  5099. "__id__": 240
  5100. },
  5101. "dataList": [
  5102. {
  5103. "__id__": 241
  5104. },
  5105. {
  5106. "__id__": 242
  5107. },
  5108. {
  5109. "__id__": 243
  5110. },
  5111. {
  5112. "__id__": 244
  5113. },
  5114. {
  5115. "__id__": 245
  5116. },
  5117. {
  5118. "__id__": 246
  5119. },
  5120. {
  5121. "__id__": 247
  5122. },
  5123. {
  5124. "__id__": 248
  5125. },
  5126. {
  5127. "__id__": 249
  5128. },
  5129. {
  5130. "__id__": 250
  5131. },
  5132. {
  5133. "__id__": 251
  5134. }
  5135. ],
  5136. "_string": "12:06",
  5137. "_id": ""
  5138. },
  5139. {
  5140. "__type__": "cc.CompPrefabInfo",
  5141. "fileId": "33p3Xml0dC+5+kwaXKPLNe"
  5142. },
  5143. {
  5144. "__type__": "BitmapFontData",
  5145. "chair": "0",
  5146. "spriteFrame": {
  5147. "__uuid__": "81809fb5-8f59-465d-b318-b5873a460d8c@f9941"
  5148. }
  5149. },
  5150. {
  5151. "__type__": "BitmapFontData",
  5152. "chair": "1",
  5153. "spriteFrame": {
  5154. "__uuid__": "c9c50308-83cb-4256-a213-1dd37d912b6c@f9941"
  5155. }
  5156. },
  5157. {
  5158. "__type__": "BitmapFontData",
  5159. "chair": "2",
  5160. "spriteFrame": {
  5161. "__uuid__": "9024a3b2-1c01-49a6-b2c1-64caae94d451@f9941"
  5162. }
  5163. },
  5164. {
  5165. "__type__": "BitmapFontData",
  5166. "chair": "3",
  5167. "spriteFrame": {
  5168. "__uuid__": "af199749-534b-4c15-9580-7cb0e8ecedc0@f9941"
  5169. }
  5170. },
  5171. {
  5172. "__type__": "BitmapFontData",
  5173. "chair": "4",
  5174. "spriteFrame": {
  5175. "__uuid__": "87629cdc-7adb-4f1a-bed7-6e5dfaa0001f@f9941"
  5176. }
  5177. },
  5178. {
  5179. "__type__": "BitmapFontData",
  5180. "chair": "5",
  5181. "spriteFrame": {
  5182. "__uuid__": "0214e697-1850-41f0-b28e-3f527952de01@f9941"
  5183. }
  5184. },
  5185. {
  5186. "__type__": "BitmapFontData",
  5187. "chair": "6",
  5188. "spriteFrame": {
  5189. "__uuid__": "bfc31f13-bcd8-4747-8477-3be50adf3c50@f9941"
  5190. }
  5191. },
  5192. {
  5193. "__type__": "BitmapFontData",
  5194. "chair": "7",
  5195. "spriteFrame": {
  5196. "__uuid__": "087853e7-e217-4ad2-8b13-549a8d63b909@f9941"
  5197. }
  5198. },
  5199. {
  5200. "__type__": "BitmapFontData",
  5201. "chair": "8",
  5202. "spriteFrame": {
  5203. "__uuid__": "94b48f15-f97d-4cca-b709-8bcf1dcef879@f9941"
  5204. }
  5205. },
  5206. {
  5207. "__type__": "BitmapFontData",
  5208. "chair": "9",
  5209. "spriteFrame": {
  5210. "__uuid__": "db5d7587-fde9-4cbd-abf1-fc7ee63f4a5d@f9941"
  5211. }
  5212. },
  5213. {
  5214. "__type__": "BitmapFontData",
  5215. "chair": ":",
  5216. "spriteFrame": {
  5217. "__uuid__": "f6298706-2984-4253-928a-4eb3ffb70674@f9941"
  5218. }
  5219. },
  5220. {
  5221. "__type__": "cc.PrefabInfo",
  5222. "root": {
  5223. "__id__": 1
  5224. },
  5225. "asset": {
  5226. "__id__": 0
  5227. },
  5228. "fileId": "daKSxto/ZAMIZrUXwB0+RW"
  5229. },
  5230. {
  5231. "__type__": "cc.Node",
  5232. "_name": "常驻计时条",
  5233. "_objFlags": 0,
  5234. "_parent": {
  5235. "__id__": 203
  5236. },
  5237. "_children": [
  5238. {
  5239. "__id__": 254
  5240. }
  5241. ],
  5242. "_active": true,
  5243. "_components": [
  5244. {
  5245. "__id__": 260
  5246. },
  5247. {
  5248. "__id__": 262
  5249. },
  5250. {
  5251. "__id__": 264
  5252. }
  5253. ],
  5254. "_prefab": {
  5255. "__id__": 266
  5256. },
  5257. "_lpos": {
  5258. "__type__": "cc.Vec3",
  5259. "x": 0,
  5260. "y": -18.5,
  5261. "z": 0
  5262. },
  5263. "_lrot": {
  5264. "__type__": "cc.Quat",
  5265. "x": 0,
  5266. "y": 0,
  5267. "z": 0,
  5268. "w": 1
  5269. },
  5270. "_lscale": {
  5271. "__type__": "cc.Vec3",
  5272. "x": 1,
  5273. "y": 1,
  5274. "z": 1
  5275. },
  5276. "_layer": 1073741824,
  5277. "_euler": {
  5278. "__type__": "cc.Vec3",
  5279. "x": 0,
  5280. "y": 0,
  5281. "z": 0
  5282. },
  5283. "_id": ""
  5284. },
  5285. {
  5286. "__type__": "cc.Node",
  5287. "_name": "growProgress",
  5288. "_objFlags": 0,
  5289. "_parent": {
  5290. "__id__": 253
  5291. },
  5292. "_children": [],
  5293. "_active": true,
  5294. "_components": [
  5295. {
  5296. "__id__": 255
  5297. },
  5298. {
  5299. "__id__": 257
  5300. }
  5301. ],
  5302. "_prefab": {
  5303. "__id__": 259
  5304. },
  5305. "_lpos": {
  5306. "__type__": "cc.Vec3",
  5307. "x": -57,
  5308. "y": 1,
  5309. "z": 0
  5310. },
  5311. "_lrot": {
  5312. "__type__": "cc.Quat",
  5313. "x": 0,
  5314. "y": 0,
  5315. "z": 0,
  5316. "w": 1
  5317. },
  5318. "_lscale": {
  5319. "__type__": "cc.Vec3",
  5320. "x": 1,
  5321. "y": 1,
  5322. "z": 1
  5323. },
  5324. "_layer": 1073741824,
  5325. "_euler": {
  5326. "__type__": "cc.Vec3",
  5327. "x": 0,
  5328. "y": 0,
  5329. "z": 0
  5330. },
  5331. "_id": ""
  5332. },
  5333. {
  5334. "__type__": "cc.UITransform",
  5335. "_name": "",
  5336. "_objFlags": 0,
  5337. "node": {
  5338. "__id__": 254
  5339. },
  5340. "_enabled": true,
  5341. "__prefab": {
  5342. "__id__": 256
  5343. },
  5344. "_priority": 0,
  5345. "_contentSize": {
  5346. "__type__": "cc.Size",
  5347. "width": 114,
  5348. "height": 20
  5349. },
  5350. "_anchorPoint": {
  5351. "__type__": "cc.Vec2",
  5352. "x": 0,
  5353. "y": 0.5
  5354. },
  5355. "_id": ""
  5356. },
  5357. {
  5358. "__type__": "cc.CompPrefabInfo",
  5359. "fileId": "754uapfiNAtbsWmfMCUAHF"
  5360. },
  5361. {
  5362. "__type__": "cc.Sprite",
  5363. "_name": "",
  5364. "_objFlags": 0,
  5365. "node": {
  5366. "__id__": 254
  5367. },
  5368. "_enabled": true,
  5369. "__prefab": {
  5370. "__id__": 258
  5371. },
  5372. "_visFlags": 0,
  5373. "_customMaterial": null,
  5374. "_srcBlendFactor": 2,
  5375. "_dstBlendFactor": 4,
  5376. "_color": {
  5377. "__type__": "cc.Color",
  5378. "r": 255,
  5379. "g": 255,
  5380. "b": 255,
  5381. "a": 255
  5382. },
  5383. "_spriteFrame": {
  5384. "__uuid__": "d5f9b304-0f5f-46a0-b39b-5ac68e4f9d9b@f9941"
  5385. },
  5386. "_type": 2,
  5387. "_fillType": 0,
  5388. "_sizeMode": 0,
  5389. "_fillCenter": {
  5390. "__type__": "cc.Vec2",
  5391. "x": 0,
  5392. "y": 0
  5393. },
  5394. "_fillStart": 0,
  5395. "_fillRange": 0,
  5396. "_isTrimmedMode": true,
  5397. "_useGrayscale": false,
  5398. "_atlas": null,
  5399. "_id": ""
  5400. },
  5401. {
  5402. "__type__": "cc.CompPrefabInfo",
  5403. "fileId": "51MT9NXnlLgoeccA38WMF5"
  5404. },
  5405. {
  5406. "__type__": "cc.PrefabInfo",
  5407. "root": {
  5408. "__id__": 1
  5409. },
  5410. "asset": {
  5411. "__id__": 0
  5412. },
  5413. "fileId": "7eWd+4TWxEK7+9IUSh6UBT"
  5414. },
  5415. {
  5416. "__type__": "cc.UITransform",
  5417. "_name": "",
  5418. "_objFlags": 0,
  5419. "node": {
  5420. "__id__": 253
  5421. },
  5422. "_enabled": true,
  5423. "__prefab": {
  5424. "__id__": 261
  5425. },
  5426. "_priority": 0,
  5427. "_contentSize": {
  5428. "__type__": "cc.Size",
  5429. "width": 116,
  5430. "height": 23
  5431. },
  5432. "_anchorPoint": {
  5433. "__type__": "cc.Vec2",
  5434. "x": 0.5,
  5435. "y": 0.5
  5436. },
  5437. "_id": ""
  5438. },
  5439. {
  5440. "__type__": "cc.CompPrefabInfo",
  5441. "fileId": "a0geDWEV5AzqaWN/kQUMu2"
  5442. },
  5443. {
  5444. "__type__": "cc.Sprite",
  5445. "_name": "",
  5446. "_objFlags": 0,
  5447. "node": {
  5448. "__id__": 253
  5449. },
  5450. "_enabled": true,
  5451. "__prefab": {
  5452. "__id__": 263
  5453. },
  5454. "_visFlags": 0,
  5455. "_customMaterial": null,
  5456. "_srcBlendFactor": 2,
  5457. "_dstBlendFactor": 4,
  5458. "_color": {
  5459. "__type__": "cc.Color",
  5460. "r": 255,
  5461. "g": 255,
  5462. "b": 255,
  5463. "a": 255
  5464. },
  5465. "_spriteFrame": {
  5466. "__uuid__": "9a52ae94-06de-45a2-a930-7641a3d406bb@f9941"
  5467. },
  5468. "_type": 0,
  5469. "_fillType": 0,
  5470. "_sizeMode": 1,
  5471. "_fillCenter": {
  5472. "__type__": "cc.Vec2",
  5473. "x": 0,
  5474. "y": 0
  5475. },
  5476. "_fillStart": 0,
  5477. "_fillRange": 0,
  5478. "_isTrimmedMode": true,
  5479. "_useGrayscale": false,
  5480. "_atlas": null,
  5481. "_id": ""
  5482. },
  5483. {
  5484. "__type__": "cc.CompPrefabInfo",
  5485. "fileId": "82v4WiWVBE9ajGRn+I+BCr"
  5486. },
  5487. {
  5488. "__type__": "cc.ProgressBar",
  5489. "_name": "",
  5490. "_objFlags": 0,
  5491. "node": {
  5492. "__id__": 253
  5493. },
  5494. "_enabled": true,
  5495. "__prefab": {
  5496. "__id__": 265
  5497. },
  5498. "_barSprite": {
  5499. "__id__": 257
  5500. },
  5501. "_mode": 0,
  5502. "_totalLength": 114,
  5503. "_progress": 1,
  5504. "_reverse": false,
  5505. "_id": ""
  5506. },
  5507. {
  5508. "__type__": "cc.CompPrefabInfo",
  5509. "fileId": "1e+IgjOrREEJFPGcBlikzF"
  5510. },
  5511. {
  5512. "__type__": "cc.PrefabInfo",
  5513. "root": {
  5514. "__id__": 1
  5515. },
  5516. "asset": {
  5517. "__id__": 0
  5518. },
  5519. "fileId": "8dhH5DRaVP8LSFfyQMXeSO"
  5520. },
  5521. {
  5522. "__type__": "cc.UITransform",
  5523. "_name": "",
  5524. "_objFlags": 0,
  5525. "node": {
  5526. "__id__": 203
  5527. },
  5528. "_enabled": true,
  5529. "__prefab": {
  5530. "__id__": 268
  5531. },
  5532. "_priority": 0,
  5533. "_contentSize": {
  5534. "__type__": "cc.Size",
  5535. "width": 116.172,
  5536. "height": 60
  5537. },
  5538. "_anchorPoint": {
  5539. "__type__": "cc.Vec2",
  5540. "x": 0.5,
  5541. "y": 0.5
  5542. },
  5543. "_id": ""
  5544. },
  5545. {
  5546. "__type__": "cc.CompPrefabInfo",
  5547. "fileId": "b7SauYU2BOk40NJyLFkE3Q"
  5548. },
  5549. {
  5550. "__type__": "cc.Layout",
  5551. "_name": "",
  5552. "_objFlags": 0,
  5553. "node": {
  5554. "__id__": 203
  5555. },
  5556. "_enabled": true,
  5557. "__prefab": {
  5558. "__id__": 270
  5559. },
  5560. "_resizeMode": 1,
  5561. "_layoutType": 2,
  5562. "_cellSize": {
  5563. "__type__": "cc.Size",
  5564. "width": 40,
  5565. "height": 40
  5566. },
  5567. "_startAxis": 0,
  5568. "_paddingLeft": 0,
  5569. "_paddingRight": 0,
  5570. "_paddingTop": 0,
  5571. "_paddingBottom": 0,
  5572. "_spacingX": 0,
  5573. "_spacingY": -10,
  5574. "_verticalDirection": 1,
  5575. "_horizontalDirection": 0,
  5576. "_constraint": 0,
  5577. "_constraintNum": 2,
  5578. "_affectedByScale": false,
  5579. "_isAlign": true,
  5580. "_id": ""
  5581. },
  5582. {
  5583. "__type__": "cc.CompPrefabInfo",
  5584. "fileId": "7ctVTfrCtODITgGAdWYN5H"
  5585. },
  5586. {
  5587. "__type__": "cc.PrefabInfo",
  5588. "root": {
  5589. "__id__": 1
  5590. },
  5591. "asset": {
  5592. "__id__": 0
  5593. },
  5594. "fileId": "1aOK/9a0VEbJFNqsUWeI+0"
  5595. },
  5596. {
  5597. "__type__": "cc.Node",
  5598. "_name": "可收获",
  5599. "_objFlags": 0,
  5600. "_parent": {
  5601. "__id__": 202
  5602. },
  5603. "_children": [],
  5604. "_active": false,
  5605. "_components": [
  5606. {
  5607. "__id__": 273
  5608. },
  5609. {
  5610. "__id__": 275
  5611. }
  5612. ],
  5613. "_prefab": {
  5614. "__id__": 277
  5615. },
  5616. "_lpos": {
  5617. "__type__": "cc.Vec3",
  5618. "x": 50,
  5619. "y": -28,
  5620. "z": 0
  5621. },
  5622. "_lrot": {
  5623. "__type__": "cc.Quat",
  5624. "x": 0,
  5625. "y": 0,
  5626. "z": 0,
  5627. "w": 1
  5628. },
  5629. "_lscale": {
  5630. "__type__": "cc.Vec3",
  5631. "x": 0.5,
  5632. "y": 0.5,
  5633. "z": 1
  5634. },
  5635. "_layer": 1073741824,
  5636. "_euler": {
  5637. "__type__": "cc.Vec3",
  5638. "x": 0,
  5639. "y": 0,
  5640. "z": 0
  5641. },
  5642. "_id": ""
  5643. },
  5644. {
  5645. "__type__": "cc.UITransform",
  5646. "_name": "",
  5647. "_objFlags": 0,
  5648. "node": {
  5649. "__id__": 272
  5650. },
  5651. "_enabled": true,
  5652. "__prefab": {
  5653. "__id__": 274
  5654. },
  5655. "_priority": 0,
  5656. "_contentSize": {
  5657. "__type__": "cc.Size",
  5658. "width": 116,
  5659. "height": 49
  5660. },
  5661. "_anchorPoint": {
  5662. "__type__": "cc.Vec2",
  5663. "x": 0.5,
  5664. "y": 0.5
  5665. },
  5666. "_id": ""
  5667. },
  5668. {
  5669. "__type__": "cc.CompPrefabInfo",
  5670. "fileId": "25RHCkblJKDL0cmww8MwlE"
  5671. },
  5672. {
  5673. "__type__": "cc.Sprite",
  5674. "_name": "",
  5675. "_objFlags": 0,
  5676. "node": {
  5677. "__id__": 272
  5678. },
  5679. "_enabled": true,
  5680. "__prefab": {
  5681. "__id__": 276
  5682. },
  5683. "_visFlags": 0,
  5684. "_customMaterial": null,
  5685. "_srcBlendFactor": 2,
  5686. "_dstBlendFactor": 4,
  5687. "_color": {
  5688. "__type__": "cc.Color",
  5689. "r": 255,
  5690. "g": 255,
  5691. "b": 255,
  5692. "a": 255
  5693. },
  5694. "_spriteFrame": {
  5695. "__uuid__": "be4766ac-550e-4955-bede-641bddf8f73b@f9941"
  5696. },
  5697. "_type": 0,
  5698. "_fillType": 0,
  5699. "_sizeMode": 1,
  5700. "_fillCenter": {
  5701. "__type__": "cc.Vec2",
  5702. "x": 0,
  5703. "y": 0
  5704. },
  5705. "_fillStart": 0,
  5706. "_fillRange": 0,
  5707. "_isTrimmedMode": true,
  5708. "_useGrayscale": false,
  5709. "_atlas": null,
  5710. "_id": ""
  5711. },
  5712. {
  5713. "__type__": "cc.CompPrefabInfo",
  5714. "fileId": "d72d2ep2BKA6y8cGfyj4xF"
  5715. },
  5716. {
  5717. "__type__": "cc.PrefabInfo",
  5718. "root": {
  5719. "__id__": 1
  5720. },
  5721. "asset": {
  5722. "__id__": 0
  5723. },
  5724. "fileId": "78RR9eUCVH6pkPVA2LFg5Q"
  5725. },
  5726. {
  5727. "__type__": "cc.Node",
  5728. "_name": "点击倒计时",
  5729. "_objFlags": 0,
  5730. "_parent": {
  5731. "__id__": 202
  5732. },
  5733. "_children": [
  5734. {
  5735. "__id__": 279
  5736. }
  5737. ],
  5738. "_active": false,
  5739. "_components": [
  5740. {
  5741. "__id__": 369
  5742. }
  5743. ],
  5744. "_prefab": {
  5745. "__id__": 371
  5746. },
  5747. "_lpos": {
  5748. "__type__": "cc.Vec3",
  5749. "x": 0,
  5750. "y": 80,
  5751. "z": 0
  5752. },
  5753. "_lrot": {
  5754. "__type__": "cc.Quat",
  5755. "x": 0,
  5756. "y": 0,
  5757. "z": 0,
  5758. "w": 1
  5759. },
  5760. "_lscale": {
  5761. "__type__": "cc.Vec3",
  5762. "x": 0.6,
  5763. "y": 0.6,
  5764. "z": 1
  5765. },
  5766. "_layer": 1073741824,
  5767. "_euler": {
  5768. "__type__": "cc.Vec3",
  5769. "x": 0,
  5770. "y": 0,
  5771. "z": 0
  5772. },
  5773. "_id": ""
  5774. },
  5775. {
  5776. "__type__": "cc.Node",
  5777. "_name": "背景",
  5778. "_objFlags": 0,
  5779. "_parent": {
  5780. "__id__": 278
  5781. },
  5782. "_children": [
  5783. {
  5784. "__id__": 280
  5785. },
  5786. {
  5787. "__id__": 288
  5788. },
  5789. {
  5790. "__id__": 337
  5791. },
  5792. {
  5793. "__id__": 358
  5794. }
  5795. ],
  5796. "_active": true,
  5797. "_components": [
  5798. {
  5799. "__id__": 364
  5800. },
  5801. {
  5802. "__id__": 366
  5803. }
  5804. ],
  5805. "_prefab": {
  5806. "__id__": 368
  5807. },
  5808. "_lpos": {
  5809. "__type__": "cc.Vec3",
  5810. "x": 0,
  5811. "y": 0,
  5812. "z": 0
  5813. },
  5814. "_lrot": {
  5815. "__type__": "cc.Quat",
  5816. "x": 0,
  5817. "y": 0,
  5818. "z": 0,
  5819. "w": 1
  5820. },
  5821. "_lscale": {
  5822. "__type__": "cc.Vec3",
  5823. "x": 1,
  5824. "y": 1,
  5825. "z": 1
  5826. },
  5827. "_layer": 1073741824,
  5828. "_euler": {
  5829. "__type__": "cc.Vec3",
  5830. "x": 0,
  5831. "y": 0,
  5832. "z": 0
  5833. },
  5834. "_id": ""
  5835. },
  5836. {
  5837. "__type__": "cc.Node",
  5838. "_name": "点击计时条",
  5839. "_objFlags": 0,
  5840. "_parent": {
  5841. "__id__": 279
  5842. },
  5843. "_children": [],
  5844. "_active": true,
  5845. "_components": [
  5846. {
  5847. "__id__": 281
  5848. },
  5849. {
  5850. "__id__": 283
  5851. },
  5852. {
  5853. "__id__": 285
  5854. }
  5855. ],
  5856. "_prefab": {
  5857. "__id__": 287
  5858. },
  5859. "_lpos": {
  5860. "__type__": "cc.Vec3",
  5861. "x": -76.082,
  5862. "y": 16.334,
  5863. "z": 0
  5864. },
  5865. "_lrot": {
  5866. "__type__": "cc.Quat",
  5867. "x": 0,
  5868. "y": 0,
  5869. "z": 0,
  5870. "w": 1
  5871. },
  5872. "_lscale": {
  5873. "__type__": "cc.Vec3",
  5874. "x": 1,
  5875. "y": 1,
  5876. "z": 1
  5877. },
  5878. "_layer": 1073741824,
  5879. "_euler": {
  5880. "__type__": "cc.Vec3",
  5881. "x": 0,
  5882. "y": 0,
  5883. "z": 0
  5884. },
  5885. "_id": ""
  5886. },
  5887. {
  5888. "__type__": "cc.UITransform",
  5889. "_name": "",
  5890. "_objFlags": 0,
  5891. "node": {
  5892. "__id__": 280
  5893. },
  5894. "_enabled": true,
  5895. "__prefab": {
  5896. "__id__": 282
  5897. },
  5898. "_priority": 0,
  5899. "_contentSize": {
  5900. "__type__": "cc.Size",
  5901. "width": 105,
  5902. "height": 79
  5903. },
  5904. "_anchorPoint": {
  5905. "__type__": "cc.Vec2",
  5906. "x": 0.5,
  5907. "y": 0.5
  5908. },
  5909. "_id": ""
  5910. },
  5911. {
  5912. "__type__": "cc.CompPrefabInfo",
  5913. "fileId": "13PmLnkV9GZaaiFwwfbwHs"
  5914. },
  5915. {
  5916. "__type__": "cc.Sprite",
  5917. "_name": "",
  5918. "_objFlags": 0,
  5919. "node": {
  5920. "__id__": 280
  5921. },
  5922. "_enabled": true,
  5923. "__prefab": {
  5924. "__id__": 284
  5925. },
  5926. "_visFlags": 0,
  5927. "_customMaterial": null,
  5928. "_srcBlendFactor": 2,
  5929. "_dstBlendFactor": 4,
  5930. "_color": {
  5931. "__type__": "cc.Color",
  5932. "r": 255,
  5933. "g": 255,
  5934. "b": 255,
  5935. "a": 255
  5936. },
  5937. "_spriteFrame": {
  5938. "__uuid__": "f753bb18-1ac6-4000-9600-702b1ea9c7bc@f9941"
  5939. },
  5940. "_type": 3,
  5941. "_fillType": 2,
  5942. "_sizeMode": 1,
  5943. "_fillCenter": {
  5944. "__type__": "cc.Vec2",
  5945. "x": 0.5,
  5946. "y": 0.5
  5947. },
  5948. "_fillStart": 0.7,
  5949. "_fillRange": -1,
  5950. "_isTrimmedMode": true,
  5951. "_useGrayscale": false,
  5952. "_atlas": null,
  5953. "_id": ""
  5954. },
  5955. {
  5956. "__type__": "cc.CompPrefabInfo",
  5957. "fileId": "3dbvVxfVpHIIq4AIzmc3GG"
  5958. },
  5959. {
  5960. "__type__": "cc.ProgressBar",
  5961. "_name": "",
  5962. "_objFlags": 0,
  5963. "node": {
  5964. "__id__": 280
  5965. },
  5966. "_enabled": true,
  5967. "__prefab": {
  5968. "__id__": 286
  5969. },
  5970. "_barSprite": {
  5971. "__id__": 283
  5972. },
  5973. "_mode": 2,
  5974. "_totalLength": 1,
  5975. "_progress": 1,
  5976. "_reverse": true,
  5977. "_id": ""
  5978. },
  5979. {
  5980. "__type__": "cc.CompPrefabInfo",
  5981. "fileId": "0fdGUoxeNAHr3H8QcbN6Sh"
  5982. },
  5983. {
  5984. "__type__": "cc.PrefabInfo",
  5985. "root": {
  5986. "__id__": 1
  5987. },
  5988. "asset": {
  5989. "__id__": 0
  5990. },
  5991. "fileId": "d1GRaxdedF2paXiGy+0opn"
  5992. },
  5993. {
  5994. "__type__": "cc.Node",
  5995. "_name": "点击倒计时数字",
  5996. "_objFlags": 0,
  5997. "_parent": {
  5998. "__id__": 279
  5999. },
  6000. "_children": [
  6001. {
  6002. "__id__": 289
  6003. },
  6004. {
  6005. "__id__": 295
  6006. },
  6007. {
  6008. "__id__": 301
  6009. },
  6010. {
  6011. "__id__": 307
  6012. },
  6013. {
  6014. "__id__": 313
  6015. }
  6016. ],
  6017. "_active": true,
  6018. "_components": [
  6019. {
  6020. "__id__": 319
  6021. },
  6022. {
  6023. "__id__": 321
  6024. },
  6025. {
  6026. "__id__": 334
  6027. }
  6028. ],
  6029. "_prefab": {
  6030. "__id__": 336
  6031. },
  6032. "_lpos": {
  6033. "__type__": "cc.Vec3",
  6034. "x": -75,
  6035. "y": -40,
  6036. "z": 0
  6037. },
  6038. "_lrot": {
  6039. "__type__": "cc.Quat",
  6040. "x": 0,
  6041. "y": 0,
  6042. "z": 0,
  6043. "w": 1
  6044. },
  6045. "_lscale": {
  6046. "__type__": "cc.Vec3",
  6047. "x": 0.5,
  6048. "y": 0.5,
  6049. "z": 1
  6050. },
  6051. "_layer": 1073741824,
  6052. "_euler": {
  6053. "__type__": "cc.Vec3",
  6054. "x": 0,
  6055. "y": 0,
  6056. "z": 0
  6057. },
  6058. "_id": ""
  6059. },
  6060. {
  6061. "__type__": "cc.Node",
  6062. "_name": "1",
  6063. "_objFlags": 0,
  6064. "_parent": {
  6065. "__id__": 288
  6066. },
  6067. "_children": [],
  6068. "_active": true,
  6069. "_components": [
  6070. {
  6071. "__id__": 290
  6072. },
  6073. {
  6074. "__id__": 292
  6075. }
  6076. ],
  6077. "_prefab": {
  6078. "__id__": 294
  6079. },
  6080. "_lpos": {
  6081. "__type__": "cc.Vec3",
  6082. "x": -58.5,
  6083. "y": 0,
  6084. "z": 0
  6085. },
  6086. "_lrot": {
  6087. "__type__": "cc.Quat",
  6088. "x": 0,
  6089. "y": 0,
  6090. "z": 0,
  6091. "w": 1
  6092. },
  6093. "_lscale": {
  6094. "__type__": "cc.Vec3",
  6095. "x": 1,
  6096. "y": 1,
  6097. "z": 1
  6098. },
  6099. "_layer": 1073741824,
  6100. "_euler": {
  6101. "__type__": "cc.Vec3",
  6102. "x": 0,
  6103. "y": 0,
  6104. "z": 0
  6105. },
  6106. "_id": ""
  6107. },
  6108. {
  6109. "__type__": "cc.UITransform",
  6110. "_name": "",
  6111. "_objFlags": 0,
  6112. "node": {
  6113. "__id__": 289
  6114. },
  6115. "_enabled": true,
  6116. "__prefab": {
  6117. "__id__": 291
  6118. },
  6119. "_priority": 0,
  6120. "_contentSize": {
  6121. "__type__": "cc.Size",
  6122. "width": 23,
  6123. "height": 41
  6124. },
  6125. "_anchorPoint": {
  6126. "__type__": "cc.Vec2",
  6127. "x": 0.5,
  6128. "y": 0.5
  6129. },
  6130. "_id": ""
  6131. },
  6132. {
  6133. "__type__": "cc.CompPrefabInfo",
  6134. "fileId": "fbmfW31Q5PxZPxQ7yrPAP1"
  6135. },
  6136. {
  6137. "__type__": "cc.Sprite",
  6138. "_name": "",
  6139. "_objFlags": 0,
  6140. "node": {
  6141. "__id__": 289
  6142. },
  6143. "_enabled": true,
  6144. "__prefab": {
  6145. "__id__": 293
  6146. },
  6147. "_visFlags": 0,
  6148. "_customMaterial": null,
  6149. "_srcBlendFactor": 2,
  6150. "_dstBlendFactor": 4,
  6151. "_color": {
  6152. "__type__": "cc.Color",
  6153. "r": 255,
  6154. "g": 255,
  6155. "b": 255,
  6156. "a": 255
  6157. },
  6158. "_spriteFrame": {
  6159. "__uuid__": "c9c50308-83cb-4256-a213-1dd37d912b6c@f9941"
  6160. },
  6161. "_type": 0,
  6162. "_fillType": 0,
  6163. "_sizeMode": 1,
  6164. "_fillCenter": {
  6165. "__type__": "cc.Vec2",
  6166. "x": 0,
  6167. "y": 0
  6168. },
  6169. "_fillStart": 0,
  6170. "_fillRange": 0,
  6171. "_isTrimmedMode": true,
  6172. "_useGrayscale": false,
  6173. "_atlas": null,
  6174. "_id": ""
  6175. },
  6176. {
  6177. "__type__": "cc.CompPrefabInfo",
  6178. "fileId": "94bwPKHvJHuq3cvHQ4IYBg"
  6179. },
  6180. {
  6181. "__type__": "cc.PrefabInfo",
  6182. "root": {
  6183. "__id__": 1
  6184. },
  6185. "asset": {
  6186. "__id__": 0
  6187. },
  6188. "fileId": "3feTzU6AFBxJ9cyqmTurNy"
  6189. },
  6190. {
  6191. "__type__": "cc.Node",
  6192. "_name": "2",
  6193. "_objFlags": 0,
  6194. "_parent": {
  6195. "__id__": 288
  6196. },
  6197. "_children": [],
  6198. "_active": true,
  6199. "_components": [
  6200. {
  6201. "__id__": 296
  6202. },
  6203. {
  6204. "__id__": 298
  6205. }
  6206. ],
  6207. "_prefab": {
  6208. "__id__": 300
  6209. },
  6210. "_lpos": {
  6211. "__type__": "cc.Vec3",
  6212. "x": -29.5,
  6213. "y": 0,
  6214. "z": 0
  6215. },
  6216. "_lrot": {
  6217. "__type__": "cc.Quat",
  6218. "x": 0,
  6219. "y": 0,
  6220. "z": 0,
  6221. "w": 1
  6222. },
  6223. "_lscale": {
  6224. "__type__": "cc.Vec3",
  6225. "x": 1,
  6226. "y": 1,
  6227. "z": 1
  6228. },
  6229. "_layer": 1073741824,
  6230. "_euler": {
  6231. "__type__": "cc.Vec3",
  6232. "x": 0,
  6233. "y": 0,
  6234. "z": 0
  6235. },
  6236. "_id": ""
  6237. },
  6238. {
  6239. "__type__": "cc.UITransform",
  6240. "_name": "",
  6241. "_objFlags": 0,
  6242. "node": {
  6243. "__id__": 295
  6244. },
  6245. "_enabled": true,
  6246. "__prefab": {
  6247. "__id__": 297
  6248. },
  6249. "_priority": 0,
  6250. "_contentSize": {
  6251. "__type__": "cc.Size",
  6252. "width": 35,
  6253. "height": 41
  6254. },
  6255. "_anchorPoint": {
  6256. "__type__": "cc.Vec2",
  6257. "x": 0.5,
  6258. "y": 0.5
  6259. },
  6260. "_id": ""
  6261. },
  6262. {
  6263. "__type__": "cc.CompPrefabInfo",
  6264. "fileId": "156hhJtQFH1pi9KJcvFMye"
  6265. },
  6266. {
  6267. "__type__": "cc.Sprite",
  6268. "_name": "",
  6269. "_objFlags": 0,
  6270. "node": {
  6271. "__id__": 295
  6272. },
  6273. "_enabled": true,
  6274. "__prefab": {
  6275. "__id__": 299
  6276. },
  6277. "_visFlags": 0,
  6278. "_customMaterial": null,
  6279. "_srcBlendFactor": 2,
  6280. "_dstBlendFactor": 4,
  6281. "_color": {
  6282. "__type__": "cc.Color",
  6283. "r": 255,
  6284. "g": 255,
  6285. "b": 255,
  6286. "a": 255
  6287. },
  6288. "_spriteFrame": {
  6289. "__uuid__": "9024a3b2-1c01-49a6-b2c1-64caae94d451@f9941"
  6290. },
  6291. "_type": 0,
  6292. "_fillType": 0,
  6293. "_sizeMode": 1,
  6294. "_fillCenter": {
  6295. "__type__": "cc.Vec2",
  6296. "x": 0,
  6297. "y": 0
  6298. },
  6299. "_fillStart": 0,
  6300. "_fillRange": 0,
  6301. "_isTrimmedMode": true,
  6302. "_useGrayscale": false,
  6303. "_atlas": null,
  6304. "_id": ""
  6305. },
  6306. {
  6307. "__type__": "cc.CompPrefabInfo",
  6308. "fileId": "eeKjzN6nxJqrDZ7aUwYiU5"
  6309. },
  6310. {
  6311. "__type__": "cc.PrefabInfo",
  6312. "root": {
  6313. "__id__": 1
  6314. },
  6315. "asset": {
  6316. "__id__": 0
  6317. },
  6318. "fileId": "29axIsFW1Jrp0x7GNSV/Od"
  6319. },
  6320. {
  6321. "__type__": "cc.Node",
  6322. "_name": ":",
  6323. "_objFlags": 0,
  6324. "_parent": {
  6325. "__id__": 288
  6326. },
  6327. "_children": [],
  6328. "_active": true,
  6329. "_components": [
  6330. {
  6331. "__id__": 302
  6332. },
  6333. {
  6334. "__id__": 304
  6335. }
  6336. ],
  6337. "_prefab": {
  6338. "__id__": 306
  6339. },
  6340. "_lpos": {
  6341. "__type__": "cc.Vec3",
  6342. "x": -5.5,
  6343. "y": 0,
  6344. "z": 0
  6345. },
  6346. "_lrot": {
  6347. "__type__": "cc.Quat",
  6348. "x": 0,
  6349. "y": 0,
  6350. "z": 0,
  6351. "w": 1
  6352. },
  6353. "_lscale": {
  6354. "__type__": "cc.Vec3",
  6355. "x": 1,
  6356. "y": 1,
  6357. "z": 1
  6358. },
  6359. "_layer": 1073741824,
  6360. "_euler": {
  6361. "__type__": "cc.Vec3",
  6362. "x": 0,
  6363. "y": 0,
  6364. "z": 0
  6365. },
  6366. "_id": ""
  6367. },
  6368. {
  6369. "__type__": "cc.UITransform",
  6370. "_name": "",
  6371. "_objFlags": 0,
  6372. "node": {
  6373. "__id__": 301
  6374. },
  6375. "_enabled": true,
  6376. "__prefab": {
  6377. "__id__": 303
  6378. },
  6379. "_priority": 0,
  6380. "_contentSize": {
  6381. "__type__": "cc.Size",
  6382. "width": 13,
  6383. "height": 27
  6384. },
  6385. "_anchorPoint": {
  6386. "__type__": "cc.Vec2",
  6387. "x": 0.5,
  6388. "y": 0.5
  6389. },
  6390. "_id": ""
  6391. },
  6392. {
  6393. "__type__": "cc.CompPrefabInfo",
  6394. "fileId": "dblUxAt2hEp7jh1nl9VKUY"
  6395. },
  6396. {
  6397. "__type__": "cc.Sprite",
  6398. "_name": "",
  6399. "_objFlags": 0,
  6400. "node": {
  6401. "__id__": 301
  6402. },
  6403. "_enabled": true,
  6404. "__prefab": {
  6405. "__id__": 305
  6406. },
  6407. "_visFlags": 0,
  6408. "_customMaterial": null,
  6409. "_srcBlendFactor": 2,
  6410. "_dstBlendFactor": 4,
  6411. "_color": {
  6412. "__type__": "cc.Color",
  6413. "r": 255,
  6414. "g": 255,
  6415. "b": 255,
  6416. "a": 255
  6417. },
  6418. "_spriteFrame": {
  6419. "__uuid__": "f6298706-2984-4253-928a-4eb3ffb70674@f9941"
  6420. },
  6421. "_type": 0,
  6422. "_fillType": 0,
  6423. "_sizeMode": 1,
  6424. "_fillCenter": {
  6425. "__type__": "cc.Vec2",
  6426. "x": 0,
  6427. "y": 0
  6428. },
  6429. "_fillStart": 0,
  6430. "_fillRange": 0,
  6431. "_isTrimmedMode": true,
  6432. "_useGrayscale": false,
  6433. "_atlas": null,
  6434. "_id": ""
  6435. },
  6436. {
  6437. "__type__": "cc.CompPrefabInfo",
  6438. "fileId": "bcJaQDXGtBzaGqPjlBbXcb"
  6439. },
  6440. {
  6441. "__type__": "cc.PrefabInfo",
  6442. "root": {
  6443. "__id__": 1
  6444. },
  6445. "asset": {
  6446. "__id__": 0
  6447. },
  6448. "fileId": "efBxKBHRtHfqlMDRPBnOcG"
  6449. },
  6450. {
  6451. "__type__": "cc.Node",
  6452. "_name": "0",
  6453. "_objFlags": 0,
  6454. "_parent": {
  6455. "__id__": 288
  6456. },
  6457. "_children": [],
  6458. "_active": true,
  6459. "_components": [
  6460. {
  6461. "__id__": 308
  6462. },
  6463. {
  6464. "__id__": 310
  6465. }
  6466. ],
  6467. "_prefab": {
  6468. "__id__": 312
  6469. },
  6470. "_lpos": {
  6471. "__type__": "cc.Vec3",
  6472. "x": 17.5,
  6473. "y": 0,
  6474. "z": 0
  6475. },
  6476. "_lrot": {
  6477. "__type__": "cc.Quat",
  6478. "x": 0,
  6479. "y": 0,
  6480. "z": 0,
  6481. "w": 1
  6482. },
  6483. "_lscale": {
  6484. "__type__": "cc.Vec3",
  6485. "x": 1,
  6486. "y": 1,
  6487. "z": 1
  6488. },
  6489. "_layer": 1073741824,
  6490. "_euler": {
  6491. "__type__": "cc.Vec3",
  6492. "x": 0,
  6493. "y": 0,
  6494. "z": 0
  6495. },
  6496. "_id": ""
  6497. },
  6498. {
  6499. "__type__": "cc.UITransform",
  6500. "_name": "",
  6501. "_objFlags": 0,
  6502. "node": {
  6503. "__id__": 307
  6504. },
  6505. "_enabled": true,
  6506. "__prefab": {
  6507. "__id__": 309
  6508. },
  6509. "_priority": 0,
  6510. "_contentSize": {
  6511. "__type__": "cc.Size",
  6512. "width": 33,
  6513. "height": 42
  6514. },
  6515. "_anchorPoint": {
  6516. "__type__": "cc.Vec2",
  6517. "x": 0.5,
  6518. "y": 0.5
  6519. },
  6520. "_id": ""
  6521. },
  6522. {
  6523. "__type__": "cc.CompPrefabInfo",
  6524. "fileId": "9dTs0dzS5DsIMTgfxvIUiF"
  6525. },
  6526. {
  6527. "__type__": "cc.Sprite",
  6528. "_name": "",
  6529. "_objFlags": 0,
  6530. "node": {
  6531. "__id__": 307
  6532. },
  6533. "_enabled": true,
  6534. "__prefab": {
  6535. "__id__": 311
  6536. },
  6537. "_visFlags": 0,
  6538. "_customMaterial": null,
  6539. "_srcBlendFactor": 2,
  6540. "_dstBlendFactor": 4,
  6541. "_color": {
  6542. "__type__": "cc.Color",
  6543. "r": 255,
  6544. "g": 255,
  6545. "b": 255,
  6546. "a": 255
  6547. },
  6548. "_spriteFrame": {
  6549. "__uuid__": "81809fb5-8f59-465d-b318-b5873a460d8c@f9941"
  6550. },
  6551. "_type": 0,
  6552. "_fillType": 0,
  6553. "_sizeMode": 1,
  6554. "_fillCenter": {
  6555. "__type__": "cc.Vec2",
  6556. "x": 0,
  6557. "y": 0
  6558. },
  6559. "_fillStart": 0,
  6560. "_fillRange": 0,
  6561. "_isTrimmedMode": true,
  6562. "_useGrayscale": false,
  6563. "_atlas": null,
  6564. "_id": ""
  6565. },
  6566. {
  6567. "__type__": "cc.CompPrefabInfo",
  6568. "fileId": "94gIsL6xZPtLlXnFG2W4zU"
  6569. },
  6570. {
  6571. "__type__": "cc.PrefabInfo",
  6572. "root": {
  6573. "__id__": 1
  6574. },
  6575. "asset": {
  6576. "__id__": 0
  6577. },
  6578. "fileId": "e93/xCVAFKfJNWtU/F0Dl1"
  6579. },
  6580. {
  6581. "__type__": "cc.Node",
  6582. "_name": "6",
  6583. "_objFlags": 0,
  6584. "_parent": {
  6585. "__id__": 288
  6586. },
  6587. "_children": [],
  6588. "_active": true,
  6589. "_components": [
  6590. {
  6591. "__id__": 314
  6592. },
  6593. {
  6594. "__id__": 316
  6595. }
  6596. ],
  6597. "_prefab": {
  6598. "__id__": 318
  6599. },
  6600. "_lpos": {
  6601. "__type__": "cc.Vec3",
  6602. "x": 51,
  6603. "y": 0,
  6604. "z": 0
  6605. },
  6606. "_lrot": {
  6607. "__type__": "cc.Quat",
  6608. "x": 0,
  6609. "y": 0,
  6610. "z": 0,
  6611. "w": 1
  6612. },
  6613. "_lscale": {
  6614. "__type__": "cc.Vec3",
  6615. "x": 1,
  6616. "y": 1,
  6617. "z": 1
  6618. },
  6619. "_layer": 1073741824,
  6620. "_euler": {
  6621. "__type__": "cc.Vec3",
  6622. "x": 0,
  6623. "y": 0,
  6624. "z": 0
  6625. },
  6626. "_id": ""
  6627. },
  6628. {
  6629. "__type__": "cc.UITransform",
  6630. "_name": "",
  6631. "_objFlags": 0,
  6632. "node": {
  6633. "__id__": 313
  6634. },
  6635. "_enabled": true,
  6636. "__prefab": {
  6637. "__id__": 315
  6638. },
  6639. "_priority": 0,
  6640. "_contentSize": {
  6641. "__type__": "cc.Size",
  6642. "width": 34,
  6643. "height": 40
  6644. },
  6645. "_anchorPoint": {
  6646. "__type__": "cc.Vec2",
  6647. "x": 0.5,
  6648. "y": 0.5
  6649. },
  6650. "_id": ""
  6651. },
  6652. {
  6653. "__type__": "cc.CompPrefabInfo",
  6654. "fileId": "c0z6sDUNBHSbDvjKmJyN0d"
  6655. },
  6656. {
  6657. "__type__": "cc.Sprite",
  6658. "_name": "",
  6659. "_objFlags": 0,
  6660. "node": {
  6661. "__id__": 313
  6662. },
  6663. "_enabled": true,
  6664. "__prefab": {
  6665. "__id__": 317
  6666. },
  6667. "_visFlags": 0,
  6668. "_customMaterial": null,
  6669. "_srcBlendFactor": 2,
  6670. "_dstBlendFactor": 4,
  6671. "_color": {
  6672. "__type__": "cc.Color",
  6673. "r": 255,
  6674. "g": 255,
  6675. "b": 255,
  6676. "a": 255
  6677. },
  6678. "_spriteFrame": {
  6679. "__uuid__": "bfc31f13-bcd8-4747-8477-3be50adf3c50@f9941"
  6680. },
  6681. "_type": 0,
  6682. "_fillType": 0,
  6683. "_sizeMode": 1,
  6684. "_fillCenter": {
  6685. "__type__": "cc.Vec2",
  6686. "x": 0,
  6687. "y": 0
  6688. },
  6689. "_fillStart": 0,
  6690. "_fillRange": 0,
  6691. "_isTrimmedMode": true,
  6692. "_useGrayscale": false,
  6693. "_atlas": null,
  6694. "_id": ""
  6695. },
  6696. {
  6697. "__type__": "cc.CompPrefabInfo",
  6698. "fileId": "dasySwA1tLxK+UDGGX+VIv"
  6699. },
  6700. {
  6701. "__type__": "cc.PrefabInfo",
  6702. "root": {
  6703. "__id__": 1
  6704. },
  6705. "asset": {
  6706. "__id__": 0
  6707. },
  6708. "fileId": "bddpeStmpBD6g3rjL8RCXY"
  6709. },
  6710. {
  6711. "__type__": "cc.UITransform",
  6712. "_name": "",
  6713. "_objFlags": 0,
  6714. "node": {
  6715. "__id__": 288
  6716. },
  6717. "_enabled": true,
  6718. "__prefab": {
  6719. "__id__": 320
  6720. },
  6721. "_priority": 0,
  6722. "_contentSize": {
  6723. "__type__": "cc.Size",
  6724. "width": 140,
  6725. "height": 47
  6726. },
  6727. "_anchorPoint": {
  6728. "__type__": "cc.Vec2",
  6729. "x": 0.5,
  6730. "y": 0.5
  6731. },
  6732. "_id": ""
  6733. },
  6734. {
  6735. "__type__": "cc.CompPrefabInfo",
  6736. "fileId": "86Aa/dRGdD5bC35rCQC5cK"
  6737. },
  6738. {
  6739. "__type__": "0399a2QOElBv7Vrq+PQeKPi",
  6740. "_name": "",
  6741. "_objFlags": 0,
  6742. "node": {
  6743. "__id__": 288
  6744. },
  6745. "_enabled": true,
  6746. "__prefab": {
  6747. "__id__": 322
  6748. },
  6749. "dataList": [
  6750. {
  6751. "__id__": 323
  6752. },
  6753. {
  6754. "__id__": 324
  6755. },
  6756. {
  6757. "__id__": 325
  6758. },
  6759. {
  6760. "__id__": 326
  6761. },
  6762. {
  6763. "__id__": 327
  6764. },
  6765. {
  6766. "__id__": 328
  6767. },
  6768. {
  6769. "__id__": 329
  6770. },
  6771. {
  6772. "__id__": 330
  6773. },
  6774. {
  6775. "__id__": 331
  6776. },
  6777. {
  6778. "__id__": 332
  6779. },
  6780. {
  6781. "__id__": 333
  6782. }
  6783. ],
  6784. "_string": "12:06",
  6785. "_id": ""
  6786. },
  6787. {
  6788. "__type__": "cc.CompPrefabInfo",
  6789. "fileId": "33p3Xml0dC+5+kwaXKPLNe"
  6790. },
  6791. {
  6792. "__type__": "BitmapFontData",
  6793. "chair": "0",
  6794. "spriteFrame": {
  6795. "__uuid__": "81809fb5-8f59-465d-b318-b5873a460d8c@f9941"
  6796. }
  6797. },
  6798. {
  6799. "__type__": "BitmapFontData",
  6800. "chair": "1",
  6801. "spriteFrame": {
  6802. "__uuid__": "c9c50308-83cb-4256-a213-1dd37d912b6c@f9941"
  6803. }
  6804. },
  6805. {
  6806. "__type__": "BitmapFontData",
  6807. "chair": "2",
  6808. "spriteFrame": {
  6809. "__uuid__": "9024a3b2-1c01-49a6-b2c1-64caae94d451@f9941"
  6810. }
  6811. },
  6812. {
  6813. "__type__": "BitmapFontData",
  6814. "chair": "3",
  6815. "spriteFrame": {
  6816. "__uuid__": "af199749-534b-4c15-9580-7cb0e8ecedc0@f9941"
  6817. }
  6818. },
  6819. {
  6820. "__type__": "BitmapFontData",
  6821. "chair": "4",
  6822. "spriteFrame": {
  6823. "__uuid__": "87629cdc-7adb-4f1a-bed7-6e5dfaa0001f@f9941"
  6824. }
  6825. },
  6826. {
  6827. "__type__": "BitmapFontData",
  6828. "chair": "5",
  6829. "spriteFrame": {
  6830. "__uuid__": "0214e697-1850-41f0-b28e-3f527952de01@f9941"
  6831. }
  6832. },
  6833. {
  6834. "__type__": "BitmapFontData",
  6835. "chair": "6",
  6836. "spriteFrame": {
  6837. "__uuid__": "bfc31f13-bcd8-4747-8477-3be50adf3c50@f9941"
  6838. }
  6839. },
  6840. {
  6841. "__type__": "BitmapFontData",
  6842. "chair": "7",
  6843. "spriteFrame": {
  6844. "__uuid__": "087853e7-e217-4ad2-8b13-549a8d63b909@f9941"
  6845. }
  6846. },
  6847. {
  6848. "__type__": "BitmapFontData",
  6849. "chair": "8",
  6850. "spriteFrame": {
  6851. "__uuid__": "94b48f15-f97d-4cca-b709-8bcf1dcef879@f9941"
  6852. }
  6853. },
  6854. {
  6855. "__type__": "BitmapFontData",
  6856. "chair": "9",
  6857. "spriteFrame": {
  6858. "__uuid__": "db5d7587-fde9-4cbd-abf1-fc7ee63f4a5d@f9941"
  6859. }
  6860. },
  6861. {
  6862. "__type__": "BitmapFontData",
  6863. "chair": ":",
  6864. "spriteFrame": {
  6865. "__uuid__": "f6298706-2984-4253-928a-4eb3ffb70674@f9941"
  6866. }
  6867. },
  6868. {
  6869. "__type__": "cc.Layout",
  6870. "_name": "",
  6871. "_objFlags": 0,
  6872. "node": {
  6873. "__id__": 288
  6874. },
  6875. "_enabled": true,
  6876. "__prefab": {
  6877. "__id__": 335
  6878. },
  6879. "_resizeMode": 0,
  6880. "_layoutType": 1,
  6881. "_cellSize": {
  6882. "__type__": "cc.Size",
  6883. "width": 40,
  6884. "height": 40
  6885. },
  6886. "_startAxis": 0,
  6887. "_paddingLeft": 0,
  6888. "_paddingRight": 0,
  6889. "_paddingTop": 0,
  6890. "_paddingBottom": 0,
  6891. "_spacingX": 0,
  6892. "_spacingY": 0,
  6893. "_verticalDirection": 1,
  6894. "_horizontalDirection": 0,
  6895. "_constraint": 0,
  6896. "_constraintNum": 2,
  6897. "_affectedByScale": false,
  6898. "_isAlign": true,
  6899. "_id": ""
  6900. },
  6901. {
  6902. "__type__": "cc.CompPrefabInfo",
  6903. "fileId": "31Fg4DCsxLp463EIh6TGC5"
  6904. },
  6905. {
  6906. "__type__": "cc.PrefabInfo",
  6907. "root": {
  6908. "__id__": 1
  6909. },
  6910. "asset": {
  6911. "__id__": 0
  6912. },
  6913. "fileId": "9fTOczv/ZDvp1cOB3594OP"
  6914. },
  6915. {
  6916. "__type__": "cc.Node",
  6917. "_name": "加速按钮",
  6918. "_objFlags": 0,
  6919. "_parent": {
  6920. "__id__": 279
  6921. },
  6922. "_children": [
  6923. {
  6924. "__id__": 338
  6925. },
  6926. {
  6927. "__id__": 344
  6928. }
  6929. ],
  6930. "_active": true,
  6931. "_components": [
  6932. {
  6933. "__id__": 350
  6934. },
  6935. {
  6936. "__id__": 352
  6937. },
  6938. {
  6939. "__id__": 354
  6940. }
  6941. ],
  6942. "_prefab": {
  6943. "__id__": 357
  6944. },
  6945. "_lpos": {
  6946. "__type__": "cc.Vec3",
  6947. "x": 50,
  6948. "y": 0,
  6949. "z": 0
  6950. },
  6951. "_lrot": {
  6952. "__type__": "cc.Quat",
  6953. "x": 0,
  6954. "y": 0,
  6955. "z": 0,
  6956. "w": 1
  6957. },
  6958. "_lscale": {
  6959. "__type__": "cc.Vec3",
  6960. "x": 0.8,
  6961. "y": 0.8,
  6962. "z": 1
  6963. },
  6964. "_layer": 1073741824,
  6965. "_euler": {
  6966. "__type__": "cc.Vec3",
  6967. "x": 0,
  6968. "y": 0,
  6969. "z": 0
  6970. },
  6971. "_id": ""
  6972. },
  6973. {
  6974. "__type__": "cc.Node",
  6975. "_name": "钻石图标",
  6976. "_objFlags": 0,
  6977. "_parent": {
  6978. "__id__": 337
  6979. },
  6980. "_children": [],
  6981. "_active": true,
  6982. "_components": [
  6983. {
  6984. "__id__": 339
  6985. },
  6986. {
  6987. "__id__": 341
  6988. }
  6989. ],
  6990. "_prefab": {
  6991. "__id__": 343
  6992. },
  6993. "_lpos": {
  6994. "__type__": "cc.Vec3",
  6995. "x": -38.149,
  6996. "y": -20.417,
  6997. "z": 0
  6998. },
  6999. "_lrot": {
  7000. "__type__": "cc.Quat",
  7001. "x": 0,
  7002. "y": 0,
  7003. "z": 0,
  7004. "w": 1
  7005. },
  7006. "_lscale": {
  7007. "__type__": "cc.Vec3",
  7008. "x": 1,
  7009. "y": 1,
  7010. "z": 1
  7011. },
  7012. "_layer": 1073741824,
  7013. "_euler": {
  7014. "__type__": "cc.Vec3",
  7015. "x": 0,
  7016. "y": 0,
  7017. "z": 0
  7018. },
  7019. "_id": ""
  7020. },
  7021. {
  7022. "__type__": "cc.UITransform",
  7023. "_name": "",
  7024. "_objFlags": 0,
  7025. "node": {
  7026. "__id__": 338
  7027. },
  7028. "_enabled": true,
  7029. "__prefab": {
  7030. "__id__": 340
  7031. },
  7032. "_priority": 0,
  7033. "_contentSize": {
  7034. "__type__": "cc.Size",
  7035. "width": 40,
  7036. "height": 36
  7037. },
  7038. "_anchorPoint": {
  7039. "__type__": "cc.Vec2",
  7040. "x": 0.5,
  7041. "y": 0.5
  7042. },
  7043. "_id": ""
  7044. },
  7045. {
  7046. "__type__": "cc.CompPrefabInfo",
  7047. "fileId": "d0IQioRVxGx6fOwCt+ALM4"
  7048. },
  7049. {
  7050. "__type__": "cc.Sprite",
  7051. "_name": "",
  7052. "_objFlags": 0,
  7053. "node": {
  7054. "__id__": 338
  7055. },
  7056. "_enabled": true,
  7057. "__prefab": {
  7058. "__id__": 342
  7059. },
  7060. "_visFlags": 0,
  7061. "_customMaterial": null,
  7062. "_srcBlendFactor": 2,
  7063. "_dstBlendFactor": 4,
  7064. "_color": {
  7065. "__type__": "cc.Color",
  7066. "r": 255,
  7067. "g": 255,
  7068. "b": 255,
  7069. "a": 255
  7070. },
  7071. "_spriteFrame": {
  7072. "__uuid__": "6795ca86-db86-4bc8-b7c9-7a3bb60c635a@f9941"
  7073. },
  7074. "_type": 0,
  7075. "_fillType": 0,
  7076. "_sizeMode": 1,
  7077. "_fillCenter": {
  7078. "__type__": "cc.Vec2",
  7079. "x": 0,
  7080. "y": 0
  7081. },
  7082. "_fillStart": 0,
  7083. "_fillRange": 0,
  7084. "_isTrimmedMode": true,
  7085. "_useGrayscale": false,
  7086. "_atlas": null,
  7087. "_id": ""
  7088. },
  7089. {
  7090. "__type__": "cc.CompPrefabInfo",
  7091. "fileId": "1fDNqL+K5E8aWG+JggLDF7"
  7092. },
  7093. {
  7094. "__type__": "cc.PrefabInfo",
  7095. "root": {
  7096. "__id__": 1
  7097. },
  7098. "asset": {
  7099. "__id__": 0
  7100. },
  7101. "fileId": "0czrnzn6tI4KhVxGY9+jqt"
  7102. },
  7103. {
  7104. "__type__": "cc.Node",
  7105. "_name": "加速花费按钮",
  7106. "_objFlags": 0,
  7107. "_parent": {
  7108. "__id__": 337
  7109. },
  7110. "_children": [],
  7111. "_active": true,
  7112. "_components": [
  7113. {
  7114. "__id__": 345
  7115. },
  7116. {
  7117. "__id__": 347
  7118. }
  7119. ],
  7120. "_prefab": {
  7121. "__id__": 349
  7122. },
  7123. "_lpos": {
  7124. "__type__": "cc.Vec3",
  7125. "x": 13,
  7126. "y": -20,
  7127. "z": 0
  7128. },
  7129. "_lrot": {
  7130. "__type__": "cc.Quat",
  7131. "x": 0,
  7132. "y": 0,
  7133. "z": 0,
  7134. "w": 1
  7135. },
  7136. "_lscale": {
  7137. "__type__": "cc.Vec3",
  7138. "x": 1,
  7139. "y": 1,
  7140. "z": 1
  7141. },
  7142. "_layer": 33554432,
  7143. "_euler": {
  7144. "__type__": "cc.Vec3",
  7145. "x": 0,
  7146. "y": 0,
  7147. "z": 0
  7148. },
  7149. "_id": ""
  7150. },
  7151. {
  7152. "__type__": "cc.UITransform",
  7153. "_name": "",
  7154. "_objFlags": 0,
  7155. "node": {
  7156. "__id__": 344
  7157. },
  7158. "_enabled": true,
  7159. "__prefab": {
  7160. "__id__": 346
  7161. },
  7162. "_priority": 0,
  7163. "_contentSize": {
  7164. "__type__": "cc.Size",
  7165. "width": 33.37,
  7166. "height": 25.2
  7167. },
  7168. "_anchorPoint": {
  7169. "__type__": "cc.Vec2",
  7170. "x": 0.5,
  7171. "y": 0.5
  7172. },
  7173. "_id": ""
  7174. },
  7175. {
  7176. "__type__": "cc.CompPrefabInfo",
  7177. "fileId": "c68UOAlNhN171Umca6yVvF"
  7178. },
  7179. {
  7180. "__type__": "cc.Label",
  7181. "_name": "",
  7182. "_objFlags": 0,
  7183. "node": {
  7184. "__id__": 344
  7185. },
  7186. "_enabled": true,
  7187. "__prefab": {
  7188. "__id__": 348
  7189. },
  7190. "_visFlags": 0,
  7191. "_customMaterial": null,
  7192. "_srcBlendFactor": 2,
  7193. "_dstBlendFactor": 4,
  7194. "_color": {
  7195. "__type__": "cc.Color",
  7196. "r": 255,
  7197. "g": 255,
  7198. "b": 255,
  7199. "a": 255
  7200. },
  7201. "_string": "25",
  7202. "_horizontalAlign": 1,
  7203. "_verticalAlign": 1,
  7204. "_actualFontSize": 30,
  7205. "_fontSize": 30,
  7206. "_fontFamily": "Arial",
  7207. "_lineHeight": 20,
  7208. "_overflow": 0,
  7209. "_enableWrapText": true,
  7210. "_font": null,
  7211. "_isSystemFontUsed": true,
  7212. "_isItalic": false,
  7213. "_isBold": false,
  7214. "_isUnderline": false,
  7215. "_underlineHeight": 2,
  7216. "_cacheMode": 0,
  7217. "_id": ""
  7218. },
  7219. {
  7220. "__type__": "cc.CompPrefabInfo",
  7221. "fileId": "2frm37uaJHQr0AEEaYyM82"
  7222. },
  7223. {
  7224. "__type__": "cc.PrefabInfo",
  7225. "root": {
  7226. "__id__": 1
  7227. },
  7228. "asset": {
  7229. "__id__": 0
  7230. },
  7231. "fileId": "b2YDQk4xVKlanvGJABBZAM"
  7232. },
  7233. {
  7234. "__type__": "cc.UITransform",
  7235. "_name": "",
  7236. "_objFlags": 0,
  7237. "node": {
  7238. "__id__": 337
  7239. },
  7240. "_enabled": true,
  7241. "__prefab": {
  7242. "__id__": 351
  7243. },
  7244. "_priority": 0,
  7245. "_contentSize": {
  7246. "__type__": "cc.Size",
  7247. "width": 169,
  7248. "height": 114
  7249. },
  7250. "_anchorPoint": {
  7251. "__type__": "cc.Vec2",
  7252. "x": 0.5,
  7253. "y": 0.5
  7254. },
  7255. "_id": ""
  7256. },
  7257. {
  7258. "__type__": "cc.CompPrefabInfo",
  7259. "fileId": "9fQ/GSyEBIn5On+XN7wmCP"
  7260. },
  7261. {
  7262. "__type__": "cc.Sprite",
  7263. "_name": "",
  7264. "_objFlags": 0,
  7265. "node": {
  7266. "__id__": 337
  7267. },
  7268. "_enabled": true,
  7269. "__prefab": {
  7270. "__id__": 353
  7271. },
  7272. "_visFlags": 0,
  7273. "_customMaterial": null,
  7274. "_srcBlendFactor": 2,
  7275. "_dstBlendFactor": 4,
  7276. "_color": {
  7277. "__type__": "cc.Color",
  7278. "r": 255,
  7279. "g": 255,
  7280. "b": 255,
  7281. "a": 255
  7282. },
  7283. "_spriteFrame": {
  7284. "__uuid__": "14b54743-8183-4abb-a08f-37f959fe14f2@f9941"
  7285. },
  7286. "_type": 0,
  7287. "_fillType": 0,
  7288. "_sizeMode": 1,
  7289. "_fillCenter": {
  7290. "__type__": "cc.Vec2",
  7291. "x": 0,
  7292. "y": 0
  7293. },
  7294. "_fillStart": 0,
  7295. "_fillRange": 0,
  7296. "_isTrimmedMode": true,
  7297. "_useGrayscale": false,
  7298. "_atlas": null,
  7299. "_id": ""
  7300. },
  7301. {
  7302. "__type__": "cc.CompPrefabInfo",
  7303. "fileId": "a4dnhsAtFIZIJ7PZvl86q3"
  7304. },
  7305. {
  7306. "__type__": "cc.Button",
  7307. "_name": "",
  7308. "_objFlags": 0,
  7309. "node": {
  7310. "__id__": 337
  7311. },
  7312. "_enabled": true,
  7313. "__prefab": {
  7314. "__id__": 355
  7315. },
  7316. "clickEvents": [
  7317. {
  7318. "__id__": 356
  7319. }
  7320. ],
  7321. "_interactable": true,
  7322. "_transition": 3,
  7323. "_normalColor": {
  7324. "__type__": "cc.Color",
  7325. "r": 255,
  7326. "g": 255,
  7327. "b": 255,
  7328. "a": 255
  7329. },
  7330. "_hoverColor": {
  7331. "__type__": "cc.Color",
  7332. "r": 211,
  7333. "g": 211,
  7334. "b": 211,
  7335. "a": 255
  7336. },
  7337. "_pressedColor": {
  7338. "__type__": "cc.Color",
  7339. "r": 255,
  7340. "g": 255,
  7341. "b": 255,
  7342. "a": 255
  7343. },
  7344. "_disabledColor": {
  7345. "__type__": "cc.Color",
  7346. "r": 124,
  7347. "g": 124,
  7348. "b": 124,
  7349. "a": 255
  7350. },
  7351. "_normalSprite": {
  7352. "__uuid__": "14b54743-8183-4abb-a08f-37f959fe14f2@f9941"
  7353. },
  7354. "_hoverSprite": null,
  7355. "_pressedSprite": null,
  7356. "_disabledSprite": null,
  7357. "_duration": 0.1,
  7358. "_zoomScale": 1.1,
  7359. "_target": null,
  7360. "_id": ""
  7361. },
  7362. {
  7363. "__type__": "cc.CompPrefabInfo",
  7364. "fileId": "18Sp/3dolLfICMHQycuIBW"
  7365. },
  7366. {
  7367. "__type__": "cc.ClickEvent",
  7368. "target": {
  7369. "__id__": 202
  7370. },
  7371. "component": "",
  7372. "_componentId": "a4d95pSuM5DSKzuwGeDCaPC",
  7373. "handler": "onSpeed",
  7374. "customEventData": ""
  7375. },
  7376. {
  7377. "__type__": "cc.PrefabInfo",
  7378. "root": {
  7379. "__id__": 1
  7380. },
  7381. "asset": {
  7382. "__id__": 0
  7383. },
  7384. "fileId": "62aQaZqqdFfK8cGT4RIY/H"
  7385. },
  7386. {
  7387. "__type__": "cc.Node",
  7388. "_name": "作物图标",
  7389. "_objFlags": 0,
  7390. "_parent": {
  7391. "__id__": 279
  7392. },
  7393. "_children": [],
  7394. "_active": true,
  7395. "_components": [
  7396. {
  7397. "__id__": 359
  7398. },
  7399. {
  7400. "__id__": 361
  7401. }
  7402. ],
  7403. "_prefab": {
  7404. "__id__": 363
  7405. },
  7406. "_lpos": {
  7407. "__type__": "cc.Vec3",
  7408. "x": -75,
  7409. "y": 8,
  7410. "z": 0
  7411. },
  7412. "_lrot": {
  7413. "__type__": "cc.Quat",
  7414. "x": 0,
  7415. "y": 0,
  7416. "z": 0,
  7417. "w": 1
  7418. },
  7419. "_lscale": {
  7420. "__type__": "cc.Vec3",
  7421. "x": 0.3,
  7422. "y": 0.3,
  7423. "z": 1
  7424. },
  7425. "_layer": 1073741824,
  7426. "_euler": {
  7427. "__type__": "cc.Vec3",
  7428. "x": 0,
  7429. "y": 0,
  7430. "z": 0
  7431. },
  7432. "_id": ""
  7433. },
  7434. {
  7435. "__type__": "cc.UITransform",
  7436. "_name": "",
  7437. "_objFlags": 0,
  7438. "node": {
  7439. "__id__": 358
  7440. },
  7441. "_enabled": true,
  7442. "__prefab": {
  7443. "__id__": 360
  7444. },
  7445. "_priority": 0,
  7446. "_contentSize": {
  7447. "__type__": "cc.Size",
  7448. "width": 175,
  7449. "height": 173
  7450. },
  7451. "_anchorPoint": {
  7452. "__type__": "cc.Vec2",
  7453. "x": 0.5,
  7454. "y": 0.5
  7455. },
  7456. "_id": ""
  7457. },
  7458. {
  7459. "__type__": "cc.CompPrefabInfo",
  7460. "fileId": "67hh4g7qZFQ7EAi9tabc1C"
  7461. },
  7462. {
  7463. "__type__": "cc.Sprite",
  7464. "_name": "",
  7465. "_objFlags": 0,
  7466. "node": {
  7467. "__id__": 358
  7468. },
  7469. "_enabled": true,
  7470. "__prefab": {
  7471. "__id__": 362
  7472. },
  7473. "_visFlags": 0,
  7474. "_customMaterial": null,
  7475. "_srcBlendFactor": 2,
  7476. "_dstBlendFactor": 4,
  7477. "_color": {
  7478. "__type__": "cc.Color",
  7479. "r": 255,
  7480. "g": 255,
  7481. "b": 255,
  7482. "a": 255
  7483. },
  7484. "_spriteFrame": {
  7485. "__uuid__": "d28bad6d-ac92-49a6-a9a6-ad6a05f2101c@f9941"
  7486. },
  7487. "_type": 0,
  7488. "_fillType": 0,
  7489. "_sizeMode": 1,
  7490. "_fillCenter": {
  7491. "__type__": "cc.Vec2",
  7492. "x": 0,
  7493. "y": 0
  7494. },
  7495. "_fillStart": 0,
  7496. "_fillRange": 0,
  7497. "_isTrimmedMode": true,
  7498. "_useGrayscale": false,
  7499. "_atlas": null,
  7500. "_id": ""
  7501. },
  7502. {
  7503. "__type__": "cc.CompPrefabInfo",
  7504. "fileId": "76PU5/YYZBh7plmQOrpZwu"
  7505. },
  7506. {
  7507. "__type__": "cc.PrefabInfo",
  7508. "root": {
  7509. "__id__": 1
  7510. },
  7511. "asset": {
  7512. "__id__": 0
  7513. },
  7514. "fileId": "a1NUoeIqpDroLO8nJw2shc"
  7515. },
  7516. {
  7517. "__type__": "cc.UITransform",
  7518. "_name": "",
  7519. "_objFlags": 0,
  7520. "node": {
  7521. "__id__": 279
  7522. },
  7523. "_enabled": true,
  7524. "__prefab": {
  7525. "__id__": 365
  7526. },
  7527. "_priority": 0,
  7528. "_contentSize": {
  7529. "__type__": "cc.Size",
  7530. "width": 273,
  7531. "height": 123
  7532. },
  7533. "_anchorPoint": {
  7534. "__type__": "cc.Vec2",
  7535. "x": 0.5,
  7536. "y": 0.5
  7537. },
  7538. "_id": ""
  7539. },
  7540. {
  7541. "__type__": "cc.CompPrefabInfo",
  7542. "fileId": "aduB8M84tCKa3/VRQKtwh8"
  7543. },
  7544. {
  7545. "__type__": "cc.Sprite",
  7546. "_name": "",
  7547. "_objFlags": 0,
  7548. "node": {
  7549. "__id__": 279
  7550. },
  7551. "_enabled": true,
  7552. "__prefab": {
  7553. "__id__": 367
  7554. },
  7555. "_visFlags": 0,
  7556. "_customMaterial": null,
  7557. "_srcBlendFactor": 2,
  7558. "_dstBlendFactor": 4,
  7559. "_color": {
  7560. "__type__": "cc.Color",
  7561. "r": 255,
  7562. "g": 255,
  7563. "b": 255,
  7564. "a": 255
  7565. },
  7566. "_spriteFrame": {
  7567. "__uuid__": "e4b6c86a-f500-4913-98b5-bc94c3f5b89e@f9941"
  7568. },
  7569. "_type": 0,
  7570. "_fillType": 0,
  7571. "_sizeMode": 1,
  7572. "_fillCenter": {
  7573. "__type__": "cc.Vec2",
  7574. "x": 0,
  7575. "y": 0
  7576. },
  7577. "_fillStart": 0,
  7578. "_fillRange": 0,
  7579. "_isTrimmedMode": true,
  7580. "_useGrayscale": false,
  7581. "_atlas": null,
  7582. "_id": ""
  7583. },
  7584. {
  7585. "__type__": "cc.CompPrefabInfo",
  7586. "fileId": "6ebvM07qxAFIGhsQhG0GZQ"
  7587. },
  7588. {
  7589. "__type__": "cc.PrefabInfo",
  7590. "root": {
  7591. "__id__": 1
  7592. },
  7593. "asset": {
  7594. "__id__": 0
  7595. },
  7596. "fileId": "58EwTA1k9FC6WWYh29RM3e"
  7597. },
  7598. {
  7599. "__type__": "cc.UITransform",
  7600. "_name": "",
  7601. "_objFlags": 0,
  7602. "node": {
  7603. "__id__": 278
  7604. },
  7605. "_enabled": true,
  7606. "__prefab": {
  7607. "__id__": 370
  7608. },
  7609. "_priority": 0,
  7610. "_contentSize": {
  7611. "__type__": "cc.Size",
  7612. "width": 0,
  7613. "height": 0
  7614. },
  7615. "_anchorPoint": {
  7616. "__type__": "cc.Vec2",
  7617. "x": 0.5,
  7618. "y": 0.5
  7619. },
  7620. "_id": ""
  7621. },
  7622. {
  7623. "__type__": "cc.CompPrefabInfo",
  7624. "fileId": "6b9AhB57xA+ou/a2erSD4a"
  7625. },
  7626. {
  7627. "__type__": "cc.PrefabInfo",
  7628. "root": {
  7629. "__id__": 1
  7630. },
  7631. "asset": {
  7632. "__id__": 0
  7633. },
  7634. "fileId": "3eXuSzoOZHCqlFBcgLwMbM"
  7635. },
  7636. {
  7637. "__type__": "cc.UITransform",
  7638. "_name": "",
  7639. "_objFlags": 0,
  7640. "node": {
  7641. "__id__": 202
  7642. },
  7643. "_enabled": true,
  7644. "__prefab": {
  7645. "__id__": 373
  7646. },
  7647. "_priority": 0,
  7648. "_contentSize": {
  7649. "__type__": "cc.Size",
  7650. "width": 0,
  7651. "height": 0
  7652. },
  7653. "_anchorPoint": {
  7654. "__type__": "cc.Vec2",
  7655. "x": 0.5,
  7656. "y": 0.5
  7657. },
  7658. "_id": ""
  7659. },
  7660. {
  7661. "__type__": "cc.CompPrefabInfo",
  7662. "fileId": "07mm3IFjdNrLbexmMV0Usj"
  7663. },
  7664. {
  7665. "__type__": "a4d95pSuM5DSKzuwGeDCaPC",
  7666. "_name": "",
  7667. "_objFlags": 0,
  7668. "node": {
  7669. "__id__": 202
  7670. },
  7671. "_enabled": true,
  7672. "__prefab": {
  7673. "__id__": 375
  7674. },
  7675. "onRiped": {
  7676. "__id__": 376
  7677. },
  7678. "onSpeedButton": {
  7679. "__id__": 377
  7680. },
  7681. "normalGroup": {
  7682. "__id__": 203
  7683. },
  7684. "normalProgress": {
  7685. "__id__": 264
  7686. },
  7687. "normalCount": {
  7688. "__id__": 239
  7689. },
  7690. "ripedIcon": {
  7691. "__id__": 272
  7692. },
  7693. "selectGroup": {
  7694. "__id__": 278
  7695. },
  7696. "selectProgress": {
  7697. "__id__": 285
  7698. },
  7699. "selectCount": {
  7700. "__id__": 321
  7701. },
  7702. "plantIcon": {
  7703. "__id__": 361
  7704. },
  7705. "castLabel": {
  7706. "__id__": 347
  7707. },
  7708. "http": {
  7709. "__id__": 378
  7710. },
  7711. "_id": ""
  7712. },
  7713. {
  7714. "__type__": "cc.CompPrefabInfo",
  7715. "fileId": "41lwJt425KyYizpgxmec2W"
  7716. },
  7717. {
  7718. "__type__": "cc.ClickEvent",
  7719. "target": {
  7720. "__id__": 1
  7721. },
  7722. "component": "",
  7723. "_componentId": "3e361XEYo1HiYJkYOhWyJI/",
  7724. "handler": "onRiped",
  7725. "customEventData": ""
  7726. },
  7727. {
  7728. "__type__": "cc.ClickEvent",
  7729. "target": {
  7730. "__id__": 30
  7731. },
  7732. "component": "",
  7733. "_componentId": "e5ef4A/dzRH84+qFEsrQJak",
  7734. "handler": "onSpeed",
  7735. "customEventData": ""
  7736. },
  7737. {
  7738. "__type__": "dac21xJD+VAUaoh8lKjfmQr",
  7739. "_name": "",
  7740. "_objFlags": 0,
  7741. "node": {
  7742. "__id__": 1
  7743. },
  7744. "_enabled": true,
  7745. "__prefab": {
  7746. "__id__": 379
  7747. },
  7748. "hostAlias": "",
  7749. "withCredentials": false,
  7750. "timeout": 0,
  7751. "responseType": 3,
  7752. "_id": ""
  7753. },
  7754. {
  7755. "__type__": "cc.CompPrefabInfo",
  7756. "fileId": "79G2TomRNNNa9plX9bFLUz"
  7757. },
  7758. {
  7759. "__type__": "cc.PrefabInfo",
  7760. "root": {
  7761. "__id__": 1
  7762. },
  7763. "asset": {
  7764. "__id__": 0
  7765. },
  7766. "fileId": "91WBdKztBJR6g9lKKTLQfu"
  7767. },
  7768. {
  7769. "__type__": "cc.UITransform",
  7770. "_name": "",
  7771. "_objFlags": 0,
  7772. "node": {
  7773. "__id__": 1
  7774. },
  7775. "_enabled": true,
  7776. "__prefab": {
  7777. "__id__": 382
  7778. },
  7779. "_priority": 0,
  7780. "_contentSize": {
  7781. "__type__": "cc.Size",
  7782. "width": 162,
  7783. "height": 98
  7784. },
  7785. "_anchorPoint": {
  7786. "__type__": "cc.Vec2",
  7787. "x": 0.5,
  7788. "y": 0.5
  7789. },
  7790. "_id": ""
  7791. },
  7792. {
  7793. "__type__": "cc.CompPrefabInfo",
  7794. "fileId": "88yxzT5rRD54kTfWGaBcyb"
  7795. },
  7796. {
  7797. "__type__": "cc.Sprite",
  7798. "_name": "",
  7799. "_objFlags": 0,
  7800. "node": {
  7801. "__id__": 1
  7802. },
  7803. "_enabled": true,
  7804. "__prefab": {
  7805. "__id__": 384
  7806. },
  7807. "_visFlags": 0,
  7808. "_customMaterial": null,
  7809. "_srcBlendFactor": 2,
  7810. "_dstBlendFactor": 4,
  7811. "_color": {
  7812. "__type__": "cc.Color",
  7813. "r": 255,
  7814. "g": 255,
  7815. "b": 255,
  7816. "a": 255
  7817. },
  7818. "_spriteFrame": {
  7819. "__uuid__": "96c9b5de-e7c0-4813-8e4a-771e23eb7675@f9941"
  7820. },
  7821. "_type": 0,
  7822. "_fillType": 0,
  7823. "_sizeMode": 0,
  7824. "_fillCenter": {
  7825. "__type__": "cc.Vec2",
  7826. "x": 0,
  7827. "y": 0
  7828. },
  7829. "_fillStart": 0,
  7830. "_fillRange": 0,
  7831. "_isTrimmedMode": true,
  7832. "_useGrayscale": false,
  7833. "_atlas": null,
  7834. "_id": ""
  7835. },
  7836. {
  7837. "__type__": "cc.CompPrefabInfo",
  7838. "fileId": "231QU2KhBCbK962MbUJXPV"
  7839. },
  7840. {
  7841. "__type__": "93d46zFLk1Io5wH2fEt6edW",
  7842. "_name": "",
  7843. "_objFlags": 0,
  7844. "node": {
  7845. "__id__": 1
  7846. },
  7847. "_enabled": true,
  7848. "__prefab": {
  7849. "__id__": 386
  7850. },
  7851. "buildID": 0,
  7852. "sortID": 0,
  7853. "_id": ""
  7854. },
  7855. {
  7856. "__type__": "cc.CompPrefabInfo",
  7857. "fileId": "b39nYMzGRAd4kfn6SB8jxu"
  7858. },
  7859. {
  7860. "__type__": "7425ex3sJZGVKs9Y4/GkjeP",
  7861. "_name": "",
  7862. "_objFlags": 0,
  7863. "node": {
  7864. "__id__": 1
  7865. },
  7866. "_enabled": true,
  7867. "__prefab": {
  7868. "__id__": 388
  7869. },
  7870. "mapMove": null,
  7871. "_id": ""
  7872. },
  7873. {
  7874. "__type__": "cc.CompPrefabInfo",
  7875. "fileId": "8emcuNcyRIW6spds3ZT8e4"
  7876. },
  7877. {
  7878. "__type__": "fd1e0WysalCkZKTC1QLOPfS",
  7879. "_name": "",
  7880. "_objFlags": 0,
  7881. "node": {
  7882. "__id__": 1
  7883. },
  7884. "_enabled": true,
  7885. "__prefab": {
  7886. "__id__": 390
  7887. },
  7888. "canTouch": true,
  7889. "onInPolygon": {
  7890. "__id__": 391
  7891. },
  7892. "needPolygon": false,
  7893. "points": [
  7894. {
  7895. "__type__": "cc.Vec2",
  7896. "x": -13.8,
  7897. "y": 46.6
  7898. },
  7899. {
  7900. "__type__": "cc.Vec2",
  7901. "x": 76.8,
  7902. "y": -9.1
  7903. },
  7904. {
  7905. "__type__": "cc.Vec2",
  7906. "x": 14,
  7907. "y": -47.1
  7908. },
  7909. {
  7910. "__type__": "cc.Vec2",
  7911. "x": -75.6,
  7912. "y": 9.4
  7913. }
  7914. ],
  7915. "stopPropagation": false,
  7916. "_id": ""
  7917. },
  7918. {
  7919. "__type__": "cc.CompPrefabInfo",
  7920. "fileId": "e6UR9oAstMVqjou88DNnTW"
  7921. },
  7922. {
  7923. "__type__": "cc.ClickEvent",
  7924. "target": null,
  7925. "component": "",
  7926. "_componentId": "7425ex3sJZGVKs9Y4/GkjeP",
  7927. "handler": "",
  7928. "customEventData": ""
  7929. },
  7930. {
  7931. "__type__": "3e361XEYo1HiYJkYOhWyJI/",
  7932. "_name": "",
  7933. "_objFlags": 0,
  7934. "node": {
  7935. "__id__": 1
  7936. },
  7937. "_enabled": true,
  7938. "__prefab": {
  7939. "__id__": 393
  7940. },
  7941. "lockNode": {
  7942. "__id__": 2
  7943. },
  7944. "selectNode": {
  7945. "__id__": 8
  7946. },
  7947. "plantIcon": {
  7948. "__id__": 21
  7949. },
  7950. "countDown": {
  7951. "__id__": 374
  7952. },
  7953. "process": {
  7954. "__id__": 199
  7955. },
  7956. "http": {
  7957. "__id__": 378
  7958. },
  7959. "_id": ""
  7960. },
  7961. {
  7962. "__type__": "cc.CompPrefabInfo",
  7963. "fileId": "acklWA7ERLtIwn/bGXDoxl"
  7964. },
  7965. {
  7966. "__type__": "5dbc7RZgppH0phbd/ybYswr",
  7967. "_name": "",
  7968. "_objFlags": 0,
  7969. "node": {
  7970. "__id__": 1
  7971. },
  7972. "_enabled": true,
  7973. "__prefab": {
  7974. "__id__": 395
  7975. },
  7976. "prefabPath": "Prefabs/PlantWindow",
  7977. "openMode": 3,
  7978. "params": [],
  7979. "openFroms": [],
  7980. "_id": ""
  7981. },
  7982. {
  7983. "__type__": "cc.CompPrefabInfo",
  7984. "fileId": "5dPk7dQ/9BRqbPGis1Zge0"
  7985. },
  7986. {
  7987. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  7988. "_name": "",
  7989. "_objFlags": 0,
  7990. "node": {
  7991. "__id__": 1
  7992. },
  7993. "_enabled": true,
  7994. "__prefab": {
  7995. "__id__": 397
  7996. },
  7997. "clips": [
  7998. {
  7999. "__uuid__": "c14b9f01-4a48-4266-ae4d-879d988373bd"
  8000. }
  8001. ],
  8002. "_volume": 1,
  8003. "useGlobalVolume": true,
  8004. "playOnLoad": false,
  8005. "playOnTouch": false,
  8006. "oneShot": true,
  8007. "loop": false,
  8008. "_id": ""
  8009. },
  8010. {
  8011. "__type__": "cc.CompPrefabInfo",
  8012. "fileId": "e3Q9lJqa5MWK7bFLOP0cob"
  8013. },
  8014. {
  8015. "__type__": "cc.PrefabInfo",
  8016. "root": {
  8017. "__id__": 1
  8018. },
  8019. "asset": {
  8020. "__id__": 0
  8021. },
  8022. "fileId": "21Y08j0DdD+4KjVOX3Movk"
  8023. }
  8024. ]