taskPrefab13.prefab 114 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521
  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. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "taskPrefab3",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 8
  28. },
  29. {
  30. "__id__": 12
  31. },
  32. {
  33. "__id__": 15
  34. },
  35. {
  36. "__id__": 20
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [],
  42. "_prefab": {
  43. "__id__": 190
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 720,
  56. "height": 1280
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_position": {
  64. "__type__": "cc.Vec3",
  65. "x": 0,
  66. "y": 0,
  67. "z": 0
  68. },
  69. "_scale": {
  70. "__type__": "cc.Vec3",
  71. "x": 1,
  72. "y": 1,
  73. "z": 1
  74. },
  75. "_quat": {
  76. "__type__": "cc.Quat",
  77. "x": 0,
  78. "y": 0,
  79. "z": 0,
  80. "w": 1
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_zIndex": 0,
  85. "_is3DNode": false,
  86. "groupIndex": 0,
  87. "_rotationX": 0,
  88. "_rotationY": 0,
  89. "_id": ""
  90. },
  91. {
  92. "__type__": "cc.Node",
  93. "_name": "New Node",
  94. "_objFlags": 0,
  95. "_parent": {
  96. "__id__": 1
  97. },
  98. "_children": [],
  99. "_active": true,
  100. "_level": 2,
  101. "_components": [
  102. {
  103. "__id__": 3
  104. }
  105. ],
  106. "_prefab": {
  107. "__id__": 4
  108. },
  109. "_opacity": 255,
  110. "_color": {
  111. "__type__": "cc.Color",
  112. "r": 255,
  113. "g": 255,
  114. "b": 255,
  115. "a": 255
  116. },
  117. "_contentSize": {
  118. "__type__": "cc.Size",
  119. "width": 720,
  120. "height": 1280
  121. },
  122. "_anchorPoint": {
  123. "__type__": "cc.Vec2",
  124. "x": 0.5,
  125. "y": 0.5
  126. },
  127. "_position": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_scale": {
  134. "__type__": "cc.Vec3",
  135. "x": 1,
  136. "y": 1,
  137. "z": 1
  138. },
  139. "_quat": {
  140. "__type__": "cc.Quat",
  141. "x": 0,
  142. "y": 0,
  143. "z": 0,
  144. "w": 1
  145. },
  146. "_skewX": 0,
  147. "_skewY": 0,
  148. "_zIndex": 0,
  149. "_is3DNode": false,
  150. "groupIndex": 0,
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.BlockInputEvents",
  155. "_name": "",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 2
  159. },
  160. "_enabled": true,
  161. "_id": ""
  162. },
  163. {
  164. "__type__": "cc.PrefabInfo",
  165. "root": {
  166. "__id__": 1
  167. },
  168. "asset": {
  169. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  170. },
  171. "fileId": "716x/gRJVMg41O7PNUUUvz",
  172. "sync": false
  173. },
  174. {
  175. "__type__": "cc.Node",
  176. "_name": "bgnn",
  177. "_objFlags": 0,
  178. "_parent": {
  179. "__id__": 1
  180. },
  181. "_children": [],
  182. "_active": true,
  183. "_level": 2,
  184. "_components": [
  185. {
  186. "__id__": 6
  187. }
  188. ],
  189. "_prefab": {
  190. "__id__": 7
  191. },
  192. "_opacity": 147,
  193. "_color": {
  194. "__type__": "cc.Color",
  195. "r": 0,
  196. "g": 0,
  197. "b": 0,
  198. "a": 255
  199. },
  200. "_contentSize": {
  201. "__type__": "cc.Size",
  202. "width": 1500,
  203. "height": 1500
  204. },
  205. "_anchorPoint": {
  206. "__type__": "cc.Vec2",
  207. "x": 0.5,
  208. "y": 0.5
  209. },
  210. "_position": {
  211. "__type__": "cc.Vec3",
  212. "x": 0,
  213. "y": 0,
  214. "z": 0
  215. },
  216. "_scale": {
  217. "__type__": "cc.Vec3",
  218. "x": 1,
  219. "y": 1,
  220. "z": 1
  221. },
  222. "_quat": {
  223. "__type__": "cc.Quat",
  224. "x": 0,
  225. "y": 0,
  226. "z": 0,
  227. "w": 1
  228. },
  229. "_skewX": 0,
  230. "_skewY": 0,
  231. "_zIndex": 0,
  232. "_is3DNode": false,
  233. "groupIndex": 0,
  234. "_rotationX": 0,
  235. "_rotationY": 0,
  236. "_id": ""
  237. },
  238. {
  239. "__type__": "cc.Sprite",
  240. "_name": "",
  241. "_objFlags": 0,
  242. "node": {
  243. "__id__": 5
  244. },
  245. "_enabled": true,
  246. "_srcBlendFactor": 770,
  247. "_dstBlendFactor": 771,
  248. "_spriteFrame": {
  249. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  250. },
  251. "_type": 0,
  252. "_sizeMode": 0,
  253. "_fillType": 0,
  254. "_fillCenter": {
  255. "__type__": "cc.Vec2",
  256. "x": 0,
  257. "y": 0
  258. },
  259. "_fillStart": 0,
  260. "_fillRange": 0,
  261. "_isTrimmedMode": true,
  262. "_state": 0,
  263. "_atlas": null,
  264. "_id": ""
  265. },
  266. {
  267. "__type__": "cc.PrefabInfo",
  268. "root": {
  269. "__id__": 1
  270. },
  271. "asset": {
  272. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  273. },
  274. "fileId": "41Upov3CBBHrf54t71LV8T",
  275. "sync": false
  276. },
  277. {
  278. "__type__": "cc.Node",
  279. "_name": "SureBtn",
  280. "_objFlags": 0,
  281. "_parent": {
  282. "__id__": 1
  283. },
  284. "_children": [],
  285. "_active": true,
  286. "_level": 2,
  287. "_components": [
  288. {
  289. "__id__": 9
  290. },
  291. {
  292. "__id__": 10
  293. }
  294. ],
  295. "_prefab": {
  296. "__id__": 11
  297. },
  298. "_opacity": 255,
  299. "_color": {
  300. "__type__": "cc.Color",
  301. "r": 255,
  302. "g": 255,
  303. "b": 255,
  304. "a": 255
  305. },
  306. "_contentSize": {
  307. "__type__": "cc.Size",
  308. "width": 82,
  309. "height": 37
  310. },
  311. "_anchorPoint": {
  312. "__type__": "cc.Vec2",
  313. "x": 0.5,
  314. "y": 0.5
  315. },
  316. "_position": {
  317. "__type__": "cc.Vec3",
  318. "x": 0,
  319. "y": -390,
  320. "z": 0
  321. },
  322. "_scale": {
  323. "__type__": "cc.Vec3",
  324. "x": 2,
  325. "y": 2,
  326. "z": 2
  327. },
  328. "_quat": {
  329. "__type__": "cc.Quat",
  330. "x": 0,
  331. "y": 0,
  332. "z": 0,
  333. "w": 1
  334. },
  335. "_skewX": 0,
  336. "_skewY": 0,
  337. "_zIndex": 0,
  338. "_is3DNode": false,
  339. "groupIndex": 0,
  340. "_id": ""
  341. },
  342. {
  343. "__type__": "cc.Sprite",
  344. "_name": "",
  345. "_objFlags": 0,
  346. "node": {
  347. "__id__": 8
  348. },
  349. "_enabled": true,
  350. "_srcBlendFactor": 770,
  351. "_dstBlendFactor": 771,
  352. "_spriteFrame": {
  353. "__uuid__": "db8cfc1e-cabb-4762-a0d5-728f49694fe2"
  354. },
  355. "_type": 0,
  356. "_sizeMode": 0,
  357. "_fillType": 0,
  358. "_fillCenter": {
  359. "__type__": "cc.Vec2",
  360. "x": 0,
  361. "y": 0
  362. },
  363. "_fillStart": 0,
  364. "_fillRange": 0,
  365. "_isTrimmedMode": true,
  366. "_state": 0,
  367. "_atlas": null,
  368. "_id": ""
  369. },
  370. {
  371. "__type__": "cc.Button",
  372. "_name": "",
  373. "_objFlags": 0,
  374. "node": {
  375. "__id__": 8
  376. },
  377. "_enabled": true,
  378. "duration": 0.1,
  379. "zoomScale": 1.2,
  380. "clickEvents": [],
  381. "_N$interactable": true,
  382. "_N$enableAutoGrayEffect": false,
  383. "_N$transition": 3,
  384. "transition": 3,
  385. "_N$normalColor": {
  386. "__type__": "cc.Color",
  387. "r": 214,
  388. "g": 214,
  389. "b": 214,
  390. "a": 255
  391. },
  392. "_N$pressedColor": {
  393. "__type__": "cc.Color",
  394. "r": 211,
  395. "g": 211,
  396. "b": 211,
  397. "a": 255
  398. },
  399. "pressedColor": {
  400. "__type__": "cc.Color",
  401. "r": 211,
  402. "g": 211,
  403. "b": 211,
  404. "a": 255
  405. },
  406. "_N$hoverColor": {
  407. "__type__": "cc.Color",
  408. "r": 255,
  409. "g": 255,
  410. "b": 255,
  411. "a": 255
  412. },
  413. "hoverColor": {
  414. "__type__": "cc.Color",
  415. "r": 255,
  416. "g": 255,
  417. "b": 255,
  418. "a": 255
  419. },
  420. "_N$disabledColor": {
  421. "__type__": "cc.Color",
  422. "r": 124,
  423. "g": 124,
  424. "b": 124,
  425. "a": 255
  426. },
  427. "_N$normalSprite": null,
  428. "_N$pressedSprite": null,
  429. "pressedSprite": null,
  430. "_N$hoverSprite": null,
  431. "hoverSprite": null,
  432. "_N$disabledSprite": null,
  433. "_N$target": null,
  434. "_id": ""
  435. },
  436. {
  437. "__type__": "cc.PrefabInfo",
  438. "root": {
  439. "__id__": 1
  440. },
  441. "asset": {
  442. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  443. },
  444. "fileId": "16Lm74oKpCsqxAxyydbGrM",
  445. "sync": false
  446. },
  447. {
  448. "__type__": "cc.Node",
  449. "_name": "richman",
  450. "_objFlags": 0,
  451. "_parent": {
  452. "__id__": 1
  453. },
  454. "_children": [],
  455. "_active": true,
  456. "_level": 2,
  457. "_components": [
  458. {
  459. "__id__": 13
  460. }
  461. ],
  462. "_prefab": {
  463. "__id__": 14
  464. },
  465. "_opacity": 255,
  466. "_color": {
  467. "__type__": "cc.Color",
  468. "r": 255,
  469. "g": 255,
  470. "b": 255,
  471. "a": 255
  472. },
  473. "_contentSize": {
  474. "__type__": "cc.Size",
  475. "width": 216,
  476. "height": 664
  477. },
  478. "_anchorPoint": {
  479. "__type__": "cc.Vec2",
  480. "x": 0.5,
  481. "y": 0.5
  482. },
  483. "_position": {
  484. "__type__": "cc.Vec3",
  485. "x": -251,
  486. "y": -12,
  487. "z": 0
  488. },
  489. "_scale": {
  490. "__type__": "cc.Vec3",
  491. "x": 0.7,
  492. "y": 0.7,
  493. "z": 1
  494. },
  495. "_quat": {
  496. "__type__": "cc.Quat",
  497. "x": 0,
  498. "y": 0,
  499. "z": 0,
  500. "w": 1
  501. },
  502. "_skewX": 0,
  503. "_skewY": 0,
  504. "_zIndex": 0,
  505. "_is3DNode": false,
  506. "groupIndex": 0,
  507. "_id": ""
  508. },
  509. {
  510. "__type__": "cc.Sprite",
  511. "_name": "",
  512. "_objFlags": 0,
  513. "node": {
  514. "__id__": 12
  515. },
  516. "_enabled": true,
  517. "_srcBlendFactor": 770,
  518. "_dstBlendFactor": 771,
  519. "_spriteFrame": {
  520. "__uuid__": "e9807e16-730d-451e-a06b-f9ce32aa4919"
  521. },
  522. "_type": 0,
  523. "_sizeMode": 1,
  524. "_fillType": 0,
  525. "_fillCenter": {
  526. "__type__": "cc.Vec2",
  527. "x": 0,
  528. "y": 0
  529. },
  530. "_fillStart": 0,
  531. "_fillRange": 0,
  532. "_isTrimmedMode": true,
  533. "_state": 0,
  534. "_atlas": null,
  535. "_id": ""
  536. },
  537. {
  538. "__type__": "cc.PrefabInfo",
  539. "root": {
  540. "__id__": 1
  541. },
  542. "asset": {
  543. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  544. },
  545. "fileId": "f0JFpOvnZJtaRkyPFcgdpJ",
  546. "sync": false
  547. },
  548. {
  549. "__type__": "cc.Node",
  550. "_name": "New VideoPlayer",
  551. "_objFlags": 0,
  552. "_parent": {
  553. "__id__": 1
  554. },
  555. "_children": [],
  556. "_active": false,
  557. "_level": 2,
  558. "_components": [
  559. {
  560. "__id__": 16
  561. },
  562. {
  563. "__id__": 18
  564. }
  565. ],
  566. "_prefab": {
  567. "__id__": 19
  568. },
  569. "_opacity": 255,
  570. "_color": {
  571. "__type__": "cc.Color",
  572. "r": 255,
  573. "g": 255,
  574. "b": 255,
  575. "a": 255
  576. },
  577. "_contentSize": {
  578. "__type__": "cc.Size",
  579. "width": 150,
  580. "height": 240
  581. },
  582. "_anchorPoint": {
  583. "__type__": "cc.Vec2",
  584. "x": 0.5,
  585. "y": 0.5
  586. },
  587. "_position": {
  588. "__type__": "cc.Vec3",
  589. "x": 129,
  590. "y": 125,
  591. "z": 0
  592. },
  593. "_scale": {
  594. "__type__": "cc.Vec3",
  595. "x": 3,
  596. "y": 3,
  597. "z": 1
  598. },
  599. "_quat": {
  600. "__type__": "cc.Quat",
  601. "x": 0,
  602. "y": 0,
  603. "z": 0,
  604. "w": 1
  605. },
  606. "_skewX": 0,
  607. "_skewY": 0,
  608. "_zIndex": 0,
  609. "_is3DNode": false,
  610. "groupIndex": 0,
  611. "_rotationX": 0,
  612. "_rotationY": 0,
  613. "_id": ""
  614. },
  615. {
  616. "__type__": "cc.VideoPlayer",
  617. "_name": "",
  618. "_objFlags": 0,
  619. "node": {
  620. "__id__": 15
  621. },
  622. "_enabled": true,
  623. "_resourceType": 1,
  624. "_remoteURL": "http://192.168.1.25:9999/Course.mp4",
  625. "_clip": null,
  626. "_volume": 1,
  627. "_mute": false,
  628. "videoPlayerEvent": [
  629. {
  630. "__id__": 17
  631. }
  632. ],
  633. "_N$keepAspectRatio": false,
  634. "_N$isFullscreen": false,
  635. "_id": ""
  636. },
  637. {
  638. "__type__": "cc.ClickEvent",
  639. "target": {
  640. "__id__": 15
  641. },
  642. "component": "",
  643. "_componentId": "d4bc0+jSPhHf4KlwNnKbPqM",
  644. "handler": "onVideoPlayerEvent",
  645. "customEventData": ""
  646. },
  647. {
  648. "__type__": "d4bc0+jSPhHf4KlwNnKbPqM",
  649. "_name": "",
  650. "_objFlags": 0,
  651. "node": {
  652. "__id__": 15
  653. },
  654. "_enabled": true,
  655. "_id": ""
  656. },
  657. {
  658. "__type__": "cc.PrefabInfo",
  659. "root": {
  660. "__id__": 1
  661. },
  662. "asset": {
  663. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  664. },
  665. "fileId": "68aao670lFC4tK08ArsdKa",
  666. "sync": false
  667. },
  668. {
  669. "__type__": "cc.Node",
  670. "_name": "layout",
  671. "_objFlags": 0,
  672. "_parent": {
  673. "__id__": 1
  674. },
  675. "_children": [
  676. {
  677. "__id__": 21
  678. },
  679. {
  680. "__id__": 39
  681. },
  682. {
  683. "__id__": 57
  684. },
  685. {
  686. "__id__": 75
  687. },
  688. {
  689. "__id__": 89
  690. },
  691. {
  692. "__id__": 107
  693. },
  694. {
  695. "__id__": 121
  696. },
  697. {
  698. "__id__": 139
  699. },
  700. {
  701. "__id__": 157
  702. },
  703. {
  704. "__id__": 175
  705. }
  706. ],
  707. "_active": true,
  708. "_level": 2,
  709. "_components": [],
  710. "_prefab": {
  711. "__id__": 189
  712. },
  713. "_opacity": 255,
  714. "_color": {
  715. "__type__": "cc.Color",
  716. "r": 255,
  717. "g": 255,
  718. "b": 255,
  719. "a": 255
  720. },
  721. "_contentSize": {
  722. "__type__": "cc.Size",
  723. "width": 0,
  724. "height": 0
  725. },
  726. "_anchorPoint": {
  727. "__type__": "cc.Vec2",
  728. "x": 0.5,
  729. "y": 0.5
  730. },
  731. "_position": {
  732. "__type__": "cc.Vec3",
  733. "x": 0,
  734. "y": -44,
  735. "z": 0
  736. },
  737. "_scale": {
  738. "__type__": "cc.Vec3",
  739. "x": 1,
  740. "y": 1,
  741. "z": 1
  742. },
  743. "_quat": {
  744. "__type__": "cc.Quat",
  745. "x": 0,
  746. "y": 0,
  747. "z": 0,
  748. "w": 1
  749. },
  750. "_skewX": 0,
  751. "_skewY": 0,
  752. "_zIndex": 0,
  753. "_is3DNode": false,
  754. "groupIndex": 0,
  755. "_id": ""
  756. },
  757. {
  758. "__type__": "cc.Node",
  759. "_name": "item",
  760. "_objFlags": 0,
  761. "_parent": {
  762. "__id__": 20
  763. },
  764. "_children": [
  765. {
  766. "__id__": 22
  767. },
  768. {
  769. "__id__": 25
  770. },
  771. {
  772. "__id__": 28
  773. },
  774. {
  775. "__id__": 31
  776. },
  777. {
  778. "__id__": 34
  779. }
  780. ],
  781. "_active": true,
  782. "_level": 3,
  783. "_components": [],
  784. "_prefab": {
  785. "__id__": 38
  786. },
  787. "_opacity": 255,
  788. "_color": {
  789. "__type__": "cc.Color",
  790. "r": 255,
  791. "g": 255,
  792. "b": 255,
  793. "a": 255
  794. },
  795. "_contentSize": {
  796. "__type__": "cc.Size",
  797. "width": 0,
  798. "height": 0
  799. },
  800. "_anchorPoint": {
  801. "__type__": "cc.Vec2",
  802. "x": 0.5,
  803. "y": 0.5
  804. },
  805. "_position": {
  806. "__type__": "cc.Vec3",
  807. "x": 0,
  808. "y": 0,
  809. "z": 0
  810. },
  811. "_scale": {
  812. "__type__": "cc.Vec3",
  813. "x": 1,
  814. "y": 1,
  815. "z": 1
  816. },
  817. "_quat": {
  818. "__type__": "cc.Quat",
  819. "x": 0,
  820. "y": 0,
  821. "z": 0,
  822. "w": 1
  823. },
  824. "_skewX": 0,
  825. "_skewY": 0,
  826. "_zIndex": 0,
  827. "_is3DNode": false,
  828. "groupIndex": 0,
  829. "_id": ""
  830. },
  831. {
  832. "__type__": "cc.Node",
  833. "_name": "White",
  834. "_objFlags": 0,
  835. "_parent": {
  836. "__id__": 21
  837. },
  838. "_children": [],
  839. "_active": true,
  840. "_level": 4,
  841. "_components": [
  842. {
  843. "__id__": 23
  844. }
  845. ],
  846. "_prefab": {
  847. "__id__": 24
  848. },
  849. "_opacity": 255,
  850. "_color": {
  851. "__type__": "cc.Color",
  852. "r": 255,
  853. "g": 255,
  854. "b": 255,
  855. "a": 255
  856. },
  857. "_contentSize": {
  858. "__type__": "cc.Size",
  859. "width": 481,
  860. "height": 853
  861. },
  862. "_anchorPoint": {
  863. "__type__": "cc.Vec2",
  864. "x": 0.5,
  865. "y": 0.5
  866. },
  867. "_position": {
  868. "__type__": "cc.Vec3",
  869. "x": 0,
  870. "y": 202,
  871. "z": 0
  872. },
  873. "_scale": {
  874. "__type__": "cc.Vec3",
  875. "x": 0.75,
  876. "y": 0.73,
  877. "z": 1
  878. },
  879. "_quat": {
  880. "__type__": "cc.Quat",
  881. "x": 0,
  882. "y": 0,
  883. "z": 0,
  884. "w": 1
  885. },
  886. "_skewX": 0,
  887. "_skewY": 0,
  888. "_zIndex": 0,
  889. "_is3DNode": false,
  890. "groupIndex": 0,
  891. "_id": ""
  892. },
  893. {
  894. "__type__": "cc.Sprite",
  895. "_name": "",
  896. "_objFlags": 0,
  897. "node": {
  898. "__id__": 22
  899. },
  900. "_enabled": true,
  901. "_srcBlendFactor": 770,
  902. "_dstBlendFactor": 771,
  903. "_spriteFrame": {
  904. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  905. },
  906. "_type": 0,
  907. "_sizeMode": 0,
  908. "_fillType": 0,
  909. "_fillCenter": {
  910. "__type__": "cc.Vec2",
  911. "x": 0,
  912. "y": 0
  913. },
  914. "_fillStart": 0,
  915. "_fillRange": 0,
  916. "_isTrimmedMode": true,
  917. "_state": 0,
  918. "_atlas": null,
  919. "_id": ""
  920. },
  921. {
  922. "__type__": "cc.PrefabInfo",
  923. "root": {
  924. "__id__": 1
  925. },
  926. "asset": {
  927. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  928. },
  929. "fileId": "2dn4LQxTZDsLU2rYGKbL4y",
  930. "sync": false
  931. },
  932. {
  933. "__type__": "cc.Node",
  934. "_name": "Sprite1",
  935. "_objFlags": 0,
  936. "_parent": {
  937. "__id__": 21
  938. },
  939. "_children": [],
  940. "_active": true,
  941. "_level": 4,
  942. "_components": [
  943. {
  944. "__id__": 26
  945. }
  946. ],
  947. "_prefab": {
  948. "__id__": 27
  949. },
  950. "_opacity": 255,
  951. "_color": {
  952. "__type__": "cc.Color",
  953. "r": 255,
  954. "g": 255,
  955. "b": 255,
  956. "a": 255
  957. },
  958. "_contentSize": {
  959. "__type__": "cc.Size",
  960. "width": 481,
  961. "height": 853
  962. },
  963. "_anchorPoint": {
  964. "__type__": "cc.Vec2",
  965. "x": 0.5,
  966. "y": 0.5
  967. },
  968. "_position": {
  969. "__type__": "cc.Vec3",
  970. "x": 0,
  971. "y": 202,
  972. "z": 0
  973. },
  974. "_scale": {
  975. "__type__": "cc.Vec3",
  976. "x": 0.7,
  977. "y": 0.7,
  978. "z": 1
  979. },
  980. "_quat": {
  981. "__type__": "cc.Quat",
  982. "x": 0,
  983. "y": 0,
  984. "z": 0,
  985. "w": 1
  986. },
  987. "_skewX": 0,
  988. "_skewY": 0,
  989. "_zIndex": 0,
  990. "_is3DNode": false,
  991. "groupIndex": 0,
  992. "_rotationX": 0,
  993. "_rotationY": 0,
  994. "_id": ""
  995. },
  996. {
  997. "__type__": "cc.Sprite",
  998. "_name": "",
  999. "_objFlags": 0,
  1000. "node": {
  1001. "__id__": 25
  1002. },
  1003. "_enabled": true,
  1004. "_srcBlendFactor": 770,
  1005. "_dstBlendFactor": 771,
  1006. "_spriteFrame": {
  1007. "__uuid__": "9e85c33e-1215-4846-885c-226d72a7c21d"
  1008. },
  1009. "_type": 0,
  1010. "_sizeMode": 0,
  1011. "_fillType": 0,
  1012. "_fillCenter": {
  1013. "__type__": "cc.Vec2",
  1014. "x": 0,
  1015. "y": 0
  1016. },
  1017. "_fillStart": 0,
  1018. "_fillRange": 0,
  1019. "_isTrimmedMode": true,
  1020. "_state": 0,
  1021. "_atlas": null,
  1022. "_id": ""
  1023. },
  1024. {
  1025. "__type__": "cc.PrefabInfo",
  1026. "root": {
  1027. "__id__": 1
  1028. },
  1029. "asset": {
  1030. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1031. },
  1032. "fileId": "30sIs73OlOpaVhDiDM4WZ0",
  1033. "sync": false
  1034. },
  1035. {
  1036. "__type__": "cc.Node",
  1037. "_name": "New Label",
  1038. "_objFlags": 0,
  1039. "_parent": {
  1040. "__id__": 21
  1041. },
  1042. "_children": [],
  1043. "_active": true,
  1044. "_level": 4,
  1045. "_components": [
  1046. {
  1047. "__id__": 29
  1048. }
  1049. ],
  1050. "_prefab": {
  1051. "__id__": 30
  1052. },
  1053. "_opacity": 255,
  1054. "_color": {
  1055. "__type__": "cc.Color",
  1056. "r": 255,
  1057. "g": 255,
  1058. "b": 255,
  1059. "a": 255
  1060. },
  1061. "_contentSize": {
  1062. "__type__": "cc.Size",
  1063. "width": 333.25,
  1064. "height": 100
  1065. },
  1066. "_anchorPoint": {
  1067. "__type__": "cc.Vec2",
  1068. "x": 0.5,
  1069. "y": 0
  1070. },
  1071. "_position": {
  1072. "__type__": "cc.Vec3",
  1073. "x": 0,
  1074. "y": -222,
  1075. "z": 0
  1076. },
  1077. "_scale": {
  1078. "__type__": "cc.Vec3",
  1079. "x": 1,
  1080. "y": 1,
  1081. "z": 1
  1082. },
  1083. "_quat": {
  1084. "__type__": "cc.Quat",
  1085. "x": 0,
  1086. "y": 0,
  1087. "z": 0,
  1088. "w": 1
  1089. },
  1090. "_skewX": 0,
  1091. "_skewY": 0,
  1092. "_zIndex": 0,
  1093. "_is3DNode": false,
  1094. "groupIndex": 0,
  1095. "_rotationX": 0,
  1096. "_rotationY": 0,
  1097. "_id": ""
  1098. },
  1099. {
  1100. "__type__": "cc.Label",
  1101. "_name": "",
  1102. "_objFlags": 0,
  1103. "node": {
  1104. "__id__": 28
  1105. },
  1106. "_enabled": true,
  1107. "_srcBlendFactor": 1,
  1108. "_dstBlendFactor": 771,
  1109. "_useOriginalSize": false,
  1110. "_string": "1.点击屏幕下方的“建造”按钮",
  1111. "_N$string": "1.点击屏幕下方的“建造”按钮",
  1112. "_fontSize": 35,
  1113. "_lineHeight": 50,
  1114. "_enableWrapText": true,
  1115. "_N$file": null,
  1116. "_isSystemFontUsed": true,
  1117. "_spacingX": 0,
  1118. "_N$horizontalAlign": 0,
  1119. "_N$verticalAlign": 2,
  1120. "_N$fontFamily": "Arial",
  1121. "_N$overflow": 3,
  1122. "_id": ""
  1123. },
  1124. {
  1125. "__type__": "cc.PrefabInfo",
  1126. "root": {
  1127. "__id__": 1
  1128. },
  1129. "asset": {
  1130. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1131. },
  1132. "fileId": "e0l+08jmdBMYBWnJ//ZLMv",
  1133. "sync": false
  1134. },
  1135. {
  1136. "__type__": "cc.Node",
  1137. "_name": "curr",
  1138. "_objFlags": 0,
  1139. "_parent": {
  1140. "__id__": 21
  1141. },
  1142. "_children": [],
  1143. "_active": true,
  1144. "_level": 4,
  1145. "_components": [
  1146. {
  1147. "__id__": 32
  1148. }
  1149. ],
  1150. "_prefab": {
  1151. "__id__": 33
  1152. },
  1153. "_opacity": 255,
  1154. "_color": {
  1155. "__type__": "cc.Color",
  1156. "r": 255,
  1157. "g": 255,
  1158. "b": 255,
  1159. "a": 255
  1160. },
  1161. "_contentSize": {
  1162. "__type__": "cc.Size",
  1163. "width": 104.49,
  1164. "height": 40
  1165. },
  1166. "_anchorPoint": {
  1167. "__type__": "cc.Vec2",
  1168. "x": 0,
  1169. "y": 0
  1170. },
  1171. "_position": {
  1172. "__type__": "cc.Vec3",
  1173. "x": -36,
  1174. "y": -272,
  1175. "z": 0
  1176. },
  1177. "_scale": {
  1178. "__type__": "cc.Vec3",
  1179. "x": 1,
  1180. "y": 1,
  1181. "z": 1
  1182. },
  1183. "_quat": {
  1184. "__type__": "cc.Quat",
  1185. "x": 0,
  1186. "y": 0,
  1187. "z": 0,
  1188. "w": 1
  1189. },
  1190. "_skewX": 0,
  1191. "_skewY": 0,
  1192. "_zIndex": 0,
  1193. "_is3DNode": false,
  1194. "groupIndex": 0,
  1195. "_rotationX": 0,
  1196. "_rotationY": 0,
  1197. "_id": ""
  1198. },
  1199. {
  1200. "__type__": "cc.Label",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "node": {
  1204. "__id__": 31
  1205. },
  1206. "_enabled": true,
  1207. "_srcBlendFactor": 1,
  1208. "_dstBlendFactor": 771,
  1209. "_useOriginalSize": false,
  1210. "_string": "(1/10)",
  1211. "_N$string": "(1/10)",
  1212. "_fontSize": 40,
  1213. "_lineHeight": 40,
  1214. "_enableWrapText": true,
  1215. "_N$file": null,
  1216. "_isSystemFontUsed": true,
  1217. "_spacingX": 0,
  1218. "_N$horizontalAlign": 0,
  1219. "_N$verticalAlign": 0,
  1220. "_N$fontFamily": "Arial",
  1221. "_N$overflow": 0,
  1222. "_id": ""
  1223. },
  1224. {
  1225. "__type__": "cc.PrefabInfo",
  1226. "root": {
  1227. "__id__": 1
  1228. },
  1229. "asset": {
  1230. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1231. },
  1232. "fileId": "20+atH32FApJQInvDzpq/z",
  1233. "sync": false
  1234. },
  1235. {
  1236. "__type__": "cc.Node",
  1237. "_name": "PinkArrow",
  1238. "_objFlags": 0,
  1239. "_parent": {
  1240. "__id__": 21
  1241. },
  1242. "_children": [],
  1243. "_active": true,
  1244. "_level": 4,
  1245. "_components": [
  1246. {
  1247. "__id__": 35
  1248. },
  1249. {
  1250. "__id__": 36
  1251. }
  1252. ],
  1253. "_prefab": {
  1254. "__id__": 37
  1255. },
  1256. "_opacity": 255,
  1257. "_color": {
  1258. "__type__": "cc.Color",
  1259. "r": 255,
  1260. "g": 255,
  1261. "b": 255,
  1262. "a": 255
  1263. },
  1264. "_contentSize": {
  1265. "__type__": "cc.Size",
  1266. "width": 161,
  1267. "height": 142
  1268. },
  1269. "_anchorPoint": {
  1270. "__type__": "cc.Vec2",
  1271. "x": 0.5,
  1272. "y": 0.5
  1273. },
  1274. "_position": {
  1275. "__type__": "cc.Vec3",
  1276. "x": 113,
  1277. "y": -79,
  1278. "z": 0
  1279. },
  1280. "_scale": {
  1281. "__type__": "cc.Vec3",
  1282. "x": 0.7,
  1283. "y": 0.7,
  1284. "z": 1
  1285. },
  1286. "_quat": {
  1287. "__type__": "cc.Quat",
  1288. "x": 0,
  1289. "y": 0,
  1290. "z": 0.958819734868193,
  1291. "w": 0.28401534470392276
  1292. },
  1293. "_skewX": 0,
  1294. "_skewY": 0,
  1295. "_zIndex": 0,
  1296. "_is3DNode": false,
  1297. "groupIndex": 0,
  1298. "_id": ""
  1299. },
  1300. {
  1301. "__type__": "cc.Sprite",
  1302. "_name": "",
  1303. "_objFlags": 0,
  1304. "node": {
  1305. "__id__": 34
  1306. },
  1307. "_enabled": true,
  1308. "_srcBlendFactor": 770,
  1309. "_dstBlendFactor": 771,
  1310. "_spriteFrame": {
  1311. "__uuid__": "87546a05-dab2-4c2f-8c4a-32863293c4e6"
  1312. },
  1313. "_type": 0,
  1314. "_sizeMode": 1,
  1315. "_fillType": 0,
  1316. "_fillCenter": {
  1317. "__type__": "cc.Vec2",
  1318. "x": 0,
  1319. "y": 0
  1320. },
  1321. "_fillStart": 0,
  1322. "_fillRange": 0,
  1323. "_isTrimmedMode": true,
  1324. "_state": 0,
  1325. "_atlas": null,
  1326. "_id": ""
  1327. },
  1328. {
  1329. "__type__": "cc.Animation",
  1330. "_name": "",
  1331. "_objFlags": 0,
  1332. "node": {
  1333. "__id__": 34
  1334. },
  1335. "_enabled": true,
  1336. "_defaultClip": {
  1337. "__uuid__": "1ab01729-ae6c-4055-b0c0-824537fcfc28"
  1338. },
  1339. "_clips": [
  1340. {
  1341. "__uuid__": "1ab01729-ae6c-4055-b0c0-824537fcfc28"
  1342. }
  1343. ],
  1344. "playOnLoad": true,
  1345. "_id": ""
  1346. },
  1347. {
  1348. "__type__": "cc.PrefabInfo",
  1349. "root": {
  1350. "__id__": 1
  1351. },
  1352. "asset": {
  1353. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1354. },
  1355. "fileId": "9dvMLbdChDwamhwdKykePl",
  1356. "sync": false
  1357. },
  1358. {
  1359. "__type__": "cc.PrefabInfo",
  1360. "root": {
  1361. "__id__": 1
  1362. },
  1363. "asset": {
  1364. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1365. },
  1366. "fileId": "0dGAJ656lF0687+kxjrL3e",
  1367. "sync": false
  1368. },
  1369. {
  1370. "__type__": "cc.Node",
  1371. "_name": "item",
  1372. "_objFlags": 0,
  1373. "_parent": {
  1374. "__id__": 20
  1375. },
  1376. "_children": [
  1377. {
  1378. "__id__": 40
  1379. },
  1380. {
  1381. "__id__": 43
  1382. },
  1383. {
  1384. "__id__": 46
  1385. },
  1386. {
  1387. "__id__": 49
  1388. },
  1389. {
  1390. "__id__": 52
  1391. }
  1392. ],
  1393. "_active": true,
  1394. "_level": 3,
  1395. "_components": [],
  1396. "_prefab": {
  1397. "__id__": 56
  1398. },
  1399. "_opacity": 255,
  1400. "_color": {
  1401. "__type__": "cc.Color",
  1402. "r": 255,
  1403. "g": 255,
  1404. "b": 255,
  1405. "a": 255
  1406. },
  1407. "_contentSize": {
  1408. "__type__": "cc.Size",
  1409. "width": 0,
  1410. "height": 0
  1411. },
  1412. "_anchorPoint": {
  1413. "__type__": "cc.Vec2",
  1414. "x": 0.5,
  1415. "y": 0.5
  1416. },
  1417. "_position": {
  1418. "__type__": "cc.Vec3",
  1419. "x": 0,
  1420. "y": 0,
  1421. "z": 0
  1422. },
  1423. "_scale": {
  1424. "__type__": "cc.Vec3",
  1425. "x": 1,
  1426. "y": 1,
  1427. "z": 1
  1428. },
  1429. "_quat": {
  1430. "__type__": "cc.Quat",
  1431. "x": 0,
  1432. "y": 0,
  1433. "z": 0,
  1434. "w": 1
  1435. },
  1436. "_skewX": 0,
  1437. "_skewY": 0,
  1438. "_zIndex": 0,
  1439. "_is3DNode": false,
  1440. "groupIndex": 0,
  1441. "_id": ""
  1442. },
  1443. {
  1444. "__type__": "cc.Node",
  1445. "_name": "White",
  1446. "_objFlags": 0,
  1447. "_parent": {
  1448. "__id__": 39
  1449. },
  1450. "_children": [],
  1451. "_active": true,
  1452. "_level": 4,
  1453. "_components": [
  1454. {
  1455. "__id__": 41
  1456. }
  1457. ],
  1458. "_prefab": {
  1459. "__id__": 42
  1460. },
  1461. "_opacity": 255,
  1462. "_color": {
  1463. "__type__": "cc.Color",
  1464. "r": 255,
  1465. "g": 255,
  1466. "b": 255,
  1467. "a": 255
  1468. },
  1469. "_contentSize": {
  1470. "__type__": "cc.Size",
  1471. "width": 481,
  1472. "height": 853
  1473. },
  1474. "_anchorPoint": {
  1475. "__type__": "cc.Vec2",
  1476. "x": 0.5,
  1477. "y": 0.5
  1478. },
  1479. "_position": {
  1480. "__type__": "cc.Vec3",
  1481. "x": 0,
  1482. "y": 202,
  1483. "z": 0
  1484. },
  1485. "_scale": {
  1486. "__type__": "cc.Vec3",
  1487. "x": 0.75,
  1488. "y": 0.73,
  1489. "z": 1
  1490. },
  1491. "_quat": {
  1492. "__type__": "cc.Quat",
  1493. "x": 0,
  1494. "y": 0,
  1495. "z": 0,
  1496. "w": 1
  1497. },
  1498. "_skewX": 0,
  1499. "_skewY": 0,
  1500. "_zIndex": 0,
  1501. "_is3DNode": false,
  1502. "groupIndex": 0,
  1503. "_id": ""
  1504. },
  1505. {
  1506. "__type__": "cc.Sprite",
  1507. "_name": "",
  1508. "_objFlags": 0,
  1509. "node": {
  1510. "__id__": 40
  1511. },
  1512. "_enabled": true,
  1513. "_srcBlendFactor": 770,
  1514. "_dstBlendFactor": 771,
  1515. "_spriteFrame": {
  1516. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  1517. },
  1518. "_type": 0,
  1519. "_sizeMode": 0,
  1520. "_fillType": 0,
  1521. "_fillCenter": {
  1522. "__type__": "cc.Vec2",
  1523. "x": 0,
  1524. "y": 0
  1525. },
  1526. "_fillStart": 0,
  1527. "_fillRange": 0,
  1528. "_isTrimmedMode": true,
  1529. "_state": 0,
  1530. "_atlas": null,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.PrefabInfo",
  1535. "root": {
  1536. "__id__": 1
  1537. },
  1538. "asset": {
  1539. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1540. },
  1541. "fileId": "99qWAZmZ9Nuo8eccosMNt2",
  1542. "sync": false
  1543. },
  1544. {
  1545. "__type__": "cc.Node",
  1546. "_name": "Sprite1",
  1547. "_objFlags": 0,
  1548. "_parent": {
  1549. "__id__": 39
  1550. },
  1551. "_children": [],
  1552. "_active": true,
  1553. "_level": 4,
  1554. "_components": [
  1555. {
  1556. "__id__": 44
  1557. }
  1558. ],
  1559. "_prefab": {
  1560. "__id__": 45
  1561. },
  1562. "_opacity": 255,
  1563. "_color": {
  1564. "__type__": "cc.Color",
  1565. "r": 255,
  1566. "g": 255,
  1567. "b": 255,
  1568. "a": 255
  1569. },
  1570. "_contentSize": {
  1571. "__type__": "cc.Size",
  1572. "width": 481,
  1573. "height": 853
  1574. },
  1575. "_anchorPoint": {
  1576. "__type__": "cc.Vec2",
  1577. "x": 0.5,
  1578. "y": 0.5
  1579. },
  1580. "_position": {
  1581. "__type__": "cc.Vec3",
  1582. "x": 0,
  1583. "y": 202,
  1584. "z": 0
  1585. },
  1586. "_scale": {
  1587. "__type__": "cc.Vec3",
  1588. "x": 0.7,
  1589. "y": 0.7,
  1590. "z": 1
  1591. },
  1592. "_quat": {
  1593. "__type__": "cc.Quat",
  1594. "x": 0,
  1595. "y": 0,
  1596. "z": 0,
  1597. "w": 1
  1598. },
  1599. "_skewX": 0,
  1600. "_skewY": 0,
  1601. "_zIndex": 0,
  1602. "_is3DNode": false,
  1603. "groupIndex": 0,
  1604. "_rotationX": 0,
  1605. "_rotationY": 0,
  1606. "_id": ""
  1607. },
  1608. {
  1609. "__type__": "cc.Sprite",
  1610. "_name": "",
  1611. "_objFlags": 0,
  1612. "node": {
  1613. "__id__": 43
  1614. },
  1615. "_enabled": true,
  1616. "_srcBlendFactor": 770,
  1617. "_dstBlendFactor": 771,
  1618. "_spriteFrame": {
  1619. "__uuid__": "b0055c50-a0dd-4f1f-ab5e-da7b49ee8c5c"
  1620. },
  1621. "_type": 0,
  1622. "_sizeMode": 0,
  1623. "_fillType": 0,
  1624. "_fillCenter": {
  1625. "__type__": "cc.Vec2",
  1626. "x": 0,
  1627. "y": 0
  1628. },
  1629. "_fillStart": 0,
  1630. "_fillRange": 0,
  1631. "_isTrimmedMode": true,
  1632. "_state": 0,
  1633. "_atlas": null,
  1634. "_id": ""
  1635. },
  1636. {
  1637. "__type__": "cc.PrefabInfo",
  1638. "root": {
  1639. "__id__": 1
  1640. },
  1641. "asset": {
  1642. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1643. },
  1644. "fileId": "f9LUPoaCZJ94SL01Ucveoa",
  1645. "sync": false
  1646. },
  1647. {
  1648. "__type__": "cc.Node",
  1649. "_name": "New Label",
  1650. "_objFlags": 0,
  1651. "_parent": {
  1652. "__id__": 39
  1653. },
  1654. "_children": [],
  1655. "_active": true,
  1656. "_level": 4,
  1657. "_components": [
  1658. {
  1659. "__id__": 47
  1660. }
  1661. ],
  1662. "_prefab": {
  1663. "__id__": 48
  1664. },
  1665. "_opacity": 255,
  1666. "_color": {
  1667. "__type__": "cc.Color",
  1668. "r": 255,
  1669. "g": 255,
  1670. "b": 255,
  1671. "a": 255
  1672. },
  1673. "_contentSize": {
  1674. "__type__": "cc.Size",
  1675. "width": 333.25,
  1676. "height": 100
  1677. },
  1678. "_anchorPoint": {
  1679. "__type__": "cc.Vec2",
  1680. "x": 0.5,
  1681. "y": 0
  1682. },
  1683. "_position": {
  1684. "__type__": "cc.Vec3",
  1685. "x": 0,
  1686. "y": -222,
  1687. "z": 0
  1688. },
  1689. "_scale": {
  1690. "__type__": "cc.Vec3",
  1691. "x": 1,
  1692. "y": 1,
  1693. "z": 1
  1694. },
  1695. "_quat": {
  1696. "__type__": "cc.Quat",
  1697. "x": 0,
  1698. "y": 0,
  1699. "z": 0,
  1700. "w": 1
  1701. },
  1702. "_skewX": 0,
  1703. "_skewY": 0,
  1704. "_zIndex": 0,
  1705. "_is3DNode": false,
  1706. "groupIndex": 0,
  1707. "_rotationX": 0,
  1708. "_rotationY": 0,
  1709. "_id": ""
  1710. },
  1711. {
  1712. "__type__": "cc.Label",
  1713. "_name": "",
  1714. "_objFlags": 0,
  1715. "node": {
  1716. "__id__": 46
  1717. },
  1718. "_enabled": true,
  1719. "_srcBlendFactor": 1,
  1720. "_dstBlendFactor": 771,
  1721. "_useOriginalSize": false,
  1722. "_string": "2.点击“住宅”栏目里的“公路”图标",
  1723. "_N$string": "2.点击“住宅”栏目里的“公路”图标",
  1724. "_fontSize": 35,
  1725. "_lineHeight": 50,
  1726. "_enableWrapText": true,
  1727. "_N$file": null,
  1728. "_isSystemFontUsed": true,
  1729. "_spacingX": 0,
  1730. "_N$horizontalAlign": 0,
  1731. "_N$verticalAlign": 2,
  1732. "_N$fontFamily": "Arial",
  1733. "_N$overflow": 3,
  1734. "_id": ""
  1735. },
  1736. {
  1737. "__type__": "cc.PrefabInfo",
  1738. "root": {
  1739. "__id__": 1
  1740. },
  1741. "asset": {
  1742. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1743. },
  1744. "fileId": "314EOxcq1L2bvU1EnzHDki",
  1745. "sync": false
  1746. },
  1747. {
  1748. "__type__": "cc.Node",
  1749. "_name": "curr",
  1750. "_objFlags": 0,
  1751. "_parent": {
  1752. "__id__": 39
  1753. },
  1754. "_children": [],
  1755. "_active": true,
  1756. "_level": 4,
  1757. "_components": [
  1758. {
  1759. "__id__": 50
  1760. }
  1761. ],
  1762. "_prefab": {
  1763. "__id__": 51
  1764. },
  1765. "_opacity": 255,
  1766. "_color": {
  1767. "__type__": "cc.Color",
  1768. "r": 255,
  1769. "g": 255,
  1770. "b": 255,
  1771. "a": 255
  1772. },
  1773. "_contentSize": {
  1774. "__type__": "cc.Size",
  1775. "width": 104.49,
  1776. "height": 40
  1777. },
  1778. "_anchorPoint": {
  1779. "__type__": "cc.Vec2",
  1780. "x": 0,
  1781. "y": 0
  1782. },
  1783. "_position": {
  1784. "__type__": "cc.Vec3",
  1785. "x": -36,
  1786. "y": -272,
  1787. "z": 0
  1788. },
  1789. "_scale": {
  1790. "__type__": "cc.Vec3",
  1791. "x": 1,
  1792. "y": 1,
  1793. "z": 1
  1794. },
  1795. "_quat": {
  1796. "__type__": "cc.Quat",
  1797. "x": 0,
  1798. "y": 0,
  1799. "z": 0,
  1800. "w": 1
  1801. },
  1802. "_skewX": 0,
  1803. "_skewY": 0,
  1804. "_zIndex": 0,
  1805. "_is3DNode": false,
  1806. "groupIndex": 0,
  1807. "_rotationX": 0,
  1808. "_rotationY": 0,
  1809. "_id": ""
  1810. },
  1811. {
  1812. "__type__": "cc.Label",
  1813. "_name": "",
  1814. "_objFlags": 0,
  1815. "node": {
  1816. "__id__": 49
  1817. },
  1818. "_enabled": true,
  1819. "_srcBlendFactor": 1,
  1820. "_dstBlendFactor": 771,
  1821. "_useOriginalSize": false,
  1822. "_string": "(2/10)",
  1823. "_N$string": "(2/10)",
  1824. "_fontSize": 40,
  1825. "_lineHeight": 40,
  1826. "_enableWrapText": true,
  1827. "_N$file": null,
  1828. "_isSystemFontUsed": true,
  1829. "_spacingX": 0,
  1830. "_N$horizontalAlign": 0,
  1831. "_N$verticalAlign": 0,
  1832. "_N$fontFamily": "Arial",
  1833. "_N$overflow": 0,
  1834. "_id": ""
  1835. },
  1836. {
  1837. "__type__": "cc.PrefabInfo",
  1838. "root": {
  1839. "__id__": 1
  1840. },
  1841. "asset": {
  1842. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1843. },
  1844. "fileId": "c5yTJeA/lNGIuu07fNXVkx",
  1845. "sync": false
  1846. },
  1847. {
  1848. "__type__": "cc.Node",
  1849. "_name": "PinkArrow",
  1850. "_objFlags": 0,
  1851. "_parent": {
  1852. "__id__": 39
  1853. },
  1854. "_children": [],
  1855. "_active": true,
  1856. "_level": 4,
  1857. "_components": [
  1858. {
  1859. "__id__": 53
  1860. },
  1861. {
  1862. "__id__": 54
  1863. }
  1864. ],
  1865. "_prefab": {
  1866. "__id__": 55
  1867. },
  1868. "_opacity": 255,
  1869. "_color": {
  1870. "__type__": "cc.Color",
  1871. "r": 255,
  1872. "g": 255,
  1873. "b": 255,
  1874. "a": 255
  1875. },
  1876. "_contentSize": {
  1877. "__type__": "cc.Size",
  1878. "width": 161,
  1879. "height": 142
  1880. },
  1881. "_anchorPoint": {
  1882. "__type__": "cc.Vec2",
  1883. "x": 0.5,
  1884. "y": 0.5
  1885. },
  1886. "_position": {
  1887. "__type__": "cc.Vec3",
  1888. "x": -12,
  1889. "y": 268,
  1890. "z": 0
  1891. },
  1892. "_scale": {
  1893. "__type__": "cc.Vec3",
  1894. "x": 0.7,
  1895. "y": 0.7,
  1896. "z": 1
  1897. },
  1898. "_quat": {
  1899. "__type__": "cc.Quat",
  1900. "x": 0,
  1901. "y": 0,
  1902. "z": 0.958819734868193,
  1903. "w": 0.28401534470392276
  1904. },
  1905. "_skewX": 0,
  1906. "_skewY": 0,
  1907. "_zIndex": 0,
  1908. "_is3DNode": false,
  1909. "groupIndex": 0,
  1910. "_id": ""
  1911. },
  1912. {
  1913. "__type__": "cc.Sprite",
  1914. "_name": "",
  1915. "_objFlags": 0,
  1916. "node": {
  1917. "__id__": 52
  1918. },
  1919. "_enabled": true,
  1920. "_srcBlendFactor": 770,
  1921. "_dstBlendFactor": 771,
  1922. "_spriteFrame": {
  1923. "__uuid__": "87546a05-dab2-4c2f-8c4a-32863293c4e6"
  1924. },
  1925. "_type": 0,
  1926. "_sizeMode": 1,
  1927. "_fillType": 0,
  1928. "_fillCenter": {
  1929. "__type__": "cc.Vec2",
  1930. "x": 0,
  1931. "y": 0
  1932. },
  1933. "_fillStart": 0,
  1934. "_fillRange": 0,
  1935. "_isTrimmedMode": true,
  1936. "_state": 0,
  1937. "_atlas": null,
  1938. "_id": ""
  1939. },
  1940. {
  1941. "__type__": "cc.Animation",
  1942. "_name": "",
  1943. "_objFlags": 0,
  1944. "node": {
  1945. "__id__": 52
  1946. },
  1947. "_enabled": true,
  1948. "_defaultClip": {
  1949. "__uuid__": "d79e08f2-a3ad-4502-adca-86492929891e"
  1950. },
  1951. "_clips": [
  1952. {
  1953. "__uuid__": "d79e08f2-a3ad-4502-adca-86492929891e"
  1954. }
  1955. ],
  1956. "playOnLoad": true,
  1957. "_id": ""
  1958. },
  1959. {
  1960. "__type__": "cc.PrefabInfo",
  1961. "root": {
  1962. "__id__": 1
  1963. },
  1964. "asset": {
  1965. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1966. },
  1967. "fileId": "e0AbZT8qNFXrPshRgQac2T",
  1968. "sync": false
  1969. },
  1970. {
  1971. "__type__": "cc.PrefabInfo",
  1972. "root": {
  1973. "__id__": 1
  1974. },
  1975. "asset": {
  1976. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  1977. },
  1978. "fileId": "93CmIu+tNBO7bRYAD0rDjr",
  1979. "sync": false
  1980. },
  1981. {
  1982. "__type__": "cc.Node",
  1983. "_name": "item",
  1984. "_objFlags": 0,
  1985. "_parent": {
  1986. "__id__": 20
  1987. },
  1988. "_children": [
  1989. {
  1990. "__id__": 58
  1991. },
  1992. {
  1993. "__id__": 61
  1994. },
  1995. {
  1996. "__id__": 64
  1997. },
  1998. {
  1999. "__id__": 67
  2000. },
  2001. {
  2002. "__id__": 70
  2003. }
  2004. ],
  2005. "_active": true,
  2006. "_level": 3,
  2007. "_components": [],
  2008. "_prefab": {
  2009. "__id__": 74
  2010. },
  2011. "_opacity": 255,
  2012. "_color": {
  2013. "__type__": "cc.Color",
  2014. "r": 255,
  2015. "g": 255,
  2016. "b": 255,
  2017. "a": 255
  2018. },
  2019. "_contentSize": {
  2020. "__type__": "cc.Size",
  2021. "width": 0,
  2022. "height": 0
  2023. },
  2024. "_anchorPoint": {
  2025. "__type__": "cc.Vec2",
  2026. "x": 0.5,
  2027. "y": 0.5
  2028. },
  2029. "_position": {
  2030. "__type__": "cc.Vec3",
  2031. "x": 0,
  2032. "y": 0,
  2033. "z": 0
  2034. },
  2035. "_scale": {
  2036. "__type__": "cc.Vec3",
  2037. "x": 1,
  2038. "y": 1,
  2039. "z": 1
  2040. },
  2041. "_quat": {
  2042. "__type__": "cc.Quat",
  2043. "x": 0,
  2044. "y": 0,
  2045. "z": 0,
  2046. "w": 1
  2047. },
  2048. "_skewX": 0,
  2049. "_skewY": 0,
  2050. "_zIndex": 0,
  2051. "_is3DNode": false,
  2052. "groupIndex": 0,
  2053. "_id": ""
  2054. },
  2055. {
  2056. "__type__": "cc.Node",
  2057. "_name": "White",
  2058. "_objFlags": 0,
  2059. "_parent": {
  2060. "__id__": 57
  2061. },
  2062. "_children": [],
  2063. "_active": true,
  2064. "_level": 4,
  2065. "_components": [
  2066. {
  2067. "__id__": 59
  2068. }
  2069. ],
  2070. "_prefab": {
  2071. "__id__": 60
  2072. },
  2073. "_opacity": 255,
  2074. "_color": {
  2075. "__type__": "cc.Color",
  2076. "r": 255,
  2077. "g": 255,
  2078. "b": 255,
  2079. "a": 255
  2080. },
  2081. "_contentSize": {
  2082. "__type__": "cc.Size",
  2083. "width": 481,
  2084. "height": 853
  2085. },
  2086. "_anchorPoint": {
  2087. "__type__": "cc.Vec2",
  2088. "x": 0.5,
  2089. "y": 0.5
  2090. },
  2091. "_position": {
  2092. "__type__": "cc.Vec3",
  2093. "x": 0,
  2094. "y": 202,
  2095. "z": 0
  2096. },
  2097. "_scale": {
  2098. "__type__": "cc.Vec3",
  2099. "x": 0.75,
  2100. "y": 0.73,
  2101. "z": 1
  2102. },
  2103. "_quat": {
  2104. "__type__": "cc.Quat",
  2105. "x": 0,
  2106. "y": 0,
  2107. "z": 0,
  2108. "w": 1
  2109. },
  2110. "_skewX": 0,
  2111. "_skewY": 0,
  2112. "_zIndex": 0,
  2113. "_is3DNode": false,
  2114. "groupIndex": 0,
  2115. "_id": ""
  2116. },
  2117. {
  2118. "__type__": "cc.Sprite",
  2119. "_name": "",
  2120. "_objFlags": 0,
  2121. "node": {
  2122. "__id__": 58
  2123. },
  2124. "_enabled": true,
  2125. "_srcBlendFactor": 770,
  2126. "_dstBlendFactor": 771,
  2127. "_spriteFrame": {
  2128. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  2129. },
  2130. "_type": 0,
  2131. "_sizeMode": 0,
  2132. "_fillType": 0,
  2133. "_fillCenter": {
  2134. "__type__": "cc.Vec2",
  2135. "x": 0,
  2136. "y": 0
  2137. },
  2138. "_fillStart": 0,
  2139. "_fillRange": 0,
  2140. "_isTrimmedMode": true,
  2141. "_state": 0,
  2142. "_atlas": null,
  2143. "_id": ""
  2144. },
  2145. {
  2146. "__type__": "cc.PrefabInfo",
  2147. "root": {
  2148. "__id__": 1
  2149. },
  2150. "asset": {
  2151. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2152. },
  2153. "fileId": "2aiODBxwRLV4Z4gJXRQvYS",
  2154. "sync": false
  2155. },
  2156. {
  2157. "__type__": "cc.Node",
  2158. "_name": "Sprite1",
  2159. "_objFlags": 0,
  2160. "_parent": {
  2161. "__id__": 57
  2162. },
  2163. "_children": [],
  2164. "_active": true,
  2165. "_level": 4,
  2166. "_components": [
  2167. {
  2168. "__id__": 62
  2169. }
  2170. ],
  2171. "_prefab": {
  2172. "__id__": 63
  2173. },
  2174. "_opacity": 255,
  2175. "_color": {
  2176. "__type__": "cc.Color",
  2177. "r": 255,
  2178. "g": 255,
  2179. "b": 255,
  2180. "a": 255
  2181. },
  2182. "_contentSize": {
  2183. "__type__": "cc.Size",
  2184. "width": 481,
  2185. "height": 853
  2186. },
  2187. "_anchorPoint": {
  2188. "__type__": "cc.Vec2",
  2189. "x": 0.5,
  2190. "y": 0.5
  2191. },
  2192. "_position": {
  2193. "__type__": "cc.Vec3",
  2194. "x": 0,
  2195. "y": 202,
  2196. "z": 0
  2197. },
  2198. "_scale": {
  2199. "__type__": "cc.Vec3",
  2200. "x": 0.7,
  2201. "y": 0.7,
  2202. "z": 1
  2203. },
  2204. "_quat": {
  2205. "__type__": "cc.Quat",
  2206. "x": 0,
  2207. "y": 0,
  2208. "z": 0,
  2209. "w": 1
  2210. },
  2211. "_skewX": 0,
  2212. "_skewY": 0,
  2213. "_zIndex": 0,
  2214. "_is3DNode": false,
  2215. "groupIndex": 0,
  2216. "_rotationX": 0,
  2217. "_rotationY": 0,
  2218. "_id": ""
  2219. },
  2220. {
  2221. "__type__": "cc.Sprite",
  2222. "_name": "",
  2223. "_objFlags": 0,
  2224. "node": {
  2225. "__id__": 61
  2226. },
  2227. "_enabled": true,
  2228. "_srcBlendFactor": 770,
  2229. "_dstBlendFactor": 771,
  2230. "_spriteFrame": {
  2231. "__uuid__": "cc0c8da7-40bf-4df3-81e7-678221e291cb"
  2232. },
  2233. "_type": 0,
  2234. "_sizeMode": 0,
  2235. "_fillType": 0,
  2236. "_fillCenter": {
  2237. "__type__": "cc.Vec2",
  2238. "x": 0,
  2239. "y": 0
  2240. },
  2241. "_fillStart": 0,
  2242. "_fillRange": 0,
  2243. "_isTrimmedMode": true,
  2244. "_state": 0,
  2245. "_atlas": null,
  2246. "_id": ""
  2247. },
  2248. {
  2249. "__type__": "cc.PrefabInfo",
  2250. "root": {
  2251. "__id__": 1
  2252. },
  2253. "asset": {
  2254. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2255. },
  2256. "fileId": "83n/FzFPxEaaewStrZgHjP",
  2257. "sync": false
  2258. },
  2259. {
  2260. "__type__": "cc.Node",
  2261. "_name": "New Label",
  2262. "_objFlags": 0,
  2263. "_parent": {
  2264. "__id__": 57
  2265. },
  2266. "_children": [],
  2267. "_active": true,
  2268. "_level": 4,
  2269. "_components": [
  2270. {
  2271. "__id__": 65
  2272. }
  2273. ],
  2274. "_prefab": {
  2275. "__id__": 66
  2276. },
  2277. "_opacity": 255,
  2278. "_color": {
  2279. "__type__": "cc.Color",
  2280. "r": 255,
  2281. "g": 255,
  2282. "b": 255,
  2283. "a": 255
  2284. },
  2285. "_contentSize": {
  2286. "__type__": "cc.Size",
  2287. "width": 333.25,
  2288. "height": 100
  2289. },
  2290. "_anchorPoint": {
  2291. "__type__": "cc.Vec2",
  2292. "x": 0.5,
  2293. "y": 0
  2294. },
  2295. "_position": {
  2296. "__type__": "cc.Vec3",
  2297. "x": 0,
  2298. "y": -222,
  2299. "z": 0
  2300. },
  2301. "_scale": {
  2302. "__type__": "cc.Vec3",
  2303. "x": 1,
  2304. "y": 1,
  2305. "z": 1
  2306. },
  2307. "_quat": {
  2308. "__type__": "cc.Quat",
  2309. "x": 0,
  2310. "y": 0,
  2311. "z": 0,
  2312. "w": 1
  2313. },
  2314. "_skewX": 0,
  2315. "_skewY": 0,
  2316. "_zIndex": 0,
  2317. "_is3DNode": false,
  2318. "groupIndex": 0,
  2319. "_rotationX": 0,
  2320. "_rotationY": 0,
  2321. "_id": ""
  2322. },
  2323. {
  2324. "__type__": "cc.Label",
  2325. "_name": "",
  2326. "_objFlags": 0,
  2327. "node": {
  2328. "__id__": 64
  2329. },
  2330. "_enabled": true,
  2331. "_srcBlendFactor": 1,
  2332. "_dstBlendFactor": 771,
  2333. "_useOriginalSize": false,
  2334. "_string": "3.将提示框拖至目标点后,点击“√”",
  2335. "_N$string": "3.将提示框拖至目标点后,点击“√”",
  2336. "_fontSize": 35,
  2337. "_lineHeight": 50,
  2338. "_enableWrapText": true,
  2339. "_N$file": null,
  2340. "_isSystemFontUsed": true,
  2341. "_spacingX": 0,
  2342. "_N$horizontalAlign": 0,
  2343. "_N$verticalAlign": 2,
  2344. "_N$fontFamily": "Arial",
  2345. "_N$overflow": 3,
  2346. "_id": ""
  2347. },
  2348. {
  2349. "__type__": "cc.PrefabInfo",
  2350. "root": {
  2351. "__id__": 1
  2352. },
  2353. "asset": {
  2354. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2355. },
  2356. "fileId": "11WhMt/P5GG7NAb0iEcH78",
  2357. "sync": false
  2358. },
  2359. {
  2360. "__type__": "cc.Node",
  2361. "_name": "curr",
  2362. "_objFlags": 0,
  2363. "_parent": {
  2364. "__id__": 57
  2365. },
  2366. "_children": [],
  2367. "_active": true,
  2368. "_level": 4,
  2369. "_components": [
  2370. {
  2371. "__id__": 68
  2372. }
  2373. ],
  2374. "_prefab": {
  2375. "__id__": 69
  2376. },
  2377. "_opacity": 255,
  2378. "_color": {
  2379. "__type__": "cc.Color",
  2380. "r": 255,
  2381. "g": 255,
  2382. "b": 255,
  2383. "a": 255
  2384. },
  2385. "_contentSize": {
  2386. "__type__": "cc.Size",
  2387. "width": 104.49,
  2388. "height": 40
  2389. },
  2390. "_anchorPoint": {
  2391. "__type__": "cc.Vec2",
  2392. "x": 0,
  2393. "y": 0
  2394. },
  2395. "_position": {
  2396. "__type__": "cc.Vec3",
  2397. "x": -36,
  2398. "y": -272,
  2399. "z": 0
  2400. },
  2401. "_scale": {
  2402. "__type__": "cc.Vec3",
  2403. "x": 1,
  2404. "y": 1,
  2405. "z": 1
  2406. },
  2407. "_quat": {
  2408. "__type__": "cc.Quat",
  2409. "x": 0,
  2410. "y": 0,
  2411. "z": 0,
  2412. "w": 1
  2413. },
  2414. "_skewX": 0,
  2415. "_skewY": 0,
  2416. "_zIndex": 0,
  2417. "_is3DNode": false,
  2418. "groupIndex": 0,
  2419. "_rotationX": 0,
  2420. "_rotationY": 0,
  2421. "_id": ""
  2422. },
  2423. {
  2424. "__type__": "cc.Label",
  2425. "_name": "",
  2426. "_objFlags": 0,
  2427. "node": {
  2428. "__id__": 67
  2429. },
  2430. "_enabled": true,
  2431. "_srcBlendFactor": 1,
  2432. "_dstBlendFactor": 771,
  2433. "_useOriginalSize": false,
  2434. "_string": "(3/10)",
  2435. "_N$string": "(3/10)",
  2436. "_fontSize": 40,
  2437. "_lineHeight": 40,
  2438. "_enableWrapText": true,
  2439. "_N$file": null,
  2440. "_isSystemFontUsed": true,
  2441. "_spacingX": 0,
  2442. "_N$horizontalAlign": 0,
  2443. "_N$verticalAlign": 0,
  2444. "_N$fontFamily": "Arial",
  2445. "_N$overflow": 0,
  2446. "_id": ""
  2447. },
  2448. {
  2449. "__type__": "cc.PrefabInfo",
  2450. "root": {
  2451. "__id__": 1
  2452. },
  2453. "asset": {
  2454. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2455. },
  2456. "fileId": "28XsB3Er9F868flq8Bhtw7",
  2457. "sync": false
  2458. },
  2459. {
  2460. "__type__": "cc.Node",
  2461. "_name": "PinkArrow",
  2462. "_objFlags": 0,
  2463. "_parent": {
  2464. "__id__": 57
  2465. },
  2466. "_children": [],
  2467. "_active": true,
  2468. "_level": 4,
  2469. "_components": [
  2470. {
  2471. "__id__": 71
  2472. },
  2473. {
  2474. "__id__": 72
  2475. }
  2476. ],
  2477. "_prefab": {
  2478. "__id__": 73
  2479. },
  2480. "_opacity": 255,
  2481. "_color": {
  2482. "__type__": "cc.Color",
  2483. "r": 255,
  2484. "g": 255,
  2485. "b": 255,
  2486. "a": 255
  2487. },
  2488. "_contentSize": {
  2489. "__type__": "cc.Size",
  2490. "width": 161,
  2491. "height": 142
  2492. },
  2493. "_anchorPoint": {
  2494. "__type__": "cc.Vec2",
  2495. "x": 0.5,
  2496. "y": 0.5
  2497. },
  2498. "_position": {
  2499. "__type__": "cc.Vec3",
  2500. "x": 18,
  2501. "y": 127,
  2502. "z": 0
  2503. },
  2504. "_scale": {
  2505. "__type__": "cc.Vec3",
  2506. "x": 0.7,
  2507. "y": 0.7,
  2508. "z": 1
  2509. },
  2510. "_quat": {
  2511. "__type__": "cc.Quat",
  2512. "x": 0,
  2513. "y": 0,
  2514. "z": 0.958819734868193,
  2515. "w": 0.28401534470392276
  2516. },
  2517. "_skewX": 0,
  2518. "_skewY": 0,
  2519. "_zIndex": 0,
  2520. "_is3DNode": false,
  2521. "groupIndex": 0,
  2522. "_id": ""
  2523. },
  2524. {
  2525. "__type__": "cc.Sprite",
  2526. "_name": "",
  2527. "_objFlags": 0,
  2528. "node": {
  2529. "__id__": 70
  2530. },
  2531. "_enabled": true,
  2532. "_srcBlendFactor": 770,
  2533. "_dstBlendFactor": 771,
  2534. "_spriteFrame": {
  2535. "__uuid__": "87546a05-dab2-4c2f-8c4a-32863293c4e6"
  2536. },
  2537. "_type": 0,
  2538. "_sizeMode": 1,
  2539. "_fillType": 0,
  2540. "_fillCenter": {
  2541. "__type__": "cc.Vec2",
  2542. "x": 0,
  2543. "y": 0
  2544. },
  2545. "_fillStart": 0,
  2546. "_fillRange": 0,
  2547. "_isTrimmedMode": true,
  2548. "_state": 0,
  2549. "_atlas": null,
  2550. "_id": ""
  2551. },
  2552. {
  2553. "__type__": "cc.Animation",
  2554. "_name": "",
  2555. "_objFlags": 0,
  2556. "node": {
  2557. "__id__": 70
  2558. },
  2559. "_enabled": true,
  2560. "_defaultClip": {
  2561. "__uuid__": "10d71710-e806-4870-bb04-0b7d71f15b12"
  2562. },
  2563. "_clips": [
  2564. {
  2565. "__uuid__": "10d71710-e806-4870-bb04-0b7d71f15b12"
  2566. }
  2567. ],
  2568. "playOnLoad": true,
  2569. "_id": ""
  2570. },
  2571. {
  2572. "__type__": "cc.PrefabInfo",
  2573. "root": {
  2574. "__id__": 1
  2575. },
  2576. "asset": {
  2577. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2578. },
  2579. "fileId": "8btoQqKBRLGqY80ewhbD4q",
  2580. "sync": false
  2581. },
  2582. {
  2583. "__type__": "cc.PrefabInfo",
  2584. "root": {
  2585. "__id__": 1
  2586. },
  2587. "asset": {
  2588. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2589. },
  2590. "fileId": "20GaF6vj1J45ZepGK+ql7w",
  2591. "sync": false
  2592. },
  2593. {
  2594. "__type__": "cc.Node",
  2595. "_name": "item",
  2596. "_objFlags": 0,
  2597. "_parent": {
  2598. "__id__": 20
  2599. },
  2600. "_children": [
  2601. {
  2602. "__id__": 76
  2603. },
  2604. {
  2605. "__id__": 79
  2606. },
  2607. {
  2608. "__id__": 82
  2609. },
  2610. {
  2611. "__id__": 85
  2612. }
  2613. ],
  2614. "_active": true,
  2615. "_level": 3,
  2616. "_components": [],
  2617. "_prefab": {
  2618. "__id__": 88
  2619. },
  2620. "_opacity": 255,
  2621. "_color": {
  2622. "__type__": "cc.Color",
  2623. "r": 255,
  2624. "g": 255,
  2625. "b": 255,
  2626. "a": 255
  2627. },
  2628. "_contentSize": {
  2629. "__type__": "cc.Size",
  2630. "width": 0,
  2631. "height": 0
  2632. },
  2633. "_anchorPoint": {
  2634. "__type__": "cc.Vec2",
  2635. "x": 0.5,
  2636. "y": 0.5
  2637. },
  2638. "_position": {
  2639. "__type__": "cc.Vec3",
  2640. "x": 0,
  2641. "y": 0,
  2642. "z": 0
  2643. },
  2644. "_scale": {
  2645. "__type__": "cc.Vec3",
  2646. "x": 1,
  2647. "y": 1,
  2648. "z": 1
  2649. },
  2650. "_quat": {
  2651. "__type__": "cc.Quat",
  2652. "x": 0,
  2653. "y": 0,
  2654. "z": 0,
  2655. "w": 1
  2656. },
  2657. "_skewX": 0,
  2658. "_skewY": 0,
  2659. "_zIndex": 0,
  2660. "_is3DNode": false,
  2661. "groupIndex": 0,
  2662. "_id": ""
  2663. },
  2664. {
  2665. "__type__": "cc.Node",
  2666. "_name": "White",
  2667. "_objFlags": 0,
  2668. "_parent": {
  2669. "__id__": 75
  2670. },
  2671. "_children": [],
  2672. "_active": true,
  2673. "_level": 4,
  2674. "_components": [
  2675. {
  2676. "__id__": 77
  2677. }
  2678. ],
  2679. "_prefab": {
  2680. "__id__": 78
  2681. },
  2682. "_opacity": 255,
  2683. "_color": {
  2684. "__type__": "cc.Color",
  2685. "r": 255,
  2686. "g": 255,
  2687. "b": 255,
  2688. "a": 255
  2689. },
  2690. "_contentSize": {
  2691. "__type__": "cc.Size",
  2692. "width": 481,
  2693. "height": 853
  2694. },
  2695. "_anchorPoint": {
  2696. "__type__": "cc.Vec2",
  2697. "x": 0.5,
  2698. "y": 0.5
  2699. },
  2700. "_position": {
  2701. "__type__": "cc.Vec3",
  2702. "x": 0,
  2703. "y": 202,
  2704. "z": 0
  2705. },
  2706. "_scale": {
  2707. "__type__": "cc.Vec3",
  2708. "x": 0.75,
  2709. "y": 0.73,
  2710. "z": 1
  2711. },
  2712. "_quat": {
  2713. "__type__": "cc.Quat",
  2714. "x": 0,
  2715. "y": 0,
  2716. "z": 0,
  2717. "w": 1
  2718. },
  2719. "_skewX": 0,
  2720. "_skewY": 0,
  2721. "_zIndex": 0,
  2722. "_is3DNode": false,
  2723. "groupIndex": 0,
  2724. "_id": ""
  2725. },
  2726. {
  2727. "__type__": "cc.Sprite",
  2728. "_name": "",
  2729. "_objFlags": 0,
  2730. "node": {
  2731. "__id__": 76
  2732. },
  2733. "_enabled": true,
  2734. "_srcBlendFactor": 770,
  2735. "_dstBlendFactor": 771,
  2736. "_spriteFrame": {
  2737. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  2738. },
  2739. "_type": 0,
  2740. "_sizeMode": 0,
  2741. "_fillType": 0,
  2742. "_fillCenter": {
  2743. "__type__": "cc.Vec2",
  2744. "x": 0,
  2745. "y": 0
  2746. },
  2747. "_fillStart": 0,
  2748. "_fillRange": 0,
  2749. "_isTrimmedMode": true,
  2750. "_state": 0,
  2751. "_atlas": null,
  2752. "_id": ""
  2753. },
  2754. {
  2755. "__type__": "cc.PrefabInfo",
  2756. "root": {
  2757. "__id__": 1
  2758. },
  2759. "asset": {
  2760. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2761. },
  2762. "fileId": "7a/8x/xjJLgIrs6blaK4Ng",
  2763. "sync": false
  2764. },
  2765. {
  2766. "__type__": "cc.Node",
  2767. "_name": "Sprite1",
  2768. "_objFlags": 0,
  2769. "_parent": {
  2770. "__id__": 75
  2771. },
  2772. "_children": [],
  2773. "_active": true,
  2774. "_level": 4,
  2775. "_components": [
  2776. {
  2777. "__id__": 80
  2778. }
  2779. ],
  2780. "_prefab": {
  2781. "__id__": 81
  2782. },
  2783. "_opacity": 255,
  2784. "_color": {
  2785. "__type__": "cc.Color",
  2786. "r": 255,
  2787. "g": 255,
  2788. "b": 255,
  2789. "a": 255
  2790. },
  2791. "_contentSize": {
  2792. "__type__": "cc.Size",
  2793. "width": 481,
  2794. "height": 853
  2795. },
  2796. "_anchorPoint": {
  2797. "__type__": "cc.Vec2",
  2798. "x": 0.5,
  2799. "y": 0.5
  2800. },
  2801. "_position": {
  2802. "__type__": "cc.Vec3",
  2803. "x": 0,
  2804. "y": 202,
  2805. "z": 0
  2806. },
  2807. "_scale": {
  2808. "__type__": "cc.Vec3",
  2809. "x": 0.7,
  2810. "y": 0.7,
  2811. "z": 1
  2812. },
  2813. "_quat": {
  2814. "__type__": "cc.Quat",
  2815. "x": 0,
  2816. "y": 0,
  2817. "z": 0,
  2818. "w": 1
  2819. },
  2820. "_skewX": 0,
  2821. "_skewY": 0,
  2822. "_zIndex": 0,
  2823. "_is3DNode": false,
  2824. "groupIndex": 0,
  2825. "_rotationX": 0,
  2826. "_rotationY": 0,
  2827. "_id": ""
  2828. },
  2829. {
  2830. "__type__": "cc.Sprite",
  2831. "_name": "",
  2832. "_objFlags": 0,
  2833. "node": {
  2834. "__id__": 79
  2835. },
  2836. "_enabled": true,
  2837. "_srcBlendFactor": 770,
  2838. "_dstBlendFactor": 771,
  2839. "_spriteFrame": {
  2840. "__uuid__": "ed09528b-ce5e-4d43-951c-d48bc9e798d6"
  2841. },
  2842. "_type": 0,
  2843. "_sizeMode": 0,
  2844. "_fillType": 0,
  2845. "_fillCenter": {
  2846. "__type__": "cc.Vec2",
  2847. "x": 0,
  2848. "y": 0
  2849. },
  2850. "_fillStart": 0,
  2851. "_fillRange": 0,
  2852. "_isTrimmedMode": true,
  2853. "_state": 0,
  2854. "_atlas": null,
  2855. "_id": ""
  2856. },
  2857. {
  2858. "__type__": "cc.PrefabInfo",
  2859. "root": {
  2860. "__id__": 1
  2861. },
  2862. "asset": {
  2863. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2864. },
  2865. "fileId": "9bhKJzGwJGJ5a8LJP+sD6q",
  2866. "sync": false
  2867. },
  2868. {
  2869. "__type__": "cc.Node",
  2870. "_name": "New Label",
  2871. "_objFlags": 0,
  2872. "_parent": {
  2873. "__id__": 75
  2874. },
  2875. "_children": [],
  2876. "_active": true,
  2877. "_level": 4,
  2878. "_components": [
  2879. {
  2880. "__id__": 83
  2881. }
  2882. ],
  2883. "_prefab": {
  2884. "__id__": 84
  2885. },
  2886. "_opacity": 255,
  2887. "_color": {
  2888. "__type__": "cc.Color",
  2889. "r": 255,
  2890. "g": 255,
  2891. "b": 255,
  2892. "a": 255
  2893. },
  2894. "_contentSize": {
  2895. "__type__": "cc.Size",
  2896. "width": 333.25,
  2897. "height": 100
  2898. },
  2899. "_anchorPoint": {
  2900. "__type__": "cc.Vec2",
  2901. "x": 0.5,
  2902. "y": 0
  2903. },
  2904. "_position": {
  2905. "__type__": "cc.Vec3",
  2906. "x": 0,
  2907. "y": -222,
  2908. "z": 0
  2909. },
  2910. "_scale": {
  2911. "__type__": "cc.Vec3",
  2912. "x": 1,
  2913. "y": 1,
  2914. "z": 1
  2915. },
  2916. "_quat": {
  2917. "__type__": "cc.Quat",
  2918. "x": 0,
  2919. "y": 0,
  2920. "z": 0,
  2921. "w": 1
  2922. },
  2923. "_skewX": 0,
  2924. "_skewY": 0,
  2925. "_zIndex": 0,
  2926. "_is3DNode": false,
  2927. "groupIndex": 0,
  2928. "_rotationX": 0,
  2929. "_rotationY": 0,
  2930. "_id": ""
  2931. },
  2932. {
  2933. "__type__": "cc.Label",
  2934. "_name": "",
  2935. "_objFlags": 0,
  2936. "node": {
  2937. "__id__": 82
  2938. },
  2939. "_enabled": true,
  2940. "_srcBlendFactor": 1,
  2941. "_dstBlendFactor": 771,
  2942. "_useOriginalSize": false,
  2943. "_string": "4.可以看到起始点已经做好了标记",
  2944. "_N$string": "4.可以看到起始点已经做好了标记",
  2945. "_fontSize": 35,
  2946. "_lineHeight": 50,
  2947. "_enableWrapText": true,
  2948. "_N$file": null,
  2949. "_isSystemFontUsed": true,
  2950. "_spacingX": 0,
  2951. "_N$horizontalAlign": 0,
  2952. "_N$verticalAlign": 2,
  2953. "_N$fontFamily": "Arial",
  2954. "_N$overflow": 3,
  2955. "_id": ""
  2956. },
  2957. {
  2958. "__type__": "cc.PrefabInfo",
  2959. "root": {
  2960. "__id__": 1
  2961. },
  2962. "asset": {
  2963. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  2964. },
  2965. "fileId": "85Q25UE+pPa4w0RJTux5CZ",
  2966. "sync": false
  2967. },
  2968. {
  2969. "__type__": "cc.Node",
  2970. "_name": "curr",
  2971. "_objFlags": 0,
  2972. "_parent": {
  2973. "__id__": 75
  2974. },
  2975. "_children": [],
  2976. "_active": true,
  2977. "_level": 4,
  2978. "_components": [
  2979. {
  2980. "__id__": 86
  2981. }
  2982. ],
  2983. "_prefab": {
  2984. "__id__": 87
  2985. },
  2986. "_opacity": 255,
  2987. "_color": {
  2988. "__type__": "cc.Color",
  2989. "r": 255,
  2990. "g": 255,
  2991. "b": 255,
  2992. "a": 255
  2993. },
  2994. "_contentSize": {
  2995. "__type__": "cc.Size",
  2996. "width": 104.49,
  2997. "height": 40
  2998. },
  2999. "_anchorPoint": {
  3000. "__type__": "cc.Vec2",
  3001. "x": 0,
  3002. "y": 0
  3003. },
  3004. "_position": {
  3005. "__type__": "cc.Vec3",
  3006. "x": -36,
  3007. "y": -272,
  3008. "z": 0
  3009. },
  3010. "_scale": {
  3011. "__type__": "cc.Vec3",
  3012. "x": 1,
  3013. "y": 1,
  3014. "z": 1
  3015. },
  3016. "_quat": {
  3017. "__type__": "cc.Quat",
  3018. "x": 0,
  3019. "y": 0,
  3020. "z": 0,
  3021. "w": 1
  3022. },
  3023. "_skewX": 0,
  3024. "_skewY": 0,
  3025. "_zIndex": 0,
  3026. "_is3DNode": false,
  3027. "groupIndex": 0,
  3028. "_rotationX": 0,
  3029. "_rotationY": 0,
  3030. "_id": ""
  3031. },
  3032. {
  3033. "__type__": "cc.Label",
  3034. "_name": "",
  3035. "_objFlags": 0,
  3036. "node": {
  3037. "__id__": 85
  3038. },
  3039. "_enabled": true,
  3040. "_srcBlendFactor": 1,
  3041. "_dstBlendFactor": 771,
  3042. "_useOriginalSize": false,
  3043. "_string": "(4/10)",
  3044. "_N$string": "(4/10)",
  3045. "_fontSize": 40,
  3046. "_lineHeight": 40,
  3047. "_enableWrapText": true,
  3048. "_N$file": null,
  3049. "_isSystemFontUsed": true,
  3050. "_spacingX": 0,
  3051. "_N$horizontalAlign": 0,
  3052. "_N$verticalAlign": 0,
  3053. "_N$fontFamily": "Arial",
  3054. "_N$overflow": 0,
  3055. "_id": ""
  3056. },
  3057. {
  3058. "__type__": "cc.PrefabInfo",
  3059. "root": {
  3060. "__id__": 1
  3061. },
  3062. "asset": {
  3063. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3064. },
  3065. "fileId": "5fr31gZitDjIu121SM8gg0",
  3066. "sync": false
  3067. },
  3068. {
  3069. "__type__": "cc.PrefabInfo",
  3070. "root": {
  3071. "__id__": 1
  3072. },
  3073. "asset": {
  3074. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3075. },
  3076. "fileId": "e2RMWfdNJGuJRvFxUIK0F/",
  3077. "sync": false
  3078. },
  3079. {
  3080. "__type__": "cc.Node",
  3081. "_name": "item",
  3082. "_objFlags": 0,
  3083. "_parent": {
  3084. "__id__": 20
  3085. },
  3086. "_children": [
  3087. {
  3088. "__id__": 90
  3089. },
  3090. {
  3091. "__id__": 93
  3092. },
  3093. {
  3094. "__id__": 96
  3095. },
  3096. {
  3097. "__id__": 99
  3098. },
  3099. {
  3100. "__id__": 102
  3101. }
  3102. ],
  3103. "_active": true,
  3104. "_level": 3,
  3105. "_components": [],
  3106. "_prefab": {
  3107. "__id__": 106
  3108. },
  3109. "_opacity": 255,
  3110. "_color": {
  3111. "__type__": "cc.Color",
  3112. "r": 255,
  3113. "g": 255,
  3114. "b": 255,
  3115. "a": 255
  3116. },
  3117. "_contentSize": {
  3118. "__type__": "cc.Size",
  3119. "width": 0,
  3120. "height": 0
  3121. },
  3122. "_anchorPoint": {
  3123. "__type__": "cc.Vec2",
  3124. "x": 0.5,
  3125. "y": 0.5
  3126. },
  3127. "_position": {
  3128. "__type__": "cc.Vec3",
  3129. "x": 0,
  3130. "y": 0,
  3131. "z": 0
  3132. },
  3133. "_scale": {
  3134. "__type__": "cc.Vec3",
  3135. "x": 1,
  3136. "y": 1,
  3137. "z": 1
  3138. },
  3139. "_quat": {
  3140. "__type__": "cc.Quat",
  3141. "x": 0,
  3142. "y": 0,
  3143. "z": 0,
  3144. "w": 1
  3145. },
  3146. "_skewX": 0,
  3147. "_skewY": 0,
  3148. "_zIndex": 0,
  3149. "_is3DNode": false,
  3150. "groupIndex": 0,
  3151. "_id": ""
  3152. },
  3153. {
  3154. "__type__": "cc.Node",
  3155. "_name": "White",
  3156. "_objFlags": 0,
  3157. "_parent": {
  3158. "__id__": 89
  3159. },
  3160. "_children": [],
  3161. "_active": true,
  3162. "_level": 4,
  3163. "_components": [
  3164. {
  3165. "__id__": 91
  3166. }
  3167. ],
  3168. "_prefab": {
  3169. "__id__": 92
  3170. },
  3171. "_opacity": 255,
  3172. "_color": {
  3173. "__type__": "cc.Color",
  3174. "r": 255,
  3175. "g": 255,
  3176. "b": 255,
  3177. "a": 255
  3178. },
  3179. "_contentSize": {
  3180. "__type__": "cc.Size",
  3181. "width": 481,
  3182. "height": 853
  3183. },
  3184. "_anchorPoint": {
  3185. "__type__": "cc.Vec2",
  3186. "x": 0.5,
  3187. "y": 0.5
  3188. },
  3189. "_position": {
  3190. "__type__": "cc.Vec3",
  3191. "x": 0,
  3192. "y": 202,
  3193. "z": 0
  3194. },
  3195. "_scale": {
  3196. "__type__": "cc.Vec3",
  3197. "x": 0.75,
  3198. "y": 0.73,
  3199. "z": 1
  3200. },
  3201. "_quat": {
  3202. "__type__": "cc.Quat",
  3203. "x": 0,
  3204. "y": 0,
  3205. "z": 0,
  3206. "w": 1
  3207. },
  3208. "_skewX": 0,
  3209. "_skewY": 0,
  3210. "_zIndex": 0,
  3211. "_is3DNode": false,
  3212. "groupIndex": 0,
  3213. "_id": ""
  3214. },
  3215. {
  3216. "__type__": "cc.Sprite",
  3217. "_name": "",
  3218. "_objFlags": 0,
  3219. "node": {
  3220. "__id__": 90
  3221. },
  3222. "_enabled": true,
  3223. "_srcBlendFactor": 770,
  3224. "_dstBlendFactor": 771,
  3225. "_spriteFrame": {
  3226. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  3227. },
  3228. "_type": 0,
  3229. "_sizeMode": 0,
  3230. "_fillType": 0,
  3231. "_fillCenter": {
  3232. "__type__": "cc.Vec2",
  3233. "x": 0,
  3234. "y": 0
  3235. },
  3236. "_fillStart": 0,
  3237. "_fillRange": 0,
  3238. "_isTrimmedMode": true,
  3239. "_state": 0,
  3240. "_atlas": null,
  3241. "_id": ""
  3242. },
  3243. {
  3244. "__type__": "cc.PrefabInfo",
  3245. "root": {
  3246. "__id__": 1
  3247. },
  3248. "asset": {
  3249. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3250. },
  3251. "fileId": "94UyOE8ONHvpsNC3XjTEvv",
  3252. "sync": false
  3253. },
  3254. {
  3255. "__type__": "cc.Node",
  3256. "_name": "Sprite1",
  3257. "_objFlags": 0,
  3258. "_parent": {
  3259. "__id__": 89
  3260. },
  3261. "_children": [],
  3262. "_active": true,
  3263. "_level": 4,
  3264. "_components": [
  3265. {
  3266. "__id__": 94
  3267. }
  3268. ],
  3269. "_prefab": {
  3270. "__id__": 95
  3271. },
  3272. "_opacity": 255,
  3273. "_color": {
  3274. "__type__": "cc.Color",
  3275. "r": 255,
  3276. "g": 255,
  3277. "b": 255,
  3278. "a": 255
  3279. },
  3280. "_contentSize": {
  3281. "__type__": "cc.Size",
  3282. "width": 481,
  3283. "height": 853
  3284. },
  3285. "_anchorPoint": {
  3286. "__type__": "cc.Vec2",
  3287. "x": 0.5,
  3288. "y": 0.5
  3289. },
  3290. "_position": {
  3291. "__type__": "cc.Vec3",
  3292. "x": 0,
  3293. "y": 202,
  3294. "z": 0
  3295. },
  3296. "_scale": {
  3297. "__type__": "cc.Vec3",
  3298. "x": 0.7,
  3299. "y": 0.7,
  3300. "z": 1
  3301. },
  3302. "_quat": {
  3303. "__type__": "cc.Quat",
  3304. "x": 0,
  3305. "y": 0,
  3306. "z": 0,
  3307. "w": 1
  3308. },
  3309. "_skewX": 0,
  3310. "_skewY": 0,
  3311. "_zIndex": 0,
  3312. "_is3DNode": false,
  3313. "groupIndex": 0,
  3314. "_rotationX": 0,
  3315. "_rotationY": 0,
  3316. "_id": ""
  3317. },
  3318. {
  3319. "__type__": "cc.Sprite",
  3320. "_name": "",
  3321. "_objFlags": 0,
  3322. "node": {
  3323. "__id__": 93
  3324. },
  3325. "_enabled": true,
  3326. "_srcBlendFactor": 770,
  3327. "_dstBlendFactor": 771,
  3328. "_spriteFrame": {
  3329. "__uuid__": "0cf5d0b5-8f48-48db-ab6b-83c194ba9f79"
  3330. },
  3331. "_type": 0,
  3332. "_sizeMode": 0,
  3333. "_fillType": 0,
  3334. "_fillCenter": {
  3335. "__type__": "cc.Vec2",
  3336. "x": 0,
  3337. "y": 0
  3338. },
  3339. "_fillStart": 0,
  3340. "_fillRange": 0,
  3341. "_isTrimmedMode": true,
  3342. "_state": 0,
  3343. "_atlas": null,
  3344. "_id": ""
  3345. },
  3346. {
  3347. "__type__": "cc.PrefabInfo",
  3348. "root": {
  3349. "__id__": 1
  3350. },
  3351. "asset": {
  3352. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3353. },
  3354. "fileId": "639Gs5dnpCeZHnnIsz1u3M",
  3355. "sync": false
  3356. },
  3357. {
  3358. "__type__": "cc.Node",
  3359. "_name": "New Label",
  3360. "_objFlags": 0,
  3361. "_parent": {
  3362. "__id__": 89
  3363. },
  3364. "_children": [],
  3365. "_active": true,
  3366. "_level": 4,
  3367. "_components": [
  3368. {
  3369. "__id__": 97
  3370. }
  3371. ],
  3372. "_prefab": {
  3373. "__id__": 98
  3374. },
  3375. "_opacity": 255,
  3376. "_color": {
  3377. "__type__": "cc.Color",
  3378. "r": 255,
  3379. "g": 255,
  3380. "b": 255,
  3381. "a": 255
  3382. },
  3383. "_contentSize": {
  3384. "__type__": "cc.Size",
  3385. "width": 333.25,
  3386. "height": 100
  3387. },
  3388. "_anchorPoint": {
  3389. "__type__": "cc.Vec2",
  3390. "x": 0.5,
  3391. "y": 0
  3392. },
  3393. "_position": {
  3394. "__type__": "cc.Vec3",
  3395. "x": 0,
  3396. "y": -222,
  3397. "z": 0
  3398. },
  3399. "_scale": {
  3400. "__type__": "cc.Vec3",
  3401. "x": 1,
  3402. "y": 1,
  3403. "z": 1
  3404. },
  3405. "_quat": {
  3406. "__type__": "cc.Quat",
  3407. "x": 0,
  3408. "y": 0,
  3409. "z": 0,
  3410. "w": 1
  3411. },
  3412. "_skewX": 0,
  3413. "_skewY": 0,
  3414. "_zIndex": 0,
  3415. "_is3DNode": false,
  3416. "groupIndex": 0,
  3417. "_rotationX": 0,
  3418. "_rotationY": 0,
  3419. "_id": ""
  3420. },
  3421. {
  3422. "__type__": "cc.Label",
  3423. "_name": "",
  3424. "_objFlags": 0,
  3425. "node": {
  3426. "__id__": 96
  3427. },
  3428. "_enabled": true,
  3429. "_srcBlendFactor": 1,
  3430. "_dstBlendFactor": 771,
  3431. "_useOriginalSize": false,
  3432. "_string": "5.将提示框拖动至道路终点,点击“√”",
  3433. "_N$string": "5.将提示框拖动至道路终点,点击“√”",
  3434. "_fontSize": 35,
  3435. "_lineHeight": 50,
  3436. "_enableWrapText": true,
  3437. "_N$file": null,
  3438. "_isSystemFontUsed": true,
  3439. "_spacingX": 0,
  3440. "_N$horizontalAlign": 0,
  3441. "_N$verticalAlign": 2,
  3442. "_N$fontFamily": "Arial",
  3443. "_N$overflow": 3,
  3444. "_id": ""
  3445. },
  3446. {
  3447. "__type__": "cc.PrefabInfo",
  3448. "root": {
  3449. "__id__": 1
  3450. },
  3451. "asset": {
  3452. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3453. },
  3454. "fileId": "eaYvoLwOJOx6BZXSW0A/h+",
  3455. "sync": false
  3456. },
  3457. {
  3458. "__type__": "cc.Node",
  3459. "_name": "curr",
  3460. "_objFlags": 0,
  3461. "_parent": {
  3462. "__id__": 89
  3463. },
  3464. "_children": [],
  3465. "_active": true,
  3466. "_level": 4,
  3467. "_components": [
  3468. {
  3469. "__id__": 100
  3470. }
  3471. ],
  3472. "_prefab": {
  3473. "__id__": 101
  3474. },
  3475. "_opacity": 255,
  3476. "_color": {
  3477. "__type__": "cc.Color",
  3478. "r": 255,
  3479. "g": 255,
  3480. "b": 255,
  3481. "a": 255
  3482. },
  3483. "_contentSize": {
  3484. "__type__": "cc.Size",
  3485. "width": 104.49,
  3486. "height": 40
  3487. },
  3488. "_anchorPoint": {
  3489. "__type__": "cc.Vec2",
  3490. "x": 0,
  3491. "y": 0
  3492. },
  3493. "_position": {
  3494. "__type__": "cc.Vec3",
  3495. "x": -36,
  3496. "y": -272,
  3497. "z": 0
  3498. },
  3499. "_scale": {
  3500. "__type__": "cc.Vec3",
  3501. "x": 1,
  3502. "y": 1,
  3503. "z": 1
  3504. },
  3505. "_quat": {
  3506. "__type__": "cc.Quat",
  3507. "x": 0,
  3508. "y": 0,
  3509. "z": 0,
  3510. "w": 1
  3511. },
  3512. "_skewX": 0,
  3513. "_skewY": 0,
  3514. "_zIndex": 0,
  3515. "_is3DNode": false,
  3516. "groupIndex": 0,
  3517. "_rotationX": 0,
  3518. "_rotationY": 0,
  3519. "_id": ""
  3520. },
  3521. {
  3522. "__type__": "cc.Label",
  3523. "_name": "",
  3524. "_objFlags": 0,
  3525. "node": {
  3526. "__id__": 99
  3527. },
  3528. "_enabled": true,
  3529. "_srcBlendFactor": 1,
  3530. "_dstBlendFactor": 771,
  3531. "_useOriginalSize": false,
  3532. "_string": "(5/10)",
  3533. "_N$string": "(5/10)",
  3534. "_fontSize": 40,
  3535. "_lineHeight": 40,
  3536. "_enableWrapText": true,
  3537. "_N$file": null,
  3538. "_isSystemFontUsed": true,
  3539. "_spacingX": 0,
  3540. "_N$horizontalAlign": 0,
  3541. "_N$verticalAlign": 0,
  3542. "_N$fontFamily": "Arial",
  3543. "_N$overflow": 0,
  3544. "_id": ""
  3545. },
  3546. {
  3547. "__type__": "cc.PrefabInfo",
  3548. "root": {
  3549. "__id__": 1
  3550. },
  3551. "asset": {
  3552. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3553. },
  3554. "fileId": "5cTpJwD89IupegpjjdK+T5",
  3555. "sync": false
  3556. },
  3557. {
  3558. "__type__": "cc.Node",
  3559. "_name": "PinkArrow",
  3560. "_objFlags": 0,
  3561. "_parent": {
  3562. "__id__": 89
  3563. },
  3564. "_children": [],
  3565. "_active": true,
  3566. "_level": 4,
  3567. "_components": [
  3568. {
  3569. "__id__": 103
  3570. },
  3571. {
  3572. "__id__": 104
  3573. }
  3574. ],
  3575. "_prefab": {
  3576. "__id__": 105
  3577. },
  3578. "_opacity": 255,
  3579. "_color": {
  3580. "__type__": "cc.Color",
  3581. "r": 255,
  3582. "g": 255,
  3583. "b": 255,
  3584. "a": 255
  3585. },
  3586. "_contentSize": {
  3587. "__type__": "cc.Size",
  3588. "width": 161,
  3589. "height": 142
  3590. },
  3591. "_anchorPoint": {
  3592. "__type__": "cc.Vec2",
  3593. "x": 0.5,
  3594. "y": 0.5
  3595. },
  3596. "_position": {
  3597. "__type__": "cc.Vec3",
  3598. "x": 159,
  3599. "y": 80,
  3600. "z": 0
  3601. },
  3602. "_scale": {
  3603. "__type__": "cc.Vec3",
  3604. "x": 0.7,
  3605. "y": 0.7,
  3606. "z": 1
  3607. },
  3608. "_quat": {
  3609. "__type__": "cc.Quat",
  3610. "x": 0,
  3611. "y": 0,
  3612. "z": 0.958819734868193,
  3613. "w": 0.28401534470392276
  3614. },
  3615. "_skewX": 0,
  3616. "_skewY": 0,
  3617. "_zIndex": 0,
  3618. "_is3DNode": false,
  3619. "groupIndex": 0,
  3620. "_id": ""
  3621. },
  3622. {
  3623. "__type__": "cc.Sprite",
  3624. "_name": "",
  3625. "_objFlags": 0,
  3626. "node": {
  3627. "__id__": 102
  3628. },
  3629. "_enabled": true,
  3630. "_srcBlendFactor": 770,
  3631. "_dstBlendFactor": 771,
  3632. "_spriteFrame": {
  3633. "__uuid__": "87546a05-dab2-4c2f-8c4a-32863293c4e6"
  3634. },
  3635. "_type": 0,
  3636. "_sizeMode": 1,
  3637. "_fillType": 0,
  3638. "_fillCenter": {
  3639. "__type__": "cc.Vec2",
  3640. "x": 0,
  3641. "y": 0
  3642. },
  3643. "_fillStart": 0,
  3644. "_fillRange": 0,
  3645. "_isTrimmedMode": true,
  3646. "_state": 0,
  3647. "_atlas": null,
  3648. "_id": ""
  3649. },
  3650. {
  3651. "__type__": "cc.Animation",
  3652. "_name": "",
  3653. "_objFlags": 0,
  3654. "node": {
  3655. "__id__": 102
  3656. },
  3657. "_enabled": true,
  3658. "_defaultClip": {
  3659. "__uuid__": "1e6ae532-9c3e-4196-ac85-8021f52687d7"
  3660. },
  3661. "_clips": [
  3662. {
  3663. "__uuid__": "1e6ae532-9c3e-4196-ac85-8021f52687d7"
  3664. }
  3665. ],
  3666. "playOnLoad": true,
  3667. "_id": ""
  3668. },
  3669. {
  3670. "__type__": "cc.PrefabInfo",
  3671. "root": {
  3672. "__id__": 1
  3673. },
  3674. "asset": {
  3675. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3676. },
  3677. "fileId": "217rHma6BIvZTvb+Roqge8",
  3678. "sync": false
  3679. },
  3680. {
  3681. "__type__": "cc.PrefabInfo",
  3682. "root": {
  3683. "__id__": 1
  3684. },
  3685. "asset": {
  3686. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3687. },
  3688. "fileId": "ac/w227qhF8KB7DMeEhWve",
  3689. "sync": false
  3690. },
  3691. {
  3692. "__type__": "cc.Node",
  3693. "_name": "item",
  3694. "_objFlags": 0,
  3695. "_parent": {
  3696. "__id__": 20
  3697. },
  3698. "_children": [
  3699. {
  3700. "__id__": 108
  3701. },
  3702. {
  3703. "__id__": 111
  3704. },
  3705. {
  3706. "__id__": 114
  3707. },
  3708. {
  3709. "__id__": 117
  3710. }
  3711. ],
  3712. "_active": true,
  3713. "_level": 3,
  3714. "_components": [],
  3715. "_prefab": {
  3716. "__id__": 120
  3717. },
  3718. "_opacity": 255,
  3719. "_color": {
  3720. "__type__": "cc.Color",
  3721. "r": 255,
  3722. "g": 255,
  3723. "b": 255,
  3724. "a": 255
  3725. },
  3726. "_contentSize": {
  3727. "__type__": "cc.Size",
  3728. "width": 0,
  3729. "height": 0
  3730. },
  3731. "_anchorPoint": {
  3732. "__type__": "cc.Vec2",
  3733. "x": 0.5,
  3734. "y": 0.5
  3735. },
  3736. "_position": {
  3737. "__type__": "cc.Vec3",
  3738. "x": 0,
  3739. "y": 0,
  3740. "z": 0
  3741. },
  3742. "_scale": {
  3743. "__type__": "cc.Vec3",
  3744. "x": 1,
  3745. "y": 1,
  3746. "z": 1
  3747. },
  3748. "_quat": {
  3749. "__type__": "cc.Quat",
  3750. "x": 0,
  3751. "y": 0,
  3752. "z": 0,
  3753. "w": 1
  3754. },
  3755. "_skewX": 0,
  3756. "_skewY": 0,
  3757. "_zIndex": 0,
  3758. "_is3DNode": false,
  3759. "groupIndex": 0,
  3760. "_id": ""
  3761. },
  3762. {
  3763. "__type__": "cc.Node",
  3764. "_name": "White",
  3765. "_objFlags": 0,
  3766. "_parent": {
  3767. "__id__": 107
  3768. },
  3769. "_children": [],
  3770. "_active": true,
  3771. "_level": 4,
  3772. "_components": [
  3773. {
  3774. "__id__": 109
  3775. }
  3776. ],
  3777. "_prefab": {
  3778. "__id__": 110
  3779. },
  3780. "_opacity": 255,
  3781. "_color": {
  3782. "__type__": "cc.Color",
  3783. "r": 255,
  3784. "g": 255,
  3785. "b": 255,
  3786. "a": 255
  3787. },
  3788. "_contentSize": {
  3789. "__type__": "cc.Size",
  3790. "width": 481,
  3791. "height": 853
  3792. },
  3793. "_anchorPoint": {
  3794. "__type__": "cc.Vec2",
  3795. "x": 0.5,
  3796. "y": 0.5
  3797. },
  3798. "_position": {
  3799. "__type__": "cc.Vec3",
  3800. "x": 0,
  3801. "y": 202,
  3802. "z": 0
  3803. },
  3804. "_scale": {
  3805. "__type__": "cc.Vec3",
  3806. "x": 0.75,
  3807. "y": 0.73,
  3808. "z": 1
  3809. },
  3810. "_quat": {
  3811. "__type__": "cc.Quat",
  3812. "x": 0,
  3813. "y": 0,
  3814. "z": 0,
  3815. "w": 1
  3816. },
  3817. "_skewX": 0,
  3818. "_skewY": 0,
  3819. "_zIndex": 0,
  3820. "_is3DNode": false,
  3821. "groupIndex": 0,
  3822. "_id": ""
  3823. },
  3824. {
  3825. "__type__": "cc.Sprite",
  3826. "_name": "",
  3827. "_objFlags": 0,
  3828. "node": {
  3829. "__id__": 108
  3830. },
  3831. "_enabled": true,
  3832. "_srcBlendFactor": 770,
  3833. "_dstBlendFactor": 771,
  3834. "_spriteFrame": {
  3835. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  3836. },
  3837. "_type": 0,
  3838. "_sizeMode": 0,
  3839. "_fillType": 0,
  3840. "_fillCenter": {
  3841. "__type__": "cc.Vec2",
  3842. "x": 0,
  3843. "y": 0
  3844. },
  3845. "_fillStart": 0,
  3846. "_fillRange": 0,
  3847. "_isTrimmedMode": true,
  3848. "_state": 0,
  3849. "_atlas": null,
  3850. "_id": ""
  3851. },
  3852. {
  3853. "__type__": "cc.PrefabInfo",
  3854. "root": {
  3855. "__id__": 1
  3856. },
  3857. "asset": {
  3858. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3859. },
  3860. "fileId": "a7xZgHBcZO9bXrePWGADTa",
  3861. "sync": false
  3862. },
  3863. {
  3864. "__type__": "cc.Node",
  3865. "_name": "Sprite1",
  3866. "_objFlags": 0,
  3867. "_parent": {
  3868. "__id__": 107
  3869. },
  3870. "_children": [],
  3871. "_active": true,
  3872. "_level": 4,
  3873. "_components": [
  3874. {
  3875. "__id__": 112
  3876. }
  3877. ],
  3878. "_prefab": {
  3879. "__id__": 113
  3880. },
  3881. "_opacity": 255,
  3882. "_color": {
  3883. "__type__": "cc.Color",
  3884. "r": 255,
  3885. "g": 255,
  3886. "b": 255,
  3887. "a": 255
  3888. },
  3889. "_contentSize": {
  3890. "__type__": "cc.Size",
  3891. "width": 481,
  3892. "height": 853
  3893. },
  3894. "_anchorPoint": {
  3895. "__type__": "cc.Vec2",
  3896. "x": 0.5,
  3897. "y": 0.5
  3898. },
  3899. "_position": {
  3900. "__type__": "cc.Vec3",
  3901. "x": 0,
  3902. "y": 202,
  3903. "z": 0
  3904. },
  3905. "_scale": {
  3906. "__type__": "cc.Vec3",
  3907. "x": 0.7,
  3908. "y": 0.7,
  3909. "z": 1
  3910. },
  3911. "_quat": {
  3912. "__type__": "cc.Quat",
  3913. "x": 0,
  3914. "y": 0,
  3915. "z": 0,
  3916. "w": 1
  3917. },
  3918. "_skewX": 0,
  3919. "_skewY": 0,
  3920. "_zIndex": 0,
  3921. "_is3DNode": false,
  3922. "groupIndex": 0,
  3923. "_rotationX": 0,
  3924. "_rotationY": 0,
  3925. "_id": ""
  3926. },
  3927. {
  3928. "__type__": "cc.Sprite",
  3929. "_name": "",
  3930. "_objFlags": 0,
  3931. "node": {
  3932. "__id__": 111
  3933. },
  3934. "_enabled": true,
  3935. "_srcBlendFactor": 770,
  3936. "_dstBlendFactor": 771,
  3937. "_spriteFrame": {
  3938. "__uuid__": "93775c7a-6bfc-4886-bf0e-5a0f822ba9f0"
  3939. },
  3940. "_type": 0,
  3941. "_sizeMode": 0,
  3942. "_fillType": 0,
  3943. "_fillCenter": {
  3944. "__type__": "cc.Vec2",
  3945. "x": 0,
  3946. "y": 0
  3947. },
  3948. "_fillStart": 0,
  3949. "_fillRange": 0,
  3950. "_isTrimmedMode": true,
  3951. "_state": 0,
  3952. "_atlas": null,
  3953. "_id": ""
  3954. },
  3955. {
  3956. "__type__": "cc.PrefabInfo",
  3957. "root": {
  3958. "__id__": 1
  3959. },
  3960. "asset": {
  3961. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  3962. },
  3963. "fileId": "37c3DD37FGfLbC78RxhMI/",
  3964. "sync": false
  3965. },
  3966. {
  3967. "__type__": "cc.Node",
  3968. "_name": "New Label",
  3969. "_objFlags": 0,
  3970. "_parent": {
  3971. "__id__": 107
  3972. },
  3973. "_children": [],
  3974. "_active": true,
  3975. "_level": 4,
  3976. "_components": [
  3977. {
  3978. "__id__": 115
  3979. }
  3980. ],
  3981. "_prefab": {
  3982. "__id__": 116
  3983. },
  3984. "_opacity": 255,
  3985. "_color": {
  3986. "__type__": "cc.Color",
  3987. "r": 255,
  3988. "g": 255,
  3989. "b": 255,
  3990. "a": 255
  3991. },
  3992. "_contentSize": {
  3993. "__type__": "cc.Size",
  3994. "width": 333.25,
  3995. "height": 100
  3996. },
  3997. "_anchorPoint": {
  3998. "__type__": "cc.Vec2",
  3999. "x": 0.5,
  4000. "y": 0
  4001. },
  4002. "_position": {
  4003. "__type__": "cc.Vec3",
  4004. "x": 0,
  4005. "y": -222,
  4006. "z": 0
  4007. },
  4008. "_scale": {
  4009. "__type__": "cc.Vec3",
  4010. "x": 1,
  4011. "y": 1,
  4012. "z": 1
  4013. },
  4014. "_quat": {
  4015. "__type__": "cc.Quat",
  4016. "x": 0,
  4017. "y": 0,
  4018. "z": 0,
  4019. "w": 1
  4020. },
  4021. "_skewX": 0,
  4022. "_skewY": 0,
  4023. "_zIndex": 0,
  4024. "_is3DNode": false,
  4025. "groupIndex": 0,
  4026. "_rotationX": 0,
  4027. "_rotationY": 0,
  4028. "_id": ""
  4029. },
  4030. {
  4031. "__type__": "cc.Label",
  4032. "_name": "",
  4033. "_objFlags": 0,
  4034. "node": {
  4035. "__id__": 114
  4036. },
  4037. "_enabled": true,
  4038. "_srcBlendFactor": 1,
  4039. "_dstBlendFactor": 771,
  4040. "_useOriginalSize": false,
  4041. "_string": "6.可以看到,我们道路已经创建成功啦!",
  4042. "_N$string": "6.可以看到,我们道路已经创建成功啦!",
  4043. "_fontSize": 35,
  4044. "_lineHeight": 50,
  4045. "_enableWrapText": true,
  4046. "_N$file": null,
  4047. "_isSystemFontUsed": true,
  4048. "_spacingX": 0,
  4049. "_N$horizontalAlign": 0,
  4050. "_N$verticalAlign": 2,
  4051. "_N$fontFamily": "Arial",
  4052. "_N$overflow": 3,
  4053. "_id": ""
  4054. },
  4055. {
  4056. "__type__": "cc.PrefabInfo",
  4057. "root": {
  4058. "__id__": 1
  4059. },
  4060. "asset": {
  4061. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4062. },
  4063. "fileId": "55TPcoHLtExLaQP4ID7OtC",
  4064. "sync": false
  4065. },
  4066. {
  4067. "__type__": "cc.Node",
  4068. "_name": "curr",
  4069. "_objFlags": 0,
  4070. "_parent": {
  4071. "__id__": 107
  4072. },
  4073. "_children": [],
  4074. "_active": true,
  4075. "_level": 4,
  4076. "_components": [
  4077. {
  4078. "__id__": 118
  4079. }
  4080. ],
  4081. "_prefab": {
  4082. "__id__": 119
  4083. },
  4084. "_opacity": 255,
  4085. "_color": {
  4086. "__type__": "cc.Color",
  4087. "r": 255,
  4088. "g": 255,
  4089. "b": 255,
  4090. "a": 255
  4091. },
  4092. "_contentSize": {
  4093. "__type__": "cc.Size",
  4094. "width": 104.49,
  4095. "height": 40
  4096. },
  4097. "_anchorPoint": {
  4098. "__type__": "cc.Vec2",
  4099. "x": 0,
  4100. "y": 0
  4101. },
  4102. "_position": {
  4103. "__type__": "cc.Vec3",
  4104. "x": -36,
  4105. "y": -272,
  4106. "z": 0
  4107. },
  4108. "_scale": {
  4109. "__type__": "cc.Vec3",
  4110. "x": 1,
  4111. "y": 1,
  4112. "z": 1
  4113. },
  4114. "_quat": {
  4115. "__type__": "cc.Quat",
  4116. "x": 0,
  4117. "y": 0,
  4118. "z": 0,
  4119. "w": 1
  4120. },
  4121. "_skewX": 0,
  4122. "_skewY": 0,
  4123. "_zIndex": 0,
  4124. "_is3DNode": false,
  4125. "groupIndex": 0,
  4126. "_rotationX": 0,
  4127. "_rotationY": 0,
  4128. "_id": ""
  4129. },
  4130. {
  4131. "__type__": "cc.Label",
  4132. "_name": "",
  4133. "_objFlags": 0,
  4134. "node": {
  4135. "__id__": 117
  4136. },
  4137. "_enabled": true,
  4138. "_srcBlendFactor": 1,
  4139. "_dstBlendFactor": 771,
  4140. "_useOriginalSize": false,
  4141. "_string": "(6/10)",
  4142. "_N$string": "(6/10)",
  4143. "_fontSize": 40,
  4144. "_lineHeight": 40,
  4145. "_enableWrapText": true,
  4146. "_N$file": null,
  4147. "_isSystemFontUsed": true,
  4148. "_spacingX": 0,
  4149. "_N$horizontalAlign": 0,
  4150. "_N$verticalAlign": 0,
  4151. "_N$fontFamily": "Arial",
  4152. "_N$overflow": 0,
  4153. "_id": ""
  4154. },
  4155. {
  4156. "__type__": "cc.PrefabInfo",
  4157. "root": {
  4158. "__id__": 1
  4159. },
  4160. "asset": {
  4161. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4162. },
  4163. "fileId": "9eHiCYno5Czp7ei/fIkx0G",
  4164. "sync": false
  4165. },
  4166. {
  4167. "__type__": "cc.PrefabInfo",
  4168. "root": {
  4169. "__id__": 1
  4170. },
  4171. "asset": {
  4172. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4173. },
  4174. "fileId": "f8UL3RD8FJXp0f4uvFmCSQ",
  4175. "sync": false
  4176. },
  4177. {
  4178. "__type__": "cc.Node",
  4179. "_name": "item",
  4180. "_objFlags": 0,
  4181. "_parent": {
  4182. "__id__": 20
  4183. },
  4184. "_children": [
  4185. {
  4186. "__id__": 122
  4187. },
  4188. {
  4189. "__id__": 125
  4190. },
  4191. {
  4192. "__id__": 128
  4193. },
  4194. {
  4195. "__id__": 131
  4196. },
  4197. {
  4198. "__id__": 134
  4199. }
  4200. ],
  4201. "_active": true,
  4202. "_level": 3,
  4203. "_components": [],
  4204. "_prefab": {
  4205. "__id__": 138
  4206. },
  4207. "_opacity": 255,
  4208. "_color": {
  4209. "__type__": "cc.Color",
  4210. "r": 255,
  4211. "g": 255,
  4212. "b": 255,
  4213. "a": 255
  4214. },
  4215. "_contentSize": {
  4216. "__type__": "cc.Size",
  4217. "width": 0,
  4218. "height": 0
  4219. },
  4220. "_anchorPoint": {
  4221. "__type__": "cc.Vec2",
  4222. "x": 0.5,
  4223. "y": 0.5
  4224. },
  4225. "_position": {
  4226. "__type__": "cc.Vec3",
  4227. "x": 0,
  4228. "y": 0,
  4229. "z": 0
  4230. },
  4231. "_scale": {
  4232. "__type__": "cc.Vec3",
  4233. "x": 1,
  4234. "y": 1,
  4235. "z": 1
  4236. },
  4237. "_quat": {
  4238. "__type__": "cc.Quat",
  4239. "x": 0,
  4240. "y": 0,
  4241. "z": 0,
  4242. "w": 1
  4243. },
  4244. "_skewX": 0,
  4245. "_skewY": 0,
  4246. "_zIndex": 0,
  4247. "_is3DNode": false,
  4248. "groupIndex": 0,
  4249. "_id": ""
  4250. },
  4251. {
  4252. "__type__": "cc.Node",
  4253. "_name": "White",
  4254. "_objFlags": 0,
  4255. "_parent": {
  4256. "__id__": 121
  4257. },
  4258. "_children": [],
  4259. "_active": true,
  4260. "_level": 4,
  4261. "_components": [
  4262. {
  4263. "__id__": 123
  4264. }
  4265. ],
  4266. "_prefab": {
  4267. "__id__": 124
  4268. },
  4269. "_opacity": 255,
  4270. "_color": {
  4271. "__type__": "cc.Color",
  4272. "r": 255,
  4273. "g": 255,
  4274. "b": 255,
  4275. "a": 255
  4276. },
  4277. "_contentSize": {
  4278. "__type__": "cc.Size",
  4279. "width": 481,
  4280. "height": 853
  4281. },
  4282. "_anchorPoint": {
  4283. "__type__": "cc.Vec2",
  4284. "x": 0.5,
  4285. "y": 0.5
  4286. },
  4287. "_position": {
  4288. "__type__": "cc.Vec3",
  4289. "x": 0,
  4290. "y": 202,
  4291. "z": 0
  4292. },
  4293. "_scale": {
  4294. "__type__": "cc.Vec3",
  4295. "x": 0.75,
  4296. "y": 0.73,
  4297. "z": 1
  4298. },
  4299. "_quat": {
  4300. "__type__": "cc.Quat",
  4301. "x": 0,
  4302. "y": 0,
  4303. "z": 0,
  4304. "w": 1
  4305. },
  4306. "_skewX": 0,
  4307. "_skewY": 0,
  4308. "_zIndex": 0,
  4309. "_is3DNode": false,
  4310. "groupIndex": 0,
  4311. "_id": ""
  4312. },
  4313. {
  4314. "__type__": "cc.Sprite",
  4315. "_name": "",
  4316. "_objFlags": 0,
  4317. "node": {
  4318. "__id__": 122
  4319. },
  4320. "_enabled": true,
  4321. "_srcBlendFactor": 770,
  4322. "_dstBlendFactor": 771,
  4323. "_spriteFrame": {
  4324. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  4325. },
  4326. "_type": 0,
  4327. "_sizeMode": 0,
  4328. "_fillType": 0,
  4329. "_fillCenter": {
  4330. "__type__": "cc.Vec2",
  4331. "x": 0,
  4332. "y": 0
  4333. },
  4334. "_fillStart": 0,
  4335. "_fillRange": 0,
  4336. "_isTrimmedMode": true,
  4337. "_state": 0,
  4338. "_atlas": null,
  4339. "_id": ""
  4340. },
  4341. {
  4342. "__type__": "cc.PrefabInfo",
  4343. "root": {
  4344. "__id__": 1
  4345. },
  4346. "asset": {
  4347. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4348. },
  4349. "fileId": "86hn43rBlBcZza9NIVwNua",
  4350. "sync": false
  4351. },
  4352. {
  4353. "__type__": "cc.Node",
  4354. "_name": "Sprite1",
  4355. "_objFlags": 0,
  4356. "_parent": {
  4357. "__id__": 121
  4358. },
  4359. "_children": [],
  4360. "_active": true,
  4361. "_level": 4,
  4362. "_components": [
  4363. {
  4364. "__id__": 126
  4365. }
  4366. ],
  4367. "_prefab": {
  4368. "__id__": 127
  4369. },
  4370. "_opacity": 255,
  4371. "_color": {
  4372. "__type__": "cc.Color",
  4373. "r": 255,
  4374. "g": 255,
  4375. "b": 255,
  4376. "a": 255
  4377. },
  4378. "_contentSize": {
  4379. "__type__": "cc.Size",
  4380. "width": 481,
  4381. "height": 853
  4382. },
  4383. "_anchorPoint": {
  4384. "__type__": "cc.Vec2",
  4385. "x": 0.5,
  4386. "y": 0.5
  4387. },
  4388. "_position": {
  4389. "__type__": "cc.Vec3",
  4390. "x": 0,
  4391. "y": 202,
  4392. "z": 0
  4393. },
  4394. "_scale": {
  4395. "__type__": "cc.Vec3",
  4396. "x": 0.7,
  4397. "y": 0.7,
  4398. "z": 1
  4399. },
  4400. "_quat": {
  4401. "__type__": "cc.Quat",
  4402. "x": 0,
  4403. "y": 0,
  4404. "z": 0,
  4405. "w": 1
  4406. },
  4407. "_skewX": 0,
  4408. "_skewY": 0,
  4409. "_zIndex": 0,
  4410. "_is3DNode": false,
  4411. "groupIndex": 0,
  4412. "_rotationX": 0,
  4413. "_rotationY": 0,
  4414. "_id": ""
  4415. },
  4416. {
  4417. "__type__": "cc.Sprite",
  4418. "_name": "",
  4419. "_objFlags": 0,
  4420. "node": {
  4421. "__id__": 125
  4422. },
  4423. "_enabled": true,
  4424. "_srcBlendFactor": 770,
  4425. "_dstBlendFactor": 771,
  4426. "_spriteFrame": {
  4427. "__uuid__": "b0055c50-a0dd-4f1f-ab5e-da7b49ee8c5c"
  4428. },
  4429. "_type": 0,
  4430. "_sizeMode": 0,
  4431. "_fillType": 0,
  4432. "_fillCenter": {
  4433. "__type__": "cc.Vec2",
  4434. "x": 0,
  4435. "y": 0
  4436. },
  4437. "_fillStart": 0,
  4438. "_fillRange": 0,
  4439. "_isTrimmedMode": true,
  4440. "_state": 0,
  4441. "_atlas": null,
  4442. "_id": ""
  4443. },
  4444. {
  4445. "__type__": "cc.PrefabInfo",
  4446. "root": {
  4447. "__id__": 1
  4448. },
  4449. "asset": {
  4450. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4451. },
  4452. "fileId": "d55Kuh2YNNJ5hQr1DMEV6w",
  4453. "sync": false
  4454. },
  4455. {
  4456. "__type__": "cc.Node",
  4457. "_name": "New Label",
  4458. "_objFlags": 0,
  4459. "_parent": {
  4460. "__id__": 121
  4461. },
  4462. "_children": [],
  4463. "_active": true,
  4464. "_level": 4,
  4465. "_components": [
  4466. {
  4467. "__id__": 129
  4468. }
  4469. ],
  4470. "_prefab": {
  4471. "__id__": 130
  4472. },
  4473. "_opacity": 255,
  4474. "_color": {
  4475. "__type__": "cc.Color",
  4476. "r": 255,
  4477. "g": 255,
  4478. "b": 255,
  4479. "a": 255
  4480. },
  4481. "_contentSize": {
  4482. "__type__": "cc.Size",
  4483. "width": 333.25,
  4484. "height": 100
  4485. },
  4486. "_anchorPoint": {
  4487. "__type__": "cc.Vec2",
  4488. "x": 0.5,
  4489. "y": 0
  4490. },
  4491. "_position": {
  4492. "__type__": "cc.Vec3",
  4493. "x": 0,
  4494. "y": -222,
  4495. "z": 0
  4496. },
  4497. "_scale": {
  4498. "__type__": "cc.Vec3",
  4499. "x": 1,
  4500. "y": 1,
  4501. "z": 1
  4502. },
  4503. "_quat": {
  4504. "__type__": "cc.Quat",
  4505. "x": 0,
  4506. "y": 0,
  4507. "z": 0,
  4508. "w": 1
  4509. },
  4510. "_skewX": 0,
  4511. "_skewY": 0,
  4512. "_zIndex": 0,
  4513. "_is3DNode": false,
  4514. "groupIndex": 0,
  4515. "_rotationX": 0,
  4516. "_rotationY": 0,
  4517. "_id": ""
  4518. },
  4519. {
  4520. "__type__": "cc.Label",
  4521. "_name": "",
  4522. "_objFlags": 0,
  4523. "node": {
  4524. "__id__": 128
  4525. },
  4526. "_enabled": true,
  4527. "_srcBlendFactor": 1,
  4528. "_dstBlendFactor": 771,
  4529. "_useOriginalSize": false,
  4530. "_string": "7.拆除道路,需要点击“建造”菜单的“路铲”",
  4531. "_N$string": "7.拆除道路,需要点击“建造”菜单的“路铲”",
  4532. "_fontSize": 35,
  4533. "_lineHeight": 50,
  4534. "_enableWrapText": true,
  4535. "_N$file": null,
  4536. "_isSystemFontUsed": true,
  4537. "_spacingX": 0,
  4538. "_N$horizontalAlign": 0,
  4539. "_N$verticalAlign": 2,
  4540. "_N$fontFamily": "Arial",
  4541. "_N$overflow": 3,
  4542. "_id": ""
  4543. },
  4544. {
  4545. "__type__": "cc.PrefabInfo",
  4546. "root": {
  4547. "__id__": 1
  4548. },
  4549. "asset": {
  4550. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4551. },
  4552. "fileId": "1fEWfN5RZNLo0U8AV+4wl/",
  4553. "sync": false
  4554. },
  4555. {
  4556. "__type__": "cc.Node",
  4557. "_name": "curr",
  4558. "_objFlags": 0,
  4559. "_parent": {
  4560. "__id__": 121
  4561. },
  4562. "_children": [],
  4563. "_active": true,
  4564. "_level": 4,
  4565. "_components": [
  4566. {
  4567. "__id__": 132
  4568. }
  4569. ],
  4570. "_prefab": {
  4571. "__id__": 133
  4572. },
  4573. "_opacity": 255,
  4574. "_color": {
  4575. "__type__": "cc.Color",
  4576. "r": 255,
  4577. "g": 255,
  4578. "b": 255,
  4579. "a": 255
  4580. },
  4581. "_contentSize": {
  4582. "__type__": "cc.Size",
  4583. "width": 104.49,
  4584. "height": 40
  4585. },
  4586. "_anchorPoint": {
  4587. "__type__": "cc.Vec2",
  4588. "x": 0,
  4589. "y": 0
  4590. },
  4591. "_position": {
  4592. "__type__": "cc.Vec3",
  4593. "x": -36,
  4594. "y": -272,
  4595. "z": 0
  4596. },
  4597. "_scale": {
  4598. "__type__": "cc.Vec3",
  4599. "x": 1,
  4600. "y": 1,
  4601. "z": 1
  4602. },
  4603. "_quat": {
  4604. "__type__": "cc.Quat",
  4605. "x": 0,
  4606. "y": 0,
  4607. "z": 0,
  4608. "w": 1
  4609. },
  4610. "_skewX": 0,
  4611. "_skewY": 0,
  4612. "_zIndex": 0,
  4613. "_is3DNode": false,
  4614. "groupIndex": 0,
  4615. "_rotationX": 0,
  4616. "_rotationY": 0,
  4617. "_id": ""
  4618. },
  4619. {
  4620. "__type__": "cc.Label",
  4621. "_name": "",
  4622. "_objFlags": 0,
  4623. "node": {
  4624. "__id__": 131
  4625. },
  4626. "_enabled": true,
  4627. "_srcBlendFactor": 1,
  4628. "_dstBlendFactor": 771,
  4629. "_useOriginalSize": false,
  4630. "_string": "(7/10)",
  4631. "_N$string": "(7/10)",
  4632. "_fontSize": 40,
  4633. "_lineHeight": 40,
  4634. "_enableWrapText": true,
  4635. "_N$file": null,
  4636. "_isSystemFontUsed": true,
  4637. "_spacingX": 0,
  4638. "_N$horizontalAlign": 0,
  4639. "_N$verticalAlign": 0,
  4640. "_N$fontFamily": "Arial",
  4641. "_N$overflow": 0,
  4642. "_id": ""
  4643. },
  4644. {
  4645. "__type__": "cc.PrefabInfo",
  4646. "root": {
  4647. "__id__": 1
  4648. },
  4649. "asset": {
  4650. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4651. },
  4652. "fileId": "07o8wcQ1pPobPVk0Za4kEs",
  4653. "sync": false
  4654. },
  4655. {
  4656. "__type__": "cc.Node",
  4657. "_name": "PinkArrow",
  4658. "_objFlags": 0,
  4659. "_parent": {
  4660. "__id__": 121
  4661. },
  4662. "_children": [],
  4663. "_active": true,
  4664. "_level": 4,
  4665. "_components": [
  4666. {
  4667. "__id__": 135
  4668. },
  4669. {
  4670. "__id__": 136
  4671. }
  4672. ],
  4673. "_prefab": {
  4674. "__id__": 137
  4675. },
  4676. "_opacity": 255,
  4677. "_color": {
  4678. "__type__": "cc.Color",
  4679. "r": 255,
  4680. "g": 255,
  4681. "b": 255,
  4682. "a": 255
  4683. },
  4684. "_contentSize": {
  4685. "__type__": "cc.Size",
  4686. "width": 161,
  4687. "height": 142
  4688. },
  4689. "_anchorPoint": {
  4690. "__type__": "cc.Vec2",
  4691. "x": 0.5,
  4692. "y": 0.5
  4693. },
  4694. "_position": {
  4695. "__type__": "cc.Vec3",
  4696. "x": 63,
  4697. "y": 271,
  4698. "z": 0
  4699. },
  4700. "_scale": {
  4701. "__type__": "cc.Vec3",
  4702. "x": 0.7,
  4703. "y": 0.7,
  4704. "z": 1
  4705. },
  4706. "_quat": {
  4707. "__type__": "cc.Quat",
  4708. "x": 0,
  4709. "y": 0,
  4710. "z": 0.958819734868193,
  4711. "w": 0.28401534470392276
  4712. },
  4713. "_skewX": 0,
  4714. "_skewY": 0,
  4715. "_zIndex": 0,
  4716. "_is3DNode": false,
  4717. "groupIndex": 0,
  4718. "_id": ""
  4719. },
  4720. {
  4721. "__type__": "cc.Sprite",
  4722. "_name": "",
  4723. "_objFlags": 0,
  4724. "node": {
  4725. "__id__": 134
  4726. },
  4727. "_enabled": true,
  4728. "_srcBlendFactor": 770,
  4729. "_dstBlendFactor": 771,
  4730. "_spriteFrame": {
  4731. "__uuid__": "87546a05-dab2-4c2f-8c4a-32863293c4e6"
  4732. },
  4733. "_type": 0,
  4734. "_sizeMode": 1,
  4735. "_fillType": 0,
  4736. "_fillCenter": {
  4737. "__type__": "cc.Vec2",
  4738. "x": 0,
  4739. "y": 0
  4740. },
  4741. "_fillStart": 0,
  4742. "_fillRange": 0,
  4743. "_isTrimmedMode": true,
  4744. "_state": 0,
  4745. "_atlas": null,
  4746. "_id": ""
  4747. },
  4748. {
  4749. "__type__": "cc.Animation",
  4750. "_name": "",
  4751. "_objFlags": 0,
  4752. "node": {
  4753. "__id__": 134
  4754. },
  4755. "_enabled": true,
  4756. "_defaultClip": {
  4757. "__uuid__": "df14d951-0204-4452-b8e8-729bfe4e2c68"
  4758. },
  4759. "_clips": [
  4760. {
  4761. "__uuid__": "df14d951-0204-4452-b8e8-729bfe4e2c68"
  4762. }
  4763. ],
  4764. "playOnLoad": true,
  4765. "_id": ""
  4766. },
  4767. {
  4768. "__type__": "cc.PrefabInfo",
  4769. "root": {
  4770. "__id__": 1
  4771. },
  4772. "asset": {
  4773. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4774. },
  4775. "fileId": "03Q9P7wvxJv4N3UFn9w936",
  4776. "sync": false
  4777. },
  4778. {
  4779. "__type__": "cc.PrefabInfo",
  4780. "root": {
  4781. "__id__": 1
  4782. },
  4783. "asset": {
  4784. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4785. },
  4786. "fileId": "56oMlVjuNDrZR6WaZmXyfd",
  4787. "sync": false
  4788. },
  4789. {
  4790. "__type__": "cc.Node",
  4791. "_name": "item",
  4792. "_objFlags": 0,
  4793. "_parent": {
  4794. "__id__": 20
  4795. },
  4796. "_children": [
  4797. {
  4798. "__id__": 140
  4799. },
  4800. {
  4801. "__id__": 143
  4802. },
  4803. {
  4804. "__id__": 146
  4805. },
  4806. {
  4807. "__id__": 149
  4808. },
  4809. {
  4810. "__id__": 152
  4811. }
  4812. ],
  4813. "_active": true,
  4814. "_level": 3,
  4815. "_components": [],
  4816. "_prefab": {
  4817. "__id__": 156
  4818. },
  4819. "_opacity": 255,
  4820. "_color": {
  4821. "__type__": "cc.Color",
  4822. "r": 255,
  4823. "g": 255,
  4824. "b": 255,
  4825. "a": 255
  4826. },
  4827. "_contentSize": {
  4828. "__type__": "cc.Size",
  4829. "width": 0,
  4830. "height": 0
  4831. },
  4832. "_anchorPoint": {
  4833. "__type__": "cc.Vec2",
  4834. "x": 0.5,
  4835. "y": 0.5
  4836. },
  4837. "_position": {
  4838. "__type__": "cc.Vec3",
  4839. "x": 0,
  4840. "y": 0,
  4841. "z": 0
  4842. },
  4843. "_scale": {
  4844. "__type__": "cc.Vec3",
  4845. "x": 1,
  4846. "y": 1,
  4847. "z": 1
  4848. },
  4849. "_quat": {
  4850. "__type__": "cc.Quat",
  4851. "x": 0,
  4852. "y": 0,
  4853. "z": 0,
  4854. "w": 1
  4855. },
  4856. "_skewX": 0,
  4857. "_skewY": 0,
  4858. "_zIndex": 0,
  4859. "_is3DNode": false,
  4860. "groupIndex": 0,
  4861. "_id": ""
  4862. },
  4863. {
  4864. "__type__": "cc.Node",
  4865. "_name": "White",
  4866. "_objFlags": 0,
  4867. "_parent": {
  4868. "__id__": 139
  4869. },
  4870. "_children": [],
  4871. "_active": true,
  4872. "_level": 4,
  4873. "_components": [
  4874. {
  4875. "__id__": 141
  4876. }
  4877. ],
  4878. "_prefab": {
  4879. "__id__": 142
  4880. },
  4881. "_opacity": 255,
  4882. "_color": {
  4883. "__type__": "cc.Color",
  4884. "r": 255,
  4885. "g": 255,
  4886. "b": 255,
  4887. "a": 255
  4888. },
  4889. "_contentSize": {
  4890. "__type__": "cc.Size",
  4891. "width": 481,
  4892. "height": 853
  4893. },
  4894. "_anchorPoint": {
  4895. "__type__": "cc.Vec2",
  4896. "x": 0.5,
  4897. "y": 0.5
  4898. },
  4899. "_position": {
  4900. "__type__": "cc.Vec3",
  4901. "x": 0,
  4902. "y": 202,
  4903. "z": 0
  4904. },
  4905. "_scale": {
  4906. "__type__": "cc.Vec3",
  4907. "x": 0.75,
  4908. "y": 0.73,
  4909. "z": 1
  4910. },
  4911. "_quat": {
  4912. "__type__": "cc.Quat",
  4913. "x": 0,
  4914. "y": 0,
  4915. "z": 0,
  4916. "w": 1
  4917. },
  4918. "_skewX": 0,
  4919. "_skewY": 0,
  4920. "_zIndex": 0,
  4921. "_is3DNode": false,
  4922. "groupIndex": 0,
  4923. "_id": ""
  4924. },
  4925. {
  4926. "__type__": "cc.Sprite",
  4927. "_name": "",
  4928. "_objFlags": 0,
  4929. "node": {
  4930. "__id__": 140
  4931. },
  4932. "_enabled": true,
  4933. "_srcBlendFactor": 770,
  4934. "_dstBlendFactor": 771,
  4935. "_spriteFrame": {
  4936. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  4937. },
  4938. "_type": 0,
  4939. "_sizeMode": 0,
  4940. "_fillType": 0,
  4941. "_fillCenter": {
  4942. "__type__": "cc.Vec2",
  4943. "x": 0,
  4944. "y": 0
  4945. },
  4946. "_fillStart": 0,
  4947. "_fillRange": 0,
  4948. "_isTrimmedMode": true,
  4949. "_state": 0,
  4950. "_atlas": null,
  4951. "_id": ""
  4952. },
  4953. {
  4954. "__type__": "cc.PrefabInfo",
  4955. "root": {
  4956. "__id__": 1
  4957. },
  4958. "asset": {
  4959. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  4960. },
  4961. "fileId": "f0nM70XOFNrb2Cjd34ApNp",
  4962. "sync": false
  4963. },
  4964. {
  4965. "__type__": "cc.Node",
  4966. "_name": "Sprite1",
  4967. "_objFlags": 0,
  4968. "_parent": {
  4969. "__id__": 139
  4970. },
  4971. "_children": [],
  4972. "_active": true,
  4973. "_level": 4,
  4974. "_components": [
  4975. {
  4976. "__id__": 144
  4977. }
  4978. ],
  4979. "_prefab": {
  4980. "__id__": 145
  4981. },
  4982. "_opacity": 255,
  4983. "_color": {
  4984. "__type__": "cc.Color",
  4985. "r": 255,
  4986. "g": 255,
  4987. "b": 255,
  4988. "a": 255
  4989. },
  4990. "_contentSize": {
  4991. "__type__": "cc.Size",
  4992. "width": 481,
  4993. "height": 853
  4994. },
  4995. "_anchorPoint": {
  4996. "__type__": "cc.Vec2",
  4997. "x": 0.5,
  4998. "y": 0.5
  4999. },
  5000. "_position": {
  5001. "__type__": "cc.Vec3",
  5002. "x": 0,
  5003. "y": 202,
  5004. "z": 0
  5005. },
  5006. "_scale": {
  5007. "__type__": "cc.Vec3",
  5008. "x": 0.7,
  5009. "y": 0.7,
  5010. "z": 1
  5011. },
  5012. "_quat": {
  5013. "__type__": "cc.Quat",
  5014. "x": 0,
  5015. "y": 0,
  5016. "z": 0,
  5017. "w": 1
  5018. },
  5019. "_skewX": 0,
  5020. "_skewY": 0,
  5021. "_zIndex": 0,
  5022. "_is3DNode": false,
  5023. "groupIndex": 0,
  5024. "_rotationX": 0,
  5025. "_rotationY": 0,
  5026. "_id": ""
  5027. },
  5028. {
  5029. "__type__": "cc.Sprite",
  5030. "_name": "",
  5031. "_objFlags": 0,
  5032. "node": {
  5033. "__id__": 143
  5034. },
  5035. "_enabled": true,
  5036. "_srcBlendFactor": 770,
  5037. "_dstBlendFactor": 771,
  5038. "_spriteFrame": {
  5039. "__uuid__": "8e7e3649-d6a7-4912-aef2-e54b45b8d608"
  5040. },
  5041. "_type": 0,
  5042. "_sizeMode": 0,
  5043. "_fillType": 0,
  5044. "_fillCenter": {
  5045. "__type__": "cc.Vec2",
  5046. "x": 0,
  5047. "y": 0
  5048. },
  5049. "_fillStart": 0,
  5050. "_fillRange": 0,
  5051. "_isTrimmedMode": true,
  5052. "_state": 0,
  5053. "_atlas": null,
  5054. "_id": ""
  5055. },
  5056. {
  5057. "__type__": "cc.PrefabInfo",
  5058. "root": {
  5059. "__id__": 1
  5060. },
  5061. "asset": {
  5062. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5063. },
  5064. "fileId": "61dRZeS5VIb6gQanfAr7My",
  5065. "sync": false
  5066. },
  5067. {
  5068. "__type__": "cc.Node",
  5069. "_name": "New Label",
  5070. "_objFlags": 0,
  5071. "_parent": {
  5072. "__id__": 139
  5073. },
  5074. "_children": [],
  5075. "_active": true,
  5076. "_level": 4,
  5077. "_components": [
  5078. {
  5079. "__id__": 147
  5080. }
  5081. ],
  5082. "_prefab": {
  5083. "__id__": 148
  5084. },
  5085. "_opacity": 255,
  5086. "_color": {
  5087. "__type__": "cc.Color",
  5088. "r": 255,
  5089. "g": 255,
  5090. "b": 255,
  5091. "a": 255
  5092. },
  5093. "_contentSize": {
  5094. "__type__": "cc.Size",
  5095. "width": 333.25,
  5096. "height": 100
  5097. },
  5098. "_anchorPoint": {
  5099. "__type__": "cc.Vec2",
  5100. "x": 0.5,
  5101. "y": 0
  5102. },
  5103. "_position": {
  5104. "__type__": "cc.Vec3",
  5105. "x": 0,
  5106. "y": -222,
  5107. "z": 0
  5108. },
  5109. "_scale": {
  5110. "__type__": "cc.Vec3",
  5111. "x": 1,
  5112. "y": 1,
  5113. "z": 1
  5114. },
  5115. "_quat": {
  5116. "__type__": "cc.Quat",
  5117. "x": 0,
  5118. "y": 0,
  5119. "z": 0,
  5120. "w": 1
  5121. },
  5122. "_skewX": 0,
  5123. "_skewY": 0,
  5124. "_zIndex": 0,
  5125. "_is3DNode": false,
  5126. "groupIndex": 0,
  5127. "_rotationX": 0,
  5128. "_rotationY": 0,
  5129. "_id": ""
  5130. },
  5131. {
  5132. "__type__": "cc.Label",
  5133. "_name": "",
  5134. "_objFlags": 0,
  5135. "node": {
  5136. "__id__": 146
  5137. },
  5138. "_enabled": true,
  5139. "_srcBlendFactor": 1,
  5140. "_dstBlendFactor": 771,
  5141. "_useOriginalSize": false,
  5142. "_string": "8.把提示框拖至需要铲除的起点,点击“√”",
  5143. "_N$string": "8.把提示框拖至需要铲除的起点,点击“√”",
  5144. "_fontSize": 35,
  5145. "_lineHeight": 50,
  5146. "_enableWrapText": true,
  5147. "_N$file": null,
  5148. "_isSystemFontUsed": true,
  5149. "_spacingX": 0,
  5150. "_N$horizontalAlign": 0,
  5151. "_N$verticalAlign": 2,
  5152. "_N$fontFamily": "Arial",
  5153. "_N$overflow": 3,
  5154. "_id": ""
  5155. },
  5156. {
  5157. "__type__": "cc.PrefabInfo",
  5158. "root": {
  5159. "__id__": 1
  5160. },
  5161. "asset": {
  5162. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5163. },
  5164. "fileId": "435EYKY0ZNTpY0DghSUJWP",
  5165. "sync": false
  5166. },
  5167. {
  5168. "__type__": "cc.Node",
  5169. "_name": "curr",
  5170. "_objFlags": 0,
  5171. "_parent": {
  5172. "__id__": 139
  5173. },
  5174. "_children": [],
  5175. "_active": true,
  5176. "_level": 4,
  5177. "_components": [
  5178. {
  5179. "__id__": 150
  5180. }
  5181. ],
  5182. "_prefab": {
  5183. "__id__": 151
  5184. },
  5185. "_opacity": 255,
  5186. "_color": {
  5187. "__type__": "cc.Color",
  5188. "r": 255,
  5189. "g": 255,
  5190. "b": 255,
  5191. "a": 255
  5192. },
  5193. "_contentSize": {
  5194. "__type__": "cc.Size",
  5195. "width": 104.49,
  5196. "height": 40
  5197. },
  5198. "_anchorPoint": {
  5199. "__type__": "cc.Vec2",
  5200. "x": 0,
  5201. "y": 0
  5202. },
  5203. "_position": {
  5204. "__type__": "cc.Vec3",
  5205. "x": -36,
  5206. "y": -272,
  5207. "z": 0
  5208. },
  5209. "_scale": {
  5210. "__type__": "cc.Vec3",
  5211. "x": 1,
  5212. "y": 1,
  5213. "z": 1
  5214. },
  5215. "_quat": {
  5216. "__type__": "cc.Quat",
  5217. "x": 0,
  5218. "y": 0,
  5219. "z": 0,
  5220. "w": 1
  5221. },
  5222. "_skewX": 0,
  5223. "_skewY": 0,
  5224. "_zIndex": 0,
  5225. "_is3DNode": false,
  5226. "groupIndex": 0,
  5227. "_rotationX": 0,
  5228. "_rotationY": 0,
  5229. "_id": ""
  5230. },
  5231. {
  5232. "__type__": "cc.Label",
  5233. "_name": "",
  5234. "_objFlags": 0,
  5235. "node": {
  5236. "__id__": 149
  5237. },
  5238. "_enabled": true,
  5239. "_srcBlendFactor": 1,
  5240. "_dstBlendFactor": 771,
  5241. "_useOriginalSize": false,
  5242. "_string": "(8/10)",
  5243. "_N$string": "(8/10)",
  5244. "_fontSize": 40,
  5245. "_lineHeight": 40,
  5246. "_enableWrapText": true,
  5247. "_N$file": null,
  5248. "_isSystemFontUsed": true,
  5249. "_spacingX": 0,
  5250. "_N$horizontalAlign": 0,
  5251. "_N$verticalAlign": 0,
  5252. "_N$fontFamily": "Arial",
  5253. "_N$overflow": 0,
  5254. "_id": ""
  5255. },
  5256. {
  5257. "__type__": "cc.PrefabInfo",
  5258. "root": {
  5259. "__id__": 1
  5260. },
  5261. "asset": {
  5262. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5263. },
  5264. "fileId": "ddZl0RYl9BF43VQg0Wzm6W",
  5265. "sync": false
  5266. },
  5267. {
  5268. "__type__": "cc.Node",
  5269. "_name": "PinkArrow",
  5270. "_objFlags": 0,
  5271. "_parent": {
  5272. "__id__": 139
  5273. },
  5274. "_children": [],
  5275. "_active": true,
  5276. "_level": 4,
  5277. "_components": [
  5278. {
  5279. "__id__": 153
  5280. },
  5281. {
  5282. "__id__": 154
  5283. }
  5284. ],
  5285. "_prefab": {
  5286. "__id__": 155
  5287. },
  5288. "_opacity": 255,
  5289. "_color": {
  5290. "__type__": "cc.Color",
  5291. "r": 255,
  5292. "g": 255,
  5293. "b": 255,
  5294. "a": 255
  5295. },
  5296. "_contentSize": {
  5297. "__type__": "cc.Size",
  5298. "width": 161,
  5299. "height": 142
  5300. },
  5301. "_anchorPoint": {
  5302. "__type__": "cc.Vec2",
  5303. "x": 0.5,
  5304. "y": 0.5
  5305. },
  5306. "_position": {
  5307. "__type__": "cc.Vec3",
  5308. "x": 31,
  5309. "y": 158,
  5310. "z": 0
  5311. },
  5312. "_scale": {
  5313. "__type__": "cc.Vec3",
  5314. "x": 0.7,
  5315. "y": 0.7,
  5316. "z": 1
  5317. },
  5318. "_quat": {
  5319. "__type__": "cc.Quat",
  5320. "x": 0,
  5321. "y": 0,
  5322. "z": 0.958819734868193,
  5323. "w": 0.28401534470392276
  5324. },
  5325. "_skewX": 0,
  5326. "_skewY": 0,
  5327. "_zIndex": 0,
  5328. "_is3DNode": false,
  5329. "groupIndex": 0,
  5330. "_id": ""
  5331. },
  5332. {
  5333. "__type__": "cc.Sprite",
  5334. "_name": "",
  5335. "_objFlags": 0,
  5336. "node": {
  5337. "__id__": 152
  5338. },
  5339. "_enabled": true,
  5340. "_srcBlendFactor": 770,
  5341. "_dstBlendFactor": 771,
  5342. "_spriteFrame": {
  5343. "__uuid__": "87546a05-dab2-4c2f-8c4a-32863293c4e6"
  5344. },
  5345. "_type": 0,
  5346. "_sizeMode": 1,
  5347. "_fillType": 0,
  5348. "_fillCenter": {
  5349. "__type__": "cc.Vec2",
  5350. "x": 0,
  5351. "y": 0
  5352. },
  5353. "_fillStart": 0,
  5354. "_fillRange": 0,
  5355. "_isTrimmedMode": true,
  5356. "_state": 0,
  5357. "_atlas": null,
  5358. "_id": ""
  5359. },
  5360. {
  5361. "__type__": "cc.Animation",
  5362. "_name": "",
  5363. "_objFlags": 0,
  5364. "node": {
  5365. "__id__": 152
  5366. },
  5367. "_enabled": true,
  5368. "_defaultClip": {
  5369. "__uuid__": "dff571d0-6f53-4c53-9d33-2443bdaa3e9a"
  5370. },
  5371. "_clips": [
  5372. {
  5373. "__uuid__": "dff571d0-6f53-4c53-9d33-2443bdaa3e9a"
  5374. }
  5375. ],
  5376. "playOnLoad": true,
  5377. "_id": ""
  5378. },
  5379. {
  5380. "__type__": "cc.PrefabInfo",
  5381. "root": {
  5382. "__id__": 1
  5383. },
  5384. "asset": {
  5385. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5386. },
  5387. "fileId": "15gOhv1tVEpr//PSo8QNap",
  5388. "sync": false
  5389. },
  5390. {
  5391. "__type__": "cc.PrefabInfo",
  5392. "root": {
  5393. "__id__": 1
  5394. },
  5395. "asset": {
  5396. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5397. },
  5398. "fileId": "7eDzmcCTlEV7xgAfZHCzkm",
  5399. "sync": false
  5400. },
  5401. {
  5402. "__type__": "cc.Node",
  5403. "_name": "item",
  5404. "_objFlags": 0,
  5405. "_parent": {
  5406. "__id__": 20
  5407. },
  5408. "_children": [
  5409. {
  5410. "__id__": 158
  5411. },
  5412. {
  5413. "__id__": 161
  5414. },
  5415. {
  5416. "__id__": 164
  5417. },
  5418. {
  5419. "__id__": 167
  5420. },
  5421. {
  5422. "__id__": 170
  5423. }
  5424. ],
  5425. "_active": true,
  5426. "_level": 3,
  5427. "_components": [],
  5428. "_prefab": {
  5429. "__id__": 174
  5430. },
  5431. "_opacity": 255,
  5432. "_color": {
  5433. "__type__": "cc.Color",
  5434. "r": 255,
  5435. "g": 255,
  5436. "b": 255,
  5437. "a": 255
  5438. },
  5439. "_contentSize": {
  5440. "__type__": "cc.Size",
  5441. "width": 0,
  5442. "height": 0
  5443. },
  5444. "_anchorPoint": {
  5445. "__type__": "cc.Vec2",
  5446. "x": 0.5,
  5447. "y": 0.5
  5448. },
  5449. "_position": {
  5450. "__type__": "cc.Vec3",
  5451. "x": 0,
  5452. "y": 0,
  5453. "z": 0
  5454. },
  5455. "_scale": {
  5456. "__type__": "cc.Vec3",
  5457. "x": 1,
  5458. "y": 1,
  5459. "z": 1
  5460. },
  5461. "_quat": {
  5462. "__type__": "cc.Quat",
  5463. "x": 0,
  5464. "y": 0,
  5465. "z": 0,
  5466. "w": 1
  5467. },
  5468. "_skewX": 0,
  5469. "_skewY": 0,
  5470. "_zIndex": 0,
  5471. "_is3DNode": false,
  5472. "groupIndex": 0,
  5473. "_id": ""
  5474. },
  5475. {
  5476. "__type__": "cc.Node",
  5477. "_name": "White",
  5478. "_objFlags": 0,
  5479. "_parent": {
  5480. "__id__": 157
  5481. },
  5482. "_children": [],
  5483. "_active": true,
  5484. "_level": 4,
  5485. "_components": [
  5486. {
  5487. "__id__": 159
  5488. }
  5489. ],
  5490. "_prefab": {
  5491. "__id__": 160
  5492. },
  5493. "_opacity": 255,
  5494. "_color": {
  5495. "__type__": "cc.Color",
  5496. "r": 255,
  5497. "g": 255,
  5498. "b": 255,
  5499. "a": 255
  5500. },
  5501. "_contentSize": {
  5502. "__type__": "cc.Size",
  5503. "width": 481,
  5504. "height": 853
  5505. },
  5506. "_anchorPoint": {
  5507. "__type__": "cc.Vec2",
  5508. "x": 0.5,
  5509. "y": 0.5
  5510. },
  5511. "_position": {
  5512. "__type__": "cc.Vec3",
  5513. "x": 0,
  5514. "y": 202,
  5515. "z": 0
  5516. },
  5517. "_scale": {
  5518. "__type__": "cc.Vec3",
  5519. "x": 0.75,
  5520. "y": 0.73,
  5521. "z": 1
  5522. },
  5523. "_quat": {
  5524. "__type__": "cc.Quat",
  5525. "x": 0,
  5526. "y": 0,
  5527. "z": 0,
  5528. "w": 1
  5529. },
  5530. "_skewX": 0,
  5531. "_skewY": 0,
  5532. "_zIndex": 0,
  5533. "_is3DNode": false,
  5534. "groupIndex": 0,
  5535. "_id": ""
  5536. },
  5537. {
  5538. "__type__": "cc.Sprite",
  5539. "_name": "",
  5540. "_objFlags": 0,
  5541. "node": {
  5542. "__id__": 158
  5543. },
  5544. "_enabled": true,
  5545. "_srcBlendFactor": 770,
  5546. "_dstBlendFactor": 771,
  5547. "_spriteFrame": {
  5548. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  5549. },
  5550. "_type": 0,
  5551. "_sizeMode": 0,
  5552. "_fillType": 0,
  5553. "_fillCenter": {
  5554. "__type__": "cc.Vec2",
  5555. "x": 0,
  5556. "y": 0
  5557. },
  5558. "_fillStart": 0,
  5559. "_fillRange": 0,
  5560. "_isTrimmedMode": true,
  5561. "_state": 0,
  5562. "_atlas": null,
  5563. "_id": ""
  5564. },
  5565. {
  5566. "__type__": "cc.PrefabInfo",
  5567. "root": {
  5568. "__id__": 1
  5569. },
  5570. "asset": {
  5571. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5572. },
  5573. "fileId": "06q7I9XRJEzo4xitZCtmjW",
  5574. "sync": false
  5575. },
  5576. {
  5577. "__type__": "cc.Node",
  5578. "_name": "Sprite1",
  5579. "_objFlags": 0,
  5580. "_parent": {
  5581. "__id__": 157
  5582. },
  5583. "_children": [],
  5584. "_active": true,
  5585. "_level": 4,
  5586. "_components": [
  5587. {
  5588. "__id__": 162
  5589. }
  5590. ],
  5591. "_prefab": {
  5592. "__id__": 163
  5593. },
  5594. "_opacity": 255,
  5595. "_color": {
  5596. "__type__": "cc.Color",
  5597. "r": 255,
  5598. "g": 255,
  5599. "b": 255,
  5600. "a": 255
  5601. },
  5602. "_contentSize": {
  5603. "__type__": "cc.Size",
  5604. "width": 481,
  5605. "height": 853
  5606. },
  5607. "_anchorPoint": {
  5608. "__type__": "cc.Vec2",
  5609. "x": 0.5,
  5610. "y": 0.5
  5611. },
  5612. "_position": {
  5613. "__type__": "cc.Vec3",
  5614. "x": 0,
  5615. "y": 202,
  5616. "z": 0
  5617. },
  5618. "_scale": {
  5619. "__type__": "cc.Vec3",
  5620. "x": 0.7,
  5621. "y": 0.7,
  5622. "z": 1
  5623. },
  5624. "_quat": {
  5625. "__type__": "cc.Quat",
  5626. "x": 0,
  5627. "y": 0,
  5628. "z": 0,
  5629. "w": 1
  5630. },
  5631. "_skewX": 0,
  5632. "_skewY": 0,
  5633. "_zIndex": 0,
  5634. "_is3DNode": false,
  5635. "groupIndex": 0,
  5636. "_rotationX": 0,
  5637. "_rotationY": 0,
  5638. "_id": ""
  5639. },
  5640. {
  5641. "__type__": "cc.Sprite",
  5642. "_name": "",
  5643. "_objFlags": 0,
  5644. "node": {
  5645. "__id__": 161
  5646. },
  5647. "_enabled": true,
  5648. "_srcBlendFactor": 770,
  5649. "_dstBlendFactor": 771,
  5650. "_spriteFrame": {
  5651. "__uuid__": "146aaba8-ab4c-4168-ad68-8fed9c93c63e"
  5652. },
  5653. "_type": 0,
  5654. "_sizeMode": 0,
  5655. "_fillType": 0,
  5656. "_fillCenter": {
  5657. "__type__": "cc.Vec2",
  5658. "x": 0,
  5659. "y": 0
  5660. },
  5661. "_fillStart": 0,
  5662. "_fillRange": 0,
  5663. "_isTrimmedMode": true,
  5664. "_state": 0,
  5665. "_atlas": null,
  5666. "_id": ""
  5667. },
  5668. {
  5669. "__type__": "cc.PrefabInfo",
  5670. "root": {
  5671. "__id__": 1
  5672. },
  5673. "asset": {
  5674. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5675. },
  5676. "fileId": "1bJvyi3wJOfaUVQ2POIr4a",
  5677. "sync": false
  5678. },
  5679. {
  5680. "__type__": "cc.Node",
  5681. "_name": "New Label",
  5682. "_objFlags": 0,
  5683. "_parent": {
  5684. "__id__": 157
  5685. },
  5686. "_children": [],
  5687. "_active": true,
  5688. "_level": 4,
  5689. "_components": [
  5690. {
  5691. "__id__": 165
  5692. }
  5693. ],
  5694. "_prefab": {
  5695. "__id__": 166
  5696. },
  5697. "_opacity": 255,
  5698. "_color": {
  5699. "__type__": "cc.Color",
  5700. "r": 255,
  5701. "g": 255,
  5702. "b": 255,
  5703. "a": 255
  5704. },
  5705. "_contentSize": {
  5706. "__type__": "cc.Size",
  5707. "width": 333.25,
  5708. "height": 100
  5709. },
  5710. "_anchorPoint": {
  5711. "__type__": "cc.Vec2",
  5712. "x": 0.5,
  5713. "y": 0
  5714. },
  5715. "_position": {
  5716. "__type__": "cc.Vec3",
  5717. "x": 0,
  5718. "y": -222,
  5719. "z": 0
  5720. },
  5721. "_scale": {
  5722. "__type__": "cc.Vec3",
  5723. "x": 1,
  5724. "y": 1,
  5725. "z": 1
  5726. },
  5727. "_quat": {
  5728. "__type__": "cc.Quat",
  5729. "x": 0,
  5730. "y": 0,
  5731. "z": 0,
  5732. "w": 1
  5733. },
  5734. "_skewX": 0,
  5735. "_skewY": 0,
  5736. "_zIndex": 0,
  5737. "_is3DNode": false,
  5738. "groupIndex": 0,
  5739. "_rotationX": 0,
  5740. "_rotationY": 0,
  5741. "_id": ""
  5742. },
  5743. {
  5744. "__type__": "cc.Label",
  5745. "_name": "",
  5746. "_objFlags": 0,
  5747. "node": {
  5748. "__id__": 164
  5749. },
  5750. "_enabled": true,
  5751. "_srcBlendFactor": 1,
  5752. "_dstBlendFactor": 771,
  5753. "_useOriginalSize": false,
  5754. "_string": "9.确定好要铲除的道路后,点击“√”",
  5755. "_N$string": "9.确定好要铲除的道路后,点击“√”",
  5756. "_fontSize": 35,
  5757. "_lineHeight": 50,
  5758. "_enableWrapText": true,
  5759. "_N$file": null,
  5760. "_isSystemFontUsed": true,
  5761. "_spacingX": 0,
  5762. "_N$horizontalAlign": 0,
  5763. "_N$verticalAlign": 2,
  5764. "_N$fontFamily": "Arial",
  5765. "_N$overflow": 3,
  5766. "_id": ""
  5767. },
  5768. {
  5769. "__type__": "cc.PrefabInfo",
  5770. "root": {
  5771. "__id__": 1
  5772. },
  5773. "asset": {
  5774. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5775. },
  5776. "fileId": "df2DRWjN9FRIQqbCx7JC07",
  5777. "sync": false
  5778. },
  5779. {
  5780. "__type__": "cc.Node",
  5781. "_name": "curr",
  5782. "_objFlags": 0,
  5783. "_parent": {
  5784. "__id__": 157
  5785. },
  5786. "_children": [],
  5787. "_active": true,
  5788. "_level": 4,
  5789. "_components": [
  5790. {
  5791. "__id__": 168
  5792. }
  5793. ],
  5794. "_prefab": {
  5795. "__id__": 169
  5796. },
  5797. "_opacity": 255,
  5798. "_color": {
  5799. "__type__": "cc.Color",
  5800. "r": 255,
  5801. "g": 255,
  5802. "b": 255,
  5803. "a": 255
  5804. },
  5805. "_contentSize": {
  5806. "__type__": "cc.Size",
  5807. "width": 104.49,
  5808. "height": 40
  5809. },
  5810. "_anchorPoint": {
  5811. "__type__": "cc.Vec2",
  5812. "x": 0,
  5813. "y": 0
  5814. },
  5815. "_position": {
  5816. "__type__": "cc.Vec3",
  5817. "x": -36,
  5818. "y": -272,
  5819. "z": 0
  5820. },
  5821. "_scale": {
  5822. "__type__": "cc.Vec3",
  5823. "x": 1,
  5824. "y": 1,
  5825. "z": 1
  5826. },
  5827. "_quat": {
  5828. "__type__": "cc.Quat",
  5829. "x": 0,
  5830. "y": 0,
  5831. "z": 0,
  5832. "w": 1
  5833. },
  5834. "_skewX": 0,
  5835. "_skewY": 0,
  5836. "_zIndex": 0,
  5837. "_is3DNode": false,
  5838. "groupIndex": 0,
  5839. "_rotationX": 0,
  5840. "_rotationY": 0,
  5841. "_id": ""
  5842. },
  5843. {
  5844. "__type__": "cc.Label",
  5845. "_name": "",
  5846. "_objFlags": 0,
  5847. "node": {
  5848. "__id__": 167
  5849. },
  5850. "_enabled": true,
  5851. "_srcBlendFactor": 1,
  5852. "_dstBlendFactor": 771,
  5853. "_useOriginalSize": false,
  5854. "_string": "(9/10)",
  5855. "_N$string": "(9/10)",
  5856. "_fontSize": 40,
  5857. "_lineHeight": 40,
  5858. "_enableWrapText": true,
  5859. "_N$file": null,
  5860. "_isSystemFontUsed": true,
  5861. "_spacingX": 0,
  5862. "_N$horizontalAlign": 0,
  5863. "_N$verticalAlign": 0,
  5864. "_N$fontFamily": "Arial",
  5865. "_N$overflow": 0,
  5866. "_id": ""
  5867. },
  5868. {
  5869. "__type__": "cc.PrefabInfo",
  5870. "root": {
  5871. "__id__": 1
  5872. },
  5873. "asset": {
  5874. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5875. },
  5876. "fileId": "d87Jf+q8lHjbwmERiy1o+8",
  5877. "sync": false
  5878. },
  5879. {
  5880. "__type__": "cc.Node",
  5881. "_name": "PinkArrow",
  5882. "_objFlags": 0,
  5883. "_parent": {
  5884. "__id__": 157
  5885. },
  5886. "_children": [],
  5887. "_active": true,
  5888. "_level": 4,
  5889. "_components": [
  5890. {
  5891. "__id__": 171
  5892. },
  5893. {
  5894. "__id__": 172
  5895. }
  5896. ],
  5897. "_prefab": {
  5898. "__id__": 173
  5899. },
  5900. "_opacity": 255,
  5901. "_color": {
  5902. "__type__": "cc.Color",
  5903. "r": 255,
  5904. "g": 255,
  5905. "b": 255,
  5906. "a": 255
  5907. },
  5908. "_contentSize": {
  5909. "__type__": "cc.Size",
  5910. "width": 161,
  5911. "height": 142
  5912. },
  5913. "_anchorPoint": {
  5914. "__type__": "cc.Vec2",
  5915. "x": 0.5,
  5916. "y": 0.5
  5917. },
  5918. "_position": {
  5919. "__type__": "cc.Vec3",
  5920. "x": 168,
  5921. "y": 55,
  5922. "z": 0
  5923. },
  5924. "_scale": {
  5925. "__type__": "cc.Vec3",
  5926. "x": 0.7,
  5927. "y": 0.7,
  5928. "z": 1
  5929. },
  5930. "_quat": {
  5931. "__type__": "cc.Quat",
  5932. "x": 0,
  5933. "y": 0,
  5934. "z": 0.958819734868193,
  5935. "w": 0.28401534470392276
  5936. },
  5937. "_skewX": 0,
  5938. "_skewY": 0,
  5939. "_zIndex": 0,
  5940. "_is3DNode": false,
  5941. "groupIndex": 0,
  5942. "_id": ""
  5943. },
  5944. {
  5945. "__type__": "cc.Sprite",
  5946. "_name": "",
  5947. "_objFlags": 0,
  5948. "node": {
  5949. "__id__": 170
  5950. },
  5951. "_enabled": true,
  5952. "_srcBlendFactor": 770,
  5953. "_dstBlendFactor": 771,
  5954. "_spriteFrame": {
  5955. "__uuid__": "87546a05-dab2-4c2f-8c4a-32863293c4e6"
  5956. },
  5957. "_type": 0,
  5958. "_sizeMode": 1,
  5959. "_fillType": 0,
  5960. "_fillCenter": {
  5961. "__type__": "cc.Vec2",
  5962. "x": 0,
  5963. "y": 0
  5964. },
  5965. "_fillStart": 0,
  5966. "_fillRange": 0,
  5967. "_isTrimmedMode": true,
  5968. "_state": 0,
  5969. "_atlas": null,
  5970. "_id": ""
  5971. },
  5972. {
  5973. "__type__": "cc.Animation",
  5974. "_name": "",
  5975. "_objFlags": 0,
  5976. "node": {
  5977. "__id__": 170
  5978. },
  5979. "_enabled": true,
  5980. "_defaultClip": {
  5981. "__uuid__": "5aa18341-11b8-4c9f-aa3e-61004c86e6bb"
  5982. },
  5983. "_clips": [
  5984. {
  5985. "__uuid__": "5aa18341-11b8-4c9f-aa3e-61004c86e6bb"
  5986. }
  5987. ],
  5988. "playOnLoad": true,
  5989. "_id": ""
  5990. },
  5991. {
  5992. "__type__": "cc.PrefabInfo",
  5993. "root": {
  5994. "__id__": 1
  5995. },
  5996. "asset": {
  5997. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  5998. },
  5999. "fileId": "abu678pIZJuYjQeKCzJA44",
  6000. "sync": false
  6001. },
  6002. {
  6003. "__type__": "cc.PrefabInfo",
  6004. "root": {
  6005. "__id__": 1
  6006. },
  6007. "asset": {
  6008. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  6009. },
  6010. "fileId": "5890MS4Z9L0Kb8zg77B81M",
  6011. "sync": false
  6012. },
  6013. {
  6014. "__type__": "cc.Node",
  6015. "_name": "item",
  6016. "_objFlags": 0,
  6017. "_parent": {
  6018. "__id__": 20
  6019. },
  6020. "_children": [
  6021. {
  6022. "__id__": 176
  6023. },
  6024. {
  6025. "__id__": 179
  6026. },
  6027. {
  6028. "__id__": 182
  6029. },
  6030. {
  6031. "__id__": 185
  6032. }
  6033. ],
  6034. "_active": true,
  6035. "_level": 3,
  6036. "_components": [],
  6037. "_prefab": {
  6038. "__id__": 188
  6039. },
  6040. "_opacity": 255,
  6041. "_color": {
  6042. "__type__": "cc.Color",
  6043. "r": 255,
  6044. "g": 255,
  6045. "b": 255,
  6046. "a": 255
  6047. },
  6048. "_contentSize": {
  6049. "__type__": "cc.Size",
  6050. "width": 0,
  6051. "height": 0
  6052. },
  6053. "_anchorPoint": {
  6054. "__type__": "cc.Vec2",
  6055. "x": 0.5,
  6056. "y": 0.5
  6057. },
  6058. "_position": {
  6059. "__type__": "cc.Vec3",
  6060. "x": 0,
  6061. "y": 0,
  6062. "z": 0
  6063. },
  6064. "_scale": {
  6065. "__type__": "cc.Vec3",
  6066. "x": 1,
  6067. "y": 1,
  6068. "z": 1
  6069. },
  6070. "_quat": {
  6071. "__type__": "cc.Quat",
  6072. "x": 0,
  6073. "y": 0,
  6074. "z": 0,
  6075. "w": 1
  6076. },
  6077. "_skewX": 0,
  6078. "_skewY": 0,
  6079. "_zIndex": 0,
  6080. "_is3DNode": false,
  6081. "groupIndex": 0,
  6082. "_id": ""
  6083. },
  6084. {
  6085. "__type__": "cc.Node",
  6086. "_name": "White",
  6087. "_objFlags": 0,
  6088. "_parent": {
  6089. "__id__": 175
  6090. },
  6091. "_children": [],
  6092. "_active": true,
  6093. "_level": 4,
  6094. "_components": [
  6095. {
  6096. "__id__": 177
  6097. }
  6098. ],
  6099. "_prefab": {
  6100. "__id__": 178
  6101. },
  6102. "_opacity": 255,
  6103. "_color": {
  6104. "__type__": "cc.Color",
  6105. "r": 255,
  6106. "g": 255,
  6107. "b": 255,
  6108. "a": 255
  6109. },
  6110. "_contentSize": {
  6111. "__type__": "cc.Size",
  6112. "width": 481,
  6113. "height": 853
  6114. },
  6115. "_anchorPoint": {
  6116. "__type__": "cc.Vec2",
  6117. "x": 0.5,
  6118. "y": 0.5
  6119. },
  6120. "_position": {
  6121. "__type__": "cc.Vec3",
  6122. "x": 0,
  6123. "y": 202,
  6124. "z": 0
  6125. },
  6126. "_scale": {
  6127. "__type__": "cc.Vec3",
  6128. "x": 0.75,
  6129. "y": 0.73,
  6130. "z": 1
  6131. },
  6132. "_quat": {
  6133. "__type__": "cc.Quat",
  6134. "x": 0,
  6135. "y": 0,
  6136. "z": 0,
  6137. "w": 1
  6138. },
  6139. "_skewX": 0,
  6140. "_skewY": 0,
  6141. "_zIndex": 0,
  6142. "_is3DNode": false,
  6143. "groupIndex": 0,
  6144. "_id": ""
  6145. },
  6146. {
  6147. "__type__": "cc.Sprite",
  6148. "_name": "",
  6149. "_objFlags": 0,
  6150. "node": {
  6151. "__id__": 176
  6152. },
  6153. "_enabled": true,
  6154. "_srcBlendFactor": 770,
  6155. "_dstBlendFactor": 771,
  6156. "_spriteFrame": {
  6157. "__uuid__": "5dc7c600-68a2-4d0f-af81-ee45672aa764"
  6158. },
  6159. "_type": 0,
  6160. "_sizeMode": 0,
  6161. "_fillType": 0,
  6162. "_fillCenter": {
  6163. "__type__": "cc.Vec2",
  6164. "x": 0,
  6165. "y": 0
  6166. },
  6167. "_fillStart": 0,
  6168. "_fillRange": 0,
  6169. "_isTrimmedMode": true,
  6170. "_state": 0,
  6171. "_atlas": null,
  6172. "_id": ""
  6173. },
  6174. {
  6175. "__type__": "cc.PrefabInfo",
  6176. "root": {
  6177. "__id__": 1
  6178. },
  6179. "asset": {
  6180. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  6181. },
  6182. "fileId": "71vdFAObxAYZav2phtEedd",
  6183. "sync": false
  6184. },
  6185. {
  6186. "__type__": "cc.Node",
  6187. "_name": "Sprite1",
  6188. "_objFlags": 0,
  6189. "_parent": {
  6190. "__id__": 175
  6191. },
  6192. "_children": [],
  6193. "_active": true,
  6194. "_level": 4,
  6195. "_components": [
  6196. {
  6197. "__id__": 180
  6198. }
  6199. ],
  6200. "_prefab": {
  6201. "__id__": 181
  6202. },
  6203. "_opacity": 255,
  6204. "_color": {
  6205. "__type__": "cc.Color",
  6206. "r": 255,
  6207. "g": 255,
  6208. "b": 255,
  6209. "a": 255
  6210. },
  6211. "_contentSize": {
  6212. "__type__": "cc.Size",
  6213. "width": 481,
  6214. "height": 853
  6215. },
  6216. "_anchorPoint": {
  6217. "__type__": "cc.Vec2",
  6218. "x": 0.5,
  6219. "y": 0.5
  6220. },
  6221. "_position": {
  6222. "__type__": "cc.Vec3",
  6223. "x": 0,
  6224. "y": 202,
  6225. "z": 0
  6226. },
  6227. "_scale": {
  6228. "__type__": "cc.Vec3",
  6229. "x": 0.7,
  6230. "y": 0.7,
  6231. "z": 1
  6232. },
  6233. "_quat": {
  6234. "__type__": "cc.Quat",
  6235. "x": 0,
  6236. "y": 0,
  6237. "z": 0,
  6238. "w": 1
  6239. },
  6240. "_skewX": 0,
  6241. "_skewY": 0,
  6242. "_zIndex": 0,
  6243. "_is3DNode": false,
  6244. "groupIndex": 0,
  6245. "_rotationX": 0,
  6246. "_rotationY": 0,
  6247. "_id": ""
  6248. },
  6249. {
  6250. "__type__": "cc.Sprite",
  6251. "_name": "",
  6252. "_objFlags": 0,
  6253. "node": {
  6254. "__id__": 179
  6255. },
  6256. "_enabled": true,
  6257. "_srcBlendFactor": 770,
  6258. "_dstBlendFactor": 771,
  6259. "_spriteFrame": {
  6260. "__uuid__": "0bd52f56-1ec8-4577-b606-62723969d4fa"
  6261. },
  6262. "_type": 0,
  6263. "_sizeMode": 0,
  6264. "_fillType": 0,
  6265. "_fillCenter": {
  6266. "__type__": "cc.Vec2",
  6267. "x": 0,
  6268. "y": 0
  6269. },
  6270. "_fillStart": 0,
  6271. "_fillRange": 0,
  6272. "_isTrimmedMode": true,
  6273. "_state": 0,
  6274. "_atlas": null,
  6275. "_id": ""
  6276. },
  6277. {
  6278. "__type__": "cc.PrefabInfo",
  6279. "root": {
  6280. "__id__": 1
  6281. },
  6282. "asset": {
  6283. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  6284. },
  6285. "fileId": "2998xJOktDBYRPlgpDwtdj",
  6286. "sync": false
  6287. },
  6288. {
  6289. "__type__": "cc.Node",
  6290. "_name": "New Label",
  6291. "_objFlags": 0,
  6292. "_parent": {
  6293. "__id__": 175
  6294. },
  6295. "_children": [],
  6296. "_active": true,
  6297. "_level": 4,
  6298. "_components": [
  6299. {
  6300. "__id__": 183
  6301. }
  6302. ],
  6303. "_prefab": {
  6304. "__id__": 184
  6305. },
  6306. "_opacity": 255,
  6307. "_color": {
  6308. "__type__": "cc.Color",
  6309. "r": 255,
  6310. "g": 255,
  6311. "b": 255,
  6312. "a": 255
  6313. },
  6314. "_contentSize": {
  6315. "__type__": "cc.Size",
  6316. "width": 333.25,
  6317. "height": 100
  6318. },
  6319. "_anchorPoint": {
  6320. "__type__": "cc.Vec2",
  6321. "x": 0.5,
  6322. "y": 0
  6323. },
  6324. "_position": {
  6325. "__type__": "cc.Vec3",
  6326. "x": 0,
  6327. "y": -222,
  6328. "z": 0
  6329. },
  6330. "_scale": {
  6331. "__type__": "cc.Vec3",
  6332. "x": 1,
  6333. "y": 1,
  6334. "z": 1
  6335. },
  6336. "_quat": {
  6337. "__type__": "cc.Quat",
  6338. "x": 0,
  6339. "y": 0,
  6340. "z": 0,
  6341. "w": 1
  6342. },
  6343. "_skewX": 0,
  6344. "_skewY": 0,
  6345. "_zIndex": 0,
  6346. "_is3DNode": false,
  6347. "groupIndex": 0,
  6348. "_rotationX": 0,
  6349. "_rotationY": 0,
  6350. "_id": ""
  6351. },
  6352. {
  6353. "__type__": "cc.Label",
  6354. "_name": "",
  6355. "_objFlags": 0,
  6356. "node": {
  6357. "__id__": 182
  6358. },
  6359. "_enabled": true,
  6360. "_srcBlendFactor": 1,
  6361. "_dstBlendFactor": 771,
  6362. "_useOriginalSize": false,
  6363. "_string": "10.好啦,我们已经将道路铲掉了~",
  6364. "_N$string": "10.好啦,我们已经将道路铲掉了~",
  6365. "_fontSize": 35,
  6366. "_lineHeight": 50,
  6367. "_enableWrapText": true,
  6368. "_N$file": null,
  6369. "_isSystemFontUsed": true,
  6370. "_spacingX": 0,
  6371. "_N$horizontalAlign": 0,
  6372. "_N$verticalAlign": 2,
  6373. "_N$fontFamily": "Arial",
  6374. "_N$overflow": 3,
  6375. "_id": ""
  6376. },
  6377. {
  6378. "__type__": "cc.PrefabInfo",
  6379. "root": {
  6380. "__id__": 1
  6381. },
  6382. "asset": {
  6383. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  6384. },
  6385. "fileId": "0e3RXBaetEfod8QY+dwyxk",
  6386. "sync": false
  6387. },
  6388. {
  6389. "__type__": "cc.Node",
  6390. "_name": "curr",
  6391. "_objFlags": 0,
  6392. "_parent": {
  6393. "__id__": 175
  6394. },
  6395. "_children": [],
  6396. "_active": true,
  6397. "_level": 4,
  6398. "_components": [
  6399. {
  6400. "__id__": 186
  6401. }
  6402. ],
  6403. "_prefab": {
  6404. "__id__": 187
  6405. },
  6406. "_opacity": 255,
  6407. "_color": {
  6408. "__type__": "cc.Color",
  6409. "r": 255,
  6410. "g": 255,
  6411. "b": 255,
  6412. "a": 255
  6413. },
  6414. "_contentSize": {
  6415. "__type__": "cc.Size",
  6416. "width": 126.74,
  6417. "height": 40
  6418. },
  6419. "_anchorPoint": {
  6420. "__type__": "cc.Vec2",
  6421. "x": 0,
  6422. "y": 0
  6423. },
  6424. "_position": {
  6425. "__type__": "cc.Vec3",
  6426. "x": -36,
  6427. "y": -272,
  6428. "z": 0
  6429. },
  6430. "_scale": {
  6431. "__type__": "cc.Vec3",
  6432. "x": 1,
  6433. "y": 1,
  6434. "z": 1
  6435. },
  6436. "_quat": {
  6437. "__type__": "cc.Quat",
  6438. "x": 0,
  6439. "y": 0,
  6440. "z": 0,
  6441. "w": 1
  6442. },
  6443. "_skewX": 0,
  6444. "_skewY": 0,
  6445. "_zIndex": 0,
  6446. "_is3DNode": false,
  6447. "groupIndex": 0,
  6448. "_rotationX": 0,
  6449. "_rotationY": 0,
  6450. "_id": ""
  6451. },
  6452. {
  6453. "__type__": "cc.Label",
  6454. "_name": "",
  6455. "_objFlags": 0,
  6456. "node": {
  6457. "__id__": 185
  6458. },
  6459. "_enabled": true,
  6460. "_srcBlendFactor": 1,
  6461. "_dstBlendFactor": 771,
  6462. "_useOriginalSize": false,
  6463. "_string": "(10/10)",
  6464. "_N$string": "(10/10)",
  6465. "_fontSize": 40,
  6466. "_lineHeight": 40,
  6467. "_enableWrapText": true,
  6468. "_N$file": null,
  6469. "_isSystemFontUsed": true,
  6470. "_spacingX": 0,
  6471. "_N$horizontalAlign": 0,
  6472. "_N$verticalAlign": 0,
  6473. "_N$fontFamily": "Arial",
  6474. "_N$overflow": 0,
  6475. "_id": ""
  6476. },
  6477. {
  6478. "__type__": "cc.PrefabInfo",
  6479. "root": {
  6480. "__id__": 1
  6481. },
  6482. "asset": {
  6483. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  6484. },
  6485. "fileId": "08PQfDynxLVosXZNsDiRqq",
  6486. "sync": false
  6487. },
  6488. {
  6489. "__type__": "cc.PrefabInfo",
  6490. "root": {
  6491. "__id__": 1
  6492. },
  6493. "asset": {
  6494. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  6495. },
  6496. "fileId": "1dNFT7f5ZMMqnxTvHerBbn",
  6497. "sync": false
  6498. },
  6499. {
  6500. "__type__": "cc.PrefabInfo",
  6501. "root": {
  6502. "__id__": 1
  6503. },
  6504. "asset": {
  6505. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  6506. },
  6507. "fileId": "16fg9HuJZB9q/H/fBXjTVO",
  6508. "sync": false
  6509. },
  6510. {
  6511. "__type__": "cc.PrefabInfo",
  6512. "root": {
  6513. "__id__": 1
  6514. },
  6515. "asset": {
  6516. "__uuid__": "00612e89-ddc7-40f9-b621-c3318e9b1e0a"
  6517. },
  6518. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  6519. "sync": false
  6520. }
  6521. ]