Hall.fire 80 KB

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