game.scene 100 KB

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