Game.fire 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. }
  19. ],
  20. "_active": false,
  21. "_components": [],
  22. "_prefab": null,
  23. "_opacity": 255,
  24. "_color": {
  25. "__type__": "cc.Color",
  26. "r": 255,
  27. "g": 255,
  28. "b": 255,
  29. "a": 255
  30. },
  31. "_contentSize": {
  32. "__type__": "cc.Size",
  33. "width": 0,
  34. "height": 0
  35. },
  36. "_anchorPoint": {
  37. "__type__": "cc.Vec2",
  38. "x": 0,
  39. "y": 0
  40. },
  41. "_trs": {
  42. "__type__": "TypedArray",
  43. "ctor": "Float64Array",
  44. "array": [
  45. 0,
  46. 0,
  47. 0,
  48. 0,
  49. 0,
  50. 0,
  51. 1,
  52. 1,
  53. 1,
  54. 1
  55. ]
  56. },
  57. "_is3DNode": true,
  58. "_groupIndex": 0,
  59. "groupIndex": 0,
  60. "autoReleaseAssets": false,
  61. "_id": "66b1a752-3a46-4bb6-a28d-86648245a583"
  62. },
  63. {
  64. "__type__": "cc.Node",
  65. "_name": "Canvas",
  66. "_objFlags": 0,
  67. "_parent": {
  68. "__id__": 1
  69. },
  70. "_children": [
  71. {
  72. "__id__": 3
  73. },
  74. {
  75. "__id__": 5
  76. },
  77. {
  78. "__id__": 8
  79. }
  80. ],
  81. "_active": true,
  82. "_components": [
  83. {
  84. "__id__": 115
  85. },
  86. {
  87. "__id__": 116
  88. },
  89. {
  90. "__id__": 117
  91. }
  92. ],
  93. "_prefab": null,
  94. "_opacity": 255,
  95. "_color": {
  96. "__type__": "cc.Color",
  97. "r": 255,
  98. "g": 255,
  99. "b": 255,
  100. "a": 255
  101. },
  102. "_contentSize": {
  103. "__type__": "cc.Size",
  104. "width": 750,
  105. "height": 1334
  106. },
  107. "_anchorPoint": {
  108. "__type__": "cc.Vec2",
  109. "x": 0.5,
  110. "y": 0.5
  111. },
  112. "_trs": {
  113. "__type__": "TypedArray",
  114. "ctor": "Float64Array",
  115. "array": [
  116. 375,
  117. 667,
  118. 0,
  119. 0,
  120. 0,
  121. 0,
  122. 1,
  123. 1,
  124. 1,
  125. 1
  126. ]
  127. },
  128. "_eulerAngles": {
  129. "__type__": "cc.Vec3",
  130. "x": 0,
  131. "y": 0,
  132. "z": 0
  133. },
  134. "_skewX": 0,
  135. "_skewY": 0,
  136. "_is3DNode": false,
  137. "_groupIndex": 0,
  138. "groupIndex": 0,
  139. "_id": "a5esZu+45LA5mBpvttspPD"
  140. },
  141. {
  142. "__type__": "cc.Node",
  143. "_name": "Map",
  144. "_objFlags": 0,
  145. "_parent": {
  146. "__id__": 2
  147. },
  148. "_children": [],
  149. "_active": true,
  150. "_components": [
  151. {
  152. "__id__": 4
  153. }
  154. ],
  155. "_prefab": null,
  156. "_opacity": 255,
  157. "_color": {
  158. "__type__": "cc.Color",
  159. "r": 255,
  160. "g": 255,
  161. "b": 255,
  162. "a": 255
  163. },
  164. "_contentSize": {
  165. "__type__": "cc.Size",
  166. "width": 750,
  167. "height": 1334
  168. },
  169. "_anchorPoint": {
  170. "__type__": "cc.Vec2",
  171. "x": 0.5,
  172. "y": 0.5
  173. },
  174. "_trs": {
  175. "__type__": "TypedArray",
  176. "ctor": "Float64Array",
  177. "array": [
  178. 0,
  179. 0,
  180. 0,
  181. 0,
  182. 0,
  183. 0,
  184. 1,
  185. 1,
  186. 1,
  187. 1
  188. ]
  189. },
  190. "_eulerAngles": {
  191. "__type__": "cc.Vec3",
  192. "x": 0,
  193. "y": 0,
  194. "z": 0
  195. },
  196. "_skewX": 0,
  197. "_skewY": 0,
  198. "_is3DNode": false,
  199. "_groupIndex": 0,
  200. "groupIndex": 0,
  201. "_id": "c2mUTgYBZClbKinqFZRmqC"
  202. },
  203. {
  204. "__type__": "d6aeftKgF5MXa3BKgrk5dov",
  205. "_name": "",
  206. "_objFlags": 0,
  207. "node": {
  208. "__id__": 3
  209. },
  210. "_enabled": true,
  211. "CharacterNode": null,
  212. "_id": "3dIAK09EFNB4AUE6F60fOQ"
  213. },
  214. {
  215. "__type__": "cc.Node",
  216. "_name": "Parabola",
  217. "_objFlags": 0,
  218. "_parent": {
  219. "__id__": 2
  220. },
  221. "_children": [],
  222. "_active": true,
  223. "_components": [
  224. {
  225. "__id__": 6
  226. },
  227. {
  228. "__id__": 7
  229. }
  230. ],
  231. "_prefab": null,
  232. "_opacity": 255,
  233. "_color": {
  234. "__type__": "cc.Color",
  235. "r": 255,
  236. "g": 255,
  237. "b": 255,
  238. "a": 255
  239. },
  240. "_contentSize": {
  241. "__type__": "cc.Size",
  242. "width": 84,
  243. "height": 60
  244. },
  245. "_anchorPoint": {
  246. "__type__": "cc.Vec2",
  247. "x": 0.5,
  248. "y": 0.5
  249. },
  250. "_trs": {
  251. "__type__": "TypedArray",
  252. "ctor": "Float64Array",
  253. "array": [
  254. 0,
  255. 0,
  256. 0,
  257. 0,
  258. 0,
  259. 0,
  260. 1,
  261. 1,
  262. 1,
  263. 1
  264. ]
  265. },
  266. "_eulerAngles": {
  267. "__type__": "cc.Vec3",
  268. "x": 0,
  269. "y": 0,
  270. "z": 0
  271. },
  272. "_skewX": 0,
  273. "_skewY": 0,
  274. "_is3DNode": false,
  275. "_groupIndex": 0,
  276. "groupIndex": 0,
  277. "_id": "4axUPsP/5IfIyA6d+pIeCO"
  278. },
  279. {
  280. "__type__": "cc.Graphics",
  281. "_name": "",
  282. "_objFlags": 0,
  283. "node": {
  284. "__id__": 5
  285. },
  286. "_enabled": true,
  287. "_materials": [
  288. {
  289. "__uuid__": "a153945d-2511-4c14-be7b-05d242f47d57"
  290. }
  291. ],
  292. "_lineWidth": 7,
  293. "_strokeColor": {
  294. "__type__": "cc.Color",
  295. "r": 0,
  296. "g": 0,
  297. "b": 0,
  298. "a": 255
  299. },
  300. "_lineJoin": 0,
  301. "_lineCap": 0,
  302. "_fillColor": {
  303. "__type__": "cc.Color",
  304. "r": 255,
  305. "g": 255,
  306. "b": 255,
  307. "a": 255
  308. },
  309. "_miterLimit": 10,
  310. "_id": "7eKIryrX1H+IsXLB/mDNyo"
  311. },
  312. {
  313. "__type__": "c31dbym6lVAx798nY24SNW8",
  314. "_name": "",
  315. "_objFlags": 0,
  316. "node": {
  317. "__id__": 5
  318. },
  319. "_enabled": true,
  320. "_id": "a5mKVz6qlNM4isZqJewzh+"
  321. },
  322. {
  323. "__type__": "cc.Node",
  324. "_name": "Main Camera",
  325. "_objFlags": 0,
  326. "_parent": {
  327. "__id__": 2
  328. },
  329. "_children": [
  330. {
  331. "__id__": 9
  332. },
  333. {
  334. "__id__": 32
  335. },
  336. {
  337. "__id__": 39
  338. },
  339. {
  340. "__id__": 45
  341. },
  342. {
  343. "__id__": 61
  344. },
  345. {
  346. "__id__": 95
  347. },
  348. {
  349. "__id__": 98
  350. },
  351. {
  352. "__id__": 105
  353. },
  354. {
  355. "__id__": 110
  356. }
  357. ],
  358. "_active": true,
  359. "_components": [
  360. {
  361. "__id__": 112
  362. },
  363. {
  364. "__id__": 113
  365. },
  366. {
  367. "__id__": 114
  368. }
  369. ],
  370. "_prefab": null,
  371. "_opacity": 255,
  372. "_color": {
  373. "__type__": "cc.Color",
  374. "r": 255,
  375. "g": 255,
  376. "b": 255,
  377. "a": 255
  378. },
  379. "_contentSize": {
  380. "__type__": "cc.Size",
  381. "width": 750,
  382. "height": 1334
  383. },
  384. "_anchorPoint": {
  385. "__type__": "cc.Vec2",
  386. "x": 0.5,
  387. "y": 0.5
  388. },
  389. "_trs": {
  390. "__type__": "TypedArray",
  391. "ctor": "Float64Array",
  392. "array": [
  393. 0,
  394. 0,
  395. 0,
  396. 0,
  397. 0,
  398. 0,
  399. 1,
  400. 1,
  401. 1,
  402. 1
  403. ]
  404. },
  405. "_eulerAngles": {
  406. "__type__": "cc.Vec3",
  407. "x": 0,
  408. "y": 0,
  409. "z": 0
  410. },
  411. "_skewX": 0,
  412. "_skewY": 0,
  413. "_is3DNode": false,
  414. "_groupIndex": 0,
  415. "groupIndex": 0,
  416. "_id": "e1WoFrQ79G7r4ZuQE3HlNb"
  417. },
  418. {
  419. "__type__": "cc.Node",
  420. "_name": "GameTips",
  421. "_objFlags": 0,
  422. "_parent": {
  423. "__id__": 8
  424. },
  425. "_children": [
  426. {
  427. "__id__": 10
  428. },
  429. {
  430. "__id__": 13
  431. },
  432. {
  433. "__id__": 17
  434. },
  435. {
  436. "__id__": 21
  437. },
  438. {
  439. "__id__": 25
  440. }
  441. ],
  442. "_active": true,
  443. "_components": [
  444. {
  445. "__id__": 29
  446. },
  447. {
  448. "__id__": 30
  449. },
  450. {
  451. "__id__": 31
  452. }
  453. ],
  454. "_prefab": null,
  455. "_opacity": 255,
  456. "_color": {
  457. "__type__": "cc.Color",
  458. "r": 255,
  459. "g": 255,
  460. "b": 255,
  461. "a": 255
  462. },
  463. "_contentSize": {
  464. "__type__": "cc.Size",
  465. "width": 265,
  466. "height": 150
  467. },
  468. "_anchorPoint": {
  469. "__type__": "cc.Vec2",
  470. "x": 0.5,
  471. "y": 0.5
  472. },
  473. "_trs": {
  474. "__type__": "TypedArray",
  475. "ctor": "Float64Array",
  476. "array": [
  477. 0,
  478. 544.243,
  479. 0,
  480. 0,
  481. 0,
  482. 0,
  483. 1,
  484. 1,
  485. 1,
  486. 1
  487. ]
  488. },
  489. "_eulerAngles": {
  490. "__type__": "cc.Vec3",
  491. "x": 0,
  492. "y": 0,
  493. "z": 0
  494. },
  495. "_skewX": 0,
  496. "_skewY": 0,
  497. "_is3DNode": false,
  498. "_groupIndex": 0,
  499. "groupIndex": 0,
  500. "_id": "66FvEdJedItKJVU2KVFoSh"
  501. },
  502. {
  503. "__type__": "cc.Node",
  504. "_name": "Hight",
  505. "_objFlags": 0,
  506. "_parent": {
  507. "__id__": 9
  508. },
  509. "_children": [],
  510. "_active": true,
  511. "_components": [
  512. {
  513. "__id__": 11
  514. },
  515. {
  516. "__id__": 12
  517. }
  518. ],
  519. "_prefab": null,
  520. "_opacity": 255,
  521. "_color": {
  522. "__type__": "cc.Color",
  523. "r": 255,
  524. "g": 239,
  525. "b": 199,
  526. "a": 255
  527. },
  528. "_contentSize": {
  529. "__type__": "cc.Size",
  530. "width": 0.4,
  531. "height": 41.98
  532. },
  533. "_anchorPoint": {
  534. "__type__": "cc.Vec2",
  535. "x": 0.5,
  536. "y": 0.5
  537. },
  538. "_trs": {
  539. "__type__": "TypedArray",
  540. "ctor": "Float64Array",
  541. "array": [
  542. 0,
  543. -1.032,
  544. 0,
  545. 0,
  546. 0,
  547. 0,
  548. 1,
  549. 1,
  550. 1,
  551. 1
  552. ]
  553. },
  554. "_eulerAngles": {
  555. "__type__": "cc.Vec3",
  556. "x": 0,
  557. "y": 0,
  558. "z": 0
  559. },
  560. "_skewX": 0,
  561. "_skewY": 0,
  562. "_is3DNode": false,
  563. "_groupIndex": 0,
  564. "groupIndex": 0,
  565. "_id": "3280euN29P5b7VRCOkm9+R"
  566. },
  567. {
  568. "__type__": "cc.Label",
  569. "_name": "",
  570. "_objFlags": 0,
  571. "node": {
  572. "__id__": 10
  573. },
  574. "_enabled": true,
  575. "_materials": [
  576. {
  577. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  578. }
  579. ],
  580. "_srcBlendFactor": 770,
  581. "_dstBlendFactor": 771,
  582. "_string": "",
  583. "_N$string": "",
  584. "_fontSize": 33,
  585. "_lineHeight": 33,
  586. "_enableWrapText": true,
  587. "_N$file": null,
  588. "_isSystemFontUsed": true,
  589. "_spacingX": 0,
  590. "_batchAsBitmap": false,
  591. "_styleFlags": 1,
  592. "_underlineHeight": 0,
  593. "_N$horizontalAlign": 1,
  594. "_N$verticalAlign": 1,
  595. "_N$fontFamily": "Arial",
  596. "_N$overflow": 0,
  597. "_N$cacheMode": 0,
  598. "_id": "56DJvhCu9NCrWp3ff+oE1j"
  599. },
  600. {
  601. "__type__": "cc.LabelOutline",
  602. "_name": "",
  603. "_objFlags": 0,
  604. "node": {
  605. "__id__": 10
  606. },
  607. "_enabled": true,
  608. "_color": {
  609. "__type__": "cc.Color",
  610. "r": 0,
  611. "g": 0,
  612. "b": 0,
  613. "a": 255
  614. },
  615. "_width": 0.2,
  616. "_id": "795nrW2+lDmol9vCaBWeuP"
  617. },
  618. {
  619. "__type__": "cc.Node",
  620. "_name": "Left",
  621. "_objFlags": 0,
  622. "_parent": {
  623. "__id__": 9
  624. },
  625. "_children": [],
  626. "_active": true,
  627. "_components": [
  628. {
  629. "__id__": 14
  630. },
  631. {
  632. "__id__": 15
  633. },
  634. {
  635. "__id__": 16
  636. }
  637. ],
  638. "_prefab": null,
  639. "_opacity": 255,
  640. "_color": {
  641. "__type__": "cc.Color",
  642. "r": 213,
  643. "g": 183,
  644. "b": 107,
  645. "a": 255
  646. },
  647. "_contentSize": {
  648. "__type__": "cc.Size",
  649. "width": 0.4,
  650. "height": 28.119999999999997
  651. },
  652. "_anchorPoint": {
  653. "__type__": "cc.Vec2",
  654. "x": 0.5,
  655. "y": 0.5
  656. },
  657. "_trs": {
  658. "__type__": "TypedArray",
  659. "ctor": "Float64Array",
  660. "array": [
  661. -45.137,
  662. -35.758,
  663. 0,
  664. 0,
  665. 0,
  666. 0,
  667. 1,
  668. 1,
  669. 1,
  670. 1
  671. ]
  672. },
  673. "_eulerAngles": {
  674. "__type__": "cc.Vec3",
  675. "x": 0,
  676. "y": 0,
  677. "z": 0
  678. },
  679. "_skewX": 0,
  680. "_skewY": 0,
  681. "_is3DNode": false,
  682. "_groupIndex": 0,
  683. "groupIndex": 0,
  684. "_id": "01UvidF8xKYrq0w+r/Bmb0"
  685. },
  686. {
  687. "__type__": "cc.Label",
  688. "_name": "",
  689. "_objFlags": 0,
  690. "node": {
  691. "__id__": 13
  692. },
  693. "_enabled": true,
  694. "_materials": [
  695. {
  696. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  697. }
  698. ],
  699. "_srcBlendFactor": 770,
  700. "_dstBlendFactor": 771,
  701. "_string": "",
  702. "_N$string": "",
  703. "_fontSize": 22,
  704. "_lineHeight": 22,
  705. "_enableWrapText": true,
  706. "_N$file": null,
  707. "_isSystemFontUsed": true,
  708. "_spacingX": 0,
  709. "_batchAsBitmap": false,
  710. "_styleFlags": 1,
  711. "_underlineHeight": 0,
  712. "_N$horizontalAlign": 0,
  713. "_N$verticalAlign": 1,
  714. "_N$fontFamily": "Arial",
  715. "_N$overflow": 0,
  716. "_N$cacheMode": 0,
  717. "_id": "35H60p649O96hHFPxr9gOa"
  718. },
  719. {
  720. "__type__": "cc.LabelOutline",
  721. "_name": "",
  722. "_objFlags": 0,
  723. "node": {
  724. "__id__": 13
  725. },
  726. "_enabled": true,
  727. "_color": {
  728. "__type__": "cc.Color",
  729. "r": 0,
  730. "g": 0,
  731. "b": 0,
  732. "a": 255
  733. },
  734. "_width": 0.2,
  735. "_id": "76FWLfhS1O4qpL+muACbam"
  736. },
  737. {
  738. "__type__": "cc.Widget",
  739. "_name": "",
  740. "_objFlags": 0,
  741. "node": {
  742. "__id__": 13
  743. },
  744. "_enabled": true,
  745. "alignMode": 1,
  746. "_target": null,
  747. "_alignFlags": 8,
  748. "_left": 87.163,
  749. "_right": 0,
  750. "_top": 0,
  751. "_bottom": 0,
  752. "_verticalCenter": 0,
  753. "_horizontalCenter": 0,
  754. "_isAbsLeft": true,
  755. "_isAbsRight": true,
  756. "_isAbsTop": true,
  757. "_isAbsBottom": true,
  758. "_isAbsHorizontalCenter": true,
  759. "_isAbsVerticalCenter": true,
  760. "_originalWidth": 0,
  761. "_originalHeight": 0,
  762. "_id": "8976NV+aVPmom7dnmiiCO/"
  763. },
  764. {
  765. "__type__": "cc.Node",
  766. "_name": "Right",
  767. "_objFlags": 0,
  768. "_parent": {
  769. "__id__": 9
  770. },
  771. "_children": [],
  772. "_active": true,
  773. "_components": [
  774. {
  775. "__id__": 18
  776. },
  777. {
  778. "__id__": 19
  779. },
  780. {
  781. "__id__": 20
  782. }
  783. ],
  784. "_prefab": null,
  785. "_opacity": 255,
  786. "_color": {
  787. "__type__": "cc.Color",
  788. "r": 213,
  789. "g": 183,
  790. "b": 107,
  791. "a": 255
  792. },
  793. "_contentSize": {
  794. "__type__": "cc.Size",
  795. "width": 0.4,
  796. "height": 28.119999999999997
  797. },
  798. "_anchorPoint": {
  799. "__type__": "cc.Vec2",
  800. "x": 0.5,
  801. "y": 0.5
  802. },
  803. "_trs": {
  804. "__type__": "TypedArray",
  805. "ctor": "Float64Array",
  806. "array": [
  807. 49.419,
  808. -35.758,
  809. 0,
  810. 0,
  811. 0,
  812. 0,
  813. 1,
  814. 1,
  815. 1,
  816. 1
  817. ]
  818. },
  819. "_eulerAngles": {
  820. "__type__": "cc.Vec3",
  821. "x": 0,
  822. "y": 0,
  823. "z": 0
  824. },
  825. "_skewX": 0,
  826. "_skewY": 0,
  827. "_is3DNode": false,
  828. "_groupIndex": 0,
  829. "groupIndex": 0,
  830. "_id": "c4MGcCEC9FGpUlwrhCxWOU"
  831. },
  832. {
  833. "__type__": "cc.Label",
  834. "_name": "",
  835. "_objFlags": 0,
  836. "node": {
  837. "__id__": 17
  838. },
  839. "_enabled": true,
  840. "_materials": [
  841. {
  842. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  843. }
  844. ],
  845. "_srcBlendFactor": 770,
  846. "_dstBlendFactor": 771,
  847. "_string": "",
  848. "_N$string": "",
  849. "_fontSize": 22,
  850. "_lineHeight": 22,
  851. "_enableWrapText": true,
  852. "_N$file": null,
  853. "_isSystemFontUsed": true,
  854. "_spacingX": 0,
  855. "_batchAsBitmap": false,
  856. "_styleFlags": 1,
  857. "_underlineHeight": 0,
  858. "_N$horizontalAlign": 1,
  859. "_N$verticalAlign": 1,
  860. "_N$fontFamily": "Arial",
  861. "_N$overflow": 0,
  862. "_N$cacheMode": 0,
  863. "_id": "cfKrYkTltDvIWkD9/6JRON"
  864. },
  865. {
  866. "__type__": "cc.LabelOutline",
  867. "_name": "",
  868. "_objFlags": 0,
  869. "node": {
  870. "__id__": 17
  871. },
  872. "_enabled": true,
  873. "_color": {
  874. "__type__": "cc.Color",
  875. "r": 0,
  876. "g": 0,
  877. "b": 0,
  878. "a": 255
  879. },
  880. "_width": 0.2,
  881. "_id": "9d9DS7YtBKOpn0Lx3QuZsk"
  882. },
  883. {
  884. "__type__": "cc.Widget",
  885. "_name": "",
  886. "_objFlags": 0,
  887. "node": {
  888. "__id__": 17
  889. },
  890. "_enabled": true,
  891. "alignMode": 1,
  892. "_target": null,
  893. "_alignFlags": 32,
  894. "_left": 0,
  895. "_right": 82.881,
  896. "_top": 0,
  897. "_bottom": 0,
  898. "_verticalCenter": 0,
  899. "_horizontalCenter": 0,
  900. "_isAbsLeft": true,
  901. "_isAbsRight": true,
  902. "_isAbsTop": true,
  903. "_isAbsBottom": true,
  904. "_isAbsHorizontalCenter": true,
  905. "_isAbsVerticalCenter": true,
  906. "_originalWidth": 0,
  907. "_originalHeight": 0,
  908. "_id": "f7tNI2Gn1Bmr5NMtTLW8PF"
  909. },
  910. {
  911. "__type__": "cc.Node",
  912. "_name": "Left",
  913. "_objFlags": 0,
  914. "_parent": {
  915. "__id__": 9
  916. },
  917. "_children": [],
  918. "_active": true,
  919. "_components": [
  920. {
  921. "__id__": 22
  922. },
  923. {
  924. "__id__": 23
  925. },
  926. {
  927. "__id__": 24
  928. }
  929. ],
  930. "_prefab": null,
  931. "_opacity": 255,
  932. "_color": {
  933. "__type__": "cc.Color",
  934. "r": 213,
  935. "g": 183,
  936. "b": 107,
  937. "a": 255
  938. },
  939. "_contentSize": {
  940. "__type__": "cc.Size",
  941. "width": 30.4,
  942. "height": 19.299999999999997
  943. },
  944. "_anchorPoint": {
  945. "__type__": "cc.Vec2",
  946. "x": 0.5,
  947. "y": 0.5
  948. },
  949. "_trs": {
  950. "__type__": "TypedArray",
  951. "ctor": "Float64Array",
  952. "array": [
  953. -45.137,
  954. -58.321,
  955. 0,
  956. 0,
  957. 0,
  958. 0,
  959. 1,
  960. 1,
  961. 1,
  962. 1
  963. ]
  964. },
  965. "_eulerAngles": {
  966. "__type__": "cc.Vec3",
  967. "x": 0,
  968. "y": 0,
  969. "z": 0
  970. },
  971. "_skewX": 0,
  972. "_skewY": 0,
  973. "_is3DNode": false,
  974. "_groupIndex": 0,
  975. "groupIndex": 0,
  976. "_id": "fcXdqeooBKyKzV8La+t5Ty"
  977. },
  978. {
  979. "__type__": "cc.Label",
  980. "_name": "",
  981. "_objFlags": 0,
  982. "node": {
  983. "__id__": 21
  984. },
  985. "_enabled": true,
  986. "_materials": [
  987. {
  988. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  989. }
  990. ],
  991. "_srcBlendFactor": 770,
  992. "_dstBlendFactor": 771,
  993. "_string": "力量",
  994. "_N$string": "力量",
  995. "_fontSize": 15,
  996. "_lineHeight": 15,
  997. "_enableWrapText": true,
  998. "_N$file": null,
  999. "_isSystemFontUsed": true,
  1000. "_spacingX": 0,
  1001. "_batchAsBitmap": false,
  1002. "_styleFlags": 1,
  1003. "_underlineHeight": 0,
  1004. "_N$horizontalAlign": 0,
  1005. "_N$verticalAlign": 1,
  1006. "_N$fontFamily": "Arial",
  1007. "_N$overflow": 0,
  1008. "_N$cacheMode": 0,
  1009. "_id": "77rPlkCf5AFr55P6s94T5n"
  1010. },
  1011. {
  1012. "__type__": "cc.LabelOutline",
  1013. "_name": "",
  1014. "_objFlags": 0,
  1015. "node": {
  1016. "__id__": 21
  1017. },
  1018. "_enabled": true,
  1019. "_color": {
  1020. "__type__": "cc.Color",
  1021. "r": 0,
  1022. "g": 0,
  1023. "b": 0,
  1024. "a": 255
  1025. },
  1026. "_width": 0.2,
  1027. "_id": "8bdqyFr2FJtbXt5fv9RKAH"
  1028. },
  1029. {
  1030. "__type__": "cc.Widget",
  1031. "_name": "",
  1032. "_objFlags": 0,
  1033. "node": {
  1034. "__id__": 21
  1035. },
  1036. "_enabled": true,
  1037. "alignMode": 1,
  1038. "_target": null,
  1039. "_alignFlags": 8,
  1040. "_left": 72.163,
  1041. "_right": 0,
  1042. "_top": 0,
  1043. "_bottom": 0,
  1044. "_verticalCenter": 0,
  1045. "_horizontalCenter": 0,
  1046. "_isAbsLeft": true,
  1047. "_isAbsRight": true,
  1048. "_isAbsTop": true,
  1049. "_isAbsBottom": true,
  1050. "_isAbsHorizontalCenter": true,
  1051. "_isAbsVerticalCenter": true,
  1052. "_originalWidth": 0,
  1053. "_originalHeight": 0,
  1054. "_id": "0a5ReNf8BARJHU7qQ5iikJ"
  1055. },
  1056. {
  1057. "__type__": "cc.Node",
  1058. "_name": "Right",
  1059. "_objFlags": 0,
  1060. "_parent": {
  1061. "__id__": 9
  1062. },
  1063. "_children": [],
  1064. "_active": true,
  1065. "_components": [
  1066. {
  1067. "__id__": 26
  1068. },
  1069. {
  1070. "__id__": 27
  1071. },
  1072. {
  1073. "__id__": 28
  1074. }
  1075. ],
  1076. "_prefab": null,
  1077. "_opacity": 255,
  1078. "_color": {
  1079. "__type__": "cc.Color",
  1080. "r": 213,
  1081. "g": 183,
  1082. "b": 107,
  1083. "a": 255
  1084. },
  1085. "_contentSize": {
  1086. "__type__": "cc.Size",
  1087. "width": 30.4,
  1088. "height": 19.299999999999997
  1089. },
  1090. "_anchorPoint": {
  1091. "__type__": "cc.Vec2",
  1092. "x": 0.5,
  1093. "y": 0.5
  1094. },
  1095. "_trs": {
  1096. "__type__": "TypedArray",
  1097. "ctor": "Float64Array",
  1098. "array": [
  1099. 49.419,
  1100. -58.321,
  1101. 0,
  1102. 0,
  1103. 0,
  1104. 0,
  1105. 1,
  1106. 1,
  1107. 1,
  1108. 1
  1109. ]
  1110. },
  1111. "_eulerAngles": {
  1112. "__type__": "cc.Vec3",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0
  1116. },
  1117. "_skewX": 0,
  1118. "_skewY": 0,
  1119. "_is3DNode": false,
  1120. "_groupIndex": 0,
  1121. "groupIndex": 0,
  1122. "_id": "f15qdh2/hACpGXcUUfpBvb"
  1123. },
  1124. {
  1125. "__type__": "cc.Label",
  1126. "_name": "",
  1127. "_objFlags": 0,
  1128. "node": {
  1129. "__id__": 25
  1130. },
  1131. "_enabled": true,
  1132. "_materials": [
  1133. {
  1134. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1135. }
  1136. ],
  1137. "_srcBlendFactor": 770,
  1138. "_dstBlendFactor": 771,
  1139. "_string": "高度",
  1140. "_N$string": "高度",
  1141. "_fontSize": 15,
  1142. "_lineHeight": 15,
  1143. "_enableWrapText": true,
  1144. "_N$file": null,
  1145. "_isSystemFontUsed": true,
  1146. "_spacingX": 0,
  1147. "_batchAsBitmap": false,
  1148. "_styleFlags": 1,
  1149. "_underlineHeight": 0,
  1150. "_N$horizontalAlign": 1,
  1151. "_N$verticalAlign": 1,
  1152. "_N$fontFamily": "Arial",
  1153. "_N$overflow": 0,
  1154. "_N$cacheMode": 0,
  1155. "_id": "f5qOQEhKxPwKgU7gxamIDJ"
  1156. },
  1157. {
  1158. "__type__": "cc.LabelOutline",
  1159. "_name": "",
  1160. "_objFlags": 0,
  1161. "node": {
  1162. "__id__": 25
  1163. },
  1164. "_enabled": true,
  1165. "_color": {
  1166. "__type__": "cc.Color",
  1167. "r": 0,
  1168. "g": 0,
  1169. "b": 0,
  1170. "a": 255
  1171. },
  1172. "_width": 0.2,
  1173. "_id": "34wasWeONMWKnPTAy27bm1"
  1174. },
  1175. {
  1176. "__type__": "cc.Widget",
  1177. "_name": "",
  1178. "_objFlags": 0,
  1179. "node": {
  1180. "__id__": 25
  1181. },
  1182. "_enabled": true,
  1183. "alignMode": 1,
  1184. "_target": null,
  1185. "_alignFlags": 32,
  1186. "_left": 0,
  1187. "_right": 67.881,
  1188. "_top": 0,
  1189. "_bottom": 0,
  1190. "_verticalCenter": 0,
  1191. "_horizontalCenter": 0,
  1192. "_isAbsLeft": true,
  1193. "_isAbsRight": true,
  1194. "_isAbsTop": true,
  1195. "_isAbsBottom": true,
  1196. "_isAbsHorizontalCenter": true,
  1197. "_isAbsVerticalCenter": true,
  1198. "_originalWidth": 0,
  1199. "_originalHeight": 0,
  1200. "_id": "5fuvd05cpDxJx9VTHhFeQZ"
  1201. },
  1202. {
  1203. "__type__": "cc.Sprite",
  1204. "_name": "",
  1205. "_objFlags": 0,
  1206. "node": {
  1207. "__id__": 9
  1208. },
  1209. "_enabled": true,
  1210. "_materials": [
  1211. {
  1212. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1213. }
  1214. ],
  1215. "_srcBlendFactor": 770,
  1216. "_dstBlendFactor": 771,
  1217. "_spriteFrame": {
  1218. "__uuid__": "d21f83d4-6cb0-4397-a015-e084a4c4ba90"
  1219. },
  1220. "_type": 0,
  1221. "_sizeMode": 0,
  1222. "_fillType": 0,
  1223. "_fillCenter": {
  1224. "__type__": "cc.Vec2",
  1225. "x": 0,
  1226. "y": 0
  1227. },
  1228. "_fillStart": 0,
  1229. "_fillRange": 0,
  1230. "_isTrimmedMode": true,
  1231. "_atlas": null,
  1232. "_id": "85PpoC7hZPM4vhLke8mEmE"
  1233. },
  1234. {
  1235. "__type__": "cc.Widget",
  1236. "_name": "",
  1237. "_objFlags": 0,
  1238. "node": {
  1239. "__id__": 9
  1240. },
  1241. "_enabled": true,
  1242. "alignMode": 1,
  1243. "_target": null,
  1244. "_alignFlags": 1,
  1245. "_left": 242.5,
  1246. "_right": 242.5,
  1247. "_top": 47.75699999999995,
  1248. "_bottom": 1184,
  1249. "_verticalCenter": 0,
  1250. "_horizontalCenter": 0,
  1251. "_isAbsLeft": true,
  1252. "_isAbsRight": true,
  1253. "_isAbsTop": true,
  1254. "_isAbsBottom": true,
  1255. "_isAbsHorizontalCenter": true,
  1256. "_isAbsVerticalCenter": true,
  1257. "_originalWidth": 265,
  1258. "_originalHeight": 150,
  1259. "_id": "44EqDLlwtM+69Ed9N3KEHh"
  1260. },
  1261. {
  1262. "__type__": "e5c5aesfJ1Mw5wssE72k3Ko",
  1263. "_name": "",
  1264. "_objFlags": 0,
  1265. "node": {
  1266. "__id__": 9
  1267. },
  1268. "_enabled": true,
  1269. "Hight": {
  1270. "__id__": 11
  1271. },
  1272. "Left": {
  1273. "__id__": 14
  1274. },
  1275. "Right": {
  1276. "__id__": 18
  1277. },
  1278. "_id": "a81h5FnjpBcYsIy9eH5DGv"
  1279. },
  1280. {
  1281. "__type__": "cc.Node",
  1282. "_name": "YaoGan",
  1283. "_objFlags": 0,
  1284. "_parent": {
  1285. "__id__": 8
  1286. },
  1287. "_children": [
  1288. {
  1289. "__id__": 33
  1290. },
  1291. {
  1292. "__id__": 36
  1293. }
  1294. ],
  1295. "_active": true,
  1296. "_components": [
  1297. {
  1298. "__id__": 38
  1299. }
  1300. ],
  1301. "_prefab": null,
  1302. "_opacity": 0,
  1303. "_color": {
  1304. "__type__": "cc.Color",
  1305. "r": 255,
  1306. "g": 255,
  1307. "b": 255,
  1308. "a": 255
  1309. },
  1310. "_contentSize": {
  1311. "__type__": "cc.Size",
  1312. "width": 750,
  1313. "height": 1334
  1314. },
  1315. "_anchorPoint": {
  1316. "__type__": "cc.Vec2",
  1317. "x": 0.5,
  1318. "y": 0.5
  1319. },
  1320. "_trs": {
  1321. "__type__": "TypedArray",
  1322. "ctor": "Float64Array",
  1323. "array": [
  1324. 0,
  1325. -323,
  1326. 0,
  1327. 0,
  1328. 0,
  1329. 0,
  1330. 1,
  1331. 1,
  1332. 1,
  1333. 1
  1334. ]
  1335. },
  1336. "_eulerAngles": {
  1337. "__type__": "cc.Vec3",
  1338. "x": 0,
  1339. "y": 0,
  1340. "z": 0
  1341. },
  1342. "_skewX": 0,
  1343. "_skewY": 0,
  1344. "_is3DNode": false,
  1345. "_groupIndex": 0,
  1346. "groupIndex": 0,
  1347. "_id": "407P3Ic81C/LVvQY1eLyZN"
  1348. },
  1349. {
  1350. "__type__": "cc.Node",
  1351. "_name": "bg",
  1352. "_objFlags": 0,
  1353. "_parent": {
  1354. "__id__": 32
  1355. },
  1356. "_children": [],
  1357. "_active": true,
  1358. "_components": [
  1359. {
  1360. "__id__": 34
  1361. },
  1362. {
  1363. "__id__": 35
  1364. }
  1365. ],
  1366. "_prefab": null,
  1367. "_opacity": 255,
  1368. "_color": {
  1369. "__type__": "cc.Color",
  1370. "r": 255,
  1371. "g": 255,
  1372. "b": 255,
  1373. "a": 255
  1374. },
  1375. "_contentSize": {
  1376. "__type__": "cc.Size",
  1377. "width": 90,
  1378. "height": 90
  1379. },
  1380. "_anchorPoint": {
  1381. "__type__": "cc.Vec2",
  1382. "x": 0.5,
  1383. "y": 0.5
  1384. },
  1385. "_trs": {
  1386. "__type__": "TypedArray",
  1387. "ctor": "Float64Array",
  1388. "array": [
  1389. 0,
  1390. 0,
  1391. 0,
  1392. 0,
  1393. 0,
  1394. 0,
  1395. 1,
  1396. 3,
  1397. 3,
  1398. 3
  1399. ]
  1400. },
  1401. "_eulerAngles": {
  1402. "__type__": "cc.Vec3",
  1403. "x": 0,
  1404. "y": 0,
  1405. "z": 0
  1406. },
  1407. "_skewX": 0,
  1408. "_skewY": 0,
  1409. "_is3DNode": false,
  1410. "_groupIndex": 0,
  1411. "groupIndex": 0,
  1412. "_id": "5d06mQzstDJKOX381IhGCq"
  1413. },
  1414. {
  1415. "__type__": "cc.Sprite",
  1416. "_name": "",
  1417. "_objFlags": 0,
  1418. "node": {
  1419. "__id__": 33
  1420. },
  1421. "_enabled": true,
  1422. "_materials": [
  1423. {
  1424. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1425. }
  1426. ],
  1427. "_srcBlendFactor": 770,
  1428. "_dstBlendFactor": 771,
  1429. "_spriteFrame": {
  1430. "__uuid__": "9c272a4d-9d0f-4636-bd8a-87cc0b8dd503"
  1431. },
  1432. "_type": 0,
  1433. "_sizeMode": 0,
  1434. "_fillType": 0,
  1435. "_fillCenter": {
  1436. "__type__": "cc.Vec2",
  1437. "x": 0,
  1438. "y": 0
  1439. },
  1440. "_fillStart": 0,
  1441. "_fillRange": 0,
  1442. "_isTrimmedMode": true,
  1443. "_atlas": null,
  1444. "_id": "4aNSzvNmtNI5yDUaJ6hHwK"
  1445. },
  1446. {
  1447. "__type__": "8b09eB4FuFNaZbtoxMJdg6O",
  1448. "_name": "",
  1449. "_objFlags": 0,
  1450. "node": {
  1451. "__id__": 33
  1452. },
  1453. "_enabled": true,
  1454. "bg": {
  1455. "__id__": 33
  1456. },
  1457. "joystick": {
  1458. "__id__": 36
  1459. },
  1460. "parent": {
  1461. "__id__": 32
  1462. },
  1463. "is_rotation": true,
  1464. "is_forbidden": false,
  1465. "_id": "f25BKsvqFExLtGdRyIPdJ+"
  1466. },
  1467. {
  1468. "__type__": "cc.Node",
  1469. "_name": "mid",
  1470. "_objFlags": 0,
  1471. "_parent": {
  1472. "__id__": 32
  1473. },
  1474. "_children": [],
  1475. "_active": true,
  1476. "_components": [
  1477. {
  1478. "__id__": 37
  1479. }
  1480. ],
  1481. "_prefab": null,
  1482. "_opacity": 255,
  1483. "_color": {
  1484. "__type__": "cc.Color",
  1485. "r": 255,
  1486. "g": 255,
  1487. "b": 255,
  1488. "a": 255
  1489. },
  1490. "_contentSize": {
  1491. "__type__": "cc.Size",
  1492. "width": 42,
  1493. "height": 42
  1494. },
  1495. "_anchorPoint": {
  1496. "__type__": "cc.Vec2",
  1497. "x": 0.5,
  1498. "y": 0.5
  1499. },
  1500. "_trs": {
  1501. "__type__": "TypedArray",
  1502. "ctor": "Float64Array",
  1503. "array": [
  1504. 0,
  1505. 0,
  1506. 0,
  1507. 0,
  1508. 0,
  1509. 0,
  1510. 1,
  1511. 2.00001,
  1512. 2.00001,
  1513. 2.00001
  1514. ]
  1515. },
  1516. "_eulerAngles": {
  1517. "__type__": "cc.Vec3",
  1518. "x": 0,
  1519. "y": 0,
  1520. "z": 0
  1521. },
  1522. "_skewX": 0,
  1523. "_skewY": 0,
  1524. "_is3DNode": false,
  1525. "_groupIndex": 0,
  1526. "groupIndex": 0,
  1527. "_id": "eeepujIu9ESY2fNPkmMHcf"
  1528. },
  1529. {
  1530. "__type__": "cc.Sprite",
  1531. "_name": "",
  1532. "_objFlags": 0,
  1533. "node": {
  1534. "__id__": 36
  1535. },
  1536. "_enabled": true,
  1537. "_materials": [
  1538. {
  1539. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1540. }
  1541. ],
  1542. "_srcBlendFactor": 770,
  1543. "_dstBlendFactor": 771,
  1544. "_spriteFrame": {
  1545. "__uuid__": "57c44724-b306-47cc-967a-1a6338b4a5f5"
  1546. },
  1547. "_type": 0,
  1548. "_sizeMode": 0,
  1549. "_fillType": 0,
  1550. "_fillCenter": {
  1551. "__type__": "cc.Vec2",
  1552. "x": 0,
  1553. "y": 0
  1554. },
  1555. "_fillStart": 0,
  1556. "_fillRange": 0,
  1557. "_isTrimmedMode": true,
  1558. "_atlas": null,
  1559. "_id": "e3hCYPZOFFVKnnwnCBbo5G"
  1560. },
  1561. {
  1562. "__type__": "8b09eB4FuFNaZbtoxMJdg6O",
  1563. "_name": "",
  1564. "_objFlags": 0,
  1565. "node": {
  1566. "__id__": 32
  1567. },
  1568. "_enabled": true,
  1569. "bg": {
  1570. "__id__": 33
  1571. },
  1572. "joystick": {
  1573. "__id__": 36
  1574. },
  1575. "parent": {
  1576. "__id__": 32
  1577. },
  1578. "is_rotation": true,
  1579. "is_forbidden": false,
  1580. "_id": "c5mksuzGtDWbY8uoDF7zey"
  1581. },
  1582. {
  1583. "__type__": "cc.Node",
  1584. "_name": "Tips",
  1585. "_objFlags": 0,
  1586. "_parent": {
  1587. "__id__": 8
  1588. },
  1589. "_children": [
  1590. {
  1591. "__id__": 40
  1592. }
  1593. ],
  1594. "_active": true,
  1595. "_components": [
  1596. {
  1597. "__id__": 42
  1598. },
  1599. {
  1600. "__id__": 43
  1601. },
  1602. {
  1603. "__id__": 44
  1604. }
  1605. ],
  1606. "_prefab": null,
  1607. "_opacity": 255,
  1608. "_color": {
  1609. "__type__": "cc.Color",
  1610. "r": 0,
  1611. "g": 0,
  1612. "b": 0,
  1613. "a": 255
  1614. },
  1615. "_contentSize": {
  1616. "__type__": "cc.Size",
  1617. "width": 620,
  1618. "height": 100
  1619. },
  1620. "_anchorPoint": {
  1621. "__type__": "cc.Vec2",
  1622. "x": 0.5,
  1623. "y": 0.5
  1624. },
  1625. "_trs": {
  1626. "__type__": "TypedArray",
  1627. "ctor": "Float64Array",
  1628. "array": [
  1629. 0,
  1630. 0,
  1631. 0,
  1632. 0,
  1633. 0,
  1634. 0,
  1635. 1,
  1636. 1,
  1637. 1,
  1638. 1
  1639. ]
  1640. },
  1641. "_eulerAngles": {
  1642. "__type__": "cc.Vec3",
  1643. "x": 0,
  1644. "y": 0,
  1645. "z": 0
  1646. },
  1647. "_skewX": 0,
  1648. "_skewY": 0,
  1649. "_is3DNode": false,
  1650. "_groupIndex": 0,
  1651. "groupIndex": 0,
  1652. "_id": "4aTWtz/IVD8KZEHjXKE+DT"
  1653. },
  1654. {
  1655. "__type__": "cc.Node",
  1656. "_name": "New Label",
  1657. "_objFlags": 0,
  1658. "_parent": {
  1659. "__id__": 39
  1660. },
  1661. "_children": [],
  1662. "_active": true,
  1663. "_components": [
  1664. {
  1665. "__id__": 41
  1666. }
  1667. ],
  1668. "_prefab": null,
  1669. "_opacity": 255,
  1670. "_color": {
  1671. "__type__": "cc.Color",
  1672. "r": 255,
  1673. "g": 255,
  1674. "b": 255,
  1675. "a": 255
  1676. },
  1677. "_contentSize": {
  1678. "__type__": "cc.Size",
  1679. "width": 0,
  1680. "height": 45.36
  1681. },
  1682. "_anchorPoint": {
  1683. "__type__": "cc.Vec2",
  1684. "x": 0.5,
  1685. "y": 0.5
  1686. },
  1687. "_trs": {
  1688. "__type__": "TypedArray",
  1689. "ctor": "Float64Array",
  1690. "array": [
  1691. 0,
  1692. 0,
  1693. 0,
  1694. 0,
  1695. 0,
  1696. 0,
  1697. 1,
  1698. 1,
  1699. 1,
  1700. 1
  1701. ]
  1702. },
  1703. "_eulerAngles": {
  1704. "__type__": "cc.Vec3",
  1705. "x": 0,
  1706. "y": 0,
  1707. "z": 0
  1708. },
  1709. "_skewX": 0,
  1710. "_skewY": 0,
  1711. "_is3DNode": false,
  1712. "_groupIndex": 0,
  1713. "groupIndex": 0,
  1714. "_id": "e4pcpxshlEnqzXZFQ+RfKN"
  1715. },
  1716. {
  1717. "__type__": "cc.Label",
  1718. "_name": "",
  1719. "_objFlags": 0,
  1720. "node": {
  1721. "__id__": 40
  1722. },
  1723. "_enabled": true,
  1724. "_materials": [
  1725. {
  1726. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1727. }
  1728. ],
  1729. "_srcBlendFactor": 770,
  1730. "_dstBlendFactor": 771,
  1731. "_string": "",
  1732. "_N$string": "",
  1733. "_fontSize": 36,
  1734. "_lineHeight": 36,
  1735. "_enableWrapText": true,
  1736. "_N$file": null,
  1737. "_isSystemFontUsed": true,
  1738. "_spacingX": 0,
  1739. "_batchAsBitmap": false,
  1740. "_styleFlags": 0,
  1741. "_underlineHeight": 0,
  1742. "_N$horizontalAlign": 1,
  1743. "_N$verticalAlign": 1,
  1744. "_N$fontFamily": "Arial",
  1745. "_N$overflow": 0,
  1746. "_N$cacheMode": 0,
  1747. "_id": "ceuwxnomxH25M4/rYCjNRP"
  1748. },
  1749. {
  1750. "__type__": "cc.Sprite",
  1751. "_name": "",
  1752. "_objFlags": 0,
  1753. "node": {
  1754. "__id__": 39
  1755. },
  1756. "_enabled": true,
  1757. "_materials": [
  1758. {
  1759. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1760. }
  1761. ],
  1762. "_srcBlendFactor": 770,
  1763. "_dstBlendFactor": 771,
  1764. "_spriteFrame": {
  1765. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1766. },
  1767. "_type": 0,
  1768. "_sizeMode": 0,
  1769. "_fillType": 0,
  1770. "_fillCenter": {
  1771. "__type__": "cc.Vec2",
  1772. "x": 0,
  1773. "y": 0
  1774. },
  1775. "_fillStart": 0,
  1776. "_fillRange": 0,
  1777. "_isTrimmedMode": true,
  1778. "_atlas": null,
  1779. "_id": "4bSGwqBeRFYJ91LpiLJ5vb"
  1780. },
  1781. {
  1782. "__type__": "ef8b3mFgqVPap04R77Wq1Kd",
  1783. "_name": "",
  1784. "_objFlags": 0,
  1785. "node": {
  1786. "__id__": 39
  1787. },
  1788. "_enabled": true,
  1789. "label": {
  1790. "__id__": 41
  1791. },
  1792. "_id": "31pTffvK1FWY43eUKnzSy2"
  1793. },
  1794. {
  1795. "__type__": "cc.Widget",
  1796. "_name": "",
  1797. "_objFlags": 0,
  1798. "node": {
  1799. "__id__": 39
  1800. },
  1801. "_enabled": true,
  1802. "alignMode": 1,
  1803. "_target": null,
  1804. "_alignFlags": 5,
  1805. "_left": 0,
  1806. "_right": 0,
  1807. "_top": 617,
  1808. "_bottom": 617,
  1809. "_verticalCenter": 0,
  1810. "_horizontalCenter": 0,
  1811. "_isAbsLeft": true,
  1812. "_isAbsRight": true,
  1813. "_isAbsTop": true,
  1814. "_isAbsBottom": true,
  1815. "_isAbsHorizontalCenter": true,
  1816. "_isAbsVerticalCenter": true,
  1817. "_originalWidth": 0,
  1818. "_originalHeight": 100,
  1819. "_id": "787cu8mp5OIabVhTRHoqdE"
  1820. },
  1821. {
  1822. "__type__": "cc.Node",
  1823. "_name": "Gold",
  1824. "_objFlags": 0,
  1825. "_parent": {
  1826. "__id__": 8
  1827. },
  1828. "_children": [
  1829. {
  1830. "__id__": 46
  1831. },
  1832. {
  1833. "__id__": 49
  1834. },
  1835. {
  1836. "__id__": 52
  1837. }
  1838. ],
  1839. "_active": true,
  1840. "_components": [
  1841. {
  1842. "__id__": 55
  1843. },
  1844. {
  1845. "__id__": 56
  1846. },
  1847. {
  1848. "__id__": 57
  1849. },
  1850. {
  1851. "__id__": 59
  1852. }
  1853. ],
  1854. "_prefab": {
  1855. "__id__": 60
  1856. },
  1857. "_opacity": 255,
  1858. "_color": {
  1859. "__type__": "cc.Color",
  1860. "r": 255,
  1861. "g": 255,
  1862. "b": 255,
  1863. "a": 255
  1864. },
  1865. "_contentSize": {
  1866. "__type__": "cc.Size",
  1867. "width": 204,
  1868. "height": 71
  1869. },
  1870. "_anchorPoint": {
  1871. "__type__": "cc.Vec2",
  1872. "x": 0.5,
  1873. "y": 0.5
  1874. },
  1875. "_trs": {
  1876. "__type__": "TypedArray",
  1877. "ctor": "Float64Array",
  1878. "array": [
  1879. -273,
  1880. 599.5,
  1881. 0,
  1882. 0,
  1883. 0,
  1884. 0,
  1885. 1,
  1886. 1,
  1887. 1,
  1888. 1
  1889. ]
  1890. },
  1891. "_eulerAngles": {
  1892. "__type__": "cc.Vec3",
  1893. "x": 0,
  1894. "y": 0,
  1895. "z": 0
  1896. },
  1897. "_skewX": 0,
  1898. "_skewY": 0,
  1899. "_is3DNode": false,
  1900. "_groupIndex": 0,
  1901. "groupIndex": 0,
  1902. "_id": "4a3/xdxuBDPY5PDUgVF0rh"
  1903. },
  1904. {
  1905. "__type__": "cc.Node",
  1906. "_name": "goldcoin",
  1907. "_objFlags": 0,
  1908. "_parent": {
  1909. "__id__": 45
  1910. },
  1911. "_children": [],
  1912. "_active": true,
  1913. "_components": [
  1914. {
  1915. "__id__": 47
  1916. }
  1917. ],
  1918. "_prefab": {
  1919. "__id__": 48
  1920. },
  1921. "_opacity": 255,
  1922. "_color": {
  1923. "__type__": "cc.Color",
  1924. "r": 255,
  1925. "g": 255,
  1926. "b": 255,
  1927. "a": 255
  1928. },
  1929. "_contentSize": {
  1930. "__type__": "cc.Size",
  1931. "width": 52,
  1932. "height": 52
  1933. },
  1934. "_anchorPoint": {
  1935. "__type__": "cc.Vec2",
  1936. "x": 0.5,
  1937. "y": 0.5
  1938. },
  1939. "_trs": {
  1940. "__type__": "TypedArray",
  1941. "ctor": "Float64Array",
  1942. "array": [
  1943. -69.222,
  1944. 0,
  1945. 0,
  1946. 0,
  1947. 0,
  1948. 0,
  1949. 1,
  1950. 1,
  1951. 1,
  1952. 1
  1953. ]
  1954. },
  1955. "_eulerAngles": {
  1956. "__type__": "cc.Vec3",
  1957. "x": 0,
  1958. "y": 0,
  1959. "z": 0
  1960. },
  1961. "_skewX": 0,
  1962. "_skewY": 0,
  1963. "_is3DNode": false,
  1964. "_groupIndex": 0,
  1965. "groupIndex": 0,
  1966. "_id": "acSmGFC6lCSp2HHKKUaHSl"
  1967. },
  1968. {
  1969. "__type__": "cc.Sprite",
  1970. "_name": "",
  1971. "_objFlags": 0,
  1972. "node": {
  1973. "__id__": 46
  1974. },
  1975. "_enabled": true,
  1976. "_materials": [
  1977. {
  1978. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1979. }
  1980. ],
  1981. "_srcBlendFactor": 770,
  1982. "_dstBlendFactor": 771,
  1983. "_spriteFrame": {
  1984. "__uuid__": "ccc57710-eaef-4bf9-bb53-8188e102e5f2"
  1985. },
  1986. "_type": 0,
  1987. "_sizeMode": 1,
  1988. "_fillType": 0,
  1989. "_fillCenter": {
  1990. "__type__": "cc.Vec2",
  1991. "x": 0,
  1992. "y": 0
  1993. },
  1994. "_fillStart": 0,
  1995. "_fillRange": 0,
  1996. "_isTrimmedMode": true,
  1997. "_atlas": null,
  1998. "_id": "f0PrEmsi9D+r+ihPrQn899"
  1999. },
  2000. {
  2001. "__type__": "cc.PrefabInfo",
  2002. "root": {
  2003. "__id__": 45
  2004. },
  2005. "asset": {
  2006. "__uuid__": "3b5292cd-7ad7-4de8-adf9-12a19aff8517"
  2007. },
  2008. "fileId": "21pRkZiutLe7s4RSnqgl1i",
  2009. "sync": false
  2010. },
  2011. {
  2012. "__type__": "cc.Node",
  2013. "_name": "Label",
  2014. "_objFlags": 0,
  2015. "_parent": {
  2016. "__id__": 45
  2017. },
  2018. "_children": [],
  2019. "_active": true,
  2020. "_components": [
  2021. {
  2022. "__id__": 50
  2023. }
  2024. ],
  2025. "_prefab": {
  2026. "__id__": 51
  2027. },
  2028. "_opacity": 255,
  2029. "_color": {
  2030. "__type__": "cc.Color",
  2031. "r": 135,
  2032. "g": 114,
  2033. "b": 62,
  2034. "a": 255
  2035. },
  2036. "_contentSize": {
  2037. "__type__": "cc.Size",
  2038. "width": 101.4,
  2039. "height": 90.39999999999999
  2040. },
  2041. "_anchorPoint": {
  2042. "__type__": "cc.Vec2",
  2043. "x": 0.5,
  2044. "y": 0.5
  2045. },
  2046. "_trs": {
  2047. "__type__": "TypedArray",
  2048. "ctor": "Float64Array",
  2049. "array": [
  2050. 8.1,
  2051. 0,
  2052. 0,
  2053. 0,
  2054. 0,
  2055. 0,
  2056. 1,
  2057. 1,
  2058. 1,
  2059. 1
  2060. ]
  2061. },
  2062. "_eulerAngles": {
  2063. "__type__": "cc.Vec3",
  2064. "x": 0,
  2065. "y": 0,
  2066. "z": 0
  2067. },
  2068. "_skewX": 0,
  2069. "_skewY": 0,
  2070. "_is3DNode": false,
  2071. "_groupIndex": 0,
  2072. "groupIndex": 0,
  2073. "_id": "ccLOT0v4dFjrKEnkiknYtD"
  2074. },
  2075. {
  2076. "__type__": "cc.Label",
  2077. "_name": "",
  2078. "_objFlags": 0,
  2079. "node": {
  2080. "__id__": 49
  2081. },
  2082. "_enabled": true,
  2083. "_materials": [
  2084. {
  2085. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2086. }
  2087. ],
  2088. "_srcBlendFactor": 770,
  2089. "_dstBlendFactor": 771,
  2090. "_string": "0",
  2091. "_N$string": "0",
  2092. "_fontSize": 40,
  2093. "_lineHeight": 40,
  2094. "_enableWrapText": false,
  2095. "_N$file": null,
  2096. "_isSystemFontUsed": true,
  2097. "_spacingX": 0,
  2098. "_batchAsBitmap": false,
  2099. "_styleFlags": 0,
  2100. "_underlineHeight": 0,
  2101. "_N$horizontalAlign": 1,
  2102. "_N$verticalAlign": 1,
  2103. "_N$fontFamily": "Arial",
  2104. "_N$overflow": 2,
  2105. "_N$cacheMode": 0,
  2106. "_id": "22C2tGc4hOUZxJb2PkY44g"
  2107. },
  2108. {
  2109. "__type__": "cc.PrefabInfo",
  2110. "root": {
  2111. "__id__": 45
  2112. },
  2113. "asset": {
  2114. "__uuid__": "3b5292cd-7ad7-4de8-adf9-12a19aff8517"
  2115. },
  2116. "fileId": "11b2N69vpOTYnyvNMcgYXz",
  2117. "sync": false
  2118. },
  2119. {
  2120. "__type__": "cc.Node",
  2121. "_name": "add",
  2122. "_objFlags": 0,
  2123. "_parent": {
  2124. "__id__": 45
  2125. },
  2126. "_children": [],
  2127. "_active": true,
  2128. "_components": [
  2129. {
  2130. "__id__": 53
  2131. }
  2132. ],
  2133. "_prefab": {
  2134. "__id__": 54
  2135. },
  2136. "_opacity": 255,
  2137. "_color": {
  2138. "__type__": "cc.Color",
  2139. "r": 255,
  2140. "g": 255,
  2141. "b": 255,
  2142. "a": 255
  2143. },
  2144. "_contentSize": {
  2145. "__type__": "cc.Size",
  2146. "width": 33,
  2147. "height": 32
  2148. },
  2149. "_anchorPoint": {
  2150. "__type__": "cc.Vec2",
  2151. "x": 0.5,
  2152. "y": 0.5
  2153. },
  2154. "_trs": {
  2155. "__type__": "TypedArray",
  2156. "ctor": "Float64Array",
  2157. "array": [
  2158. 76.021,
  2159. 0,
  2160. 0,
  2161. 0,
  2162. 0,
  2163. 0,
  2164. 1,
  2165. 1,
  2166. 1,
  2167. 1
  2168. ]
  2169. },
  2170. "_eulerAngles": {
  2171. "__type__": "cc.Vec3",
  2172. "x": 0,
  2173. "y": 0,
  2174. "z": 0
  2175. },
  2176. "_skewX": 0,
  2177. "_skewY": 0,
  2178. "_is3DNode": false,
  2179. "_groupIndex": 0,
  2180. "groupIndex": 0,
  2181. "_id": "b2+PFvBppDbrfdQKiX19AE"
  2182. },
  2183. {
  2184. "__type__": "cc.Sprite",
  2185. "_name": "",
  2186. "_objFlags": 0,
  2187. "node": {
  2188. "__id__": 52
  2189. },
  2190. "_enabled": true,
  2191. "_materials": [
  2192. {
  2193. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2194. }
  2195. ],
  2196. "_srcBlendFactor": 770,
  2197. "_dstBlendFactor": 771,
  2198. "_spriteFrame": {
  2199. "__uuid__": "7e1cc539-976f-4e81-ac89-4d1941529b8a"
  2200. },
  2201. "_type": 0,
  2202. "_sizeMode": 1,
  2203. "_fillType": 0,
  2204. "_fillCenter": {
  2205. "__type__": "cc.Vec2",
  2206. "x": 0,
  2207. "y": 0
  2208. },
  2209. "_fillStart": 0,
  2210. "_fillRange": 0,
  2211. "_isTrimmedMode": true,
  2212. "_atlas": null,
  2213. "_id": "14OXoBAIVILYRaLHi3XF9l"
  2214. },
  2215. {
  2216. "__type__": "cc.PrefabInfo",
  2217. "root": {
  2218. "__id__": 45
  2219. },
  2220. "asset": {
  2221. "__uuid__": "3b5292cd-7ad7-4de8-adf9-12a19aff8517"
  2222. },
  2223. "fileId": "cdew97kIZM0rw6lMNtddbd",
  2224. "sync": false
  2225. },
  2226. {
  2227. "__type__": "cc.Sprite",
  2228. "_name": "",
  2229. "_objFlags": 0,
  2230. "node": {
  2231. "__id__": 45
  2232. },
  2233. "_enabled": true,
  2234. "_materials": [
  2235. {
  2236. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2237. }
  2238. ],
  2239. "_srcBlendFactor": 770,
  2240. "_dstBlendFactor": 771,
  2241. "_spriteFrame": {
  2242. "__uuid__": "df1d18e5-a735-42bc-905d-7ed8a1b397c2"
  2243. },
  2244. "_type": 0,
  2245. "_sizeMode": 1,
  2246. "_fillType": 0,
  2247. "_fillCenter": {
  2248. "__type__": "cc.Vec2",
  2249. "x": 0,
  2250. "y": 0
  2251. },
  2252. "_fillStart": 0,
  2253. "_fillRange": 0,
  2254. "_isTrimmedMode": true,
  2255. "_atlas": null,
  2256. "_id": "16Ln/uxepADKNdRB1mVxtR"
  2257. },
  2258. {
  2259. "__type__": "cc.Widget",
  2260. "_name": "",
  2261. "_objFlags": 0,
  2262. "node": {
  2263. "__id__": 45
  2264. },
  2265. "_enabled": true,
  2266. "alignMode": 1,
  2267. "_target": null,
  2268. "_alignFlags": 9,
  2269. "_left": 0,
  2270. "_right": 0,
  2271. "_top": 32,
  2272. "_bottom": 0,
  2273. "_verticalCenter": 0,
  2274. "_horizontalCenter": 0,
  2275. "_isAbsLeft": true,
  2276. "_isAbsRight": true,
  2277. "_isAbsTop": true,
  2278. "_isAbsBottom": true,
  2279. "_isAbsHorizontalCenter": true,
  2280. "_isAbsVerticalCenter": true,
  2281. "_originalWidth": 0,
  2282. "_originalHeight": 0,
  2283. "_id": "25dADtepRAX6TXDV/m0gsC"
  2284. },
  2285. {
  2286. "__type__": "cc.Button",
  2287. "_name": "",
  2288. "_objFlags": 0,
  2289. "node": {
  2290. "__id__": 45
  2291. },
  2292. "_enabled": true,
  2293. "_normalMaterial": null,
  2294. "_grayMaterial": null,
  2295. "duration": 0.1,
  2296. "zoomScale": 1.2,
  2297. "clickEvents": [
  2298. {
  2299. "__id__": 58
  2300. }
  2301. ],
  2302. "_N$interactable": true,
  2303. "_N$enableAutoGrayEffect": false,
  2304. "_N$transition": 0,
  2305. "transition": 0,
  2306. "_N$normalColor": {
  2307. "__type__": "cc.Color",
  2308. "r": 255,
  2309. "g": 255,
  2310. "b": 255,
  2311. "a": 255
  2312. },
  2313. "_N$pressedColor": {
  2314. "__type__": "cc.Color",
  2315. "r": 211,
  2316. "g": 211,
  2317. "b": 211,
  2318. "a": 255
  2319. },
  2320. "pressedColor": {
  2321. "__type__": "cc.Color",
  2322. "r": 211,
  2323. "g": 211,
  2324. "b": 211,
  2325. "a": 255
  2326. },
  2327. "_N$hoverColor": {
  2328. "__type__": "cc.Color",
  2329. "r": 255,
  2330. "g": 255,
  2331. "b": 255,
  2332. "a": 255
  2333. },
  2334. "hoverColor": {
  2335. "__type__": "cc.Color",
  2336. "r": 255,
  2337. "g": 255,
  2338. "b": 255,
  2339. "a": 255
  2340. },
  2341. "_N$disabledColor": {
  2342. "__type__": "cc.Color",
  2343. "r": 124,
  2344. "g": 124,
  2345. "b": 124,
  2346. "a": 255
  2347. },
  2348. "_N$normalSprite": null,
  2349. "_N$pressedSprite": null,
  2350. "pressedSprite": null,
  2351. "_N$hoverSprite": null,
  2352. "hoverSprite": null,
  2353. "_N$disabledSprite": null,
  2354. "_N$target": null,
  2355. "_id": "e5wSf5y2JFUZIXAH6B837N"
  2356. },
  2357. {
  2358. "__type__": "cc.ClickEvent",
  2359. "target": {
  2360. "__id__": 45
  2361. },
  2362. "component": "",
  2363. "_componentId": "8396097T+xG6KDbGkaPR4oO",
  2364. "handler": "ClickGold",
  2365. "customEventData": ""
  2366. },
  2367. {
  2368. "__type__": "8396097T+xG6KDbGkaPR4oO",
  2369. "_name": "",
  2370. "_objFlags": 0,
  2371. "node": {
  2372. "__id__": 45
  2373. },
  2374. "_enabled": true,
  2375. "_id": "c75P3ftodJvJhvW0hD1RXm"
  2376. },
  2377. {
  2378. "__type__": "cc.PrefabInfo",
  2379. "root": {
  2380. "__id__": 45
  2381. },
  2382. "asset": {
  2383. "__uuid__": "3b5292cd-7ad7-4de8-adf9-12a19aff8517"
  2384. },
  2385. "fileId": "",
  2386. "sync": false
  2387. },
  2388. {
  2389. "__type__": "cc.Node",
  2390. "_name": "UILayout",
  2391. "_objFlags": 0,
  2392. "_parent": {
  2393. "__id__": 8
  2394. },
  2395. "_children": [
  2396. {
  2397. "__id__": 62
  2398. },
  2399. {
  2400. "__id__": 72
  2401. },
  2402. {
  2403. "__id__": 82
  2404. }
  2405. ],
  2406. "_active": true,
  2407. "_components": [
  2408. {
  2409. "__id__": 92
  2410. },
  2411. {
  2412. "__id__": 93
  2413. },
  2414. {
  2415. "__id__": 94
  2416. }
  2417. ],
  2418. "_prefab": null,
  2419. "_opacity": 255,
  2420. "_color": {
  2421. "__type__": "cc.Color",
  2422. "r": 255,
  2423. "g": 255,
  2424. "b": 255,
  2425. "a": 255
  2426. },
  2427. "_contentSize": {
  2428. "__type__": "cc.Size",
  2429. "width": 498,
  2430. "height": 99.9
  2431. },
  2432. "_anchorPoint": {
  2433. "__type__": "cc.Vec2",
  2434. "x": 0.5,
  2435. "y": 0.5
  2436. },
  2437. "_trs": {
  2438. "__type__": "TypedArray",
  2439. "ctor": "Float64Array",
  2440. "array": [
  2441. 0,
  2442. -617.05,
  2443. 0,
  2444. 0,
  2445. 0,
  2446. 0,
  2447. 1,
  2448. 1,
  2449. 1,
  2450. 1
  2451. ]
  2452. },
  2453. "_eulerAngles": {
  2454. "__type__": "cc.Vec3",
  2455. "x": 0,
  2456. "y": 0,
  2457. "z": 0
  2458. },
  2459. "_skewX": 0,
  2460. "_skewY": 0,
  2461. "_is3DNode": false,
  2462. "_groupIndex": 0,
  2463. "groupIndex": 0,
  2464. "_id": "24yNupz19OUZlMDr95o27t"
  2465. },
  2466. {
  2467. "__type__": "cc.Node",
  2468. "_name": "Btn",
  2469. "_objFlags": 0,
  2470. "_parent": {
  2471. "__id__": 61
  2472. },
  2473. "_children": [
  2474. {
  2475. "__id__": 63
  2476. }
  2477. ],
  2478. "_active": true,
  2479. "_components": [
  2480. {
  2481. "__id__": 69
  2482. },
  2483. {
  2484. "__id__": 70
  2485. },
  2486. {
  2487. "__id__": 71
  2488. }
  2489. ],
  2490. "_prefab": null,
  2491. "_opacity": 255,
  2492. "_color": {
  2493. "__type__": "cc.Color",
  2494. "r": 255,
  2495. "g": 255,
  2496. "b": 255,
  2497. "a": 255
  2498. },
  2499. "_contentSize": {
  2500. "__type__": "cc.Size",
  2501. "width": 100,
  2502. "height": 100
  2503. },
  2504. "_anchorPoint": {
  2505. "__type__": "cc.Vec2",
  2506. "x": 0.5,
  2507. "y": 0.5
  2508. },
  2509. "_trs": {
  2510. "__type__": "TypedArray",
  2511. "ctor": "Float64Array",
  2512. "array": [
  2513. -199,
  2514. 0,
  2515. 0,
  2516. 0,
  2517. 0,
  2518. 0,
  2519. 1,
  2520. 1,
  2521. 1,
  2522. 0
  2523. ]
  2524. },
  2525. "_eulerAngles": {
  2526. "__type__": "cc.Vec3",
  2527. "x": 0,
  2528. "y": 0,
  2529. "z": 0
  2530. },
  2531. "_skewX": 0,
  2532. "_skewY": 0,
  2533. "_is3DNode": false,
  2534. "_groupIndex": 0,
  2535. "groupIndex": 0,
  2536. "_id": "e8YpZui4xFp50F46j696RZ"
  2537. },
  2538. {
  2539. "__type__": "cc.Node",
  2540. "_name": "image",
  2541. "_objFlags": 0,
  2542. "_parent": {
  2543. "__id__": 62
  2544. },
  2545. "_children": [
  2546. {
  2547. "__id__": 64
  2548. }
  2549. ],
  2550. "_active": true,
  2551. "_components": [
  2552. {
  2553. "__id__": 68
  2554. }
  2555. ],
  2556. "_prefab": null,
  2557. "_opacity": 255,
  2558. "_color": {
  2559. "__type__": "cc.Color",
  2560. "r": 255,
  2561. "g": 255,
  2562. "b": 255,
  2563. "a": 255
  2564. },
  2565. "_contentSize": {
  2566. "__type__": "cc.Size",
  2567. "width": 100,
  2568. "height": 100
  2569. },
  2570. "_anchorPoint": {
  2571. "__type__": "cc.Vec2",
  2572. "x": 0.5,
  2573. "y": 0.5
  2574. },
  2575. "_trs": {
  2576. "__type__": "TypedArray",
  2577. "ctor": "Float64Array",
  2578. "array": [
  2579. 0,
  2580. 0,
  2581. 0,
  2582. 0,
  2583. 0,
  2584. 0,
  2585. 1,
  2586. 1,
  2587. 1,
  2588. 1
  2589. ]
  2590. },
  2591. "_eulerAngles": {
  2592. "__type__": "cc.Vec3",
  2593. "x": 0,
  2594. "y": 0,
  2595. "z": 0
  2596. },
  2597. "_skewX": 0,
  2598. "_skewY": 0,
  2599. "_is3DNode": false,
  2600. "_groupIndex": 0,
  2601. "groupIndex": 0,
  2602. "_id": "01pMTZ6flIgpLfpEtS9rSO"
  2603. },
  2604. {
  2605. "__type__": "cc.Node",
  2606. "_name": "Sp",
  2607. "_objFlags": 0,
  2608. "_parent": {
  2609. "__id__": 63
  2610. },
  2611. "_children": [
  2612. {
  2613. "__id__": 65
  2614. }
  2615. ],
  2616. "_active": true,
  2617. "_components": [
  2618. {
  2619. "__id__": 67
  2620. }
  2621. ],
  2622. "_prefab": null,
  2623. "_opacity": 255,
  2624. "_color": {
  2625. "__type__": "cc.Color",
  2626. "r": 255,
  2627. "g": 255,
  2628. "b": 255,
  2629. "a": 255
  2630. },
  2631. "_contentSize": {
  2632. "__type__": "cc.Size",
  2633. "width": 31,
  2634. "height": 29
  2635. },
  2636. "_anchorPoint": {
  2637. "__type__": "cc.Vec2",
  2638. "x": 0.5,
  2639. "y": 0.5
  2640. },
  2641. "_trs": {
  2642. "__type__": "TypedArray",
  2643. "ctor": "Float64Array",
  2644. "array": [
  2645. 49.305,
  2646. 54.636,
  2647. 0,
  2648. 0,
  2649. 0,
  2650. 0,
  2651. 1,
  2652. 1,
  2653. 1,
  2654. 1
  2655. ]
  2656. },
  2657. "_eulerAngles": {
  2658. "__type__": "cc.Vec3",
  2659. "x": 0,
  2660. "y": 0,
  2661. "z": 0
  2662. },
  2663. "_skewX": 0,
  2664. "_skewY": 0,
  2665. "_is3DNode": false,
  2666. "_groupIndex": 0,
  2667. "groupIndex": 0,
  2668. "_id": "7039TqCUBLUr2OaB0fOA5R"
  2669. },
  2670. {
  2671. "__type__": "cc.Node",
  2672. "_name": "Label",
  2673. "_objFlags": 0,
  2674. "_parent": {
  2675. "__id__": 64
  2676. },
  2677. "_children": [],
  2678. "_active": true,
  2679. "_components": [
  2680. {
  2681. "__id__": 66
  2682. }
  2683. ],
  2684. "_prefab": null,
  2685. "_opacity": 255,
  2686. "_color": {
  2687. "__type__": "cc.Color",
  2688. "r": 255,
  2689. "g": 255,
  2690. "b": 255,
  2691. "a": 255
  2692. },
  2693. "_contentSize": {
  2694. "__type__": "cc.Size",
  2695. "width": 13.35,
  2696. "height": 30.24
  2697. },
  2698. "_anchorPoint": {
  2699. "__type__": "cc.Vec2",
  2700. "x": 0.5,
  2701. "y": 0.5
  2702. },
  2703. "_trs": {
  2704. "__type__": "TypedArray",
  2705. "ctor": "Float64Array",
  2706. "array": [
  2707. 0,
  2708. 0,
  2709. 0,
  2710. 0,
  2711. 0,
  2712. 0,
  2713. 1,
  2714. 1,
  2715. 1,
  2716. 1
  2717. ]
  2718. },
  2719. "_eulerAngles": {
  2720. "__type__": "cc.Vec3",
  2721. "x": 0,
  2722. "y": 0,
  2723. "z": 0
  2724. },
  2725. "_skewX": 0,
  2726. "_skewY": 0,
  2727. "_is3DNode": false,
  2728. "_groupIndex": 0,
  2729. "groupIndex": 0,
  2730. "_id": "adUDPs4CNGTqD2/70+XPK+"
  2731. },
  2732. {
  2733. "__type__": "cc.Label",
  2734. "_name": "",
  2735. "_objFlags": 0,
  2736. "node": {
  2737. "__id__": 65
  2738. },
  2739. "_enabled": true,
  2740. "_materials": [
  2741. {
  2742. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2743. }
  2744. ],
  2745. "_srcBlendFactor": 770,
  2746. "_dstBlendFactor": 771,
  2747. "_string": "1",
  2748. "_N$string": "1",
  2749. "_fontSize": 24,
  2750. "_lineHeight": 24,
  2751. "_enableWrapText": true,
  2752. "_N$file": null,
  2753. "_isSystemFontUsed": true,
  2754. "_spacingX": 0,
  2755. "_batchAsBitmap": false,
  2756. "_styleFlags": 0,
  2757. "_underlineHeight": 0,
  2758. "_N$horizontalAlign": 1,
  2759. "_N$verticalAlign": 1,
  2760. "_N$fontFamily": "Arial",
  2761. "_N$overflow": 0,
  2762. "_N$cacheMode": 0,
  2763. "_id": "45rpkE4i5McaKVrY8HJcxi"
  2764. },
  2765. {
  2766. "__type__": "cc.Sprite",
  2767. "_name": "",
  2768. "_objFlags": 0,
  2769. "node": {
  2770. "__id__": 64
  2771. },
  2772. "_enabled": true,
  2773. "_materials": [
  2774. {
  2775. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2776. }
  2777. ],
  2778. "_srcBlendFactor": 770,
  2779. "_dstBlendFactor": 771,
  2780. "_spriteFrame": {
  2781. "__uuid__": "c8a36c9c-7ae1-4f25-8cc2-4aeb4caea7c2"
  2782. },
  2783. "_type": 0,
  2784. "_sizeMode": 1,
  2785. "_fillType": 0,
  2786. "_fillCenter": {
  2787. "__type__": "cc.Vec2",
  2788. "x": 0,
  2789. "y": 0
  2790. },
  2791. "_fillStart": 0,
  2792. "_fillRange": 0,
  2793. "_isTrimmedMode": true,
  2794. "_atlas": null,
  2795. "_id": "baoPvPGKhJcYM3gXa1V5TF"
  2796. },
  2797. {
  2798. "__type__": "cc.Sprite",
  2799. "_name": "",
  2800. "_objFlags": 0,
  2801. "node": {
  2802. "__id__": 63
  2803. },
  2804. "_enabled": true,
  2805. "_materials": [
  2806. {
  2807. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2808. }
  2809. ],
  2810. "_srcBlendFactor": 770,
  2811. "_dstBlendFactor": 771,
  2812. "_spriteFrame": {
  2813. "__uuid__": "7bef3c84-29cd-4dcf-8bf0-899a56ee6e47"
  2814. },
  2815. "_type": 0,
  2816. "_sizeMode": 0,
  2817. "_fillType": 0,
  2818. "_fillCenter": {
  2819. "__type__": "cc.Vec2",
  2820. "x": 0,
  2821. "y": 0
  2822. },
  2823. "_fillStart": 0,
  2824. "_fillRange": 0,
  2825. "_isTrimmedMode": true,
  2826. "_atlas": null,
  2827. "_id": "c4k5XX3FlPHYbfrF9p6CUE"
  2828. },
  2829. {
  2830. "__type__": "cc.Sprite",
  2831. "_name": "",
  2832. "_objFlags": 0,
  2833. "node": {
  2834. "__id__": 62
  2835. },
  2836. "_enabled": false,
  2837. "_materials": [
  2838. {
  2839. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2840. }
  2841. ],
  2842. "_srcBlendFactor": 770,
  2843. "_dstBlendFactor": 771,
  2844. "_spriteFrame": {
  2845. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  2846. },
  2847. "_type": 0,
  2848. "_sizeMode": 0,
  2849. "_fillType": 0,
  2850. "_fillCenter": {
  2851. "__type__": "cc.Vec2",
  2852. "x": 0,
  2853. "y": 0
  2854. },
  2855. "_fillStart": 0,
  2856. "_fillRange": 0,
  2857. "_isTrimmedMode": true,
  2858. "_atlas": null,
  2859. "_id": "b3ERJj2LRO/o9Yd43jv22N"
  2860. },
  2861. {
  2862. "__type__": "cc.Button",
  2863. "_name": "",
  2864. "_objFlags": 0,
  2865. "node": {
  2866. "__id__": 62
  2867. },
  2868. "_enabled": true,
  2869. "_normalMaterial": null,
  2870. "_grayMaterial": null,
  2871. "duration": 0.1,
  2872. "zoomScale": 1.05,
  2873. "clickEvents": [],
  2874. "_N$interactable": true,
  2875. "_N$enableAutoGrayEffect": false,
  2876. "_N$transition": 3,
  2877. "transition": 3,
  2878. "_N$normalColor": {
  2879. "__type__": "cc.Color",
  2880. "r": 255,
  2881. "g": 255,
  2882. "b": 255,
  2883. "a": 255
  2884. },
  2885. "_N$pressedColor": {
  2886. "__type__": "cc.Color",
  2887. "r": 211,
  2888. "g": 211,
  2889. "b": 211,
  2890. "a": 255
  2891. },
  2892. "pressedColor": {
  2893. "__type__": "cc.Color",
  2894. "r": 211,
  2895. "g": 211,
  2896. "b": 211,
  2897. "a": 255
  2898. },
  2899. "_N$hoverColor": {
  2900. "__type__": "cc.Color",
  2901. "r": 255,
  2902. "g": 255,
  2903. "b": 255,
  2904. "a": 255
  2905. },
  2906. "hoverColor": {
  2907. "__type__": "cc.Color",
  2908. "r": 255,
  2909. "g": 255,
  2910. "b": 255,
  2911. "a": 255
  2912. },
  2913. "_N$disabledColor": {
  2914. "__type__": "cc.Color",
  2915. "r": 124,
  2916. "g": 124,
  2917. "b": 124,
  2918. "a": 255
  2919. },
  2920. "_N$normalSprite": null,
  2921. "_N$pressedSprite": null,
  2922. "pressedSprite": null,
  2923. "_N$hoverSprite": null,
  2924. "hoverSprite": null,
  2925. "_N$disabledSprite": null,
  2926. "_N$target": null,
  2927. "_id": "bbekjrBxFOsrKQiUBfOGXK"
  2928. },
  2929. {
  2930. "__type__": "ef0ffdESFtBMIt9WEykQMof",
  2931. "_name": "",
  2932. "_objFlags": 0,
  2933. "node": {
  2934. "__id__": 62
  2935. },
  2936. "_enabled": true,
  2937. "Count": {
  2938. "__id__": 66
  2939. },
  2940. "CountBg_Video": {
  2941. "__id__": 67
  2942. },
  2943. "CountBg": {
  2944. "__uuid__": "c8a36c9c-7ae1-4f25-8cc2-4aeb4caea7c2"
  2945. },
  2946. "Video": {
  2947. "__uuid__": "1490dee7-cabf-4b09-9d3c-200af1909080"
  2948. },
  2949. "_id": "a88j4yxKpHborCBfqRBVtI"
  2950. },
  2951. {
  2952. "__type__": "cc.Node",
  2953. "_name": "Btn",
  2954. "_objFlags": 0,
  2955. "_parent": {
  2956. "__id__": 61
  2957. },
  2958. "_children": [
  2959. {
  2960. "__id__": 73
  2961. }
  2962. ],
  2963. "_active": true,
  2964. "_components": [
  2965. {
  2966. "__id__": 79
  2967. },
  2968. {
  2969. "__id__": 80
  2970. },
  2971. {
  2972. "__id__": 81
  2973. }
  2974. ],
  2975. "_prefab": null,
  2976. "_opacity": 255,
  2977. "_color": {
  2978. "__type__": "cc.Color",
  2979. "r": 255,
  2980. "g": 255,
  2981. "b": 255,
  2982. "a": 255
  2983. },
  2984. "_contentSize": {
  2985. "__type__": "cc.Size",
  2986. "width": 100,
  2987. "height": 100
  2988. },
  2989. "_anchorPoint": {
  2990. "__type__": "cc.Vec2",
  2991. "x": 0.5,
  2992. "y": 0.5
  2993. },
  2994. "_trs": {
  2995. "__type__": "TypedArray",
  2996. "ctor": "Float64Array",
  2997. "array": [
  2998. 0,
  2999. 0,
  3000. 0,
  3001. 0,
  3002. 0,
  3003. 0,
  3004. 1,
  3005. 1,
  3006. 1,
  3007. 0
  3008. ]
  3009. },
  3010. "_eulerAngles": {
  3011. "__type__": "cc.Vec3",
  3012. "x": 0,
  3013. "y": 0,
  3014. "z": 0
  3015. },
  3016. "_skewX": 0,
  3017. "_skewY": 0,
  3018. "_is3DNode": false,
  3019. "_groupIndex": 0,
  3020. "groupIndex": 0,
  3021. "_id": "8cG5cJMEZMV6fH9xsVlNxt"
  3022. },
  3023. {
  3024. "__type__": "cc.Node",
  3025. "_name": "image",
  3026. "_objFlags": 0,
  3027. "_parent": {
  3028. "__id__": 72
  3029. },
  3030. "_children": [
  3031. {
  3032. "__id__": 74
  3033. }
  3034. ],
  3035. "_active": true,
  3036. "_components": [
  3037. {
  3038. "__id__": 78
  3039. }
  3040. ],
  3041. "_prefab": null,
  3042. "_opacity": 255,
  3043. "_color": {
  3044. "__type__": "cc.Color",
  3045. "r": 255,
  3046. "g": 255,
  3047. "b": 255,
  3048. "a": 255
  3049. },
  3050. "_contentSize": {
  3051. "__type__": "cc.Size",
  3052. "width": 100,
  3053. "height": 100
  3054. },
  3055. "_anchorPoint": {
  3056. "__type__": "cc.Vec2",
  3057. "x": 0.5,
  3058. "y": 0.5
  3059. },
  3060. "_trs": {
  3061. "__type__": "TypedArray",
  3062. "ctor": "Float64Array",
  3063. "array": [
  3064. 0,
  3065. 0,
  3066. 0,
  3067. 0,
  3068. 0,
  3069. 0,
  3070. 1,
  3071. 1,
  3072. 1,
  3073. 1
  3074. ]
  3075. },
  3076. "_eulerAngles": {
  3077. "__type__": "cc.Vec3",
  3078. "x": 0,
  3079. "y": 0,
  3080. "z": 0
  3081. },
  3082. "_skewX": 0,
  3083. "_skewY": 0,
  3084. "_is3DNode": false,
  3085. "_groupIndex": 0,
  3086. "groupIndex": 0,
  3087. "_id": "14d3CwMpBDHYj8L0PRV0Ju"
  3088. },
  3089. {
  3090. "__type__": "cc.Node",
  3091. "_name": "Sp",
  3092. "_objFlags": 0,
  3093. "_parent": {
  3094. "__id__": 73
  3095. },
  3096. "_children": [
  3097. {
  3098. "__id__": 75
  3099. }
  3100. ],
  3101. "_active": true,
  3102. "_components": [
  3103. {
  3104. "__id__": 77
  3105. }
  3106. ],
  3107. "_prefab": null,
  3108. "_opacity": 255,
  3109. "_color": {
  3110. "__type__": "cc.Color",
  3111. "r": 255,
  3112. "g": 255,
  3113. "b": 255,
  3114. "a": 255
  3115. },
  3116. "_contentSize": {
  3117. "__type__": "cc.Size",
  3118. "width": 31,
  3119. "height": 29
  3120. },
  3121. "_anchorPoint": {
  3122. "__type__": "cc.Vec2",
  3123. "x": 0.5,
  3124. "y": 0.5
  3125. },
  3126. "_trs": {
  3127. "__type__": "TypedArray",
  3128. "ctor": "Float64Array",
  3129. "array": [
  3130. 49.305,
  3131. 54.636,
  3132. 0,
  3133. 0,
  3134. 0,
  3135. 0,
  3136. 1,
  3137. 1,
  3138. 1,
  3139. 1
  3140. ]
  3141. },
  3142. "_eulerAngles": {
  3143. "__type__": "cc.Vec3",
  3144. "x": 0,
  3145. "y": 0,
  3146. "z": 0
  3147. },
  3148. "_skewX": 0,
  3149. "_skewY": 0,
  3150. "_is3DNode": false,
  3151. "_groupIndex": 0,
  3152. "groupIndex": 0,
  3153. "_id": "38wE6dUehFx5ur/24Km3IL"
  3154. },
  3155. {
  3156. "__type__": "cc.Node",
  3157. "_name": "New Label",
  3158. "_objFlags": 0,
  3159. "_parent": {
  3160. "__id__": 74
  3161. },
  3162. "_children": [],
  3163. "_active": true,
  3164. "_components": [
  3165. {
  3166. "__id__": 76
  3167. }
  3168. ],
  3169. "_prefab": null,
  3170. "_opacity": 255,
  3171. "_color": {
  3172. "__type__": "cc.Color",
  3173. "r": 255,
  3174. "g": 255,
  3175. "b": 255,
  3176. "a": 255
  3177. },
  3178. "_contentSize": {
  3179. "__type__": "cc.Size",
  3180. "width": 13.35,
  3181. "height": 30.24
  3182. },
  3183. "_anchorPoint": {
  3184. "__type__": "cc.Vec2",
  3185. "x": 0.5,
  3186. "y": 0.5
  3187. },
  3188. "_trs": {
  3189. "__type__": "TypedArray",
  3190. "ctor": "Float64Array",
  3191. "array": [
  3192. 0,
  3193. 0,
  3194. 0,
  3195. 0,
  3196. 0,
  3197. 0,
  3198. 1,
  3199. 1,
  3200. 1,
  3201. 1
  3202. ]
  3203. },
  3204. "_eulerAngles": {
  3205. "__type__": "cc.Vec3",
  3206. "x": 0,
  3207. "y": 0,
  3208. "z": 0
  3209. },
  3210. "_skewX": 0,
  3211. "_skewY": 0,
  3212. "_is3DNode": false,
  3213. "_groupIndex": 0,
  3214. "groupIndex": 0,
  3215. "_id": "deK7Gii05HNZrj5ZlTv/tc"
  3216. },
  3217. {
  3218. "__type__": "cc.Label",
  3219. "_name": "",
  3220. "_objFlags": 0,
  3221. "node": {
  3222. "__id__": 75
  3223. },
  3224. "_enabled": true,
  3225. "_materials": [
  3226. {
  3227. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3228. }
  3229. ],
  3230. "_srcBlendFactor": 770,
  3231. "_dstBlendFactor": 771,
  3232. "_string": "1",
  3233. "_N$string": "1",
  3234. "_fontSize": 24,
  3235. "_lineHeight": 24,
  3236. "_enableWrapText": true,
  3237. "_N$file": null,
  3238. "_isSystemFontUsed": true,
  3239. "_spacingX": 0,
  3240. "_batchAsBitmap": false,
  3241. "_styleFlags": 0,
  3242. "_underlineHeight": 0,
  3243. "_N$horizontalAlign": 1,
  3244. "_N$verticalAlign": 1,
  3245. "_N$fontFamily": "Arial",
  3246. "_N$overflow": 0,
  3247. "_N$cacheMode": 0,
  3248. "_id": "a5GcbnwHlAOa47SA4u3dv7"
  3249. },
  3250. {
  3251. "__type__": "cc.Sprite",
  3252. "_name": "",
  3253. "_objFlags": 0,
  3254. "node": {
  3255. "__id__": 74
  3256. },
  3257. "_enabled": true,
  3258. "_materials": [
  3259. {
  3260. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3261. }
  3262. ],
  3263. "_srcBlendFactor": 770,
  3264. "_dstBlendFactor": 771,
  3265. "_spriteFrame": {
  3266. "__uuid__": "c8a36c9c-7ae1-4f25-8cc2-4aeb4caea7c2"
  3267. },
  3268. "_type": 0,
  3269. "_sizeMode": 1,
  3270. "_fillType": 0,
  3271. "_fillCenter": {
  3272. "__type__": "cc.Vec2",
  3273. "x": 0,
  3274. "y": 0
  3275. },
  3276. "_fillStart": 0,
  3277. "_fillRange": 0,
  3278. "_isTrimmedMode": true,
  3279. "_atlas": null,
  3280. "_id": "d8h3Q/SR1GAIA41itYFUNV"
  3281. },
  3282. {
  3283. "__type__": "cc.Sprite",
  3284. "_name": "",
  3285. "_objFlags": 0,
  3286. "node": {
  3287. "__id__": 73
  3288. },
  3289. "_enabled": true,
  3290. "_materials": [
  3291. {
  3292. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3293. }
  3294. ],
  3295. "_srcBlendFactor": 770,
  3296. "_dstBlendFactor": 771,
  3297. "_spriteFrame": {
  3298. "__uuid__": "554a5bb9-0f47-48bb-8ded-1666c37338b9"
  3299. },
  3300. "_type": 0,
  3301. "_sizeMode": 0,
  3302. "_fillType": 0,
  3303. "_fillCenter": {
  3304. "__type__": "cc.Vec2",
  3305. "x": 0,
  3306. "y": 0
  3307. },
  3308. "_fillStart": 0,
  3309. "_fillRange": 0,
  3310. "_isTrimmedMode": true,
  3311. "_atlas": null,
  3312. "_id": "de5JEGsr5G9r1MCZq3Q5dP"
  3313. },
  3314. {
  3315. "__type__": "cc.Sprite",
  3316. "_name": "",
  3317. "_objFlags": 0,
  3318. "node": {
  3319. "__id__": 72
  3320. },
  3321. "_enabled": false,
  3322. "_materials": [
  3323. {
  3324. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3325. }
  3326. ],
  3327. "_srcBlendFactor": 770,
  3328. "_dstBlendFactor": 771,
  3329. "_spriteFrame": {
  3330. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  3331. },
  3332. "_type": 0,
  3333. "_sizeMode": 0,
  3334. "_fillType": 0,
  3335. "_fillCenter": {
  3336. "__type__": "cc.Vec2",
  3337. "x": 0,
  3338. "y": 0
  3339. },
  3340. "_fillStart": 0,
  3341. "_fillRange": 0,
  3342. "_isTrimmedMode": true,
  3343. "_atlas": null,
  3344. "_id": "77AIjO62lKIq6glk66oN08"
  3345. },
  3346. {
  3347. "__type__": "cc.Button",
  3348. "_name": "",
  3349. "_objFlags": 0,
  3350. "node": {
  3351. "__id__": 72
  3352. },
  3353. "_enabled": true,
  3354. "_normalMaterial": null,
  3355. "_grayMaterial": null,
  3356. "duration": 0.1,
  3357. "zoomScale": 1.05,
  3358. "clickEvents": [],
  3359. "_N$interactable": true,
  3360. "_N$enableAutoGrayEffect": false,
  3361. "_N$transition": 3,
  3362. "transition": 3,
  3363. "_N$normalColor": {
  3364. "__type__": "cc.Color",
  3365. "r": 255,
  3366. "g": 255,
  3367. "b": 255,
  3368. "a": 255
  3369. },
  3370. "_N$pressedColor": {
  3371. "__type__": "cc.Color",
  3372. "r": 211,
  3373. "g": 211,
  3374. "b": 211,
  3375. "a": 255
  3376. },
  3377. "pressedColor": {
  3378. "__type__": "cc.Color",
  3379. "r": 211,
  3380. "g": 211,
  3381. "b": 211,
  3382. "a": 255
  3383. },
  3384. "_N$hoverColor": {
  3385. "__type__": "cc.Color",
  3386. "r": 255,
  3387. "g": 255,
  3388. "b": 255,
  3389. "a": 255
  3390. },
  3391. "hoverColor": {
  3392. "__type__": "cc.Color",
  3393. "r": 255,
  3394. "g": 255,
  3395. "b": 255,
  3396. "a": 255
  3397. },
  3398. "_N$disabledColor": {
  3399. "__type__": "cc.Color",
  3400. "r": 124,
  3401. "g": 124,
  3402. "b": 124,
  3403. "a": 255
  3404. },
  3405. "_N$normalSprite": null,
  3406. "_N$pressedSprite": null,
  3407. "pressedSprite": null,
  3408. "_N$hoverSprite": null,
  3409. "hoverSprite": null,
  3410. "_N$disabledSprite": null,
  3411. "_N$target": null,
  3412. "_id": "02SLDmzkJDKJwO9k3h8kzV"
  3413. },
  3414. {
  3415. "__type__": "5b306XT4lZBXIfIR/1RDO5a",
  3416. "_name": "",
  3417. "_objFlags": 0,
  3418. "node": {
  3419. "__id__": 72
  3420. },
  3421. "_enabled": true,
  3422. "Count": {
  3423. "__id__": 76
  3424. },
  3425. "CountBg_Video": {
  3426. "__id__": 77
  3427. },
  3428. "CountBg": {
  3429. "__uuid__": "c8a36c9c-7ae1-4f25-8cc2-4aeb4caea7c2"
  3430. },
  3431. "Video": {
  3432. "__uuid__": "1490dee7-cabf-4b09-9d3c-200af1909080"
  3433. },
  3434. "_id": "acUmgShCxEYICI/rqOF3Pn"
  3435. },
  3436. {
  3437. "__type__": "cc.Node",
  3438. "_name": "Btn",
  3439. "_objFlags": 0,
  3440. "_parent": {
  3441. "__id__": 61
  3442. },
  3443. "_children": [
  3444. {
  3445. "__id__": 83
  3446. }
  3447. ],
  3448. "_active": true,
  3449. "_components": [
  3450. {
  3451. "__id__": 89
  3452. },
  3453. {
  3454. "__id__": 90
  3455. },
  3456. {
  3457. "__id__": 91
  3458. }
  3459. ],
  3460. "_prefab": null,
  3461. "_opacity": 255,
  3462. "_color": {
  3463. "__type__": "cc.Color",
  3464. "r": 255,
  3465. "g": 255,
  3466. "b": 255,
  3467. "a": 255
  3468. },
  3469. "_contentSize": {
  3470. "__type__": "cc.Size",
  3471. "width": 100,
  3472. "height": 100
  3473. },
  3474. "_anchorPoint": {
  3475. "__type__": "cc.Vec2",
  3476. "x": 0.5,
  3477. "y": 0.5
  3478. },
  3479. "_trs": {
  3480. "__type__": "TypedArray",
  3481. "ctor": "Float64Array",
  3482. "array": [
  3483. 199,
  3484. 0,
  3485. 0,
  3486. 0,
  3487. 0,
  3488. 0,
  3489. 1,
  3490. 1,
  3491. 1,
  3492. 0
  3493. ]
  3494. },
  3495. "_eulerAngles": {
  3496. "__type__": "cc.Vec3",
  3497. "x": 0,
  3498. "y": 0,
  3499. "z": 0
  3500. },
  3501. "_skewX": 0,
  3502. "_skewY": 0,
  3503. "_is3DNode": false,
  3504. "_groupIndex": 0,
  3505. "groupIndex": 0,
  3506. "_id": "bdTVeypE1LnqhgVY0cAT2f"
  3507. },
  3508. {
  3509. "__type__": "cc.Node",
  3510. "_name": "image",
  3511. "_objFlags": 0,
  3512. "_parent": {
  3513. "__id__": 82
  3514. },
  3515. "_children": [
  3516. {
  3517. "__id__": 84
  3518. }
  3519. ],
  3520. "_active": true,
  3521. "_components": [
  3522. {
  3523. "__id__": 88
  3524. }
  3525. ],
  3526. "_prefab": null,
  3527. "_opacity": 255,
  3528. "_color": {
  3529. "__type__": "cc.Color",
  3530. "r": 255,
  3531. "g": 255,
  3532. "b": 255,
  3533. "a": 255
  3534. },
  3535. "_contentSize": {
  3536. "__type__": "cc.Size",
  3537. "width": 100,
  3538. "height": 100
  3539. },
  3540. "_anchorPoint": {
  3541. "__type__": "cc.Vec2",
  3542. "x": 0.5,
  3543. "y": 0.5
  3544. },
  3545. "_trs": {
  3546. "__type__": "TypedArray",
  3547. "ctor": "Float64Array",
  3548. "array": [
  3549. 0,
  3550. 0,
  3551. 0,
  3552. 0,
  3553. 0,
  3554. 0,
  3555. 1,
  3556. 1,
  3557. 1,
  3558. 1
  3559. ]
  3560. },
  3561. "_eulerAngles": {
  3562. "__type__": "cc.Vec3",
  3563. "x": 0,
  3564. "y": 0,
  3565. "z": 0
  3566. },
  3567. "_skewX": 0,
  3568. "_skewY": 0,
  3569. "_is3DNode": false,
  3570. "_groupIndex": 0,
  3571. "groupIndex": 0,
  3572. "_id": "11vjsVWZFJbppHeAGrazIw"
  3573. },
  3574. {
  3575. "__type__": "cc.Node",
  3576. "_name": "Sp",
  3577. "_objFlags": 0,
  3578. "_parent": {
  3579. "__id__": 83
  3580. },
  3581. "_children": [
  3582. {
  3583. "__id__": 85
  3584. }
  3585. ],
  3586. "_active": true,
  3587. "_components": [
  3588. {
  3589. "__id__": 87
  3590. }
  3591. ],
  3592. "_prefab": null,
  3593. "_opacity": 255,
  3594. "_color": {
  3595. "__type__": "cc.Color",
  3596. "r": 255,
  3597. "g": 255,
  3598. "b": 255,
  3599. "a": 255
  3600. },
  3601. "_contentSize": {
  3602. "__type__": "cc.Size",
  3603. "width": 31,
  3604. "height": 29
  3605. },
  3606. "_anchorPoint": {
  3607. "__type__": "cc.Vec2",
  3608. "x": 0.5,
  3609. "y": 0.5
  3610. },
  3611. "_trs": {
  3612. "__type__": "TypedArray",
  3613. "ctor": "Float64Array",
  3614. "array": [
  3615. 49.305,
  3616. 54.636,
  3617. 0,
  3618. 0,
  3619. 0,
  3620. 0,
  3621. 1,
  3622. 1,
  3623. 1,
  3624. 1
  3625. ]
  3626. },
  3627. "_eulerAngles": {
  3628. "__type__": "cc.Vec3",
  3629. "x": 0,
  3630. "y": 0,
  3631. "z": 0
  3632. },
  3633. "_skewX": 0,
  3634. "_skewY": 0,
  3635. "_is3DNode": false,
  3636. "_groupIndex": 0,
  3637. "groupIndex": 0,
  3638. "_id": "a86Vl0NRZDN5mYSaUD1p14"
  3639. },
  3640. {
  3641. "__type__": "cc.Node",
  3642. "_name": "New Label",
  3643. "_objFlags": 0,
  3644. "_parent": {
  3645. "__id__": 84
  3646. },
  3647. "_children": [],
  3648. "_active": true,
  3649. "_components": [
  3650. {
  3651. "__id__": 86
  3652. }
  3653. ],
  3654. "_prefab": null,
  3655. "_opacity": 255,
  3656. "_color": {
  3657. "__type__": "cc.Color",
  3658. "r": 255,
  3659. "g": 255,
  3660. "b": 255,
  3661. "a": 255
  3662. },
  3663. "_contentSize": {
  3664. "__type__": "cc.Size",
  3665. "width": 13.35,
  3666. "height": 30.24
  3667. },
  3668. "_anchorPoint": {
  3669. "__type__": "cc.Vec2",
  3670. "x": 0.5,
  3671. "y": 0.5
  3672. },
  3673. "_trs": {
  3674. "__type__": "TypedArray",
  3675. "ctor": "Float64Array",
  3676. "array": [
  3677. 0,
  3678. 0,
  3679. 0,
  3680. 0,
  3681. 0,
  3682. 0,
  3683. 1,
  3684. 1,
  3685. 1,
  3686. 1
  3687. ]
  3688. },
  3689. "_eulerAngles": {
  3690. "__type__": "cc.Vec3",
  3691. "x": 0,
  3692. "y": 0,
  3693. "z": 0
  3694. },
  3695. "_skewX": 0,
  3696. "_skewY": 0,
  3697. "_is3DNode": false,
  3698. "_groupIndex": 0,
  3699. "groupIndex": 0,
  3700. "_id": "29AYDSB2VExKeeU4RgduOr"
  3701. },
  3702. {
  3703. "__type__": "cc.Label",
  3704. "_name": "",
  3705. "_objFlags": 0,
  3706. "node": {
  3707. "__id__": 85
  3708. },
  3709. "_enabled": true,
  3710. "_materials": [
  3711. {
  3712. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3713. }
  3714. ],
  3715. "_srcBlendFactor": 770,
  3716. "_dstBlendFactor": 771,
  3717. "_string": "1",
  3718. "_N$string": "1",
  3719. "_fontSize": 24,
  3720. "_lineHeight": 24,
  3721. "_enableWrapText": true,
  3722. "_N$file": null,
  3723. "_isSystemFontUsed": true,
  3724. "_spacingX": 0,
  3725. "_batchAsBitmap": false,
  3726. "_styleFlags": 0,
  3727. "_underlineHeight": 0,
  3728. "_N$horizontalAlign": 1,
  3729. "_N$verticalAlign": 1,
  3730. "_N$fontFamily": "Arial",
  3731. "_N$overflow": 0,
  3732. "_N$cacheMode": 0,
  3733. "_id": "ddo9iMbphDB4fYhk3Uigu5"
  3734. },
  3735. {
  3736. "__type__": "cc.Sprite",
  3737. "_name": "",
  3738. "_objFlags": 0,
  3739. "node": {
  3740. "__id__": 84
  3741. },
  3742. "_enabled": true,
  3743. "_materials": [
  3744. {
  3745. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3746. }
  3747. ],
  3748. "_srcBlendFactor": 770,
  3749. "_dstBlendFactor": 771,
  3750. "_spriteFrame": {
  3751. "__uuid__": "c8a36c9c-7ae1-4f25-8cc2-4aeb4caea7c2"
  3752. },
  3753. "_type": 0,
  3754. "_sizeMode": 1,
  3755. "_fillType": 0,
  3756. "_fillCenter": {
  3757. "__type__": "cc.Vec2",
  3758. "x": 0,
  3759. "y": 0
  3760. },
  3761. "_fillStart": 0,
  3762. "_fillRange": 0,
  3763. "_isTrimmedMode": true,
  3764. "_atlas": null,
  3765. "_id": "9d2SVmtFdPnYIVatXe6dfh"
  3766. },
  3767. {
  3768. "__type__": "cc.Sprite",
  3769. "_name": "",
  3770. "_objFlags": 0,
  3771. "node": {
  3772. "__id__": 83
  3773. },
  3774. "_enabled": true,
  3775. "_materials": [
  3776. {
  3777. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3778. }
  3779. ],
  3780. "_srcBlendFactor": 770,
  3781. "_dstBlendFactor": 771,
  3782. "_spriteFrame": {
  3783. "__uuid__": "492fbfd8-37b0-43e5-8bf0-8710e8cb5155"
  3784. },
  3785. "_type": 0,
  3786. "_sizeMode": 0,
  3787. "_fillType": 0,
  3788. "_fillCenter": {
  3789. "__type__": "cc.Vec2",
  3790. "x": 0,
  3791. "y": 0
  3792. },
  3793. "_fillStart": 0,
  3794. "_fillRange": 0,
  3795. "_isTrimmedMode": true,
  3796. "_atlas": null,
  3797. "_id": "85JimkgXdDE6W2o6OxowYN"
  3798. },
  3799. {
  3800. "__type__": "cc.Sprite",
  3801. "_name": "",
  3802. "_objFlags": 0,
  3803. "node": {
  3804. "__id__": 82
  3805. },
  3806. "_enabled": false,
  3807. "_materials": [
  3808. {
  3809. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3810. }
  3811. ],
  3812. "_srcBlendFactor": 770,
  3813. "_dstBlendFactor": 771,
  3814. "_spriteFrame": {
  3815. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  3816. },
  3817. "_type": 0,
  3818. "_sizeMode": 0,
  3819. "_fillType": 0,
  3820. "_fillCenter": {
  3821. "__type__": "cc.Vec2",
  3822. "x": 0,
  3823. "y": 0
  3824. },
  3825. "_fillStart": 0,
  3826. "_fillRange": 0,
  3827. "_isTrimmedMode": true,
  3828. "_atlas": null,
  3829. "_id": "c3QTzI+wlKrqhzK/x598Ns"
  3830. },
  3831. {
  3832. "__type__": "cc.Button",
  3833. "_name": "",
  3834. "_objFlags": 0,
  3835. "node": {
  3836. "__id__": 82
  3837. },
  3838. "_enabled": true,
  3839. "_normalMaterial": null,
  3840. "_grayMaterial": null,
  3841. "duration": 0.1,
  3842. "zoomScale": 1.05,
  3843. "clickEvents": [],
  3844. "_N$interactable": true,
  3845. "_N$enableAutoGrayEffect": false,
  3846. "_N$transition": 3,
  3847. "transition": 3,
  3848. "_N$normalColor": {
  3849. "__type__": "cc.Color",
  3850. "r": 255,
  3851. "g": 255,
  3852. "b": 255,
  3853. "a": 255
  3854. },
  3855. "_N$pressedColor": {
  3856. "__type__": "cc.Color",
  3857. "r": 211,
  3858. "g": 211,
  3859. "b": 211,
  3860. "a": 255
  3861. },
  3862. "pressedColor": {
  3863. "__type__": "cc.Color",
  3864. "r": 211,
  3865. "g": 211,
  3866. "b": 211,
  3867. "a": 255
  3868. },
  3869. "_N$hoverColor": {
  3870. "__type__": "cc.Color",
  3871. "r": 255,
  3872. "g": 255,
  3873. "b": 255,
  3874. "a": 255
  3875. },
  3876. "hoverColor": {
  3877. "__type__": "cc.Color",
  3878. "r": 255,
  3879. "g": 255,
  3880. "b": 255,
  3881. "a": 255
  3882. },
  3883. "_N$disabledColor": {
  3884. "__type__": "cc.Color",
  3885. "r": 124,
  3886. "g": 124,
  3887. "b": 124,
  3888. "a": 255
  3889. },
  3890. "_N$normalSprite": null,
  3891. "_N$pressedSprite": null,
  3892. "pressedSprite": null,
  3893. "_N$hoverSprite": null,
  3894. "hoverSprite": null,
  3895. "_N$disabledSprite": null,
  3896. "_N$target": null,
  3897. "_id": "2evsWTzWVDcoED8LuDhVr8"
  3898. },
  3899. {
  3900. "__type__": "7a9baDNHQNCrb4+zvwtADHE",
  3901. "_name": "",
  3902. "_objFlags": 0,
  3903. "node": {
  3904. "__id__": 82
  3905. },
  3906. "_enabled": true,
  3907. "Count": {
  3908. "__id__": 86
  3909. },
  3910. "CountBg_Video": {
  3911. "__id__": 87
  3912. },
  3913. "CountBg": {
  3914. "__uuid__": "c8a36c9c-7ae1-4f25-8cc2-4aeb4caea7c2"
  3915. },
  3916. "Video": {
  3917. "__uuid__": "1490dee7-cabf-4b09-9d3c-200af1909080"
  3918. },
  3919. "_id": "baam1S+UlDlYCWTyT1PRQX"
  3920. },
  3921. {
  3922. "__type__": "cc.Sprite",
  3923. "_name": "",
  3924. "_objFlags": 0,
  3925. "node": {
  3926. "__id__": 61
  3927. },
  3928. "_enabled": false,
  3929. "_materials": [
  3930. {
  3931. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3932. }
  3933. ],
  3934. "_srcBlendFactor": 770,
  3935. "_dstBlendFactor": 771,
  3936. "_spriteFrame": {
  3937. "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69"
  3938. },
  3939. "_type": 1,
  3940. "_sizeMode": 0,
  3941. "_fillType": 0,
  3942. "_fillCenter": {
  3943. "__type__": "cc.Vec2",
  3944. "x": 0,
  3945. "y": 0
  3946. },
  3947. "_fillStart": 0,
  3948. "_fillRange": 0,
  3949. "_isTrimmedMode": true,
  3950. "_atlas": null,
  3951. "_id": "99wlEP6kVFt6VQUGmmoyUs"
  3952. },
  3953. {
  3954. "__type__": "cc.Layout",
  3955. "_name": "",
  3956. "_objFlags": 0,
  3957. "node": {
  3958. "__id__": 61
  3959. },
  3960. "_enabled": true,
  3961. "_layoutSize": {
  3962. "__type__": "cc.Size",
  3963. "width": 498,
  3964. "height": 99.9
  3965. },
  3966. "_resize": 1,
  3967. "_N$layoutType": 1,
  3968. "_N$cellSize": {
  3969. "__type__": "cc.Size",
  3970. "width": 40,
  3971. "height": 40
  3972. },
  3973. "_N$startAxis": 0,
  3974. "_N$paddingLeft": 0,
  3975. "_N$paddingRight": 0,
  3976. "_N$paddingTop": 0,
  3977. "_N$paddingBottom": 0,
  3978. "_N$spacingX": 99,
  3979. "_N$spacingY": 0,
  3980. "_N$verticalDirection": 1,
  3981. "_N$horizontalDirection": 0,
  3982. "_N$affectedByScale": false,
  3983. "_id": "90F85hjAlJAbm0IbduGBQO"
  3984. },
  3985. {
  3986. "__type__": "cc.Widget",
  3987. "_name": "",
  3988. "_objFlags": 0,
  3989. "node": {
  3990. "__id__": 61
  3991. },
  3992. "_enabled": true,
  3993. "alignMode": 1,
  3994. "_target": null,
  3995. "_alignFlags": 44,
  3996. "_left": 126,
  3997. "_right": 126,
  3998. "_top": 0,
  3999. "_bottom": 0,
  4000. "_verticalCenter": 0,
  4001. "_horizontalCenter": 0,
  4002. "_isAbsLeft": true,
  4003. "_isAbsRight": true,
  4004. "_isAbsTop": true,
  4005. "_isAbsBottom": true,
  4006. "_isAbsHorizontalCenter": true,
  4007. "_isAbsVerticalCenter": true,
  4008. "_originalWidth": 200,
  4009. "_originalHeight": 0,
  4010. "_id": "d7ZIcJwKBAvri/NvBQ6XMi"
  4011. },
  4012. {
  4013. "__type__": "cc.Node",
  4014. "_name": "Mask",
  4015. "_objFlags": 0,
  4016. "_parent": {
  4017. "__id__": 8
  4018. },
  4019. "_children": [],
  4020. "_active": false,
  4021. "_components": [
  4022. {
  4023. "__id__": 96
  4024. },
  4025. {
  4026. "__id__": 97
  4027. }
  4028. ],
  4029. "_prefab": null,
  4030. "_opacity": 255,
  4031. "_color": {
  4032. "__type__": "cc.Color",
  4033. "r": 0,
  4034. "g": 0,
  4035. "b": 0,
  4036. "a": 255
  4037. },
  4038. "_contentSize": {
  4039. "__type__": "cc.Size",
  4040. "width": 750,
  4041. "height": 1334
  4042. },
  4043. "_anchorPoint": {
  4044. "__type__": "cc.Vec2",
  4045. "x": 0.5,
  4046. "y": 0.5
  4047. },
  4048. "_trs": {
  4049. "__type__": "TypedArray",
  4050. "ctor": "Float64Array",
  4051. "array": [
  4052. 0,
  4053. 0,
  4054. 0,
  4055. 0,
  4056. 0,
  4057. 0,
  4058. 1,
  4059. 1,
  4060. 1,
  4061. 1
  4062. ]
  4063. },
  4064. "_eulerAngles": {
  4065. "__type__": "cc.Vec3",
  4066. "x": 0,
  4067. "y": 0,
  4068. "z": 0
  4069. },
  4070. "_skewX": 0,
  4071. "_skewY": 0,
  4072. "_is3DNode": false,
  4073. "_groupIndex": 0,
  4074. "groupIndex": 0,
  4075. "_id": "44xNH3i5hAdoJsrXXmcjPs"
  4076. },
  4077. {
  4078. "__type__": "cc.Sprite",
  4079. "_name": "",
  4080. "_objFlags": 0,
  4081. "node": {
  4082. "__id__": 95
  4083. },
  4084. "_enabled": true,
  4085. "_materials": [
  4086. {
  4087. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4088. }
  4089. ],
  4090. "_srcBlendFactor": 770,
  4091. "_dstBlendFactor": 771,
  4092. "_spriteFrame": {
  4093. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  4094. },
  4095. "_type": 0,
  4096. "_sizeMode": 0,
  4097. "_fillType": 0,
  4098. "_fillCenter": {
  4099. "__type__": "cc.Vec2",
  4100. "x": 0,
  4101. "y": 0
  4102. },
  4103. "_fillStart": 0,
  4104. "_fillRange": 0,
  4105. "_isTrimmedMode": true,
  4106. "_atlas": null,
  4107. "_id": "50SfNOUaxAXa33oX39Pbs8"
  4108. },
  4109. {
  4110. "__type__": "cc.Widget",
  4111. "_name": "",
  4112. "_objFlags": 0,
  4113. "node": {
  4114. "__id__": 95
  4115. },
  4116. "_enabled": true,
  4117. "alignMode": 1,
  4118. "_target": null,
  4119. "_alignFlags": 45,
  4120. "_left": 0,
  4121. "_right": 0,
  4122. "_top": 0,
  4123. "_bottom": 0,
  4124. "_verticalCenter": 0,
  4125. "_horizontalCenter": 0,
  4126. "_isAbsLeft": true,
  4127. "_isAbsRight": true,
  4128. "_isAbsTop": true,
  4129. "_isAbsBottom": true,
  4130. "_isAbsHorizontalCenter": true,
  4131. "_isAbsVerticalCenter": true,
  4132. "_originalWidth": 100,
  4133. "_originalHeight": 100,
  4134. "_id": "e8DxYdYBlE6K4nEaDWHAYh"
  4135. },
  4136. {
  4137. "__type__": "cc.Node",
  4138. "_name": "New Button",
  4139. "_objFlags": 0,
  4140. "_parent": {
  4141. "__id__": 8
  4142. },
  4143. "_children": [
  4144. {
  4145. "__id__": 99
  4146. }
  4147. ],
  4148. "_active": true,
  4149. "_components": [
  4150. {
  4151. "__id__": 104
  4152. }
  4153. ],
  4154. "_prefab": null,
  4155. "_opacity": 255,
  4156. "_color": {
  4157. "__type__": "cc.Color",
  4158. "r": 255,
  4159. "g": 255,
  4160. "b": 255,
  4161. "a": 255
  4162. },
  4163. "_contentSize": {
  4164. "__type__": "cc.Size",
  4165. "width": 220,
  4166. "height": 42.2
  4167. },
  4168. "_anchorPoint": {
  4169. "__type__": "cc.Vec2",
  4170. "x": 0.5,
  4171. "y": 0.5
  4172. },
  4173. "_trs": {
  4174. "__type__": "TypedArray",
  4175. "ctor": "Float64Array",
  4176. "array": [
  4177. 258.051,
  4178. 591.5,
  4179. 0,
  4180. 0,
  4181. 0,
  4182. 0,
  4183. 1,
  4184. 1,
  4185. 1,
  4186. 1
  4187. ]
  4188. },
  4189. "_eulerAngles": {
  4190. "__type__": "cc.Vec3",
  4191. "x": 0,
  4192. "y": 0,
  4193. "z": 0
  4194. },
  4195. "_skewX": 0,
  4196. "_skewY": 0,
  4197. "_is3DNode": false,
  4198. "_groupIndex": 0,
  4199. "groupIndex": 0,
  4200. "_id": "f3orYaqVpLEqdKGKWTpg8m"
  4201. },
  4202. {
  4203. "__type__": "cc.Node",
  4204. "_name": "Background",
  4205. "_objFlags": 0,
  4206. "_parent": {
  4207. "__id__": 98
  4208. },
  4209. "_children": [
  4210. {
  4211. "__id__": 100
  4212. }
  4213. ],
  4214. "_active": true,
  4215. "_components": [
  4216. {
  4217. "__id__": 102
  4218. },
  4219. {
  4220. "__id__": 103
  4221. }
  4222. ],
  4223. "_prefab": null,
  4224. "_opacity": 255,
  4225. "_color": {
  4226. "__type__": "cc.Color",
  4227. "r": 255,
  4228. "g": 255,
  4229. "b": 255,
  4230. "a": 255
  4231. },
  4232. "_contentSize": {
  4233. "__type__": "cc.Size",
  4234. "width": 220,
  4235. "height": 42.2
  4236. },
  4237. "_anchorPoint": {
  4238. "__type__": "cc.Vec2",
  4239. "x": 0.5,
  4240. "y": 0.5
  4241. },
  4242. "_trs": {
  4243. "__type__": "TypedArray",
  4244. "ctor": "Float64Array",
  4245. "array": [
  4246. 0,
  4247. 0,
  4248. 0,
  4249. 0,
  4250. 0,
  4251. 0,
  4252. 1,
  4253. 1,
  4254. 1,
  4255. 1
  4256. ]
  4257. },
  4258. "_eulerAngles": {
  4259. "__type__": "cc.Vec3",
  4260. "x": 0,
  4261. "y": 0,
  4262. "z": 0
  4263. },
  4264. "_skewX": 0,
  4265. "_skewY": 0,
  4266. "_is3DNode": false,
  4267. "_groupIndex": 0,
  4268. "groupIndex": 0,
  4269. "_id": "30cltA/9dOSbXHwCtenZ/z"
  4270. },
  4271. {
  4272. "__type__": "cc.Node",
  4273. "_name": "Label",
  4274. "_objFlags": 0,
  4275. "_parent": {
  4276. "__id__": 99
  4277. },
  4278. "_children": [],
  4279. "_active": true,
  4280. "_components": [
  4281. {
  4282. "__id__": 101
  4283. }
  4284. ],
  4285. "_prefab": null,
  4286. "_opacity": 255,
  4287. "_color": {
  4288. "__type__": "cc.Color",
  4289. "r": 0,
  4290. "g": 0,
  4291. "b": 0,
  4292. "a": 255
  4293. },
  4294. "_contentSize": {
  4295. "__type__": "cc.Size",
  4296. "width": 223,
  4297. "height": 40
  4298. },
  4299. "_anchorPoint": {
  4300. "__type__": "cc.Vec2",
  4301. "x": 0.5,
  4302. "y": 0.5
  4303. },
  4304. "_trs": {
  4305. "__type__": "TypedArray",
  4306. "ctor": "Float64Array",
  4307. "array": [
  4308. 0,
  4309. 0,
  4310. 0,
  4311. 0,
  4312. 0,
  4313. 0,
  4314. 1,
  4315. 1,
  4316. 1,
  4317. 1
  4318. ]
  4319. },
  4320. "_eulerAngles": {
  4321. "__type__": "cc.Vec3",
  4322. "x": 0,
  4323. "y": 0,
  4324. "z": 0
  4325. },
  4326. "_skewX": 0,
  4327. "_skewY": 0,
  4328. "_is3DNode": false,
  4329. "_groupIndex": 0,
  4330. "groupIndex": 0,
  4331. "_id": "439xs0d8FEtrJ8TOeEszB9"
  4332. },
  4333. {
  4334. "__type__": "cc.Label",
  4335. "_name": "",
  4336. "_objFlags": 0,
  4337. "node": {
  4338. "__id__": 100
  4339. },
  4340. "_enabled": true,
  4341. "_materials": [
  4342. {
  4343. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4344. }
  4345. ],
  4346. "_srcBlendFactor": 770,
  4347. "_dstBlendFactor": 771,
  4348. "_string": "清除新手引导本地缓存",
  4349. "_N$string": "清除新手引导本地缓存",
  4350. "_fontSize": 20,
  4351. "_lineHeight": 40,
  4352. "_enableWrapText": false,
  4353. "_N$file": null,
  4354. "_isSystemFontUsed": true,
  4355. "_spacingX": 0,
  4356. "_batchAsBitmap": false,
  4357. "_styleFlags": 0,
  4358. "_underlineHeight": 0,
  4359. "_N$horizontalAlign": 1,
  4360. "_N$verticalAlign": 1,
  4361. "_N$fontFamily": "Arial",
  4362. "_N$overflow": 1,
  4363. "_N$cacheMode": 1,
  4364. "_id": "37X4Mk735A7KXuMww5SEv5"
  4365. },
  4366. {
  4367. "__type__": "cc.Sprite",
  4368. "_name": "",
  4369. "_objFlags": 0,
  4370. "node": {
  4371. "__id__": 99
  4372. },
  4373. "_enabled": true,
  4374. "_materials": [
  4375. {
  4376. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4377. }
  4378. ],
  4379. "_srcBlendFactor": 770,
  4380. "_dstBlendFactor": 771,
  4381. "_spriteFrame": {
  4382. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4383. },
  4384. "_type": 1,
  4385. "_sizeMode": 0,
  4386. "_fillType": 0,
  4387. "_fillCenter": {
  4388. "__type__": "cc.Vec2",
  4389. "x": 0,
  4390. "y": 0
  4391. },
  4392. "_fillStart": 0,
  4393. "_fillRange": 0,
  4394. "_isTrimmedMode": true,
  4395. "_atlas": null,
  4396. "_id": "33RQpE8K1AGo5UOT1a2IX6"
  4397. },
  4398. {
  4399. "__type__": "cc.Widget",
  4400. "_name": "",
  4401. "_objFlags": 0,
  4402. "node": {
  4403. "__id__": 99
  4404. },
  4405. "_enabled": true,
  4406. "alignMode": 0,
  4407. "_target": null,
  4408. "_alignFlags": 45,
  4409. "_left": 0,
  4410. "_right": 0,
  4411. "_top": 0,
  4412. "_bottom": 0,
  4413. "_verticalCenter": 0,
  4414. "_horizontalCenter": 0,
  4415. "_isAbsLeft": true,
  4416. "_isAbsRight": true,
  4417. "_isAbsTop": true,
  4418. "_isAbsBottom": true,
  4419. "_isAbsHorizontalCenter": true,
  4420. "_isAbsVerticalCenter": true,
  4421. "_originalWidth": 100,
  4422. "_originalHeight": 40,
  4423. "_id": "b4ED2eF2ZJHpgVsPBIePgF"
  4424. },
  4425. {
  4426. "__type__": "cc.Button",
  4427. "_name": "",
  4428. "_objFlags": 0,
  4429. "node": {
  4430. "__id__": 98
  4431. },
  4432. "_enabled": true,
  4433. "_normalMaterial": null,
  4434. "_grayMaterial": null,
  4435. "duration": 0.1,
  4436. "zoomScale": 1.2,
  4437. "clickEvents": [],
  4438. "_N$interactable": true,
  4439. "_N$enableAutoGrayEffect": false,
  4440. "_N$transition": 2,
  4441. "transition": 2,
  4442. "_N$normalColor": {
  4443. "__type__": "cc.Color",
  4444. "r": 230,
  4445. "g": 230,
  4446. "b": 230,
  4447. "a": 255
  4448. },
  4449. "_N$pressedColor": {
  4450. "__type__": "cc.Color",
  4451. "r": 200,
  4452. "g": 200,
  4453. "b": 200,
  4454. "a": 255
  4455. },
  4456. "pressedColor": {
  4457. "__type__": "cc.Color",
  4458. "r": 200,
  4459. "g": 200,
  4460. "b": 200,
  4461. "a": 255
  4462. },
  4463. "_N$hoverColor": {
  4464. "__type__": "cc.Color",
  4465. "r": 255,
  4466. "g": 255,
  4467. "b": 255,
  4468. "a": 255
  4469. },
  4470. "hoverColor": {
  4471. "__type__": "cc.Color",
  4472. "r": 255,
  4473. "g": 255,
  4474. "b": 255,
  4475. "a": 255
  4476. },
  4477. "_N$disabledColor": {
  4478. "__type__": "cc.Color",
  4479. "r": 120,
  4480. "g": 120,
  4481. "b": 120,
  4482. "a": 200
  4483. },
  4484. "_N$normalSprite": {
  4485. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4486. },
  4487. "_N$pressedSprite": {
  4488. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4489. },
  4490. "pressedSprite": {
  4491. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4492. },
  4493. "_N$hoverSprite": {
  4494. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4495. },
  4496. "hoverSprite": {
  4497. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4498. },
  4499. "_N$disabledSprite": {
  4500. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  4501. },
  4502. "_N$target": {
  4503. "__id__": 99
  4504. },
  4505. "_id": "86BD6N43xCF5pHFN+zVbZH"
  4506. },
  4507. {
  4508. "__type__": "cc.Node",
  4509. "_name": "Guide",
  4510. "_objFlags": 0,
  4511. "_parent": {
  4512. "__id__": 8
  4513. },
  4514. "_children": [
  4515. {
  4516. "__id__": 106
  4517. },
  4518. {
  4519. "__id__": 108
  4520. }
  4521. ],
  4522. "_active": true,
  4523. "_components": [],
  4524. "_prefab": null,
  4525. "_opacity": 255,
  4526. "_color": {
  4527. "__type__": "cc.Color",
  4528. "r": 255,
  4529. "g": 255,
  4530. "b": 255,
  4531. "a": 255
  4532. },
  4533. "_contentSize": {
  4534. "__type__": "cc.Size",
  4535. "width": 0,
  4536. "height": 0
  4537. },
  4538. "_anchorPoint": {
  4539. "__type__": "cc.Vec2",
  4540. "x": 0.5,
  4541. "y": 0.5
  4542. },
  4543. "_trs": {
  4544. "__type__": "TypedArray",
  4545. "ctor": "Float64Array",
  4546. "array": [
  4547. 0,
  4548. 0,
  4549. 0,
  4550. 0,
  4551. 0,
  4552. 0,
  4553. 1,
  4554. 1,
  4555. 1,
  4556. 1
  4557. ]
  4558. },
  4559. "_eulerAngles": {
  4560. "__type__": "cc.Vec3",
  4561. "x": 0,
  4562. "y": 0,
  4563. "z": 0
  4564. },
  4565. "_skewX": 0,
  4566. "_skewY": 0,
  4567. "_is3DNode": false,
  4568. "_groupIndex": 0,
  4569. "groupIndex": 0,
  4570. "_id": "aeSeDhtEpK0rDPXvr53f7x"
  4571. },
  4572. {
  4573. "__type__": "cc.Node",
  4574. "_name": "猫头鹰",
  4575. "_objFlags": 0,
  4576. "_parent": {
  4577. "__id__": 105
  4578. },
  4579. "_children": [],
  4580. "_active": true,
  4581. "_components": [
  4582. {
  4583. "__id__": 107
  4584. }
  4585. ],
  4586. "_prefab": null,
  4587. "_opacity": 255,
  4588. "_color": {
  4589. "__type__": "cc.Color",
  4590. "r": 255,
  4591. "g": 255,
  4592. "b": 255,
  4593. "a": 255
  4594. },
  4595. "_contentSize": {
  4596. "__type__": "cc.Size",
  4597. "width": 260.69,
  4598. "height": 299.2
  4599. },
  4600. "_anchorPoint": {
  4601. "__type__": "cc.Vec2",
  4602. "x": 0.5,
  4603. "y": 0.5
  4604. },
  4605. "_trs": {
  4606. "__type__": "TypedArray",
  4607. "ctor": "Float64Array",
  4608. "array": [
  4609. -251.055,
  4610. 0,
  4611. 0,
  4612. 0,
  4613. 0,
  4614. 0,
  4615. 1,
  4616. 1,
  4617. 1,
  4618. 1
  4619. ]
  4620. },
  4621. "_eulerAngles": {
  4622. "__type__": "cc.Vec3",
  4623. "x": 0,
  4624. "y": 0,
  4625. "z": 0
  4626. },
  4627. "_skewX": 0,
  4628. "_skewY": 0,
  4629. "_is3DNode": false,
  4630. "_groupIndex": 0,
  4631. "groupIndex": 0,
  4632. "_id": "d7KbjMGutPtLseLYB9SZY3"
  4633. },
  4634. {
  4635. "__type__": "sp.Skeleton",
  4636. "_name": "",
  4637. "_objFlags": 0,
  4638. "node": {
  4639. "__id__": 106
  4640. },
  4641. "_enabled": true,
  4642. "_materials": [
  4643. {
  4644. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  4645. }
  4646. ],
  4647. "paused": false,
  4648. "defaultSkin": "default",
  4649. "defaultAnimation": "出场",
  4650. "_preCacheMode": 0,
  4651. "_cacheMode": 0,
  4652. "loop": true,
  4653. "premultipliedAlpha": true,
  4654. "timeScale": 1,
  4655. "_accTime": 0,
  4656. "_playCount": 0,
  4657. "_frameCache": null,
  4658. "_curFrame": null,
  4659. "_skeletonCache": null,
  4660. "_animationName": "出场",
  4661. "_animationQueue": [],
  4662. "_headAniInfo": null,
  4663. "_playTimes": 0,
  4664. "_isAniComplete": true,
  4665. "_N$skeletonData": {
  4666. "__uuid__": "781b8b42-2def-41c8-b99b-8e0643723061"
  4667. },
  4668. "_N$_defaultCacheMode": 0,
  4669. "_N$debugSlots": false,
  4670. "_N$debugBones": false,
  4671. "_N$debugMesh": false,
  4672. "_N$useTint": false,
  4673. "_N$enableBatch": false,
  4674. "_id": "3aXyeuVjVB/abl9NIa8n5F"
  4675. },
  4676. {
  4677. "__type__": "cc.Node",
  4678. "_name": "猫头鹰",
  4679. "_objFlags": 0,
  4680. "_parent": {
  4681. "__id__": 105
  4682. },
  4683. "_children": [],
  4684. "_active": true,
  4685. "_components": [
  4686. {
  4687. "__id__": 109
  4688. }
  4689. ],
  4690. "_prefab": null,
  4691. "_opacity": 255,
  4692. "_color": {
  4693. "__type__": "cc.Color",
  4694. "r": 255,
  4695. "g": 255,
  4696. "b": 255,
  4697. "a": 255
  4698. },
  4699. "_contentSize": {
  4700. "__type__": "cc.Size",
  4701. "width": 260.69,
  4702. "height": 299.2
  4703. },
  4704. "_anchorPoint": {
  4705. "__type__": "cc.Vec2",
  4706. "x": 0.5,
  4707. "y": 0.5
  4708. },
  4709. "_trs": {
  4710. "__type__": "TypedArray",
  4711. "ctor": "Float64Array",
  4712. "array": [
  4713. 144.17,
  4714. 0,
  4715. 0,
  4716. 0,
  4717. 0,
  4718. 0,
  4719. 1,
  4720. 1,
  4721. 1,
  4722. 1
  4723. ]
  4724. },
  4725. "_eulerAngles": {
  4726. "__type__": "cc.Vec3",
  4727. "x": 0,
  4728. "y": 0,
  4729. "z": 0
  4730. },
  4731. "_skewX": 0,
  4732. "_skewY": 0,
  4733. "_is3DNode": false,
  4734. "_groupIndex": 0,
  4735. "groupIndex": 0,
  4736. "_id": "58+TROVGxCpYlvD6z2USlY"
  4737. },
  4738. {
  4739. "__type__": "sp.Skeleton",
  4740. "_name": "",
  4741. "_objFlags": 0,
  4742. "node": {
  4743. "__id__": 108
  4744. },
  4745. "_enabled": true,
  4746. "_materials": [
  4747. {
  4748. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  4749. }
  4750. ],
  4751. "paused": false,
  4752. "defaultSkin": "default",
  4753. "defaultAnimation": "待机",
  4754. "_preCacheMode": 0,
  4755. "_cacheMode": 0,
  4756. "loop": true,
  4757. "premultipliedAlpha": true,
  4758. "timeScale": 1,
  4759. "_accTime": 0,
  4760. "_playCount": 0,
  4761. "_frameCache": null,
  4762. "_curFrame": null,
  4763. "_skeletonCache": null,
  4764. "_animationName": "待机",
  4765. "_animationQueue": [],
  4766. "_headAniInfo": null,
  4767. "_playTimes": 0,
  4768. "_isAniComplete": true,
  4769. "_N$skeletonData": {
  4770. "__uuid__": "781b8b42-2def-41c8-b99b-8e0643723061"
  4771. },
  4772. "_N$_defaultCacheMode": 0,
  4773. "_N$debugSlots": false,
  4774. "_N$debugBones": false,
  4775. "_N$debugMesh": false,
  4776. "_N$useTint": false,
  4777. "_N$enableBatch": false,
  4778. "_id": "15xGk2yoNAP6vqezA2+Z2U"
  4779. },
  4780. {
  4781. "__type__": "cc.Node",
  4782. "_name": "切图说明",
  4783. "_objFlags": 0,
  4784. "_parent": {
  4785. "__id__": 8
  4786. },
  4787. "_children": [],
  4788. "_active": true,
  4789. "_components": [
  4790. {
  4791. "__id__": 111
  4792. }
  4793. ],
  4794. "_prefab": null,
  4795. "_opacity": 255,
  4796. "_color": {
  4797. "__type__": "cc.Color",
  4798. "r": 255,
  4799. "g": 255,
  4800. "b": 255,
  4801. "a": 255
  4802. },
  4803. "_contentSize": {
  4804. "__type__": "cc.Size",
  4805. "width": 750,
  4806. "height": 1335
  4807. },
  4808. "_anchorPoint": {
  4809. "__type__": "cc.Vec2",
  4810. "x": 0.5,
  4811. "y": 0.5
  4812. },
  4813. "_trs": {
  4814. "__type__": "TypedArray",
  4815. "ctor": "Float64Array",
  4816. "array": [
  4817. 814.142,
  4818. 0,
  4819. 0,
  4820. 0,
  4821. 0,
  4822. 0,
  4823. 1,
  4824. 1,
  4825. 1,
  4826. 1
  4827. ]
  4828. },
  4829. "_eulerAngles": {
  4830. "__type__": "cc.Vec3",
  4831. "x": 0,
  4832. "y": 0,
  4833. "z": 0
  4834. },
  4835. "_skewX": 0,
  4836. "_skewY": 0,
  4837. "_is3DNode": false,
  4838. "_groupIndex": 0,
  4839. "groupIndex": 0,
  4840. "_id": "f74eJrQU9L4pi8uioguNfP"
  4841. },
  4842. {
  4843. "__type__": "cc.Sprite",
  4844. "_name": "",
  4845. "_objFlags": 0,
  4846. "node": {
  4847. "__id__": 110
  4848. },
  4849. "_enabled": true,
  4850. "_materials": [
  4851. {
  4852. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4853. }
  4854. ],
  4855. "_srcBlendFactor": 770,
  4856. "_dstBlendFactor": 771,
  4857. "_spriteFrame": {
  4858. "__uuid__": "c7bd6165-0da6-4832-9feb-9fb3b26e1fed"
  4859. },
  4860. "_type": 0,
  4861. "_sizeMode": 1,
  4862. "_fillType": 0,
  4863. "_fillCenter": {
  4864. "__type__": "cc.Vec2",
  4865. "x": 0,
  4866. "y": 0
  4867. },
  4868. "_fillStart": 0,
  4869. "_fillRange": 0,
  4870. "_isTrimmedMode": true,
  4871. "_atlas": null,
  4872. "_id": "3e+IMZ8IBKSpSo3zIyKLl5"
  4873. },
  4874. {
  4875. "__type__": "cc.Camera",
  4876. "_name": "",
  4877. "_objFlags": 0,
  4878. "node": {
  4879. "__id__": 8
  4880. },
  4881. "_enabled": true,
  4882. "_cullingMask": 4294967295,
  4883. "_clearFlags": 7,
  4884. "_backgroundColor": {
  4885. "__type__": "cc.Color",
  4886. "r": 0,
  4887. "g": 0,
  4888. "b": 0,
  4889. "a": 255
  4890. },
  4891. "_depth": -1,
  4892. "_zoomRatio": 1,
  4893. "_targetTexture": null,
  4894. "_fov": 60,
  4895. "_orthoSize": 10,
  4896. "_nearClip": 1,
  4897. "_farClip": 4096,
  4898. "_ortho": true,
  4899. "_rect": {
  4900. "__type__": "cc.Rect",
  4901. "x": 0,
  4902. "y": 0,
  4903. "width": 1,
  4904. "height": 1
  4905. },
  4906. "_renderStages": 1,
  4907. "_alignWithScreen": true,
  4908. "_id": "81GN3uXINKVLeW4+iKSlim"
  4909. },
  4910. {
  4911. "__type__": "7c971eC66hCIqm17PVZWj0j",
  4912. "_name": "",
  4913. "_objFlags": 0,
  4914. "node": {
  4915. "__id__": 8
  4916. },
  4917. "_enabled": true,
  4918. "_id": "84EhgYo1lCTqNWGHsOdbZJ"
  4919. },
  4920. {
  4921. "__type__": "cc.Widget",
  4922. "_name": "",
  4923. "_objFlags": 0,
  4924. "node": {
  4925. "__id__": 8
  4926. },
  4927. "_enabled": true,
  4928. "alignMode": 1,
  4929. "_target": null,
  4930. "_alignFlags": 45,
  4931. "_left": 0,
  4932. "_right": 0,
  4933. "_top": 0,
  4934. "_bottom": 0,
  4935. "_verticalCenter": 0,
  4936. "_horizontalCenter": 0,
  4937. "_isAbsLeft": true,
  4938. "_isAbsRight": true,
  4939. "_isAbsTop": true,
  4940. "_isAbsBottom": true,
  4941. "_isAbsHorizontalCenter": true,
  4942. "_isAbsVerticalCenter": true,
  4943. "_originalWidth": 750,
  4944. "_originalHeight": 1334,
  4945. "_id": "d1eJ4m99VL6JxfhvMo/juC"
  4946. },
  4947. {
  4948. "__type__": "cc.Canvas",
  4949. "_name": "",
  4950. "_objFlags": 0,
  4951. "node": {
  4952. "__id__": 2
  4953. },
  4954. "_enabled": true,
  4955. "_designResolution": {
  4956. "__type__": "cc.Size",
  4957. "width": 750,
  4958. "height": 1334
  4959. },
  4960. "_fitWidth": false,
  4961. "_fitHeight": true,
  4962. "_id": "59Cd0ovbdF4byw5sbjJDx7"
  4963. },
  4964. {
  4965. "__type__": "cc.Widget",
  4966. "_name": "",
  4967. "_objFlags": 0,
  4968. "node": {
  4969. "__id__": 2
  4970. },
  4971. "_enabled": true,
  4972. "alignMode": 1,
  4973. "_target": null,
  4974. "_alignFlags": 45,
  4975. "_left": 0,
  4976. "_right": 0,
  4977. "_top": 0,
  4978. "_bottom": 0,
  4979. "_verticalCenter": 0,
  4980. "_horizontalCenter": 0,
  4981. "_isAbsLeft": true,
  4982. "_isAbsRight": true,
  4983. "_isAbsTop": true,
  4984. "_isAbsBottom": true,
  4985. "_isAbsHorizontalCenter": true,
  4986. "_isAbsVerticalCenter": true,
  4987. "_originalWidth": 0,
  4988. "_originalHeight": 0,
  4989. "_id": "29zXboiXFBKoIV4PQ2liTe"
  4990. },
  4991. {
  4992. "__type__": "57e1ePZGkpKG6sRUb3KXAiO",
  4993. "_name": "",
  4994. "_objFlags": 0,
  4995. "node": {
  4996. "__id__": 2
  4997. },
  4998. "_enabled": true,
  4999. "_id": "72XBHFBJxCD5CNGnp5ayXG"
  5000. }
  5001. ]