game.scene 102 KB

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