taskPrefab13.prefab 112 KB

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