game.scene 117 KB

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