taskPrefab13.prefab 115 KB

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