Hall.fire 78 KB

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